tiger-3.2.3/0000755000175000017500000000000011306441065011257 5ustar pacopacotiger-3.2.3/audit/0000755000175000017500000000000011306441021012355 5ustar pacopacotiger-3.2.3/audit/audit_aix.sh0000644000175000017500000001352510241364024014672 0ustar pacopaco#!/bin/sh # # Audit IBM AIX Script v1.1 (c) 2001 by Marc Heuse # # 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 of the License, 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. # # 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 # # You can also find a copy of the GNU General Public License at # http://www.gnu.org/licenses/licenses.html#TOCLGPL # # v1.2 Javier Fernandez-Sanguino # Changes: Extract additional information from the system: # - More /etc files # - Look also into /usr/tmp # - List users # - List configured (SMIT) services # - Extract software inventory # PATH="/sbin:/usr/sbin:/bin:/usr/bin:$PATH" HOSTNAME=`hostname` AUDIT_NAME="AUDIT-$HOSTNAME" AUDIT_DIR="/tmp/$AUDIT_NAME" OUTFILE="$AUDIT_DIR.tar" # ----- Begin local customisation ----------------- # Set this yes if you want to extract password information CRACK_PWD="yes" FULL_FS="yes" # ----- End local customisation ------------------- [ "`id -u`" -ne 0 ] && echo "Not running as root, some information might not be extracted" FILE_LIST_ETC="/etc/aliases /etc/sendmail.cf /etc/mail /etc/dt /etc/group \ /etc/cron* /etc/export* /etc/xtab /etc/profile /etc/login* /etc/xtab \ /etc/*ftp* /etc/host* /etc/inittab /etc/issue* /etc/pam* /etc/motd /etc/csh* \ /etc/shells /etc/securetty /etc/sock* /etc/yp* /etc/filesystems /etc/hosts* \ /etc/environment /etc/auto* /etc/uucp/*" # TBD: Actually, /etc/security/passwd is copied nevertheless (since we copy /etc/security # completely), should we exclude it then? if [ "$CRACK_PWD" = "yes" ] ; then # Copy shadow and password files FILE_LIST_ETC="$FILE_LIST_ETC /etc/passwd /etc/security/passwd" else # Only copy the passwd files if shadows are used [ -e /etc/security/passwd ] && FILE_LIST_ETC="$FILE_LIST_ETC /etc/passwd" fi OLD_UMASK=`umask` OLD_ENV=`env` umask 077 set -o noclobber > "$OUTFILE" || exit 1 > "$OUTFILE.Z" || exit 1 if [ -e "$AUDIT_DIR" ]; then mv "$AUDIT_DIR" "$AUDIT_DIR".old fi mkdir "$AUDIT_DIR" || exit 1 cd "$AUDIT_DIR" || exit 1 set +o noclobber # Extract information from the system tar cf etc.tar /etc/*conf* /etc/*cfg* /etc/*.d /etc/rc* /etc/tcpip \ /etc/ssh/ssh*conf* \ /etc/default /etc/security /sbin/rc* \ $FILE_LIST_ETC 2> /dev/null tar cf var.tar /var/yp /var/nis/data /var/spool/cron /var/adm/cron 2> /dev/null tar cf home.tar /.*bash* /.netrc /.rhosts /.log* /.*csh* /.Xa* \ /.prof* /home/*/.*bash* /home/*/.netrc /home/*/.rhosts \ /home/*/.log* /home/*/.*csh* /home/*/.Xa* /home/*/.prof* \ /root/.*bash* /root/.netrc /root/.rhosts /root/.log* /root/.*csh* \ /root/.Xa* /root/.prof* 2> /dev/null # Find stuff that might be a problem to the system # Setuid files and All-Writable stuff if [ "$FULL_fs" = "yes" ] ; then DIRS="/" else # Finding in the whole filesystem maybe too much # restrict to a specific set of directories DIRS="/bin /usr /etc /dev /var /lib /opt /sbin /tmp" fi for dir in $DIRS; do find $dir \( -perm -4000 -o -perm -2000 -o -perm -1000 \) -type f \ -exec /bin/ls -ld {} \; >> find-s_id.out 2>&1 find $dir -perm -2 '!' -type l -exec /bin/ls -ld {} \; >> find-write.out 2>&1 done # List directories /bin/ls -al / > ls-root.out 2>&1 /bin/ls -alR /etc > ls-etc.out 2>&1 /bin/ls -alRL /dev > ls-dev.out 2>&1 /bin/ls -al /tmp /*/tmp/ > ls-tmp.out 2>&1 /bin/ls -alR /var/log /var/adm /var/spool /var/spool/mail /var/user* > ls-var.out 2>&1 /bin/ls -lL /dev/*rmt* /dev/*floppy* /dev/fd0* /dev/*audio* /dev/*mix* > ls-dev-spec.out 2>&1 /bin/ls -alR /usr/adm /usr/bin/mail/ /usr/*/adm/ > ls-usr.out 2>&1 /bin/ls -alR /opt /software /usr/local > ls-software.out 2>&1 /bin/ls -alRL /home > ls-home.out 2>&1 # Mounted file systems mount > mount.out 2>&1 # RPC programs rpcinfo -p > rpcinfo.out 2>&1 # Processes ps -elf > ps.out # Patches instfix -a > instfix.out 2>&1 # System information uname -a > uname.out 2>&1 oslevel >> uname.out 2>&1 oslevel -r >>uname.out 2>&1 # Users connected to the system last -25 > last_25.out 2>&1 last -5 root > last_root.out 2>&1 xhost > xhost.out 2>&1 # History of user running the audit history > history.out 2>&1 # Open listeners netstat -an > netstat-an.out 2>&1 # Interfaces netstat -i > netstat-i.out 2>&1 # Routing netstat -rn > netstat-rn.out 2>&1 # Process-sockets which lsof >/dev/null 2>&1 && lsof -n >lsof.out 2>&1 # Arp information arp -an >arp.out 2>&1 # Environment and Umask echo "$OLD_ENV" > env.out 2>&1 echo "$OLD_UMASK" > umask.out 2>&1 # Disk df -k > df.out # Review TCP/IP configuration: no -a > no.out 2>&1 # Inet services inetserv -s -S -X >inet-serv.out 2>&1 hostent -S >hostent.out 2>&1 namerslv -s -I >namesrv.out 2>&1 lssrc -a >lssrc-all.out 2>&1 lssrc -g tcpip >lssrc-tcpip.out 2>&1 lssrc -ls inetd >lssrc-inetd.out 2>&1 lssrc -g nfs >lssrc-nfs.out 2>&1 lsdev -C -c if >lsdev-if.out 2>&1 # Password inconsistencies which pwdck >/dev/null 2>&1 && pwdck -n ALL >pwdck.out 2>&1 which grpck >/dev/null 2>&1 && grpck -n ALL >grpck.out 2>&1 # List users lsuser -f ALL >lsuser.out 2>&1 # Software inventory lslpp -l > sw-inv.out 2>&1 lslpp -h > sw-inv-host.out 2>&1 cd /tmp tar cf "$OUTFILE" "$AUDIT_NAME" compress -c "$OUTFILE" >> "$OUTFILE".Z /bin/rm -f "$OUTFILE" echo echo "$OUTFILE".Z is finished, you may delete "$AUDIT_DIR" now. tiger-3.2.3/audit/README0000644000175000017500000000263110241364200013237 0ustar pacopaco README for audit scripts ------------------------ The audit scripts are a set of scripts intented to be run in systems to recover useful information for them. The information recovered should be sufficient to do a "white box" analysis of the system. These scripts are targeted at systems where running an "advanced" (or complex) tool such as Tiger, Titan or the CIS scoring tool is not an option, this is typical on production systems where installation of tools is "out of bounds" or where the system administrator wants to review the code of the tool that is going to be used. The suite of scripts is made of simple shell scripts (and a batch file for Windows 2000/XP/2003) that will extract the relevant information from the system (installed software and patches, permissions, TCP/IP listeners, processes, etc.) and allow you to review that information manually and fill in the appropiate checklist. These scripts are derived from Marc Heuse's set of audit scripts [1]. Similar tools include Seán Boran's UNIX/Linux local audit tool [2]. They can be run through a system console and will just generate a pack of information that can be transfered for an external system for analysis. The audit scripts have been tested on AIX, Debian GNU/Linux, Red Hat Linux, SuSE Linux, HPUX, Solaris and Windows (2000, 2003 and XP). [1] http://www.suse.de/~marc/audit/ [2] http://www.boran.com/security/sp/solaris/audit_tool.html tiger-3.2.3/audit/tools/0000755000175000017500000000000011306441021013515 5ustar pacopacotiger-3.2.3/audit/tools/order-ports-aix.sh0000644000175000017500000000046410241364516017126 0ustar pacopaco#!/bin/sh echo "TCP ports" echo "---------" cat netstat-an.out |grep "\*\.\*" | perl -ne 'print "$2\t$1\n" if /^tcp.*?([\w\.\*]+)\.(\d+)\s+\*\.\*/' |sort -n echo "UDP ports" echo "---------" cat netstat-an.out | grep "\*\.\*" | perl -ne 'print "$2\t$1\n" if /^udp.*?([\w\.\*]+)\.(\d+)\s+/' |sort -ntiger-3.2.3/audit/tools/order-ports-solaris.sh0000644000175000017500000000045710241364516020023 0ustar pacopaco#!/bin/sh echo "TCP ports" echo "---------" cat netstat-an.out |grep "\*\.\*" |perl -ne 'print "$2\t$1\n" if /^\s*([\w\.\*+)\.(\d+)\s+\*\.\*/' |sort -n echo echo "UDP ports" echo "---------" cat netstat-an.out |grep -v "\*\.\*" | perl -ne 'print "$2\t$1\n" if /([\w\.\*]+)\.(\d+).*Idle/' |sort -ntiger-3.2.3/audit/tools/order-ports-windows.sh0000644000175000017500000000047310241364516020037 0ustar pacopaco#!/bin/sh echo "TCP ports" echo "---------" cat report.txt |grep "LISTENING" | perl -ne 'print "$2\t$1\n" if /^\s+TCP.*?([\w\.\*]+):(\d+)\s+0\.0\.0\.0:0/' |sort -n echo echo "UDP ports" echo "---------" cat report.txt | grep "\*:\*" | perl -ne 'print "$2\t$1\n" if /^\s+UDP\s+([\w\.]+):(\d+)\s+/' |sort -ntiger-3.2.3/audit/tools/patch-extract-aix.sh0000644000175000017500000000014010241364516017404 0ustar pacopaco#!/bin/sh cat systeminfo.txt | perl -ne 'print $1."\n" if /\[\d+\]:\s+([Q|S|K]\w*\d+)\s+/'; tiger-3.2.3/audit/audit_debian.sh0000644000175000017500000001676510241364024015344 0ustar pacopaco#!/bin/sh # # Audit Debian GNU/Linux Script v1.1 (c) 2005 by Javier Fernandez-Sanguino # based on # Audit SuSE Linux Script v1.1 (c) 2001 by Marc Heuse # # 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 of the License, 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. # # 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 # # You can also find a copy of the GNU General Public License at # http://www.gnu.org/licenses/licenses.html#TOCLGPL # PATH="/sbin:/usr/sbin:/bin:/usr/bin:$PATH" HOSTNAME=`hostname` AUDIT_NAME="AUDIT-$HOSTNAME" AUDIT_DIR="/tmp/$AUDIT_NAME" OUTFILE="$AUDIT_DIR.tar" # ----- Begin local customisation ----------------- # Set this yes if you want to extract password information CRACK_PWD="yes" FULL_FS="yes" # ----- End local customisation ------------------- FILE_LIST_ETC="/etc/aliases /etc/group \ /etc/cron* /etc/export* /etc/profile /etc/login* \ /etc/*ftp* /etc/host* /etc/inittab /etc/issue* /etc/motd /etc/csh* \ /etc/shells /etc/securetty /etc/sock* /etc/yp* /etc/fstab \ /etc/snmp/ /etc/hosts* /etc/sudoers /etc/securetty /etc/security/ /etc/default/ /sbin/init.d /etc/pam.d/* /etc/cron* \ /etc/*conf* /etc/*cfg* /etc/*.d /etc/rc* \ /usr/local/etc/ " # Service specific files # This list does not attempt to capture all, just the most common files: # Notice that many service files will be captured with the previous "/etc/*conf*" above FILE_LIST_ETC="$FILE_LIST_ETC /etc/mail/ /etc/sendmail.cf /etc/httpd /etc/samba/ \ /etc/bind /etc/named /etc/postfix /etc/postgresql /etc/mysql /etc/qmail \ /etc/courier /etc/cups /etc/dhcp /etc/dhcp3 \ /etc/ssh/ssh*conf /etc/xinetd* \ /etc/ldap /etc/openldap /etc/squid" # Debian-specific configuration files FILE_LIST_ETC="$FILE_LIST_ETC /etc/apt /etc/dpkg \ /etc/exim4/ /etc/exim/ \ /etc/apache*/*conf /etc/php4/apache/php.ini" if [ "$CRACK_PWD" = "yes" ] ; then # Copy shadow and password files FILE_LIST_ETC="$FILE_LIST_ETC /etc/passwd /etc/shadow" else # Only copy the passwd files if shadows are used [ -e /etc/shadow ] && FILE_LIST_ETC="$FILE_LIST_ETC /etc/passwd" fi OLD_UMASK=`umask` OLD_ENV=`env` umask 077 set -o noclobber > "$OUTFILE" || exit 1 > "$OUTFILE.Z" || exit 1 if [ -e "$AUDIT_DIR" ]; then mv "$AUDIT_DIR" "$AUDIT_DIR".old fi mkdir "$AUDIT_DIR" || exit 1 cd "$AUDIT_DIR" || exit 1 set +o noclobber [ "`id -u`" -ne 0 ] && echo "Not running as root, some information might not be extracted" # Extract information from the system tar cf etc.tar $FILE_LIST_ETC 2> /dev/null tar cf var.tar /var/yp /var/nis/data /var/spool/cron 2> /dev/null # NOTE: If using automounter this will fail (should abort before) tar cf home.tar /.*bash* /.netrc /.rhosts /.log* /.*csh* /.Xa* \ /.prof* /home/*/.*bash* /home/*/.netrc /home/*/.rhosts \ /home/*/.log* /home/*/.*csh* /home/*/.Xa* /home/*/.prof* \ /root/.*bash* /root/.netrc /root/.rhosts /root/.log* /root/.*csh* \ /root/.Xa* /root/.prof* 2> /dev/null # Process accounting if [ -d /var/log/sa ] ; then tar cf system-act.tar /var/log/sa/ 2>/dev/null fi # Find stuff that might be a problem to the system # Setuid files and All-Writable stuff if [ "$FULL_fs" = "yes" ] ; then DIRS="/" else # Finding in the whole filesystem maybe too much # restrict to a specific set of directories DIRS="/bin /usr /etc /dev /var /boot /lib /opt /sbin /tmp" fi for dir in $DIRS; do find $dir \( -perm -4000 -o -perm -2000 -o -perm -1000 \) -type f \ -exec /bin/ls -ld {} \; >> find-s_id.out 2>&1 find $dir -perm -2 '!' -type l -exec /bin/ls -ld {} \; >> find-write.out 2>&1 done # List directories /bin/ls -al / > ls-root.out 2>&1 # Configuration files /bin/ls -alR /etc > ls-etc.out 2>&1 # Devices /bin/ls -alRL /dev > ls-dev.out 2>&1 # Temporary files /bin/ls -al /tmp > ls-tmp.out 2>&1 /bin/ls -al /var/tmp > ls-var-tmp.out 2>&1 # Log and Spool files /bin/ls -alR /var/log /var/adm /var/spool /var/spool/mail > ls-var.out 2>&1 # Extra software /bin/ls -alR /opt /software /usr/local > ls-software.out 2>&1 # Home directories (comment if this is automouted) /bin/ls -alRL /home > ls-home.out 2>&1 # Kernel files /bin/ls -alR /vmlin* /boot > ls-boot.out 2>&1 # Loaded modules lsmod >lsmod.out 2>&1 # Mounted file systems mount > mount.out 2>&1 # RPC services rpcinfo -p > rpcinfo.out 2>&1 # Exported filesystems [ -n "`which showmount`" ] && showmount -e >exports.out 2>&1 # Processes ps auxwww > ps.out 2>&1 # Patches dpkg --get-selections "*" > dpkg.out 2>&1 # Debsums which debsums >/dev/null 2>&1 && debsums >debsums.out 2>&1 # System information # Machine name uname -a > uname.out 2>&1 # Machine OS and version cat /etc/*version* >> uname.out 2>&1 # Users connected to the system last -25 > last_25.out 2>&1 last -5 root > last_root.out 2>&1 # X access controls xhost > xhost.out 2>&1 xauth list >xauth.out 2>&1 # History of user running the audit history > history.out 2>&1 # Open listeners netstat -an > netstat-an.out 2>&1 # Routing netstat -rn > netstat-rn.out 2>&1 # Process-sockets which lsof >/dev/null 2>&1 && lsof -n >lsof.out 2>&1 # Arp information arp -n >arp.out 2>&1 # Environment and Umask echo "$OLD_ENV" > env.out 2>&1 echo "$OLD_UMASK" > umask.out 2>&1 # Disk df -kl > df-local.out 2>&1 # All disks df -k > df.out 2>&1 # IP Filtering # For 2.4 kernels iptables -nL >iptables.out 2>&1 # For 2.2 kernels ipchains -L -n -v > ipchains.out 2>&1 # For older kernels ipfwadm -L -n -v > ipfwadm.out 2>&1 # Kernel parameters (not all might apply) # Note: This is maybe too exaggerated (might it introduce issues? (jfs) # TCP/IP parameters # All the parameters (this might be risky...) for i in `find /proc/sys/net/ipv4 -type f`; do [ "$i" != "/proc/sys/net/ipv4/route/flush" ] && { echo -n "$i: " >> proc.out cat $i >> proc.out 2>&1 echo "" >> proc.out } done # Safer: #for i icmp_echo_ignore_broadcasts icmp_echo_ignore_all tcp_syncookies \ # ip_always_defrag ip_forward ; do # echo -n "/proc/sys/net/ipv4/$i: " >> proc.out # cat /proc/sys/net/ipv4/$i >> proc.out # echo "" >> proc.out #done #for i in /proc/sys/net/ipv4/conf/*; do # for j in accept_redirects accept_source_route rp_filter bootp_relay \ # mc_forwarding log_martians proxy_arp secure_redirects; do # echo -n "$i/$j: " >> proc.out # cat $i/$j >> proc.out # echo "" >> proc.out # done #done # Finish up, compress the output cd /tmp COMPRESS=1 tar cf "$OUTFILE" "$AUDIT_NAME" if [ -n "`which compress`" ] ; then compress -c "$OUTFILE" >> "$OUTFILE".Z elif [ -n "`which gzip`" ] ; then gzip -c "$OUTFILE" >> "$OUTFILE".gz COMPRESS=2 else COMPRESS=0 fi if [ "$COMPRESS" -eq 1 ] ; then /bin/rm -f "$OUTFILE" echo echo -n "$OUTFILE.Z is finished" elif [ "$COMPRESS" -eq 2 ] ; then /bin/rm -f "$OUTFILE" echo echo "$OUTFILE.gz is finished" else echo echo "$OUTFILE is finished" fi echo ", you may delete '$AUDIT_DIR' now." exit 0tiger-3.2.3/audit/audit_hpux10.sh0000644000175000017500000001106210241364024015230 0ustar pacopaco#!/bin/sh # # Audit HP-UX 9.x/10.x Script v1.1 (c) 2001 by Marc Heuse # # 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 of the License, 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. # # 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 # # You can also find a copy of the GNU General Public License at # http://www.gnu.org/licenses/licenses.html#TOCLGPL # # v1.2 Javier Fernandez-Sanguino # Changes by Javier Fernandez-Sanguino: # - Extract more information from /etc # - Extract information from TCB # - Extract crontabs from /usr # PATH="/sbin:/usr/sbin:/bin:/usr/bin:/usr/lbin:$PATH" HOSTNAME=`hostname` AUDIT_NAME="AUDIT-$HOSTNAME" AUDIT_DIR="/tmp/$AUDIT_NAME" OUTFILE="$AUDIT_DIR.tar" # ----- Begin local customisation ----------------- # Set this yes if you want to extract password information CRACK_PWD="yes" # ----- End local customisation ------------------- [ "`id`" -ne 0 ] && echo "Not running as root, some information might not be extracted" FILE_LIST_ETC="/etc/aliases /etc/sendmail.cf /etc/passwd /etc/group \ /etc/cron* /etc/export* /etc/profile /etc/login* /etc/inittab\ /etc/*ftp* /etc/host* /etc/inittab /etc/issue* /etc/motd /etc/csh* \ /etc/shells /etc/securetty /etc/sock* /etc/yp* /etc/SnmpAgent.d/ \ /etc/ntp.conf /etc/fstab /etc/mail /etc/pam.conf" if [ "$CRACK_PWD" = "yes" ] ; then FILE_LIST_ETC="$FILE_LIST_ETC /etc/shadow " fi OLD_UMASK=`umask` OLD_ENV=`env` umask 077 set -o noclobber > "$OUTFILE" || exit 1 > "$OUTFILE.Z" || exit 1 if [ -e "$AUDIT_DIR" ]; then mv "$AUDIT_DIR" "$AUDIT_DIR".old fi mkdir "$AUDIT_DIR" || exit 1 cd "$AUDIT_DIR" || exit 1 set +o noclobber # Extract information from the system tar cf etc.tar /tcb /etc/*conf* /etc/*cfg* /etc/*.d /etc/rc* /etc/httpd \ /etc/default /etc/security /sbin/init.d /etc/rc* /sbin/rc* /etc/ssh/ssh*conf* \ /etc/mail/sendmail.cf $FILE_LIST_ETC 2> /dev/null tar cf var.tar /var/yp /var/nis/data /var/spool/cron /var/adm/cron 2> /dev/null tar cf usr.tar /usr/spool/cron 2> /dev/null tar cf tcb.tar /tcb/files 2> /dev/null tar cf home.tar /.*bash* /.netrc /.rhosts /.log* /.*csh* /.Xa* \ /.prof* /home/*/.*bash* /home/*/.netrc /home/*/.rhosts \ /home/*/.log* /home/*/.*csh* /home/*/.Xa* /home/*/.prof* \ /root/.*bash* /root/.netrc /root/.rhosts /root/.log* /root/.*csh* \ /root/.Xa* /root/.prof* 2> /dev/null # Find stuff that might be a problem to the system # Setuid files find / \( -perm -4000 -o -perm -2000 -o -perm -1000 \) -type f \ -exec /bin/ls -ld {} \; > find-s_id.out # All-Writable stuff find / -perm -2 '!' -type l -exec /bin/ls -ld {} \; > find-write.out # List directories /bin/ls -al / > ls-root.out /bin/ls -alR /etc > ls-etc.out /bin/ls -alRL /dev > ls-dev.out /bin/ls -al /tmp > ls-tmp.out /bin/ls -alR /var/adm /var/spool /var/mail > ls-var.out /bin/ls -lL /dev/*rmt* /dev/*floppy* /dev/fd0* /dev/*audio* /dev/*mix* > ls-dev-spec.out 2> /dev/null /bin/ls -alR /opt /software /usr/local > ls-software.out 2> /dev/null # Mounted file systems mount > mount.out # RPC programs rpcinfo -p > rpcinfo.out 2>/dev/null # Processes ps -ef > ps.out # Patches swlist > patch.out 2>/dev/null # System information uname -a > uname.out getprivgrp > hpux-getprivgrp.out 2>/dev/null # Users connected to the system last -25 > last_25.out last -5 root > last_root.out # History of user running the audit history > history.out # Environment and Umask echo "$OLD_ENV" > env.out echo "$OLD_UMASK" > umask.out # Open listeners netstat -an > netstat-an.out # Process-sockets which lsof >/dev/null 2>&1 && lsof -n >lsof.out # Routing netstat -rn > netstat-rn.out # Trusted mode getprdef -r >getprdef.out 2>/dev/null getprdef -m umaxlntr >>getprdef.out 2>/dev/null echo "$OLD_ENV" > env.out echo "$OLD_UMASK" > umask.out #TODO: #netune parameters! cd /tmp tar cf "$OUTFILE" "$AUDIT_NAME" compress -c "$OUTFILE" >> "$OUTFILE".Z /bin/rm -f "$OUTFILE" echo echo "$OUTFILE".Z is finished, you may delete "$AUDIT_DIR" now. tiger-3.2.3/audit/audit_hpux11.sh0000644000175000017500000001312010241364024015226 0ustar pacopaco#!/bin/sh # # Audit HP-UX Script v1.1 (c) 2001 by Marc Heuse # # 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 of the License, 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. # # 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 # # You can also find a copy of the GNU General Public License at # http://www.gnu.org/licenses/licenses.html#TOCLGPL # # v1.2 Javier Fernandez-Sanguino # Changes by Javier Fernandez-Sanguino # - Extract more information from /etc # - Extract information from TCB # - Extract crontabs from /usr # - Extract additional ndd parameters PATH="/sbin:/usr/sbin:/bin:/usr/bin:/usr/lbin:$PATH" HOSTNAME=`hostname` AUDIT_NAME="AUDIT-$HOSTNAME" AUDIT_DIR="/tmp/$AUDIT_NAME" OUTFILE="$AUDIT_DIR.tar" # ----- Begin local customisation ----------------- # Set this yes if you want to extract password information CRACK_PWD="yes" # ----- End local customisation ------------------- [ "`id`" -ne 0 ] && echo "Not running as root, some information might not be extracted" FILE_LIST_ETC="/etc/aliases /etc/sendmail.cf /etc/passwd /etc/group \ /etc/cron* /etc/export* /etc/profile /etc/login* /etc/inittab\ /etc/*ftp* /etc/host* /etc/inittab /etc/issue* /etc/motd /etc/csh* \ /etc/shells /etc/securetty /etc/sock* /etc/yp* /etc/SnmpAgent.d/ \ /etc/ntp.conf /etc/fstab /etc/mail /etc/pam.conf" if [ "$CRACK_PWD" = "yes" ] ; then FILE_LIST_ETC="$FILE_LIST_ETC /etc/shadow " fi OLD_UMASK=`umask` OLD_ENV=`env` umask 077 set -o noclobber > "$OUTFILE" || exit 1 > "$OUTFILE.Z" || exit 1 if [ -e "$AUDIT_DIR" ]; then mv "$AUDIT_DIR" "$AUDIT_DIR".old fi mkdir "$AUDIT_DIR" || exit 1 cd "$AUDIT_DIR" || exit 1 set +o noclobber # Extract information from the system tar cf etc.tar /tcb /etc/*conf* /etc/*cfg* /etc/*.d /etc/rc* /etc/httpd \ /etc/default /etc/security /sbin/init.d /etc/rc* /sbin/rc* /etc/ssh/ssh*conf* \ /etc/mail/sendmail.cf $FILE_LIST_ETC 2> /dev/null tar cf var.tar /var/yp /var/nis/data /var/spool/cron /var/adm/cron 2> /dev/null tar cf usr.tar /usr/spool/cron 2> /dev/null tar cf tcb.tar /tcb/files 2> /dev/null tar cf home.tar /.*bash* /.netrc /.rhosts /.log* /.*csh* /.Xa* \ /.prof* /home/*/.*bash* /home/*/.netrc /home/*/.rhosts \ /home/*/.log* /home/*/.*csh* /home/*/.Xa* /home/*/.prof* \ /root/.*bash* /root/.netrc /root/.rhosts /root/.log* /root/.*csh* \ /root/.Xa* /root/.prof* 2> /dev/null # Find stuff that might be a problem to the system # Setuid files find / \( -perm -4000 -o -perm -2000 -o -perm -1000 \) -type f \ -exec /bin/ls -ld {} \; > find-s_id.out # All-Writable stuff find / -perm -2 '!' -type l -exec /bin/ls -ld {} \; > find-write.out # List directories /bin/ls -al / > ls-root.out /bin/ls -alR /etc > ls-etc.out /bin/ls -alRL /dev > ls-dev.out /bin/ls -al /tmp > ls-tmp.out /bin/ls -alR /var/adm /var/spool /var/mail > ls-var.out /bin/ls -lL /dev/*rmt* /dev/*floppy* /dev/fd0* /dev/*audio* /dev/*mix* > ls-dev-spec.out 2> /dev/null /bin/ls -alR /opt /software /usr/local > ls-software.out 2> /dev/null # Mounted file systems mount > mount.out # RPC programs rpcinfo -p > rpcinfo.out 2>/dev/null # Processes ps -ef > ps.out # Patches swlist -l patch > patch.out 2>/dev/null # System information uname -a > uname.out getprivgrp > hpux-getprivgrp.out 2>/dev/null # Users connected to the system last -25 > last_25.out last -5 root > last_root.out # History of user running the audit history > history.out # Environment and Umask echo "$OLD_ENV" > env.out echo "$OLD_UMASK" > umask.out # Open listeners netstat -an > netstat-an.out # Process-sockets which lsof >/dev/null 2>&1 && lsof -n >lsof.out # Routing netstat -rn > netstat-rn.out # Process-sockets [ -n "`which lsof`" ] && lsof -n >lsof.out # Trusted mode getprdef -r >getprdef.out 2>/dev/null getprdef -m umaxlntr >>getprdef.out 2>/dev/null echo "$OLD_ENV" > env.out echo "$OLD_UMASK" > umask.out # Ndd parameters for i in ip_forwarding ip_forward_src_routed ip_forward_directed_broadcasts \ ip_respond_to_timestamp_broadcast ip_respond_to_timestamp \ ip_respond_to_echo_broadcast ip_respond_to_echo_broadcast \ ip_respond_to_address_mask_broadcast ip_pmtu_strategy \ ip_ignore_redirect ip_send_redirects ip_send_source_quench \ ip_ire_flush_interval ip_strict_dst_multihoming \ ip_ire_gw_probe ip_check_subnet_addr ip_ire_gw_probe_interval ; do echo "$i: " >> ndd.out ndd /dev/ip "$i" >> ndd.out 2>/dev/null echo "" >> ndd.out done for i in tcp_syn_rcvd_max tcp_conn_request_max tcp_text_in_resets \ tcp_keepalive_interval tcp_keepalive_detached_interval \ tcp_time_wait_interval; do echo "$i: " >> ndd.out ndd /dev/tcp "$i" >> ndd.out 2>/dev/null echo "" >> ndd.out done for i in arp_cleanup_interval udp_def_ttl; do echo "$i: " >> ndd.out ndd /dev/arp "$i" >> ndd.out 2>/dev/null echo "" >> ndd.out done cd /tmp tar cf "$OUTFILE" "$AUDIT_NAME" compress -c "$OUTFILE" >> "$OUTFILE".Z /bin/rm -f "$OUTFILE" echo echo "$OUTFILE".Z is finished, you may delete "$AUDIT_DIR" now. tiger-3.2.3/audit/audit_nokia.sh0000644000175000017500000000514410241364024015210 0ustar pacopaco#!/bin/sh # # Audit Nokia Boxes Script v1.3 (c) 2001 by Marc Heuse # | | http://www.suse.de/~marc/audit/ # # 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 of the License, 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. # # 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 # # You can also find a copy of the GNU General Public License at # http://www.gnu.org/licenses/licenses.html#TOCLGPL # PATH="/sbin:/usr/sbin:/bin:/usr/bin:$PATH" HOSTNAME=`hostname` AUDIT_NAME="AUDIT-$HOSTNAME" AUDIT_DIR="/tmp/$AUDIT_NAME" OUTFILE="$AUDIT_DIR.tar" OLD_UMASK=`umask` OLD_ENV=`env` umask 077 #set -o noclobber # not supported > "$OUTFILE" || exit 1 > "$OUTFILE.Z" || exit 1 #set +o noclobber if [ -e "$AUDIT_DIR" ]; then mv "$AUDIT_DIR" "$AUDIT_DIR".old fi mkdir "$AUDIT_DIR" || exit 1 cd "$AUDIT_DIR" || exit 1 tar cf etc.tar /var/etc tar cf conf.tar /config /opt/Fire*/conf /opt/ISS/Real*/*policy /opt/cgi-bin/.h* \ /opt/NETA*/usr/local/etc/mgmt/*txt /opt/NETA*/usr/local/etc/mgmt/*conf find / \( -perm -4000 -o -perm -2000 \) -type f \ -exec /bin/ls -ld {} \; > find-s_id.out find / -perm -2 '!' -type l -exec /bin/ls -ld {} \; > find-write.out /bin/ls -alRL /etc > ls-etc.out /bin/ls -alRL /dev > ls-dev.out /bin/ls -al /tmp /opt/tmp > ls-tmp.out /bin/ls -alR /var/log /var/adm /var/spool /var/spool/mail > ls-var.out 2> /dev/null /bin/ls -lL /dev/*rmt* /dev/*floppy* /dev/fd0* /dev/*audio* /dev/*mix* > ls-dev-spec.out 2> /dev/null /bin/ls -alR /opt /software /usr/local > ls-software.out 2> /dev/null mount > mount.out rpcinfo -p > rpcinfo.out 2>/dev/null ps auxwww > ps.out uname -a > uname.out last -25 > last_25.out last -5 root > last_root.out history > history.out xhost > xhost.out 2> /dev/null netstat -an > netstat-an.out netstat -rn > netstat-rn.out echo "$OLD_ENV" > env.out echo "$OLD_UMASK" > umask.out cd /tmp tar cf "$OUTFILE" "$AUDIT_NAME" compress -c "$OUTFILE" >> "$OUTFILE".Z /bin/rm -f "$OUTFILE" echo echo "$OUTFILE".Z is finished, you may delete "$AUDIT_DIR" now. tiger-3.2.3/audit/audit_oracle.sql0000644000175000017500000000651410241364024015543 0ustar pacopaco# Oracle Audit Script v1.0 (c) 2001-2002 by Marc Heuse - marc@suse.de - License: GPL v2 - http://www.suse.de/~marc/audit/ # # 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 of the License, 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. # # 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 # # You can also find a copy of the GNU General Public License at # http://www.gnu.org/licenses/licenses.html#TOCLGPL # # Use this script like this: connect internal; @audit_oracle.sql; # This script was designed in a way to get all necessary data for a security review, however preventing doubles. # Running this script costs pretty much performance, so execute it off-peak hours in a production environment! # Increase the linesize to prevent line breaks set linesize 1000 # dump oracle parameters, remote_* + *os_auth* + audit_trail are important spool parameter.log; show parameter; spool off; # dump all instances spool v_instance.log; select instance_name, host_name, version, startup_time, status, archiver, database_status from v$instance; spool off; # dump all datafiles and their location spool v_datafile.log; select file#, ts#, status, enabled, bytes, name, plugged_in from v$datafile; spool off; # dump log/redolog locations spool v_logfile.log; select * from v$logfile; spool off; # dump all object privileges associated to users spool privileges_objects.log; select u.username, r.granted_role, t.table_name, t.privilege, r.admin_option, r.default_role from dba_tab_privs t, dba_role_privs r, dba_users u where (t.grantee=r.granted_role AND r.grantee=u.username AND u.account_status='OPEN') order by u.username, r.granted_role, t.privilege; spool off; # dump all system privileges associated to users spool privileges_system.log; select u.username, r.granted_role, s.privilege, s.admin_option, r.default_role from dba_sys_privs s, dba_role_privs r, dba_users u where (s.grantee=r.granted_role AND r.grantee=u.username AND u.account_status='OPEN') order by u.username, r.granted_role, s.privilege; spool off; # dump all role names, password protected? spool dba_roles.log; select * from dba_roles; spool off; # dump object privileges for public spool dba_tab_privs.log; select * from dba_tab_privs where grantee='PUBLIC'; spool off; # dump user data spool dba_users.log; select * from dba_users; spool off; # dump user profiles for password/access management spool dba_profiles.log; select * from dba_profiles order by profile; spool off; # try default accounts here: # system: sys/change_on_install ; system/manager ; sap/sapr3 # examples: scott/tiger ; adams/wood ; blake/paper ; clark/cloth ; jones/steel # for all others try same password as username select username from dba_users; tiger-3.2.3/audit/audit_redhat.sh0000644000175000017500000001724210241364024015360 0ustar pacopaco#!/bin/sh # # Audit Red Hat Linux Script v1.1 (c) 2005 by Javier Fernandez-Sanguino # based on # Audit SuSE Linux Script v1.1 (c) 2001 by Marc Heuse # # 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 of the License, 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. # # 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 # # You can also find a copy of the GNU General Public License at # http://www.gnu.org/licenses/licenses.html#TOCLGPL # PATH="/sbin:/usr/sbin:/bin:/usr/bin:$PATH" HOSTNAME=`hostname` AUDIT_NAME="AUDIT-$HOSTNAME" AUDIT_DIR="/tmp/$AUDIT_NAME" OUTFILE="$AUDIT_DIR.tar" # ----- Begin local customisation ----------------- # Set this yes if you want to extract password information CRACK_PWD="yes" FULL_FS="yes" # ----- End local customisation ------------------- FILE_LIST_ETC="/etc/aliases /etc/group \ /etc/cron* /etc/export* /etc/profile /etc/login* \ /etc/*ftp* /etc/host* /etc/inittab /etc/issue* /etc/motd /etc/csh* \ /etc/shells /etc/securetty /etc/sock* /etc/yp* /etc/fstab \ /etc/snmp/ /etc/hosts* /etc/sudoers /etc/securetty /etc/security/ /etc/default/ /sbin/init.d /etc/pam.d/* /etc/cron* \ /etc/*conf* /etc/*cfg* /etc/*.d /etc/rc* \ /usr/local/etc/ " # Service specific files # This list does not attempt to capture all, just the most common files: # Notice that many service files will be captured with the previous "/etc/*conf*" above FILE_LIST_ETC="$FILE_LIST_ETC /etc/mail/ /etc/sendmail.cf /etc/httpd /etc/samba/ \ /etc/bind /etc/named /etc/postfix /etc/postgresql /etc/mysql /etc/qmail \ /etc/courier /etc/cups /etc/dhcp /etc/dhcp3 \ /etc/ssh/ssh*conf /etc/xinetd* \ /etc/ldap /etc/openldap /etc/squid" # RedHat-specific configuration files FILE_LIST_ETC="$FILE_LIST_ETC /etc/rpm /etc/up2date/ /etc/sysconfig" if [ "$CRACK_PWD" = "yes" ] ; then # Copy shadow and password files FILE_LIST_ETC="$FILE_LIST_ETC /etc/passwd /etc/shadow" else # Only copy the passwd files if shadows are used [ -e /etc/shadow ] && FILE_LIST_ETC="$FILE_LIST_ETC /etc/passwd" fi OLD_UMASK=`umask` OLD_ENV=`env` umask 077 set -o noclobber > "$OUTFILE" || exit 1 > "$OUTFILE.Z" || exit 1 if [ -e "$AUDIT_DIR" ]; then mv "$AUDIT_DIR" "$AUDIT_DIR".old fi mkdir "$AUDIT_DIR" || exit 1 cd "$AUDIT_DIR" || exit 1 set +o noclobber [ "`id -u`" -ne 0 ] && echo "Not running as root, some information might not be extracted" # Extract information from the system tar cf etc.tar $FILE_LIST_ETC 2> /dev/null tar cf var.tar /var/yp /var/nis/data /var/spool/cron 2> /dev/null # NOTE: If using automounter this will fail (should abort before) tar cf home.tar /.*bash* /.netrc /.rhosts /.log* /.*csh* /.Xa* \ /.prof* /home/*/.*bash* /home/*/.netrc /home/*/.rhosts \ /home/*/.log* /home/*/.*csh* /home/*/.Xa* /home/*/.prof* \ /root/.*bash* /root/.netrc /root/.rhosts /root/.log* /root/.*csh* \ /root/.Xa* /root/.prof* 2> /dev/null # Process accounting if [ -d /var/log/sa ] ; then tar cf system-act.tar /var/log/sa/ 2>/dev/null fi # Find stuff that might be a problem to the system # Setuid files and All-Writable stuff if [ "$FULL_fs" = "yes" ] ; then DIRS="/" else # Finding in the whole filesystem maybe too much # restrict to a specific set of directories DIRS="/bin /usr /etc /dev /var /boot /lib /opt /sbin /tmp" fi for dir in $DIRS; do find $dir \( -perm -4000 -o -perm -2000 -o -perm -1000 \) -type f \ -exec /bin/ls -ld {} \; >> find-s_id.out 2>&1 find $dir -perm -2 '!' -type l -exec /bin/ls -ld {} \; >> find-write.out 2>&1 done # List directories /bin/ls -al / > ls-root.out 2>&1 # Configuration files /bin/ls -alR /etc > ls-etc.out 2>&1 # Devices /bin/ls -alRL /dev > ls-dev.out 2>&1 # Temporary files /bin/ls -al /tmp > ls-tmp.out 2>&1 /bin/ls -al /var/tmp > ls-var-tmp.out 2>&1 # Log and Spool files /bin/ls -alR /var/log /var/adm /var/spool /var/spool/mail > ls-var.out 2>&1 # Extra software /bin/ls -alR /opt /software /usr/local > ls-software.out 2>&1 # Home directories (comment if this is automouted) /bin/ls -alRL /home > ls-home.out 2>&1 # Kernel files /bin/ls -alR /vmlin* /boot > ls-boot.out 2>&1 # Loaded modules lsmod >lsmod.out 2>&1 # Mounted file systems mount > mount.out 2>&1 # RPC services rpcinfo -p > rpcinfo.out 2>&1 # Exported filesystems which showmount >/dev/null 2>&1 && showmount -e >exports.out 2>&1 # Processes ps auxwww > ps.out 2>&1 # List of packages rpm -qa > rpm.out 2>&1 # Patches available (needs to be registered) if [ -f /etc/sysconfig/rhn/rhn_register ] then up2date -l > up2date.out 2>&1 else echo "This server is not registered in RedHat Network, check patches manually" > up2date.out fi # Package status rpm -Va >rpm-verify.out 2>&1 # Chkconfig services chkconfig --list >chkconfig.out 2>&1 # System information # Machine name uname -a > uname.out 2>&1 # Machine OS and version cat /etc/*release* >> uname.out 2>&1 # Users connected to the system last -25 > last_25.out 2>&1 last -5 root > last_root.out 2>&1 # X access controls xhost > xhost.out 2>&1 xauth list >xauth.out 2>&1 # History of user running the audit history > history.out 2>&1 # Open listeners netstat -an > netstat-an.out 2>&1 # Routing netstat -rn > netstat-rn.out 2>&1 # Process-sockets which lsof >/dev/null 2>&1 && lsof -n >lsof.out 2>&1 # Arp information arp -n >arp.out 2>&1 # Environment and Umask echo "$OLD_ENV" > env.out echo "$OLD_UMASK" > umask.out # Disk df -kl > df-local.out 2>&1 # All disks df -k > df.out 2>&1 # IP Filtering # For 2.4 kernels iptables -nL >iptables.out 2>&1 # For 2.2 kernels ipchains -L -n -v > ipchains.out 2>&1 # For older kernels ipfwadm -L -n -v > ipfwadm.out 2>&1 # Kernel parameters (not all might apply) # Note: This is maybe too exaggerated (might it introduce issues? (jfs) # TCP/IP parameters for i in `find /proc/sys/net/ipv4 -type f`; do [ "$i" != "/proc/sys/net/ipv4/route/flush" ] && { echo -n "$i: " >> proc.out cat $i >> proc.out 2>&1 echo "" >> proc.out } done #for i icmp_echo_ignore_broadcasts icmp_echo_ignore_all tcp_syncookies \ # ip_always_defrag ip_forward ; do # echo -n "/proc/sys/net/ipv4/$i: " >> proc.out # cat /proc/sys/net/ipv4/$i >> proc.out 2>&1 # echo "" >> proc.out #done #for i in /proc/sys/net/ipv4/conf/*; do # for j in accept_redirects accept_source_route rp_filter bootp_relay \ # mc_forwarding log_martians proxy_arp secure_redirects; do # echo -n "$i/$j: " >> proc.out # cat $i/$j >> proc.out 2>&1 # echo "" >> proc.out # done #done # Finish up, compress the output cd /tmp COMPRESS=1 tar cf "$OUTFILE" "$AUDIT_NAME" if [ -n "`which compress`" ] ; then compress -c "$OUTFILE" >> "$OUTFILE".Z elif [ -n "`which gzip`" ] ; then compress -c "$OUTFILE" >> "$OUTFILE".gz COMPRESS=2 else COMPRESS=0 fi if [ "$COMPRESS" -eq 1 ] ; then /bin/rm -f "$OUTFILE" echo echo -n "$OUTFILE.Z is finished" elif [ "$COMPRESS" -eq 2 ] ; then /bin/rm -f "$OUTFILE" echo echo "$OUTFILE.gz is finished" else echo echo "$OUTFILE is finished" fi echo ", you may delete '$AUDIT_DIR' now." exit 0 tiger-3.2.3/audit/audit_slackware.sh0000644000175000017500000002270010241364024016060 0ustar pacopaco#!/bin/bash -debug # # Audit Slackware Linux Script v0.11 (c) 2004 Jeffrey Denton # based on # Audit SuSE Linux Script v0.9 (c) 2001 by Marc Heuse # # # 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 of the License, 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. # # 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 # # You can also find a copy of the GNU General Public License at # http://www.gnu.org/licenses/licenses.html#TOCLGPL # # Changelog: # 24 February 04 - v0.11 # Modified by Jeffrey Denton for Slackware Linux. # PATH="/sbin:/usr/sbin:/bin:/usr/bin" HOSTNAME=$(/bin/hostname) AUDIT_DIR="${HOSTNAME}_audit" OUTFILE="${HOSTNAME}_audit.tar.gz" if [ "$(/bin/echo $USER)" != "root" ]; then /bin/echo "You must be root." && exit 1 fi umask 077 if [ -e ${AUDIT_DIR} ]; then /bin/mv ${AUDIT_DIR} ${AUDIT_DIR}.old || exit 1 fi /bin/mkdir ${AUDIT_DIR} || exit 1 cd ${AUDIT_DIR} || exit 1 COMMAND_LIST="/usr/bin/chfn /usr/bin/chsh /usr/sbin/crond /usr/bin/crontab \ /bin/du /usr/bin/find /sbin/ifconfig /usr/sbin/in.fingerd /usr/sbin/in.rshd \ /usr/sbin/inetd /bin/killall /sbin/killall5 /bin/login /bin/ls \ /bin/netstat /usr/bin/passwd /bin/ps /usr/bin/pstree /usr/sbin/sshd \ /usr/sbin/syslogd /usr/sbin/tcpd /usr/bin/top" ETC_LIST="/etc/apache /etc/at* /etc/*conf* /etc/csh* /etc/default /etc/dhc* \ /etc/export* /etc/fstab /etc/*ftp* /etc/X11/gdm/gdm.conf /etc/group \ /etc/gshadow /etc/host* /etc/identd* /etc/inetd.conf /etc/inittab \ /etc/issue* /etc/ld* /etc/lilo.conf /etc/limits /etc/login* /etc/mail* \ /etc/modules.conf /etc/motd /etc/named* /etc/orbitrc /etc/passwd \ /etc/porttime /etc/ppp /etc/profile* /etc/resolv.conf /etc/rc.d \ /etc/securetty /etc/sendmail.cf /etc/shadow /etc/shells /etc/snort* /etc/ssh \ /etc/ssl /etc/su* /etc/syslog.conf /etc/tripwire /etc/X11/xdm/X* \ /etc/X11/xdm/xdm-config /etc/yp*" HOME_LIST="/home/*/.*bash* /home/*/.*csh* /home/*/dead.letter /home/*/.gnupg \ /home/*/.log* /home/*/.netrc /home/*/.prof* /home/*/.rhosts /home/*/.ssh \ /home/*/.Xa* /root/.*bash* /root/.*csh* /root/dead.letter /root/.gnupg \ /root/.log* /root/.netrc /root/.prof* /root/.rhosts /root/.ssh /root/.Xa* \ /home/*/.shosts" LOG_LIST="access_log apache/access_log boot.log cron debug error_log \ apache/error_log mail messages proftpd.log secure sulog syslog xferlog" VAR_LIST="/var/lib/apache/cgi-bin /var/lib/apache/conf /var/spool/cron \ /var/tmp /var/www/cgi-bin /var/yp" # Make copies /bin/cp -Ppf ${COMMAND_LIST} ./ 2> /dev/null /bin/cp -PpfR ${ETC_LIST} ./ 2> /dev/null /bin/cp -PpfR ${HOME_LIST} ./ 2> /dev/null /bin/cp -PpfR ${VAR_LIST} ./ 2> /dev/null # Various checks /bin/cat > file_stripped.out <> file_stripped.out 2>&1 /usr/bin/file ${i} | /usr/bin/egrep "not stripped" >> file_stripped.out 2>&1 done # md5sum doesn't like to do globbing =( for i in ${COMMAND_LIST} ${ETC_LIST} ${HOME_LIST} ${VAR_LIST}; do if [ -f ${i} ]; then /usr/bin/md5sum ${i} >> md5sum.out 2>&1 fi done /bin/cat > strings_filelist.out <> strings_filelist.out 2>&1 for j in `/usr/bin/strings ${i} | /usr/bin/egrep "^/"`; do if [ -f ${j} ]; then /bin/echo ${j} >> strings_filelist.out 2>&1 fi done done /bin/cat > strings_md5sum.out <> strings_md5sum.out 2>&1 # /usr/bin/strings ${i} | /usr/bin/egrep "([0-9a-z]{32})" >> strings_md5sum.out 2>&1 #done /usr/bin/strings ${i} | /usr/bin/egrep -i "(^|[^0-9a-f])[0-9a-f]{32}($|[^0-9a-f])" >> strings_md5sum.out 2>&1 done for i in ${COMMAND_LIST}; do /bin/echo -e "\n Command: ${i}" >> ldd.out 2&>1 /usr/bin/ldd ${i} >> ldd.out 2&>1 done /bin/cat > strings_promisc.out << EOF NOTE: If \"PROMISC\" is not present for each command, then it is more than likely trojaned. EOF for i in /sbin/ifconfig /bin/netstat; do /bin/echo -n "Command ${i}: " >> strings_promisc.out 2>&1 /usr/bin/strings ${i} | /usr/bin/egrep "PROMISC" >> strings_promisc.out 2>&1 done for i in `/usr/bin/cat /etc/passwd | /usr/bin/awk -F: '{print $1}'`; do /usr/bin/passwd -S $i >> passwd_status.out 2>&1 done for i in `/bin/netstat -ant | /usr/bin/awk '{print $4}' | /usr/bin/awk -F: '{print $2}'`; do /usr/bin/fuser -v -n tcp $i >> fuser.out 2>&1 done for i in `/bin/netstat -ant | /usr/bin/awk '{print $4}' | /usr/bin/awk -F: '{print $2}'`; do /usr/bin/lsof -i :$i >> lsof_ports.out 2>&1 done # List /bin/ls -alR /etc &> ls-etc.out /bin/ls -alRL /dev &> ls-dev.out /bin/ls -al /tmp &> ls-tmp.out /bin/ls -alR /var/log /var/spool/mail &> ls-var.out # Various commands /sbin/arp -a &> arp.out /usr/bin/atq &> atq.out /usr/bin/cat /etc/slackware-version &> uname.out /usr/bin/cat /proc/mount &> mount_proc.out /usr/bin/cat /proc/*/stat | /usr/bin/awk '{print $1,$2}' &> proc_stat.out /usr/bin/env &> env.out /usr/sbin/faillog &> faillog.out /usr/sbin/grpck -r &> grpck.out /sbin/ifconfig -a &> ifconfig.out /sbin/ipchains -nL &> ipchains.out /usr/bin/last -5 root &> last_root.out /usr/bin/last -25 &> last_25.out # lastb and /var/log/btmp must be created first /usr/sbin/lastb &> lastb.out /usr/local/bin/lastcomm &> lastcomm.out /sbin/ldconfig -p &> ldconfig.out /sbin/lsmod &> lsmod.out /usr/bin/lsof &> lsof.out /sbin/mount &> mount.out /bin/netstat -an &> netstat-an.out /bin/netstat -rnee &> netstat-rnee.out /bin/ps auxwww &> ps.out /usr/bin/praliases &> praliases.out /usr/bin/procinfo -a &> procinfo.out /usr/sbin/pwck -r &> pwck.out /sbin/quotacheck -a &> quotacheck.out /usr/sbin/quotastats &> quotastats.out /usr/sbin/rpcinfo -p &> rpcinfo.out /usr/local/sbin/sa &> sa.out /usr/sbin/sfdisk -lVx &> sfdisk.out /usr/bin/socklist &> socklist.out /usr/local/sbin/sxid -kn &> sxid.out for i in ${LOG_LIST}; do /bin/echo -e "\nLogfile: ${i}" >> log.out 2>&1 /usr/bin/tail -n 25 /var/log/${i} >> log.out 2>&1 done /bin/uname -a >> uname.out 2>&1 /usr/bin/uptime &> uptime.out /usr/bin/w &> who.out # Various shell commands alias -p &> alias.out bind -P &> bind-functions.out bind -V &> bind-variables.out enable -a &> enable.out export -p &> export.out shopt &> shopt.out # Proc settings for i in icmp_echo_ignore_broadcasts icmp_echo_ignore_all tcp_syncookies \ ip_always_defrag ; do /bin/echo -n "/proc/sys/net/ipv4/${i}: " >> proc.out 2>&1 /usr/bin/cat /proc/sys/net/ipv4/${i} >> proc.out 2>&1 /bin/echo "" >> proc.out 2>&1 done for i in /proc/sys/net/ipv4/conf/*; do for j in accept_redirects accept_source_route rp_filter bootp_relay \ mc_forwarding log_martians proxy_arp secure_redirects; do /bin/echo -n "${i}/${j}: " >> proc.out 2>&1 /usr/bin/cat ${i}/${j} >> proc.out 2>&1 /bin/echo "" >> proc.out 2>&1 done done # Find # These significantly add to the time it takes for this script to run. # Comment as necessary. /usr/bin/find / \( -perm -4000 -o -perm -2000 \) -type f \ -ls &> find-s_id.out #/usr/bin/find / -perm -2 '!' -type l -ls | egrep -v "dev" &> find-write.out /usr/bin/find / \( -pern -g+w -o -perm -o+w \) -type d -ls &> find-dir-write.out /usr/bin/find / \( -perm -g+w -o -perm -o+w \) -type d -not -perm -a+t \ -ls &> find-not-sticky.out /usr/bin/find / -nouser -o -nogroup -ls &> find-nouser.out /usr/bin/find / -type l -ls | grep "/dev/null" &> find-null.out /usr/bin/find / \( -name "\ *" -o -name ".\ *" -o -name "..?*" \) \ -exec /bin/cp -PpR {} ./odd/ \; /usr/bin/find / -type f -name "*.swp" -exec /bin/cp -Pp {} ./swp/ \; /usr/bin/find / -name core -ls &> core.out /usr/bin/find /dev -type f -ls &> dev-files.out /usr/bin/find / \( -type b -o -type c \) -print | /usr/bin/grep -v '^/dev' \ &> devices.out /usr/bin/find / \( -perm -4000 -o -2000 \) -type f \ -exec file {} \; | grep -v ELF &> suid-scripts.out # Filesystem Integrity Checks if [ -x /usr/sbin/tripwire -o -x /usr/local/sbin/tripwire ]; then tripwire -m c &> twcheck.out fi if [ -x /usr/sbin/aide -o -x /usr/local/sbin/aide ]; then aide --config=/etc/aide.conf &> aide.out fi cd .. /bin/tar zcf ${OUTFILE} ${AUDIT_DIR} 2> /dev/null /bin/rm -rf ${AUDIT_DIR} 2> /dev/null /bin/mv ${AUDIT_DIR}.old ${AUDIT_DIR} 2> /dev/null /bin/echo -e "\nFinished. The output file is called ${OUTFILE}.\n" exit 0 #systemout tiger-3.2.3/audit/audit_solaris.sh0000644000175000017500000001671110241364024015565 0ustar pacopaco#!/usr/bin/ksh # #!/bin/sh <- does not support noclobber mode # # Audit Sun Solaris Script v1.3 (c) 2001 by Marc Heuse # | | http://www.suse.de/~marc/audit/ # # 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 of the License, 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. # # 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 # # You can also find a copy of the GNU General Public License at # http://www.gnu.org/licenses/licenses.html#TOCLGPL # # v1.4 Javier Fernandez-Sanguino # Changes: # - added notes # - added tar of /usr/local/etc (some Solaris packages install there?) # - added additional files for /etc/ (might be interesting) # - added an option to either obtain the passwd files (CRACK_PWD) # - added an option to go through the full filesystem (FULL_FS) or not # # Notes (jfs): This script sometimes core dumps in Solaris 8. It should # be analised to determine where the issue is. # PATH="/sbin:/usr/sbin:/bin:/usr/bin:/usr/ucb:$PATH" HOSTNAME=`hostname` AUDIT_NAME="AUDIT-$HOSTNAME" AUDIT_DIR="/tmp/$AUDIT_NAME" OUTFILE="$AUDIT_DIR.tar" # ----- Begin local customisation ----------------- # Set this yes if you want to extract password information CRACK_PWD="yes" FULL_FS="yes" # ----- End local customisation ------------------- # TODO: This should be checked automatically and abort the script... echo "Warning: if the system is not correctly set up, e.g. automounter \ points are still there, but the automounter service is not running, the \ script might/will hang for the find commands." OLD_UMASK=`umask` OLD_ENV=`env` umask 077 set -o noclobber > "$OUTFILE" || exit 1 > "$OUTFILE.Z" || exit 1 set +o noclobber if [ -e "$AUDIT_DIR" ]; then mv "$AUDIT_DIR" "$AUDIT_DIR".old fi mkdir "$AUDIT_DIR" || exit 1 cd "$AUDIT_DIR" || exit 1 [ "`id -u`" -ne 0 ] && echo "Not running as root, some information might not be extracted" # Extract information from the system tar cf etc.tar /etc/*conf* /etc/*cfg* /etc/*.d /etc/rc* /sbin/rc* \ /etc/default /etc/dfs /etc/inet /etc/security /etc/ssh/ssh*conf* \ /etc/aliases /etc/sendmail.cf /etc/group \ /etc/cron* /etc/export* /etc/profile /etc/login* /etc/.login /etc/logout \ /etc/*ftp* /etc/host* /etc/inittab /etc/issue* /etc/motd /etc/csh* \ /etc/shells /etc/securetty /etc/sock* /etc/system* /etc/yp* /usr/local/etc/* \ /etc/auto* /etc/dumpdates /etc/ethers /etc/vfstab /etc/rmtab /etc/vold.conf \ /etc/pam* /etc/ttydefs /etc/nsswitch.conf /etc/resolv.conf /etc/printers.conf \ /etc/rpcsec /etc/snmp /etc/dmi /etc/dhcp /etc/cron.d /etc/nfs /etc/nfssec.conf \ /etc/mail /etc/apache /etc/rpld.conf /etc/dtconfig /etc/named.conf \ /etc/netgroups /etc/hosts.* /etc/X*hosts /etc/ppp /etc/rpcsec \ /etc/hostname* /etc/netconfig /etc/nodename /etc/defaultrouter /etc/uucp/* 2> /dev/null if [ "$CRACK_PWD" = "yes" ] ; then # Copy shadow and password files tar cf etc-pwd.tar /etc/passwd* /etc/opass* /etc/sha* 2> /dev/null else # Only copy the passwd files if shadows are used [ -e /etc/shadow ] && tar cf etc-pwd.tar /etc/passwd* /etc/opass* 2> /dev/null fi tar cf var.tar /var/yp /var/nis/data /var/spool/cron 2> /dev/null # NOTE: If using automounter this will fail (should abort before) tar cf home.tar /.*bash* /.netrc /.rhosts /.log* /.*csh* /.Xa* \ /.prof* /home/*/.*bash* /home/*/.netrc /home/*/.rhosts \ /home/*/.log* /home/*/.*csh* /home/*/.Xa* /home/*/.prof* \ /root/.*bash* /root/.netrc /root/.rhosts /root/.log* /root/.*csh* \ /root/.Xa* /root/.prof* 2> /dev/null # Find stuff that might be a problem to the system # Setuid files and All-Writable stuff if [ "$FULL_fs" = "yes" ] ; then DIRS="/" else # Finding in the whole filesystem maybe too much # restrict to a specific set of directories DIRS="/bin /usr /etc /dev /var /kernel /lib /opt /sbin /sys /vol /tmp" fi for dir in $DIRS; do find $dir \( -perm -4000 -o -perm -2000 -o -perm -1000 \) -type f \ -exec /bin/ls -ld {} \; >> find-s_id.out 2>&1 find $dir -perm -2 '!' -type l -exec /bin/ls -ld {} \; >> find-write.out 2>&1 done # List directories /bin/ls -al / > ls-root.out 2>&1 /bin/ls -alR /etc > ls-etc.out 2>&1 /bin/ls -alRL /dev /devices > ls-dev.out 2>&1 /bin/ls -al /tmp /var/tmp /usr/tmp > ls-tmp.out 2>&1 /bin/ls -alR /var/log /var/adm /var/spool /var/audit > ls-var.out 2>&1 /bin/ls -lL /dev/*rmt* /dev/*floppy* /dev/fd0* /dev/*audio* /dev/*mix* > ls-dev-spec.out 2>&1 /bin/ls -alR /opt /software /usr/local > ls-software.out 2>&1 # Mounted file systems mount > mount.out 2>&1 # RPC programs rpcinfo -p > rpcinfo.out 2>&1 # Processes ps -elf > ps.out 2>&1 showrev -a > showrev.out 2>&1 # Installed software (through the package system) pkginfo -l > pkginfo.out 2>&1 # Patches patchadd -p > patchadd.out 2>&1 # Takes to long #pkgchk > pkgchk.out 2>&1 # System information uname -a > uname.out 2>&1 # Users connected to the system last -25 > last_25.out 2>&1 last -5 root > last_root.out 2>&1 # Note: xhost might block sometimes (when X11 running and no display) xhost > xhost.out 2> /dev/null 2>&1 # Xauthorities xauth list >xauth.out 2>&1 eeprom security-mode > eeprom.out 2>&1 # History of user running the audit history > history.out 2>&1 # Open listeners netstat -an > netstat-an.out 2>&1 # Interfaces netstat -i > netstat-i.out 2>&1 # Routing netstat -rn > netstat-rn.out 2>&1 # Process-sockets which lsof >/dev/null 2>&1 && lsof -n 2>&1 # Arp information arp -na >arp.out 2>&1 # Environment and Umask echo "$OLD_ENV" 2>&1 echo "$OLD_UMASK" 2>&1 # Definition of shared libraries (Solaris 8 and later) crle -v >crl.out 2>&1 # Kernel modules modinfo >modinfo.out 2>&1 # Disk df -kl > df-local.out 2>&1 # All disks df -k > df.out 2>&1 # Swap swal -l >swap.out 2>&1 # Ndd parameters # IP for i in ip_forwarding ip_forward_src_routed ip_respond_to_timestamp \ ip_respond_to_timestamp_broadcast ip_ignore_redirect \ ip_strict_dst_multihoming ip_forward_directed_broadcasts \ ip_respond_to_echo_broadcast ip_respond_to_address_mask_broadcast \ ip_ire_arp_interval ip_ire_flush_interval ip_strict_dst_multihoming \ ip_send_redirects ip6_forwarding ip6_send_redirects ip6_ignore_redirect; do echo "$i: " >> ndd.out ndd /dev/ip "$i" >> ndd.out 2>&1 echo "" >> ndd.out done # ARP for i in arp_cleanup_interval; do echo "$i: " >> ndd.out ndd /dev/arp "$i" >> ndd.out 2>&1 echo "" >> ndd.out done # TCP for i in tcpip_abort_cinterval tcp_conn_req_max_q tcp_conn_req_max_q0 tcp_strong_iss \ tcp_extra_priv_ports tcp_time_wait_interval tcp_ip_abort_cinterval; do echo "$i: " >> ndd.out ndd /dev/tcp "$i" >> ndd.out 2>&1 echo "" >> ndd.out done cd /tmp tar cf "$OUTFILE" "$AUDIT_NAME" compress -c "$OUTFILE" >> "$OUTFILE".Z /bin/rm -f "$OUTFILE" echo echo "$OUTFILE".Z is finished, you may delete "$AUDIT_DIR" now. tiger-3.2.3/audit/audit_suse.sh0000644000175000017500000001000510241364024015056 0ustar pacopaco#!/bin/sh # # Audit SuSE Linux Script v1.4 (c) 2002 by Marc Heuse # | | http://www.suse.de/~marc/audit/ # # 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 of the License, 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. # # 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 # # You can also find a copy of the GNU General Public License at # http://www.gnu.org/licenses/licenses.html#TOCLGPL # # PATH="/sbin:/usr/sbin:/bin:/usr/bin:$PATH" HOSTNAME=`hostname` AUDIT_NAME="AUDIT-$HOSTNAME" AUDIT_DIR="/tmp/$AUDIT_NAME" OUTFILE="$AUDIT_DIR.tar" FILE_LIST_ETC="/etc/aliases /etc/sendmail.cf /etc/passwd /etc/group \ /etc/cron* /etc/export* /etc/profile /etc/login* /etc/shadow \ /etc/*ftp* /etc/host* /etc/inittab /etc/issue* /etc/motd /etc/csh* \ /etc/shells /etc/securetty /etc/sock* /etc/yp*" OLD_UMASK=`umask` OLD_ENV=`env` umask 077 set -o noclobber > "$OUTFILE" || exit 1 > "$OUTFILE.Z" || exit 1 if [ -e "$AUDIT_DIR" ]; then mv "$AUDIT_DIR" "$AUDIT_DIR".old fi mkdir "$AUDIT_DIR" || exit 1 cd "$AUDIT_DIR" || exit 1 set +o noclobber tar cf etc.tar /etc/*conf* /etc/*cfg* /etc/*.d /etc/rc* /etc/httpd \ /etc/default /etc/security /sbin/init.d /etc/ssh/ssh*conf* \ $FILE_LIST_ETC 2> /dev/null tar cf var.tar /var/yp /var/nis/data /var/spool/cron 2> /dev/null tar cf home.tar /.*bash* /.netrc /.rhosts /.log* /.*csh* /.Xa* \ /.prof* /home/*/.*bash* /home/*/.netrc /home/*/.rhosts \ /home/*/.log* /home/*/.*csh* /home/*/.Xa* /home/*/.prof* \ /root/.*bash* /root/.netrc /root/.rhosts /root/.log* /root/.*csh* \ /root/.Xa* /root/.prof* 2> /dev/null find / \( -perm -4000 -o -perm -2000 \) -type f \ -exec /bin/ls -ld {} \; > find-s_id.out find / -perm -2 '!' -type l -exec /bin/ls -ld {} \; > find-write.out /bin/ls -alR /etc > ls-etc.out /bin/ls -alRL /dev > ls-dev.out /bin/ls -al /tmp > ls-tmp.out /bin/ls -alR /var/log /var/adm /var/spool /var/spool/mail > ls-var.out /bin/ls -lL /dev/*rmt* /dev/*floppy* /dev/fd0* /dev/*audio* /dev/*mix* > ls-dev-spec.out 2> /dev/null /bin/ls -alR /opt /software /usr/local > ls-software.out 2> /dev/null mount > mount.out rpcinfo -p > rpcinfo.out 2>/dev/null ps auxwww > ps.out rpm -qa > rpm.out 2> /dev/null uname -a > uname.out cat /etc/*release* >> uname.out 2> /dev/null last -25 > last_25.out last -5 root > last_root.out history > history.out xhost > xhost.out 2> /dev/null echo "$OLD_ENV" > env.out echo "$OLD_UMASK" > umask.out netstat -an > netstat-an.out netstat -rn > netstat-rn.out ipfwadm -L -n -v > ipfwadm.out 2> /dev/null iptables -L -n -v > iptables.out 2> /dev/null ipchains -L -n -v > ipchains.out 2> /dev/null echo "$OLD_ENV" > env.out echo "$OLD_UMASK" > umask.out for i in icmp_echo_ignore_broadcasts icmp_echo_ignore_all tcp_syncookies \ ip_always_defrag ip_forward igmp_max_memberships icmp_destunreach_rate; do echo -n "/proc/sys/net/ipv4/$i: " >> proc.out cat /proc/sys/net/ipv4/$i >> proc.out 2> /dev/null echo "" >> proc.out done for i in /proc/sys/net/ipv4/conf/*; do for j in accept_redirects accept_source_route rp_filter bootp_relay \ mc_forwarding log_martians proxy_arp secure_redirects; do echo -n "$i/$j: " >> proc.out cat $i/$j >> proc.out 2> /dev/null echo "" >> proc.out done done cd /tmp tar cf "$OUTFILE" "$AUDIT_NAME" compress -c "$OUTFILE" >> "$OUTFILE".Z /bin/rm -f "$OUTFILE" echo echo "$OUTFILE".Z is finished, you may delete "$AUDIT_DIR" now. tiger-3.2.3/audit/audit_windows.bat0000644000175000017500000005536410241363775015762 0ustar pacopaco@echo off :: Windows 2000/XP/2003 Auditing and Forensics script v 1.0 :: :: This "simple" script will generate an audit report of the Microsoft :: Windows system it is run in. All the audit files will be deposited in :: either %TEMP%\Audit-rep or in a subdirectory 'Audit-rep' in which :: the script is run. :: :: Please notice that this script is enhanced if you download some binary :: tools that provide additional information that cannot be retrieved :: with Microsoft's tools. The appropiate tools are listed in each :: place together with their download location. :: :: IF you receive this script together with the above mentioned tools :: be careful and verify that the tools come from their proper location. :: :: Microsoft, MS, Windows, Windows 95, Windows 98, Windows Millennium, :: Windows 2000, and Win32 are registered trademarks and Visual C++ and :: Windows NT are trademarks of the Microsoft Corporation. :: :: :: This script is (c) 2005 Javier Fernandez-Sanguino :: :: 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 of the License, 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. :: :: 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 :: :: You can also find a copy of the GNU General Public License at :: http://www.gnu.org/licenses/licenses.html#TOCLGPL :: ------------------------------------------------------------------------------ :: TODO: cd to %TEMP% before proceeding? :: TODO: Filesystem checks could also check cacls :: TODO: Additional tools like :: -- ASSOC? (msinfo32 includes it?) :: -- GPRESULT : Group Policy :: -- IPSEC \\name SHOW :: -- Windows 2003 has additional clis that could be of use: :: See, for example Nltest: www.microsoft.com/Resources/Documentation/ windowsserv/2003/all/techref/en-us/nltest.asp :: Command references: :: Windows 2000: Start -> Help -> Index -> Command reference :: Windows XP: :: http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/ntcmds.mspx :: Windows 2003: :: http://www.microsoft.com/resources/documentation/WindowsServ/2003/standard/ :: proddocs/en-us/Default.asp?url=/resources/documentation/WindowsServ/2003/ :: standard/proddocs/en-us/ntcmds.asp :: ------------ BEGIN Configuration variables (customise per system) ------------ :: Directory used for reports and for temporary files :: TODO, could use a directory at %USERPROFILE%/Desktop (or Escritorio in Spanish locale) :: TODO Or %APPDATA% IF EXIST %TEMP% (set REPDIR=%TEMP%\Audit-rep) ELSE set REPDIR=Audit-rep :: Location of report files set REPORT=%REPDIR%.\report.txt :: Additional path for binaries SET ADDPATH=c:\forensics\ :: Additional tools can be downloaded from: :: Microsoft :: MS Windows NT 4.0 Resource Kit Support Tools :: http://www.microsoft.com/technet/archive/winntas/downloads/nt4sp4rk.mspx :: MS Windows 2000 Support Tools :: http://www.microsoft.com/windows2000/techinfo/reskit/default.asp :: MS Windows 2003 Support Tools :: http://www.microsoft.com/windowsserver2003/techinfo/reskit/tools/default.mspx :: Export full registry? SET EXPORTREG=yes :: Review users through the registry SET USERREG=no :: ------------ END Configuration variables (customise per system) ------------ :: Check if we have an additional location for binaries IF NOT EXIST "%ADDPATH%" GOTO :Noaddpath SET PATH=%PATH%;%ADDPATH% ECHO Adding %ADDPATH% to PATH to use available forensic binaries GOTO:Endaddpath :Noaddpath ECHO. ECHO WARN: %ADDPATH% does not exist. ECHO WARN: Create it and place there additional forensic binaries (psinfo, fport..) ECHO WARN: You might want to also install the Windows Resource Kit Support Tools ECHO. :Endaddpath :: TODO, should check that %TEMP% exists... IF EXIST "%REPDIR%" GOTO :Endcreate mkdir "%REPDIR%" if ERRORLEVEL == 0 GOTO:EndCreate ECHO ERR: Cannot create temporary directory! Aborting! GOTO:EOF :Endcreate :: Check if there is a previous report there IF EXIST "%REPORT%" ECHO WARN: Overwriting old report... :: BEGIN AUDIT TITLE Auditing system @echo Determine where are we running first hostname >>%REPORT% 2>nul if ERRORLEVEL == 9009 ECHO ERR: 'Hostname' is not available in this system >>%REPORT% @echo ------------------------------------------- @echo Extract more information from the system systeminfo >>%REPDIR%.\systeminfo.txt 2>nul if ERRORLEVEL == 9009 ECHO ERR: 'Systeminfo' is not available in this system >>%REPORT% @echo ------------------------------------------- @echo Find date and time ECHO System date and time: >>%REPORT% ECHO. >>%REPORT% date /t >>%REPORT% time /t >>%REPORT% @echo ------------------------------------------- @echo Extract IP address ECHO IP Addresses: >>%REPORT% ECHO. >>%REPORT% ipconfig /all >>%REPORT% 2>nul if ERRORLEVEL == 9009 ECHO ERR: 'Ipconfig' is not available in this system >>%REPORT% @echo ------------------------------------------- @echo Extract MAC table ECHO MAC address table: >>%REPORT% ECHO. >>%REPORT% arp -a >>%REPORT% 2>nul if ERRORLEVEL == 9009 ECHO ERR: 'Arp' is not available in this system >>%REPORT% @echo ------------------------------------------- @echo System environment ECHO Current variables: >>%REPORT% ECHO. >>%REPORT% set >>%REPORT% if ERRORLEVEL == 9009 ECHO ERR: 'Set' is not available in this system >>%REPORT% ECHO. >>%REPORT% ECHO Current environment: >>%REPORT% ECHO. >>%REPORT% env >>%REPORT% if ERRORLEVEL == 9009 ECHO ERR: 'Env' is not available in this system >>%REPORT% ECHO. >>%REPORT% @echo ------------------------------------------- @echo Extract additional system information :: Record the system information, including the hotfixes applied. :: Download from: http://www.sysinternals.com/ntw2k/freeware/psinfo.shtml ECHO Process information: >>%REPORT% ECHO. >>%REPORT% psinfo >>%REPORT% 2>nul if ERRORLEVEL == 9009 ECHO WARN: 'Psinfo' is not available in this system, download from http://www.sysinternals.com/ntw2k/freeware/psinfo.shtml >>%REPORT% :: TODO check if it exists :: IF NOT EXIST %PROGRAMFILES%\Microsoft Shared\MSInfo\MSInfo32.exe .... @echo Generating msinfo (this might take a while)... ECHO Generating Msinfo report .... >>%REPORT% ECHO. >>%REPORT% :: start /wait msinfo32.exe /report %REPDIR%.\report-msinfo.wri /categories +SystemSummary+Resources+Components+ start /wait msinfo32.exe /report %REPDIR%.\report-msinfo.wri /categories +all if ERRORLEVEL == 9009 ECHO ERROR: 'Start' is not available in this system >>%REPORT% ECHO .... done >>%REPORT% @echo ------------------------------------------- @echo System uptime :: Record the uptime of the system. :: Download from: http://www.sysinternals.com/ntw2k/freeware/psuptime.shtml ECHO System uptime: .... >>%REPORT% ECHO. >>%REPORT% psuptime >>%REPORT% 2>nul if ERRORLEVEL == 9009 ECHO WARN: 'Psuptime' is not available in this system, download from http://www.sysinternals.com/ntw2k/freeware/psuptime.shtml >>%REPORT% :Localusers @echo ------------------------------------------- @echo Local users (this might take a while)... :: TODO: Consider using sid2user from http://www.chem.msu.su/~rudnyi/NT/sid.zip if NOT %USERREG%==yes GOTO:EndRegUser :: Record users in the system through the registry :: TODO: This is quite cumbersome, there should be an easier way... REGEDIT /E "%REPDIR%.\Users.dat" "HKEY_USERS" :: Display header ECHO Configured users in this system: >>%REPORT% ECHO. >>%REPORT% :: Summarize all users gathered from registry FOR /F "tokens=2 delims=\" %%a IN ('TYPE "%REPDIR%.\Users.dat" ^| FIND "[HKEY_USERS" ^| FIND /V "_Classes"') DO FOR /F "tokens=1 delims=]" %%A IN ('ECHO.%%a ^| FIND "]"') DO CALL ECHO %%A >>%REPORT% :EndRegUser :: Remove temporary file IF EXIST "%REPDIR%.\Users.dat" DEL "%REPDIR%.\Users.dat" :: TODO: This could be done, but that information is already available in the tree output of the disks :: ECHO Users with a profile in this system: >>%REPORT% :: ECHO. >>%REPORT% @echo done @echo ------------------------------------------- @echo Local connected users :: Record users connected locally and remotely. :: Download from: http://www.sysinternals.com/ntw2k/freeware/psloggedon.shtml :: Logged on users ECHO Users connected to this system: >>%REPORT% ECHO. >>%REPORT% psloggedon >>%REPORT% 2>nul if ERRORLEVEL == 9009 ECHO WARN: 'Psloggedon' is not available in this system, download from http://www.sysinternals.com/ntw2k/freeware/psloggedon.shtml >>%REPORT% @echo ------------------------------------------- @echo Succesful/failed logins :: To record the successful and failed logins to the system. :: Download from: http://www.foundstone.com/resources/proddesc/ntlast.htm ECHO Successful failed logins: >>%REPORT% ECHO. >>%REPORT% ntlast –r >>%REPORT% 2>nul if ERRORLEVEL == 9009 GOTO:Nontlast ntlast –f >>%REPORT% ntlast –r -f >>%REPORT% GOTO:Endlogins :Nontlast ECHO ERROR: 'Ntlast' is not available in this system, download from http://www.foundstone.com/resources/proddesc/ntlast.htm >>%REPORT% :Endlogins @echo ------------------------------------------- @echo System information (Netbios) ECHO System netbios information: >>%REPORT% ECHO. >>%REPORT% net use >>%REPORT% 2>nul if ERRORLEVEL == 9009 GOTO:Nonetuse net file >>%REPORT% net share >>%REPORT% net view >>%REPORT% net user >>%REPORT% net accounts >>%REPORT% net localgroup >>%REPORT% net start >>%REPORT% GOTO:Endnetbios :Nonetuse ECHO ERROR: 'Net' is not available in this system >>%REPORT% :Endnetbios @echo ------------------------------------------- @echo Remote Netbios name cache ECHO System netbios name cache: >>%REPORT% ECHO. >>%REPORT% nbtstat -n >>%REPORT% 2>nul if ERRORLEVEL == 9009 GOTO:Nonbtstat nbtstat -c >>%REPORT% nbtstat -s >>%REPORT% GOTO:Endnbtstat :Nonbtstat ECHO ERROR: Nbtstat is not available in this system >>%REPORT% :Endnbtstat @echo ------------------------------------------- @echo Processes ECHO Process listing: >>%REPORT% ECHO. >>%REPORT% tasklist >>%REPORT% 2>nul if ERRORLEVEL == 9009 ECHO WARN: Tasklist is not available in this system >>%REPORT% :: Download from http://www.sysinternals.com/ntw2k/freeware/pslist.shtml pslist >>%REPORT% 2>nul if ERRORLEVEL == 9009 ECHO WARN: Pslist is not available in this system, download from http://www.sysinternals.com/ntw2k/freeware/pslist.shtml >>%REPORT% @echo Active processes :: Display active processes :: Download from: http://www.microsoft.com/windows2000/techinfo/reskit/tools/existing/pulist-o.asp pulist >>%REPORT% 2>nul if ERRORLEVEL == 9009 ECHO WARN: Pulist is not available in this system, download from http://www.microsoft.com/windows2000/techinfo/reskit/tools/existing/pulist-o.asp >>%REPORT% :: Download from http://www.sysinternals.com/ntw2k/freeware/psservice.shtml psservice >>%REPORT% 2>nul if ERRORLEVEL == 9009 ECHO WARN: Pssservice is not available in this system, download from http://www.sysinternals.com/ntw2k/freeware/psservice.shtml >>%REPORT% @echo ------------------------------------------- @echo Loaded DLLs :: Record all the DLLs that are currently loaded, including :: where they are loaded and their version numbers. :: To identify unusual DLLs, open files and Trojans. :: Download from: http://www.sysinternals.com/ntw2k/freeware/listdlls.shtml ECHO Loaded dlls: >>%REPORT% ECHO. >>%REPORT% listdlls >>%REPORT% 2>nul if ERRORLEVEL == 9009 ECHO WARN: 'Listdlls' is not available in this system, download from http://www.sysinternals.com/ntw2k/freeware/listdlls.shtml >>%REPORT% @echo ------------------------------------------- @echo Listening services ECHO Listening services and connections: >>%REPORT% ECHO. >>%REPORT% netstat -ano >>%REPORT% 2>nul if ERRORLEVEL == 9009 ECHO WARN: 'Netstat' is not available in this system >>%REPORT% :OpenPorts @echo Open ports :: Record opening ports. :: To identify opening ports and their applications. :: Download from: http://www.foundstone.com/resources/intrusion_detection.htm ECHO List of open ports (fport): >>%REPORT% ECHO. >>%REPORT% fport >>%REPORT% 2>nul if ERRORLEVEL == 9009 GOTO:Nofport GOTO:Endport :Nofport ECHO WARN: 'Fport' is not available in this system, download from ttp://www.foundstone.com/resources/intrusion_detection.htm >>%REPORT% :: Try with a custom script :: This is based on the script available at http://www.multingles.net/docs/escucha.htm @echo off SETLOCAL ENABLEDELAYEDEXPANSION if exist %REPDIR%.\ports.tmp del %REPDIR%.\ports.tmp >nul tasklist > %REPDIR%.\tasks.tmp 2>nul if ERRORLEVEL == 9009 GOTO:Notasklist :: TODO could use pslist if available (Tasklist is not available in XP home edition) :: TCP ports echo Reviewing TCP ports for /F "usebackq tokens=2,3,4,5,6,7 delims=: " %%g in (`netstat -nao^|find "LISTENING"`) do ( set sz1=%%h: 0 for /f "tokens=1,2 delims=:" %%s in ("!sz1:~,6!") do set sz1=%%t%%s for /F "usebackq skip=4 tokens=1,2" %%m in (%REPDIR%.\tasks.tmp) do if %%l == %%n ( set sz3=%%n: 0 for /f "tokens=1,2 delims=:" %%s in ("!sz3:~,6!") do set sz3=%%t%%s set sz2=%%m: = for /f "tokens=1,2 delims=:" %%s in ("!sz2:~,16!") do set sz2=%%s%%t set sz4=%%g: 0 for /f "tokens=1,2 delims=:" %%s in ("!sz4!") do set sz4=%%s if !sz4! == 0.0.0.0 set sz4=any if !sz4! == 127.0.0.1 set sz4=loop echo !sz1! TCP !sz2!!sz3! [ !sz4! ] >>%REPDIR%\ports.tmp ) ) :: UDP ports echo Reviewing UDP ports for /F "usebackq tokens=2,3,4,5,6 delims=: " %%g in (`netstat -nao^|find "*:*"`) do ( set sz1=%%h: 0 for /f "tokens=1,2 delims=:" %%s in ("!sz1:~,6!") do set sz1=%%t%%s for /F "usebackq skip=4 tokens=1,2" %%m in (%REPDIR%.\tasks.tmp) do if %%k == %%n ( set sz3=%%n: 0 for /f "tokens=1,2 delims=:" %%s in ("!sz3:~,6!") do set sz3=%%t%%s set sz2=%%m: = for /f "tokens=1,2 delims=:" %%s in ("!sz2:~,16!") do set sz2=%%s%%t set sz4=%%g: 0 for /f "tokens=1,2 delims=:" %%s in ("!sz4!") do set sz4=%%s if !sz4! == 0.0.0.0 set sz4=any if !sz4! == 127.0.0.1 set sz4=loop echo !sz1! UDP !sz2!!sz3! [ !sz4! ] >>%REPDIR%.\ports.tmp ) ) echo. >>%REPORT% echo Listening ports in the system >>%REPORT% echo. >>%REPORT% echo Puerto Programa PID Direccion IP >>%REPORT% echo ------ ------------ ------------ >>%REPORT% set iant= for /F "tokens=1* delims=" %%i in ('SORT %REPDIR%.\ports.tmp') do if %%i NEQ !iant! (echo %%i >>%REPORT%) & set iant=%%i echo.>>%REPORT% IF EXIST %REPDIR%.\ports.tmp del %REPDIR%.\ports.tmp >nul IF EXIST %REPDIR%.\tasks.tmp del %REPDIR%.\tasks.tmp >nul GOTO:Endport :Notasklist ECHO ERR: Cannot generate listing of sockets per process as 'Tasklist' is not available >>%REPORT% ENDLOCAL :Endport @echo ------------------------------------------- @echo ------------------------------------------- ECHO Listening RPC services: >>%REPORT% ECHO. >>%REPORT% :: Rpcinfo is provided both by Windows Services for Unix and by third-party vendors :: See http://support.microsoft.com/?id=313621 rpcinfo -p >>%REPORT% 2>nul if ERRORLEVEL == 9009 ECHO WARN: 'Rpcinfo' is not available in this system >>%REPORT% @echo ------------------------------------------- @echo Extracting routing table ECHO Routing table: >>%REPORT% ECHO. >>%REPORT% netstat -nr >>%REPORT% @echo ------------------------------------------- :: TODO: more information could probably be gathered with the 'show' :: commands of netsh (at least in WinXP) :: See http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/netsh.mspx :: and http://www.microsoft.com/technet/prodtechnol/windowsserver2003/library/ServerHelp/28e2f559-bfa6-4f3a-857c-ffd045f8de79.mspx @echo Extracting firewall configuration ECHO Extracting firewall configuration: >>%REPORT% ECHO. >>%REPORT% netsh firewall show config >>%REPORT% 2>nul if ERRORLEVEL == 9009 GOTO:Nonetsh GOTO:Endnetsh :: Could be further divided as: :: Current profile ::ECHO Firewall current profile: >>%REPORT% ::netsh firewall show currentprofile >>%REPORT% 2>nul ::ECHO Firewall icmpsettings: >>%REPORT% ::netsh firewall show icmpsetting >>%REPORT% 2>nul ::ECHO Firewall logging: >>%REPORT% ::netsh firewall show logging >>%REPORT% 2>nul ::.... :Nonetsh ECHO WARN: 'Net sh' is not available in this system >>%REPORT% :Endnetsh @echo ------------------------------------------- :FileInfo @echo Retrieving file information (this might take a while) :: TODO: Could also check cacls SET DISKS= FOR /D %%H IN (C D E F G H I J K L M N O P Q R S T U V W X Y Z) DO CALL :Checkdisk "%%H" GOTO:Endtree :Checkdisk :: TODO: Consider using /f (huge files as a result, however) dir "%~1:\" >nul 2>nul IF %ERRORLEVEL% GTR 0 GOTO:Nocheckdisk echo Extracting info from %~1:\ tree "%~1:\" /a >"%REPDIR%.\tree-%~1.txt" 2>nul :Nocheckdisk GOTO:EOF :Endtree @echo ------------------------------------------- @echo Current policies ECHO Current security policies: >>%REPORT% ECHO. >>%REPORT% auditpol >>%REPORT% 2>nul if ERRORLEVEL == 9009 ECHO WARN: 'Auditpol' is not available in this system >>%REPORT% @echo ------------------------------------------- @echo ------------------------------------------- @echo Group policies - computer ECHO Group policies - computer: >>%REPORT% ECHO. >>%REPORT% gpresult /scope computer /z >>%REPORT% 2>nul if ERRORLEVEL == 9009 GOTO:Nogpresult @echo ------------------------------------------- @echo ------------------------------------------- @echo Group policies - user ECHO Group policies - user: >>%REPORT% ECHO. >>%REPORT% gpresult /scope user /z >>%REPORT% 2>nul if ERRORLEVEL == 9009 GOTO:Nogpresult GOTO Endgpresult :Nogpresult ECHO WARN: 'Gpresult' is not available in this system, download from http://www.microsoft.com/windows2000/techinfo/reskit/tools/existing/gpresult-o.asp >>%REPORT% :Endgpresult @echo ------------------------------------------- @echo ------------------------------------------- @echo Lsa control set ECHO Extracting lsa control set: >>%REPORT% ECHO. >>%REPORT% reg query HKLM\SYSTEM\CurrentControlSet\Control\Lsa /s >>%REPORT% @echo ------------------------------------------- @echo ------------------------------------------- @echo File associations ECHO Extracting file associations: >>%REPORT% ECHO. >>%REPORT% ftype >>%REPORT% 2>nul if ERRORLEVEL == 9009 GOTO :Noftype ECHO WARN: 'Ftype' is not available in this system, ussing assoc >>%REPORT% assoc >>%REPORT% 2>nul if ERRORLEVEL == 9009 GOTO ECHO WARN: 'Assoc' is not available in this system >>%REPORT% :Noftype @echo ------------------------------------------- @echo ------------------------------------------- @echo Startup services ECHO Extracting services started at startup >>%REPORT% ECHO. >>%REPORT% ECHO "Run:" >>%REPORT% reg query HKLM\Software\Microsoft\Windows\CurrentVersion\Run /s >>%REPORT% 2>nul ECHO. >>%REPORT% ECHO "RunOnce:" >>%REPORT% reg query HKLM\Software\Microsoft\Windows\CurrentVersion\RunOnce /s >>%REPORT% 2>nul ECHO. >>%REPORT% ECHO "RunServices:" >>%REPORT% reg query HKLM\Software\Microsoft\Windows\CurrentVersion\RunServices /s >>%REPORT% 2>nul ECHO. >>%REPORT% ECHO "RunServicesOnce:" >>%REPORT% reg query HKLM\Software\Microsoft\Windows\CurrentVersion\RunServicesOnce /s >>%REPORT% 2>nul ECHO. >>%REPORT% @echo ------------------------------------------- :: @echo MRU files :: reg query HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\ >>%REPORT% :: @echo ------------------------------------------- :: TODO Hfixes are described also on uninstalled software :: @echo Uninstalled :: reg query HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall >>%REPORT% :: @echo ------------------------------------------- :: Check existing security policy with the one provided in the archive (secpolicy.inf) IF NOT EXIST secpolicy.inf GOTO :Nopolicy ECHO Checking security policy: >>%REPORT% ECHO. >>%REPORT% secedit /analyze /cfg secpolicy.inf /db secpolcheck.sdb /log secpolcheck.log if ERRORLEVEL == 9009 GOTO ECHO WARN: 'Secpolicy' is not available in this system >>%REPORT% :Nopolicy :: Check hotfixes SETLOCAL :: Gather info from the registry REGEDIT /E "%REPDIR%.\Hotfixes.dat" "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Hotfix" :: TODO: Check ERRORLEVEL :: Display header of hotfixes ECHO Hotfixes installed on this PC: >>%REPORT% ECHO. >>%REPORT% :: Summarize all hotfixes gathered from registry FOR /F "tokens=7 delims=\" %%a IN ('TYPE "%REPDIR%.\Hotfixes.dat" ^| FIND "[HKEY_"') DO FOR /F "tokens=1 delims=]" %%A IN ('ECHO.%%a ^| FIND "]"') DO CALL :Summarize "%%A" :: Remove temporary file IF EXIST "%REPDIR%.\Hotfixes.dat" DEL "%REPDIR%.\Hotfixes.dat" :: Done ENDLOCAL GOTO:Endhf :Summarize SETLOCAL :: Gather more details from the registry :: TODO: Does not work in Windows 2003 (Registry location changed?) REGEDIT /E "%REPDIR%.\Hotfixes.dat" "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Hotfix\%~1" :: Retrieve the hotfix description from the temporary file we just created FOR /F "tokens=1* delims==" %%a IN ('TYPE "%REPDIR%.\Hotfixes.dat" ^| FIND /I "Fix Description"') DO SET Description=%%~b :: Escape brackets in the description, otherwise the ECHO command will fail IF DEFINED Description SET Description=%Description:(=^^^(% IF DEFINED Description SET Description=%Description:)=^^^)% :: The whitespace in the following line is a tab ECHO.%Hotfix% %Description% >>%REPORT% ENDLOCAL GOTO:EOF :Endhf @echo ------------------------------------------- :: Export Registry :: TODO: Consider outputing only a fraction of it if NOT %EXPORTREG%==yes GOTO:EndExport @echo Exporting Full Registry ECHO Exporting registry: >>%REPORT% ECHO. >>%REPORT% reg export HKLM %REPDIR%.\registry-hlkm.reg :: If you only want to export information of installed software :: reg export HKLM\SOFTWARE\ %REPDIR%.\registry-sw.reg :: If you want t export user information :: reg export HKU %REPDIR%.\registry-users.reg ECHO Registry exported to %REPDIR%.\registry-hlkm.reg >>%REPORT% ::EndExport :: 91de25d2df1c63c140d1aa945ede81af :: Check archive signatures :: TODO: test for windows, can the registry file be changed? :: TODO: Removed for the moment since it is not a CLI program :: IF EXIST %SYSTEMROOT%\system32\sigverif.exe sigverif /defscan :: TODO @echo ------------------------------------------- echo. echo "Finished audit please review %REPDIR%" echo. pause :: Restore the title IF DEFINED %CMDCMDLINE% (TITLE %CMDCMDLINE%) ELSE TITLE cmd.exetiger-3.2.3/ANNOUNCE.3.00000644000175000017500000000557407650714370012733 0ustar pacopaco(sent on Fri Jun 14 09:07:00 2002 to the Tiger-TAMU mailing list at but, unfortunately, didn't make it to list readers, included here for the convenience of Tiger users) Dear Tiger users (is anyone listening?) First let me introduce myself, I'm Javier Fernández-Sanguino, I'm currently a Debian developer (and have been for around 5 years) and main author of the "Debian Securing Manual" [0]). I have contributed (and still do) to many free software projects besides Debian including Freeradius, Nessus, Bastille and have been also very active in spanish translation teams. Since my professional interest has shifted from pure free software towards free software security, I have been actively watching (and contributing) in different areas. Free software is currently very competitive in many security areas, just to mention a few: network intrusion detection (Snort), vulnerability scanners (Nessus), hardening software (Bastille) and high-availability (the linux virtual server project and VRRP developments). However, one of the areas free software was falling behind was on host-based intrusion detection tools. Deciding this could be easily fixed I started working with Tiger last year, integrating it into Debian, once this was done (it was really easy) I started adding new security checks, first Debian-specific and, later on, more general. Bryan Gartner from HP around november 7th 2001 asked the TAMU team, the TARA team at ARSC and myself if there was any active work on integrating the forks (TARA's and Debian's) or a single development tree people could work on. The answer to that question was, at the time, no. Now it's _yes_. After some work on my behalf, I have integrated TARA's, HP's and Debian's into the same source-code base. This is currently being distributed by Debian as tiger-2.2.4p2-4 [1] In order to avoid fragmentation I have started a new Savannah project for Tiger [2] which currently holds: - two mailing lists (users' and developers') - a bug tracking system (in order to avoid using Debian's [3] for bugs not related to Debian packages) - a CVS repository (which now holds the common source code base) [4] - a download area [5] - News and other miscellanea I would like to suggest users to subscribe to the user mailing list to discuss issues regarding this (new) codebase. And if anyone is interested in becoming a developer for this project, feel free to subscribe to the developer's mailing list too. I have branded this release tiger '3.0' so as to avoid confusion regarding previous TAMU (or ARSC's TARA) releases. Best regards Javier Fernández-Sanguino Peña [0] http://www.debian.org/doc/admin-manuals#securing [1] Latest versions are available at http://packages.debian.org/tiger [2] http://savannah.gnu.org/projects/tiger/ [3] http://bugs.debian.org/tiger [4] https://savannah.gnu.org/cgi-bin/viewcvs/tiger/ [5] http://freesoftware.fsf.org/download/tiger/ tiger-3.2.3/AUTHORS0000644000175000017500000000164610664616352012347 0ustar pacopaco Douglas Lee Schales Dave Hess Khalid Warraich Dave Safford [modifications for support of Redhat Linux 2.x. made by] Robert L. Ziegler (rlz@mediaone.net) [modifications for NeXT, IRIX, SunOS 5.x, AIX 4, UNICOS systems as well as a big number of bug fixes and new scripts, made by the group from Advanced Research Corporation for tara, composed of:] Liam Forbes Nathan Bills and Mike Kienenberger [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., 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 [audit scripts developed originally by] Marc Heuse tiger-3.2.3/BUGS.EXTERN0000644000175000017500000000663207502327223012757 0ustar pacopacoThis is a list of problems encountered on various platforms while working on 'Tiger'. All have been worked around, but for the record: ------------------------------------------------------------------------ AIX 3.2 awk computes incorrect field counts with null trailing field: echo "a:b:c" | awk -F: '{print NF}' 3 echo "a:b:" | awk -F: '{print NF}' 2 Work around: run through sed and tack a space on the end of the problem lines: sed -e 's/:$/: /' | awk.... ------------------------------------------------------------------------ AIX 3.2 /bin/test -L is broken. /bin/test -L somelink Argument expected Work around: Didn't use /bin/test. This was encountered while trying to write some code to dynamically determine what the 'test' operator was for testing for a symbolic link. Needless to say, this eliminated the checking of /bin/test's return code. ------------------------------------------------------------------------ NeXT 3.0 shift doesn't always work set a b c d while [ $# != 0 ] do echo $1 shift done doesn't always work (you get infinite list of 'a's). Rewrote affected code using a for loop. Not always possible though. ------------------------------------------------------------------------ NeXT 3.0 Globbing string with quotes doesn't always work: $ dir=/usr/bin $ echo "$dir/"* /usr/bin/* $ echo "$dir"/* /usr/bin/* $ echo $dir/* ...list of files in /usr/bin Apparently the quotes prevent the globbing from occurring. Work around: Remove the quotes. Not particularly desirable though since 'dir' may have spaces or other meta-characters in it. ------------------------------------------------------------------------ SunOS 4.x wait and signals 'wait' will only return on a SIGINT. Any other (non-fatal) signals are, for all practical purposes, ignored (wait just loops back to the wait()). Normally not a problem, but if the script is run in the background from the Bourne Shell, SIGINT is ignored, thus you can't interrupt the wait. Work around: None really... see simple_wait() in find_files. ------------------------------------------------------------------------ SunOS 4.x comm breaks lines at 256 byte intervals. Note, that it doesn't truncate the lines. It breaks them, creating an awful mess to attempt to process. This may exist on other systems as well. I do know that it exists in SunOS 4.x. Work around: If feasible, truncate lines at 255 characters. ------------------------------------------------------------------------ SunOS 5.x File descriptor manipulation Manipulating file descriptors via 'exec' doesn't work reliably in the SunOS 5.x Bourne Shell. Work around: Eliminated most file descriptor manipulation. ------------------------------------------------------------------------ SunOS 5.x /usr/bin/find core dumps if you start nesting parenthesis too much. Work around was to remove excess parenthesis. ------------------------------------------------------------------------ Linux 0.99pl12 (TAMU) Manipulating file descriptors doesn't appear to work (with or without using 'exec') in 'bash'. Workaround was to eliminate all file descriptor manipulation. ------------------------------------------------------------------------ SunOS 5.x (possibly only 5.3) /usr/bin/find tries to open(./..) (and probably ./../.., etc). If it can't it gets confused and exits saying it can't open the directory that was the target of the find. Workaround was to 'cd /' before trying to do a 'find'. tiger-3.2.3/CHANGES0000644000175000017500000006047111061674145012267 0ustar pacopacoNOTE: To read changes made to the Debian package (since August 23rd 2001) see the changelog.Debian file Changes (v 3.2.3) -------------------- - SECURITY FIX: Fix a temporary race condition in the genmsgidx script (only affects those that build the code in untrusted systems) - Added support for more local and non-local filesystems in Linux gen_mounts: reiser4, securityfs, fuse.gvfs-fuse-daemon, fuseblk, fuse.truecrypt, fuse.encfs, debugfs, afs, configfs, gfs, gfs2, inotifyfs, hugetlb, subfs, futexfs and bind. - Added a new configuration variable in tigerrc (Tiger_FSScan_WarnUnknown) that allows administrators to disable the warning related to unknown filesystems and modified gen_mounts to make use of it. The default behaviour (in the provided tigerrc and in the code), if the variable is not set is to warn admins since unknown filesystems might be a security issue (rootkit?) - Add new variables in tigerrc: * Tiger_FSScan_Local: if set, filesystems defined in it will be considered local and will always be analysed. * Tiger_FSScan_NonLocal: ff set, filesystems defined in it will be considered non-local and will not be analysed. This allows administrators to add there esoteric filessystems in use so that they can work around the 'unknown filesystem' report generated by gen_mounts until it gets updated upstream. - Fix the main Makefile so that the code gets compiled when running 'make all' - Add a new Makefile to the doc/ subdirectory so that the contents get built and removed and no autogenerated content is distributed. This subdirectory is called from the main Makefile. - Use tempfile if available in the configuration step, although we work in WORKDIR and we are safe there - Make tigercron POSIX compliant so it works in any shell, not just bash - The 'gen_cron' script for Linux now handles properly the case when the special @daily,@reboot, etc. definitions are used instead of real times. - Scripts changes: * check_apache:Fix the way the configuration file is handled to obtain the IP address and port (Debian bug #436904) * check_crontags, check_xinetd, check_apache: Change message calls so that they can be filtered * find_files: Only check local filesystems * systems/Linux/2/deb_checkmd5sums: use prelink if available Changes (v 3.2.2) ---------------- - Applied patches from Ryan Bradetich to fix Makefiles in HPUX - Fixed bashisms in scripts - Fixed YPCAT calls - Added the audit scripts collection (audit/ subdir). These scripts extract information for a given operating system for offline review and have been provided by Marc Heuse and improved by me. For more information see the README file in that dir. Supported OSes: - AIX (tested in 4.x and 5.x) - Debian GNU/Linux - HPUX 10/11 - Nokia IPSO - ORACLE - RedHat GNU/Linux - Slackware - Solaris - SuSE Linux - Windows XP/2000/2003 - Added support for a check.d directory where administrators can dump scripts and have Tiger run them periodically - Small improvements to the messages's documentation. Including fixes to some error Ids which were not correct - Documentation improvements: explain new options and behaviour in the manpages, overall improvements to text files provided in sources. - Fixed scripts: check_accounts, check_aliases, check_anonftp, check_crontabs, check_devices, check_embedded, check_exports, check_finddeleted, check_ftpusers, check_group, check_inetd, check_known, check_listeningprocs, check_logfiles, check_netrc, check_passwd, check_passwdformat, check_path, check_printcap, check_rhosts, check_root, check_rootdir, check_rootkit, check_runprocs, check_sendmail, check_services, check_ssh, check_system, check_tcpd, check_umask, check_xinetd, find_files (Over 60 reported bugs fixed) - New checks: check_ntp, check_omniback, (Linux-specific) check_xinetd, - Many fixes in HPUX and Linux checks. - Added support for Solaris 8 and Solaris 9. New checks: - 'check_listeningproces' check for this OS too (uses pfiles instead of lsof) - 'check_patches': uses a patchdiag.xref file to look for missing patches - Added Tru64 support - Added HPUX-specific tigerrc file - Added spec file to build RPM packages - Move checks that need to be done to a TODO.check file Changes (v 3.2.1) ---------------- - New checks: - check_ndd (for HPUX and SunOS systems) - check_passwspec (for Linux and HPUX) - check_trusted (for HPUX) - check_rootkit - check_xinetd - aide_run and integrit_run as new (alternative) integrity file checkers (contributed by 'unspawn') - Improved/Fixed checks: -check_apache -check_devices (patch from Ryan Bradetich) -check_exports -check_finddeleted (patch from Nicolas François) -check_ftpusers -check_group -check_inetd -check_known -check_listeningprocs (patch from Nicolas François) -check_netrc -check_passwd -check_path -check_patch -check_passwdformat -check_perms -check_rhosts -check_root -check_services -check_signatures -check_tcpd -check_umask -crack_run -tripwire_run (Linux) check_inittab, check_rcumask, deb_nopackfiles (patch provided by Nicolas François), check_accounts (thanks to Nicolas François), deb_checkmd5sums (improvements by Nicolas François) - Other check changes: - check_cron moved to check_crontabs - removed SunOS check_networkconfig in favour of the new check_ndd - Default Tigerrc has been modified to account for the new checks - Applied Ryan Bradetich's patches for HPUX support and to some of the checks (check_accounts, check_passwd, check_rootdir - Added CERT's Unix security checklist comparison so users or admins can check which checks does Tiger implement automatically. - Fixed issue with tigercron, did not work as advertised - Fixed syntax errors in grep calls - Modified SunOS config file to look for the MAILSPOOL in /var/mail - Tiger now uses a function (run_script) to run either the scripts in the $SCRIPTDIR or system-specific scripts if available. This allows developers to create more specific checks for a given OS and have them override the generic scripts. - Review of temporary file creation in all files including the creation of a new function (safe_temp) to handle temporary file usage. - Included a RedHat spec file to create rpm packages (contributed by 'unspawn') - New utilities: mkfilelst - Full integration with TARA 3.0.3 including: * Update of all SunOS 5 checks based on ARSC's implementation in TARA * Preliminary MacOSX implementation based on ARSC's implementation in TARA * New check_rookit check * Improvements in checks - Tiger now can generate signatures for new systems - Tiger now shows usage - Updated manpages for tiger and tigexp - Removed Debian-specific checks from the default cronrc file and instead call 'check_system. Added new checks to the cronrc file - Updated documentation in README files - Added still more TODOs - Fixed Makefile (some checks were not getting installed) - Added sources for SGI security information in README.sources. - Added tigercron manpage. - Removed duplicated checks from cronrc - Improved variable checks in initdefs and applied patches from Ryan Bradetich and Nicolas François - Added some new configuration directives to site_sample - Included check_ssh in the checks run by Tiger - Fixed doc/accounts.txt - Fixed UUID definition in configuration files for most OS. - Fixed difflogs util with patch from Nicholas François and properly sort reports. - Fixed util/genmsgidx with patch from Nicholas François Changes (v 3.2) ---------------- - Added a roadmap to the TODO - Tiger will now output to the report the time of completion - Fixed Linux/2/check (Debian checks were not executed) - Removed stale files (*org-2.2.3) - Updated tigerrc files (-all and -dist). Removed stale file not being used anymore - Added some references in README.sources - Makefile will install the C binaries after compiling (modified 'all' target) - Preliminary 'distribution' target in Makefile - Added yet more TODOs - Added a -q (quite) option to config to be used by tigercron (avoids cron sending emails of nothing has changed, no need to redirect output) - Modified config to not output messages if -q is set (still need to modify tiger to use it too) - Added checks that have been segmented and are new into tiger and tigerrc (check_passwdformat, check_nisplus, check_apache, check_printcap, check_exrc, check_sendmail, check_printcap) - Fix of Tiger_Check_ETCISSUE in tiger which made the check run always. - Removed useless echo from tigercron - Included preliminary version of checks: aide_run, integrit_run (the last one was in the tar.gz but not in CVS) - Fixed Steve's name in the realpath.c note - Added Debian's changes from the 'experimental' area including the changelog and the change to the cron.d file - Created some scripts to check for issues in the source code, including script dependancies. - Fixed missing or improper dependancies in a number of scripts: check_accounts, check_aliases, check_anonftp, check_cron, check_devices, check_embedded, check_exports, check_finddeleted, check_ftpusers, check_group, check_inetd, check_issue, check_known, check_listeningproc, check_printcap, check_rhosts, check_root, check_services, check_tcpd, check_umask, crack_run, tripwire_run, and Linux's check. - Fixed PWCK behavior in check_passwd. - Added notes on behavior of check_sendmail, modified it to run only if SENDMAIL-CF exists. - Moved Debian-specific checks from check.tbl (would cause errors in non-Debian Linux distributions) to 'check' and modified it so that they will only run if distribution=Debian - Changed Linux's check_listeningprocs Tigerinstalldir to '.' - Added MD5 to Linux' config - Fixed bug in gen_cron which makes it output to STDERR if any of the SPOOL directories are empty - Fixed util/mksig to cread @DEST and @ORIG definitions, removed unnecessary dependancies, and added missing commands. (23 April 2003 - rc3) - [security] Applied Steve Grubb's patch to avoid a buffer overflow in realpath - Changed the behaviour of autoconf to avoid messing with binaries in the source copy. - Improved the Makefile: - better segmentation on targets (for testing and error checking) - follows better GNU's standards (including use of DESTDIR) - binaries and config are sed' on installation - missing (new) scripts have been included - removed config-local target (no sense ATM) - Fixed tigercron (removed CONFIGDIR and added some sanity checks) - Added sanity checks to Tiger_Accounts_Trust (22 April 2003 - rc2) - Makefile changes: - now installs WORK and LOGS dir as 700 - new targets (mantainerclean, config, config-local, distclean) - config modified to: - _only_ use hostname -f with Linux - hostname check is done after Tiger_Output_FQDN is defined - determine location of RCFILE and IGNOREFILE properly so that cli arguments can change them - configure now sets ${prefix} - Fixed ignore mechanism (wasn't working at all due to missing quotes) - Debian packaging fixes (14 April 2003 - rc1) - New ignore mechanism for all modules through the ignore_message function in initdefs provides a way for administrators to configure (with extended regular expressions) messages that no modules of Tiger will report (wether run in a full run or through a cron job). This helps administrator improve Tiger output and remove spurious errors or false positives (like the DNS UDP listeners reported by check_listeningprocs) - Updated the README and USING files with current information on how to run/install Tiger - Updated the README.linux file - Updated the README.hostids file - Wrote a new README.ignore file explaining the new mechanism - Fixed configuration so that the -f option is not used on non-Linux systems ('hostname -f' is not an option available in some of them and this breaks Solaris!) - Modified Linux' configuration file in order to work with new checks - Modified Linux' configuration file so that LSGROUPS is set properly depending on the fileutils version (enables Tiger to be used in Debian's 'woody' by fixing, at least, this know issue) - Fixed the check_inittab script for linux (did not look for the proper string!) - Improved the check_logfiles check in order to check also for logfile permissions and to be more flexible depending on OS. - Modified some of the util/ scripts: . Linux call is modified to return the proper value in gethostinfo . LS and AWK are no longer hardcoded in getpermit . [security] 'installsig' has been modified so that the DESTDIR in the file cannot be use to run local commands through 'eval' - Added missing HPUX config file - Added "new" signatures for Sun from TAMU New checks: - scripts/check_deleted: detects processes or services (servers) using deleted files. It is based on Brian Hatch's article on deleted files and the article "The Upgrade Process: Restarting vs Rebooting." published at hackinglinuxexposed.com. - scripts/check_services: derived from check_inetd, so that it only checks for service information - scripts/check_umask: derived from check_logfiles, check for user's umask. - scripts/check_passwdformat: Checks format of password files to determine if there is any inconsitency - scripts/check_apache: checks configuration of the Apache web server - scripts/check_exrc: checks for .exrc files (which might be loaded by a user inadvertendly when running some editors - Linux/2/check_network_config: checks for the values of the network configuration in order to determine if the system is susceptible to some attacks - Solaris/5/5.8/check_listeningprocs: preliminary version for Solaris to detect which processes/user are opening inbound sockets (note that NETSTAT will not provide process or user information and LSOF might not be available in all systems) - HPUX/check_ftpusers: new version of the check_ftpusers script. This one is specific for HPUX and has been contributed as a patch at Savannah. It does not do the same check as the generic one, and users might want to use this or the other one. - Solaris/5/check_network_config: preliminary version for Solaris to detect the network configuration parameters (stills need to be tested) - HPUX/check_network_config: preliminary version for HPUX of the same script Changes (v 3.1) 10/09/2002 --------------------------- New autoconfiguration stuff so that users can customize how to run Tiger (it can now be run from the local dir, that is, the directory it has been untarred to or any other dir). Default is /usr/local/tiger. See configure.in for more information. Fixes due to testing in Solaris. Mainly bashisms, but also some new tests for Solaris (not activated by default) as well as fixes for HP-UX. Fixes include check_accounts, check_devices, check_ftpusers, check_issue, check_known, check_listeningprocs, check_logfiles, check_netrc, check_passwd, check_passwd, check_rhosts, This Solaris testing has also derived new Solaris 5.8 and Solaris 5 configuration scripts. This new upstream version includes a new check_loginlog for Linux (based on SuSE's) as well as a preliminary version of check_patches for Solaris. check_listeningprocs using LSOF *and* NETSTAT has been moved to Linux (the version for any other OS uses only 'lsof' since 'netstat' is not standarised) Tigexp does not regenerate messages unless being run by root (so that common users do not get a warning if they run 'tigexp') Changes (v 3.0) 07/26/2002 --------------------------- New upstream release. Includes a lot of new checks for Linux (developed for the Debian GNU/Linux distribution) and also includes TARA's and HP's fixes. This new upstream is distributed through savannah.gnu.org (look for CVS sources there too). The full changes description can be found in the Debian changelog (debian/changelog in the source dir) and span from the 2.2.4-1 to the 2.2.4p2-5 Debian packages. Changes 09/07/99 ------- Fixed to work with SUSE and TurboLinux Changes 06/02/99 ------- Developed a new tigerrc to support customer's security checklist. More extensive tigerrc is in tigerrc-dist. Fixed bug in check_root for Linux boxes. Updated systems service file. Changes 05/30/99 ------- Developed HTML output capability (tiger -H). Fixed systems files for SunOS and IRIX Changes 04/20/99 ------- Corrected numerous small bugs in scripts. Updated the systems directories to reflect current OS configurations for Linux, SunOS, and IRIX and default. Cleaned up the output a bit. --- Advanced Research Corporation Changes 03/09/94 ------- Fix to ./scripts/sub/check_embed. This was disabling the check_embedded script. New Stuff 01/06/94 --------- Updated signature files for SunOS 4.x and SunOS 5.x. Bug fixes... If the current directory is a descendant of a directory for which the user does not have 'read' permissions (i.e., search only), then csh and find do not always work. Workaround is to 'cd /' where necessary. Not sure this has been completely implemented. typo in scripts/sub/check_devs (Multiple people) scripts/sub/check_devs exited if GENCLIENTDIRS undefined (Sally Noonan). -x 'test' switch is not portable. (Sally Noonan) AIX doesn't need '-g' (Dorian Deane) IRIX test doesn't shortcircuit (Steve Rikli) IRIX config had wrong definition for DATECMD and TIMECMD (Steve Rikli) Crude 'smrsh' check performing poorly (Patrick Nolan & Mohamed el Lozy) Changes for performance and robustness, as suggested by Goran Larsson. A C program is used to get file ownership and permissions instead of 'ls | awk'. (If the C program won't compile, we fall back to 'ls | awk'. Changes to check_anonftp for performance. Added -c switch to allow specifying alternate 'tigerrc' script (John Reynolds) 'tigexp' loses command line parameters on NeXT 3.0 (Kelly Cunningham) Added ethernet device files to check list for SunOS 5 (was already there in SunOS 4). Also inspects /var/sadm/install/contents to check the perms there so that they don't get accidentally changed back. New Stuff 10/31/93 --------- Mailling list available. See the README file for more information. Support for TAMU Linux distribution, may work on other Linux' as well. Updated signatures for SunOS 4.x & SunOS 5.x for security patches. 'installsig' script for installing new signature files (util/installsig). We will try to maintain up to date security patch signature files in the directory net.tamu.edu:/pub/security/TAMU/tiger-sigs. Note that at present, only SunOS 4.x and SunOS 5.x are being actively maintained (not that there is a bias here, it is just easier for me to get information on these... contributions will be welcomed). Various minor bug fixes relating to various platforms. Fixed check_suid to handle MD5 signatures. check_embedded now will optionally wait for the file system scans to complete and will check all setuid executables found for "bad" embedded pathnames. See 'tigerrc' for configuring details. New Stuff 08/17/93 --------- Script for checking embedded pathnames. The other scripts collect filenames which are then fed into the check_embedded script. This checks the ownership and permissions of all of these embedded pathnames. Be warned... this can generate *lots* of output. Pathname checking is now much more complete. Every "problem" is reported in detail, instead of saying "Hey, there's a problem with this pathname". 'tigercron' should work a lot better now. Script for checking BSD printcap printer control file. Signatures for IRIX 4.0.5*, thanks to Steve Rikli. Signatures for NeXTOS 3.1, thanks to William McVey, et al. Cleaned up output... much of the output now gets formatted to (default) 80 columns. Digital signature checking now works with SNEFRU or MD5. Automagically detects which signature to generate. Signature checking is a lot faster now, especially if you have a clean system (the signature database is ordered such that the "good" signatures are first). Interface to 'password' generator scripts changed so that the generator scripts can do sanity checking on the base files. Interfaces to all of the other generator scripts will be changed in next release. Makefile for installing everything. I'm not happy with the installation process this time either... if anyone wants to contribute a snazzy installation script I'll be happy to include it... New Stuff 06/17/93 --------- First off, there are some man pages in the 'man' directory. They are definitely lacking. If I ever stop adding stuff to the package, maybe I will be able to write better documentation. ******** Explain facility. All messages (should) have a message ID associated with them in square brackets []. The script 'tigexp' can be used to get an explanation of the message. Some (many?) of the explanations are lacking. You can also insert the explanations into the output of 'tiger' by using the '-e' flag. If anyone has suggestions or improved explanations, don't hesitate to send them to me. ******** Crack 4.1 interface. 'tiger' will now run Alec Muffett's password cracker 'Crack'. See the 'tigerrc' file and 'site-sample' file for information on enabling it (it is disabled by default). ******** Systems: SunOS 4.1.1 sun3, 4.1.1 sun4, 4.1.2, 4.1.3, 5.1, 5.2 sun4 NeXT 3.0 There, but untested (and I do mean untested). You can try them, but they have *never* been used, so I have no idea what to expect. Some parts are missing (i.e., no signature files). AIX 3.x (if this one works... any idea why so many setuid's on AIX 3?) HPUX (probably anything up to 9.x) IRIX 4.x UNICOS 6.x 7.x (if those pesky users didn't use the machine so much...) ******** More checks. A few of the additions since the last release are: check_aliases: Check mail aliases for problems. check_cron: Check 'cron' entries for problems. check_group: Cross reference 'group' files for problems. check_passwd: Cross reference 'passwd' files for problems. check_path: Check 'root' (and optionally all users) PATH for problems. In addition all previous scripts have been beefed up with many more checks. File Permission databases have been improved (though they still need more work). Scripts which check the path to executables and files now check the pathname thoroughly, even in the face of symbolic links. The file system scans now report device files, world writable directories, symbolic links to system files, in addition to setuid executables. Also the setuid checks now attempt to determine if a setuid program is an old version of a binary for which a security patch was released (i.e., it was moved out of the way, but never deleted or chmod'd, and hence may still be a security problem). For servers of diskless or dataless clients, some "quick" checks of the clients can be performed on the server (see man/tiger.man). Not everything can be checked. Plus, support is not complete. It is possible to install 'tiger' now so that you don't have to feed it all the names of the directories on each invocation. Just run 'Install'... it will prompt for names. 'tigercron' provides a simple-cron facility with report differencing capability and mailing of reports. This is just started and needs more work to be really useful. See the 'cronrc' file for a sample input to it. Checks for the availability of a utility commands have been moved nearer to where they are actually needed (as opposed to having them at the top of each script). This enables more checks to be performed when only a few commands are missing. All cleanup of scratch files goes through the 'delete' routine which won't delete a file that isn't in the scratch work directory. This is to prevent programmer errors from zapping the wrong file [what? programmer errors? Never... :)] Some more C code added. Handling of obtaining a compilation of the source improved. For casual use, nothing need be done. The C code will be compiled and installed in the Bindir (TIGERHOME/bin by default). For regular use, or use in a large group of systems, sharing the tiger directories, the binaries can be compiled and stored in the respective system directories. The scripts will use the binary directly from that directory. The Solaris 2.x (SunOS 5) directory provides precompiled binaries (no C compiler by default). Finally, if you try to run this on a system with an old or broken Bourne shell, or one without functions, have a peek at util/setsh. This will change all the '#!' headers to some other shell (i.e. ksh or bash). Note that 'tiger' has never been run under either of these, but it might be worth a shot. tiger-3.2.3/CHANGES.ARSC0000644000175000017500000002213507722713620013012 0ustar pacopacoChanges 05/15/02 Updated to work correctly with SunOS Updated to work correctly with IRIX (pending) Updated check_root for openSSH permitRootLogin Updated SunOS/5/gen_passwd_sets to address null shell in passwd file Updated util/installsigs to delete the root signature file Added check_rootkit to find rootkit-ed systems Changes 08/27/01 - 09/14/01 Updated gen_passwd for Linux to accomodate PAM. Updated initdefs (pathmsg) to address the daemon owner (printcap). Updated check_known to handle truncated owner permissions. Updated check_root for ssh permitRootLogin Updated check_inetd for tcp wrappers positive testing Updated check_known to handle promiscuous interfaces Changes 06/02/99 ------- Developed a new tigerrc to support customer's security checklist. More extensive tigerrc is in tigerrc-dist. Fixed bug in check_root for Linux boxes. Updated systems service file. Changes 05/30/99 ------- Developed HTML output capability (tiger -H). Fixed systems files for SunOS and IRIX Changes 04/20/99 ------- Corrected numerous small bugs in scripts. Updated the systems directories to reflect current OS configurations for Linux, SunOS, and IRIX and default. Cleaned up the output a bit. --- Advanced Research Corporation Changes 03/09/94 ------- Fix to ./scripts/sub/check_embed. This was disabling the check_embedded script. New Stuff 01/06/94 --------- Updated signature files for SunOS 4.x and SunOS 5.x. Bug fixes... If the current directory is a descendant of a directory for which the user does not have 'read' permissions (i.e., search only), then csh and find do not always work. Workaround is to 'cd /' where necessary. Not sure this has been completely implemented. typo in scripts/sub/check_devs (Multiple people) scripts/sub/check_devs exited if GENCLIENTDIRS undefined (Sally Noonan). -x 'test' switch is not portable. (Sally Noonan) AIX doesn't need '-g' (Dorian Deane) IRIX test doesn't shortcircuit (Steve Rikli) IRIX config had wrong definition for DATECMD and TIMECMD (Steve Rikli) Crude 'smrsh' check performing poorly (Patrick Nolan & Mohamed el Lozy) Changes for performance and robustness, as suggested by Goran Larsson. A C program is used to get file ownership and permissions instead of 'ls | awk'. (If the C program won't compile, we fall back to 'ls | awk'. Changes to check_anonftp for performance. Added -c switch to allow specifying alternate 'tigerrc' script (John Reynolds) 'tigexp' loses command line parameters on NeXT 3.0 (Kelly Cunningham) Added ethernet device files to check list for SunOS 5 (was already there in SunOS 4). Also inspects /var/sadm/install/contents to check the perms there so that they don't get accidentally changed back. New Stuff 10/31/93 --------- Mailling list available. See the README file for more information. Support for TAMU Linux distribution, may work on other Linux' as well. Updated signatures for SunOS 4.x & SunOS 5.x for security patches. 'installsig' script for installing new signature files (util/installsig). We will try to maintain up to date security patch signature files in the directory net.tamu.edu:/pub/security/TAMU/tiger-sigs. Note that at present, only SunOS 4.x and SunOS 5.x are being actively maintained (not that there is a bias here, it is just easier for me to get information on these... contributions will be welcomed). Various minor bug fixes relating to various platforms. Fixed check_suid to handle MD5 signatures. check_embedded now will optionally wait for the file system scans to complete and will check all setuid executables found for "bad" embedded pathnames. See 'tigerrc' for configuring details. New Stuff 08/17/93 --------- Script for checking embedded pathnames. The other scripts collect filenames which are then fed into the check_embedded script. This checks the ownership and permissions of all of these embedded pathnames. Be warned... this can generate *lots* of output. Pathname checking is now much more complete. Every "problem" is reported in detail, instead of saying "Hey, there's a problem with this pathname". 'tigercron' should work a lot better now. Script for checking BSD printcap printer control file. Signatures for IRIX 4.0.5*, thanks to Steve Rikli. Signatures for NeXTOS 3.1, thanks to William McVey, et al. Cleaned up output... much of the output now gets formatted to (default) 80 columns. Digital signature checking now works with SNEFRU or MD5. Automagically detects which signature to generate. Signature checking is a lot faster now, especially if you have a clean system (the signature database is ordered such that the "good" signatures are first). Interface to 'password' generator scripts changed so that the generator scripts can do sanity checking on the base files. Interfaces to all of the other generator scripts will be changed in next release. Makefile for installing everything. I'm not happy with the installation process this time either... if anyone wants to contribute a snazzy installation script I'll be happy to include it... New Stuff 06/17/93 --------- First off, there are some man pages in the 'man' directory. They are definitely lacking. If I ever stop adding stuff to the package, maybe I will be able to write better documentation. ******** Explain facility. All messages (should) have a message ID associated with them in square brackets []. The script 'tigexp' can be used to get an explanation of the message. Some (many?) of the explanations are lacking. You can also insert the explanations into the output of 'tiger' by using the '-e' flag. If anyone has suggestions or improved explanations, don't hesitate to send them to me. ******** Crack 4.1 interface. 'tiger' will now run Alec Muffett's password cracker 'Crack'. See the 'tigerrc' file and 'site-sample' file for information on enabling it (it is disabled by default). ******** Systems: SunOS 4.1.1 sun3, 4.1.1 sun4, 4.1.2, 4.1.3, 5.1, 5.2 sun4 NeXT 3.0 There, but untested (and I do mean untested). You can try them, but they have *never* been used, so I have no idea what to expect. Some parts are missing (i.e., no signature files). AIX 3.x (if this one works... any idea why so many setuid's on AIX 3?) HPUX (probably anything up to 9.x) IRIX 4.x UNICOS 6.x 7.x (if those pesky users didn't use the machine so much...) ******** More checks. A few of the additions since the last release are: check_aliases: Check mail aliases for problems. check_cron: Check 'cron' entries for problems. check_group: Cross reference 'group' files for problems. check_passwd: Cross reference 'passwd' files for problems. check_path: Check 'root' (and optionally all users) PATH for problems. In addition all previous scripts have been beefed up with many more checks. File Permission databases have been improved (though they still need more work). Scripts which check the path to executables and files now check the pathname thoroughly, even in the face of symbolic links. The file system scans now report device files, world writable directories, symbolic links to system files, in addition to setuid executables. Also the setuid checks now attempt to determine if a setuid program is an old version of a binary for which a security patch was released (i.e., it was moved out of the way, but never deleted or chmod'd, and hence may still be a security problem). For servers of diskless or dataless clients, some "quick" checks of the clients can be performed on the server (see man/tiger.man). Not everything can be checked. Plus, support is not complete. It is possible to install 'tiger' now so that you don't have to feed it all the names of the directories on each invocation. Just run 'Install'... it will prompt for names. 'tigercron' provides a simple-cron facility with report differencing capability and mailing of reports. This is just started and needs more work to be really useful. See the 'cronrc' file for a sample input to it. Checks for the availability of a utility commands have been moved nearer to where they are actually needed (as opposed to having them at the top of each script). This enables more checks to be performed when only a few commands are missing. All cleanup of scratch files goes through the 'delete' routine which won't delete a file that isn't in the scratch work directory. This is to prevent programmer errors from zapping the wrong file [what? programmer errors? Never... :)] Some more C code added. Handling of obtaining a compilation of the source improved. For casual use, nothing need be done. The C code will be compiled and installed in the Bindir (TIGERHOME/bin by default). For regular use, or use in a large group of systems, sharing the tiger directories, the binaries can be compiled and stored in the respective system directories. The scripts will use the binary directly from that directory. The Solaris 2.x (SunOS 5) directory provides precompiled binaries (no C compiler by default). Finally, if you try to run this on a system with an old or broken Bourne shell, or one without functions, have a peek at util/setsh. This will change all the '#!' headers to some other shell (i.e. ksh or bash). Note that 'tiger' has never been run under either of these, but it might be worth a shot. tiger-3.2.3/COPYING0000644000175000017500000004311007502327223012313 0ustar pacopaco GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) 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 of the License, 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. 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 Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License. tiger-3.2.3/CREDITS0000644000175000017500000000520407722720464012312 0ustar pacopacoProduced by Texas A&M University Supercomputer Center (as of 09/93, development done via the Network Group, Computing & Information Services) Written by Douglas Lee Schales Dave Hess Khalid Warraich Dave Safford Editor Douglas Lee Schales Updated by Advanced Research Corporation (as of 08/2002) Bob Todd, toddr@arc.com Debian GNU/Linux (as of 04/2002) Javier Fernandez-Sanguino, jfs@debian.org On Location - SunOS 4.x Director: Douglas Lee Schales Writer: Douglas Lee Schales Dave Hess Dave Safford On Location - NeXT Director: Dave Hess Writer: Dave Hess On Location - UNICOS Director: Dave Hess Writer: Dave Hess Post Production: Douglas Lee Schales On Location - Solaris 2.x and SysVR4 Director: Khalid Warraich Writer: Khalid Warraich Post Production: Douglas Lee Schales ------------------------------------------------------------------------ Xerox Secure Hash Function (snefru) (c) Xerox Corporation 1989 RSA Data Security, Inc. MD5 Message-Digest Algorithm, (c) RSA Data Security, Inc. 1991-92 ------------------------------------------------------------------------ Several ideas and checks (i.e. check_cron, check_path) are derived from Dan Farmer's COPS package. Thanks for letting me rummage around in COPS Dan! Several checks are derived from Dave Safford's 'secure_sun' script. ------------------------------------------------------------------------ Thanks to Art Ferruzzi for pointing out that 'tiger' would check the permissions on a symbolic link instead of what it was pointing to. Dave Duchscher for repeatedly pointing out my inability to get the signatures right for SunOS 4.1.3 Steve Rikli for also pointing out discrepancies in the signatures file and advice on IRIX. Dan Farmer for suggestions and allowing me to browse COPS for ideas. -------------------------------------------------------------------- William McVey et al of the Purdue CC provided the signatures for NeXT 3.1. Steve Rikli of the College of Architecture, Texas A&M, provided the signatures for IRIX 4.0.5. ------------------------------------------------------------------------ Goran Larsson (hoh@lorelei.approve.se) for suggesting a way of improving performance of 'tiger' as well as making it more robust. The use of 'ls ... | awk' to get file ownership and permissions is slow and unreliable (fields occasionally bump up against one another). Though I wasn't able to use Goran's program (stat) without butchering the code, I was able to use the suggeston. Anyone starting from scratch might want to look at 'stat' (contact Goran for availability). tiger-3.2.3/DESCRIPTION0000644000175000017500000000467107502327223012777 0ustar pacopaco What is TIGER? TIGER, or the 'tiger' scripts, is a set of Bourne shell scripts, C programs and data files which are used to perform a security audit of UNIX systems. It is designed to hopefully be easy to use, easy to understand and easy to enhance. Currently support for SunOS 4.x and SunOS 5.x is the best, followed by NeXT 3.x. Other systems for which (at least partial) configuration files are provided are IRIX 4.x, AIX 3.x, UNICOS 6.x, Linux 0.99.x and HP/UX. These configurations are not 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. TIGER has one primary goal: report ways 'root' can be compromised. While checks are performed for other purposes, most of the checks are directed at this goal. The primary assumption made is that any uid other than 0 can be obtained (if you aren't as paranoid as I am, you could tell it to trust, oh, say 'bin'... but don't!) and that *any* gid can be obtained by unauthorized persons. What does it do to do this? Paths into 'root' (cron, inetd, setuid executables, PATH, etc, etc) are all checked to see if anyone other than 'root' can alter that path. Any such instances are flagged. (In reality, paths into other accounts are checked for vulnerability, but 'root' receives special attention). A brief run down of some of the checks (not complete): o cron entries are checked o mail aliases are checked o NFS exports are checked o inetd entries are checked o PATH variables are checked o .rhosts & .netrc files are checked o Specific file & directory access permissions are checked o File system scans locate unusual files o Digital signatures are used to detect alterations to key binaries (signatures are generated from CD-ROM) and also to report binaries for which (updated) security patches exist. o Pathnames embedded in any files reported by most of the other checks are checked. The amount of time required to execute TIGER varies on system size and the TIGER configuration settings. On a SparcStation LX with 1GB of disk, less than 20 users, and a strenuous TIGER configuration, it takes about 90 minutes. A less strenuous TIGER configuration can run in about 25 minutes on the same machine configuration. The bulk of this time is used by the file system scans and check of embedded pathnames. On systems with a large number of users, other checks will dominate. tiger-3.2.3/Makefile.in0000644000175000017500000002264411113624223013327 0ustar pacopaco#!/usr/bin/make -f # # Makefile for tiger HTML documentation # # # General makefile for tiger - A UN*X security checking system # Copyright (C) 2001-2008 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. # # You only need to 'make' tiger if you are planning to run it # on a regular basis, or to compile the binaries (sources under c/) # for your platform (these binaries might be needed by some checks) # # TODO: # - This Makefile should follow better GNU's coding standards # as described in http://www.gnu.org/prep/standards_50.html#SEC50 # (including using $(INSTALL) and mkinstalldirs) # #------------------------------------------------------------------------ # These definitions follow GNU's coding standards: # prefix=@prefix@ exec_prefix=@exec_prefix@ bindir=@bindir@ sbindir=@sbindir@ datadir=@datadir@ sysconfdir=@sysconfdir@ localstatedir=@localstatedir@ 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 # contain the checking scripts, the platform specific scripts, etc. # None of this will need to be writable once installed. # TIGERHOME=@tigerhome@ # # This directory is used for scratch files while the scripts # are running. It can be /tmp. By using something other # than /tmp (something used only by the 'tiger' scripts), you # can easily clean up the occasional dribbles left by 'tiger' # (report these... don't want anything left laying around). # # Of course, it is necessary that this directory be writable. # TIGERWORK=@tigerwork@ # # Where do log files go. This directory must be writable. # TIGERLOGS=@tigerlog@ # # Where do binary executables go... this is only used if the # binary executables don't exist in the appropriate platform # sub-directory under $(TIGERHOME)/systems # TIGERBIN=@tigerbin@ # # Where does the configuration go to? Tigerrc and cronrc get # installed there # TIGERCONFIG=@tigerconfig@ # # Where do manpages go to # TIGERMANDIR=@mandir@ # #------------------------------------------------------------------------ # # End of user customization... # #------------------------------------------------------------------------ # PLATFORM_SCRIPTS=$$(find ./systems/ -type f) BINARIES=./tiger \ ./tigexp \ ./tigercron # Maybe this should be modified to be a generic ./scripts/check_* # otherwise sometimes a check might be 'forgotten' SCRIPTS=./scripts/check_accounts \ ./scripts/check_aliases \ ./scripts/check_anonftp \ ./scripts/check_apache \ ./scripts/check_crontabs \ ./scripts/check_devices \ ./scripts/check_embedded \ ./scripts/check_exports \ ./scripts/check_exrc \ ./scripts/check_finddeleted \ ./scripts/check_ftpusers \ ./scripts/check_group \ ./scripts/check_inetd \ ./scripts/check_issue \ ./scripts/check_known \ ./scripts/check_listeningprocs \ ./scripts/check_logfiles \ ./scripts/check_netrc \ ./scripts/check_network \ ./scripts/check_nisplus \ ./scripts/check_ntp \ ./scripts/check_omniback \ ./scripts/check_passwd \ ./scripts/check_passwdformat \ ./scripts/check_path \ ./scripts/check_perms \ ./scripts/check_printcap \ ./scripts/check_rhosts \ ./scripts/check_root \ ./scripts/check_rootdir \ ./scripts/check_rootkit \ ./scripts/check_runprocs \ ./scripts/check_sendmail \ ./scripts/check_services \ ./scripts/check_signatures \ ./scripts/check_ssh \ ./scripts/check_system \ ./scripts/check_tcpd \ ./scripts/check_umask \ ./scripts/check_xinetd \ ./scripts/crack_run \ ./scripts/tripwire_run \ ./scripts/aide_run \ ./scripts/integrit_run \ ./scripts/find_files \ ./util/buildbins \ $(PLATFORM_SCRIPTS) CONFIGFILES=./tigerrc \ ./cronrc MISCFILES=./initdefs \ ./syslist \ ./check.d/README \ ./util/buildbins \ ./util/buildconf \ ./util/difflogs \ ./util/flogit \ ./util/genmsgidx \ ./util/getfs-amd \ ./util/getfs-automount \ ./util/getfs-nfs \ ./util/getfs-std \ ./util/gethostinfo \ ./util/getnetgroup \ ./util/getpermit \ ./util/installsig \ ./util/logit \ ./util/mkfilelst \ ./util/mksig \ ./util/setsh \ ./util/sgrep \ ./doc/explain.idx MISCDIRS=./bin \ ./check.d \ ./doc \ ./html \ ./scripts/sub \ ./systems all: cd c && $(MAKE) cd doc && $(MAKE) installdirs: @echo "Creating $(TIGERHOME)..." @if [ ! -d $(DESTDIR)$(TIGERHOME) ]; then \ mkdir -p $(DESTDIR)$(TIGERHOME); \ chmod 755 $(DESTDIR)$(TIGERHOME); \ fi @echo "Creating $(TIGERWORK)..." @if [ ! -d $(DESTDIR)$(TIGERWORK) ]; then \ mkdir -p $(DESTDIR)$(TIGERWORK); \ chmod 700 $(DESTDIR)$(TIGERWORK); \ fi @echo "Creating $(TIGERLOGS)..." @if [ ! -d $(DESTDIR)$(TIGERLOGS) ]; then \ mkdir -p $(DESTDIR)$(TIGERLOGS); \ chmod 700 $(DESTDIR)$(TIGERLOGS); \ fi @echo "Creating $(TIGERHOME)/scripts..." @if [ ! -d $(DESTDIR)$(TIGERHOME)/scripts ]; then \ mkdir $(DESTDIR)$(TIGERHOME)/scripts; \ chmod 755 $(DESTDIR)$(TIGERHOME)/scripts; \ fi @echo "Creating $(TIGERHOME)/util..." @if [ ! -d $(DESTDIR)$(TIGERHOME)/util ]; then \ mkdir $(DESTDIR)$(TIGERHOME)/util; \ chmod 755 $(DESTDIR)$(TIGERHOME)/util; \ fi @echo "Creating $(TIGERBIN)..." @if [ ! -d $(DESTDIR)$(TIGERBIN) ]; then \ mkdir -p $(DESTDIR)$(TIGERBIN); \ chmod 755 $(DESTDIR)$(TIGERBIN); \ fi @echo "Creating $(TIGERCONFIG)..." @if [ ! -d $(DESTDIR)$(TIGERCONFIG) ]; then \ 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..." @for file in $(BINARIES); do \ sed -e 's%^TigerLogDir=.*$$%TigerLogDir="'$(TIGERLOGS)'"%' \ -e 's%^TigerWorkDir=.*$$%TigerWorkDir="'$(TIGERWORK)'"%' \ -e 's%^TigerConfigDir=.*$$%TigerConfigDir="'$(TIGERCONFIG)'"%' \ -e 's%^TigerBinDir=.*$$%TigerBinDir="'$(TIGERBIN)'"%' \ -e 's%^TigerInstallDir=.*$$%TigerInstallDir="'$(TIGERHOME)'"%' \ $$file > $(DESTDIR)$(TIGERBIN)/$$file; \ chmod 755 $(DESTDIR)$(TIGERBIN)/$$file ; \ done installconfig: @echo "Copying configuration files..." @for file in $(CONFIGFILES); do \ $(INSTALL) -m 0640 $$file $(DESTDIR)$(TIGERCONFIG)/$$file; \ done @echo "Copying general configuration..." @sed -e 's%^TigerLogDir=.*$$%TigerLogDir="'$(TIGERLOGS)'"%' \ -e 's%^TigerWorkDir=.*$$%TigerWorkDir="'$(TIGERWORK)'"%' \ -e 's%^TigerConfigDir=.*$$%TigerConfigDir="'$(TIGERCONFIG)'"%' \ -e 's%^TigerBinDir=.*$$%TigerBinDir="'$(TIGERBIN)'"%' \ -e 's%^TigerInstallDir=.*$$%TigerInstallDir="'$(TIGERHOME)'"%' \ ./config >$(DESTDIR)$(TIGERHOME)/config @chmod 644 $(DESTDIR)$(TIGERHOME)/config install: installdirs installbinaries installconfig installmanpages @if [ ! -d bin ]; then \ mkdir bin; \ fi @if [ ! -d html ]; then \ mkdir html; \ fi cd c && $(MAKE) install cd doc && $(MAKE) install @echo "Copying miscellaneous dirs..." for dir in $(MISCDIRS); do \ tar cf - $$dir | (cd $(DESTDIR)$(TIGERHOME); tar xpf -); \ done @echo "Copying miscellaneous files..." @for file in $(MISCFILES); do \ cp -p $$file $(DESTDIR)$(TIGERHOME)/$$file; \ done @echo "Copying scripts..." @for file in $(SCRIPTS); do \ sed -e 's%^TigerInstallDir=.*$$%TigerInstallDir="'$(TIGERHOME)'"%' \ $$file > $(DESTDIR)$(TIGERHOME)/$$file;\ chmod 755 $(DESTDIR)$(TIGERHOME)/$$file; \ done @echo "Copying platform scripts..." @for file in $(PLATFORM_SCRIPTS); do \ if [ -x $$file ] ; then \ sed -e 's%^TigerInstallDir=.*$$%TigerInstallDir="'$(TIGERHOME)'"%' \ $$file > $(DESTDIR)$(TIGERHOME)/$$file;\ chmod 755 $(DESTDIR)$(TIGERHOME)/$$file; \ else \ cp -p $$file $(DESTDIR)$(TIGERHOME)/$$file; \ fi; \ done distribution: # TODO: it should create the proper tiger-$VERSION.tgz file # TODO: The following should be done carefully, there are some # more changes in tigerrc-all than the 'yes' flag for checks # cat tigerrc |sed -e 's/=N/=Y/' >tigerrc-all cp tigerrc tigerrc-dist clean: cd c && $(MAKE) clean cd doc && $(MAKE) -f Makefile.in clean -find bin/ -type f -exec rm -f {} \; -rm -f man/index.bt distclean: clean cd c && $(MAKE) distclean cd doc && $(MAKE) -f Makefile.in distclean -find log/ -type f -exec rm -f {} \; -find run/ -type f -exec rm -f {} \; -rm -f Makefile config.{status,log,cache} man/tiger.8 man/tigercron.8 maintainer-clean: distclean configure: configure.in autoconf # Configure the package with the defaults (will install to /usr/local/) config: configure ./configure tiger-3.2.3/README0000644000175000017500000001067510217661040012145 0ustar pacopaco For starters ------------ 'tiger' is a set of scripts that scan a Un*x system looking for security problems, in the same fashion as Dan Farmer's COPS. 'tiger' was originally developed to provide a check of UNIX systems on the A&M campus that want to be accessed from off campus (clearance through the packet filter). As such, they needed something that *anyone* could run if they could figure out how to get it down to their machine. If you just want to run it, without regards to time considerations, then just 'cd' into the tiger directory, and run './tiger' as 'root'. The 'tigerrc' file is set up for a generic host, and enables all checks. You can customize this file as needed. (Or use the '-c' switch to use an alternate tigerrc file as of 2.2.2) Please read the file USING for more information on how to use Tiger. And read the file COPYING for legal stuff. If you have any thing to say about 'tiger', please let us know (see below). New things to check, how to improve things, *anything*, send it in... if you think someone else has already sent in a bug report, suggestion, etc., send it in anyway... the more times someone hits us over the head with something, the more likely it is to get fix/included... Needs ----- Tiger needs a standard POSIX shell to run, a C compiler if you wish to compile the binaries used and some other (optional) utilities, including the standard UNIX file utilities and text utilities (the GNU versions work fine for this). Mailing lists ------------- 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 Dedicated to users of the Tiger tool, feel free to ask here any questions on how to run the tool, configure it or adapt it to your system. http://mail.freesoftware.fsf.org/mailman/listinfo/tiger-user - a developer's mailing list: tiger-devel@mail.freesoftware.fsf.org If you want to help us improve Tiger this is where all discussion on improvements on the tool take place. http://mail.freesoftware.fsf.org/mailman/listinfo/tiger-devel Note that the previous mailing list (at 'majordomo@net.tamu.edu') does no longer work. Availability ------------- The latest versions of Tiger can be downloaded from Savannah at http://savannah.gnu.org/files/?group=tiger Previous versions are available at the "TAMU Security Tools: Tiger" page http://www.net.tamu.edu/network/tools/tiger.html You can browse the CVS code at http://savannah.nongnu.org/cgi-bin/viewcvs/tiger/tiger/ More information on the project, including bug tracking, task manager, etc. available at: http://savannah.nongnu.org/projects/tiger Latest signatures ----------------- You can check to see if you have the latest digital signatures for the system(s) you are checking. There are some signature files available on anonymous FTP at net.tamu.edu:/pub/security/TAMU/tiger-sigs/* The util/installsigs script can be used to install the updated signatures. As of Tiger 2.2.2, installsigs is also capable of installing signatures for new OS releases (not new platforms or major releases though). Note however, that these signatures have not been updated for quite some time (and might not be up-to-date with your current system). If you can provide newer signatures please submit them to the developer's mailing list. History ------- Tiger was originally developed by the A&M campus of the Texas University, it was written at the same time that COPS, SATAN and Internet Scanner were. Eventually, after the 2.2.4 version, which was released in 1994, development of Tiger stalled. Three different forks evolved after Tiger: TARA (developed by Advanced Research Computing, available at http://www-arc.com/tara), one internally 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, 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 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 operating systems. Over 2200 lines of code and documentation were included in this release. First version by Doug.Schales@net.tamu.edu Last update by Javier Fernandez-Sanguino tiger-3.2.3/README.1st0000644000175000017500000000013207502327223012643 0ustar pacopaco Read the README file about the 'tigerrc' file! Have a look at the USING file as well... tiger-3.2.3/README.hostids0000644000175000017500000001033410217661040013611 0ustar pacopaco Notes on using Tiger as a host-IDS .................................. Tiger is a two-sided tool for a security-conscious system administrator, it can be used both as an auditing tool (to determine which security issues are there) and it can also be used as a host-based intrusion detection system (HIDS for shorts). The overall procedure is: 1.- Tiger runs a given module on a configured time 2.- Messages not ignored (see README.ignore) are passed through 3.- Messages of a module are checked against those in a specific 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 (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. The cron job that is run is 'tigercron' which reads the cronrc file (which should be installed under /etc/tiger or /usr/local/etc/tiger depending on our installation). This file tells Tiger which checks should be run on any given hour (format is similar to a cron file). When a module is run, the 'tigercron' program checks: - if 'Tiger_Cron_Template' is set to Y in tigerrc, it checks if there is a template stating which are the expected results, - if 'Tiger_Cron_CheckPrev' is set to Y in tigerrc, it checks if there is a previous run of the module it can check against. This differential reports provide an easy way to detect intrusions (which works even if no configuration is done, as a matter of fact). If there is a new intrusion Tiger should detect something running amok (file changes, new processes, new users...) and would just send the (new) security issue detected. However, Tiger, as a host IDS , is better completed with some other tools: - 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) There is a module (tripwire_run) which can be used to run tripwire through Tiger, and a sysadmin could easily fit any other security checks into similar modules. Deficiencies of using Tiger as a host IDS ----------------------------------------- Besides the deficiencies (i.e. checks not available for some security issues, known as 'false negatives'), there are some issues security administrators must be aware of before deploying Tiger as a security tool: 1.- the channel between the Tiger 'agents' and where the reports are received is not secure (it's just e-mail after all). If you want encrypted communications to avoid tampering or snooping it has to be enabled through other methods. Some ideas: 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 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 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 compromised: a) an attacker is able to retrieve sensitive information from the logs (but if he's already compromised the system he can use other methods) b) an attacker can tamper with the logs, this means that he can tamper with how (and what) Tiger reports in the next run (if using differentiated reports against either templates or previous runs) 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 Wed, 12 Nov 2003 03:46:57 +0100 tiger-3.2.3/README.ignore0000644000175000017500000000510307650720571013431 0ustar pacopacoTiger's ignore mechanism ------------------------ Tiger, since version 3.2, provides a new 'ignore' mechanism. This ignore mechanism is a way for administrators to customize their policy in such a way that messages generated by any of Tiger modules will be 'ignored'. The ignore file needs to be stored in $CONFDIR (the location of this directory depends on how it has been autoconfigured, by default is /usr/local/tiger/) and is named 'tiger.ignore' The idea for this mechanism is derived from logcheck's mechanism and follows a similar behaviour. If the file does not exist all messages are reported. 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). As a matter of fact EGREP is used to interpret it. As logcheck says: # Use your judgement before putting words # in here or you can miss really important events. The default is to leave # this file with only a couple entries. DO NOT LEAVE THE FILE EMPTY. Some # grep's will assume that an EMPTY file means a wildcard and will ignore # everything! The basic configuration allows for the more frequent sendmail # error. Tiger by default does not ship an 'ignore' file, although some versions (like Debian) might ship with a 'baseline' that provides some entries for messages that should be ignored in the running operating system since it's not a security policy violation but rather the default behaviour. In any case, be careful how you use wildcards (*) or regular expressions in the tiger.ignore file or you might miss important events reported by Tiger. This mechanism can be also useful to avoid messages from some checks which might produce spurious results depending on your system. A common bug reported for the Debian GNU/Linux package has been the messages related to the 'check_listeningprocs' script which might report a listening process that when investigated later on does not appear any longer. This is due to some servers opening UDP listeners to receive DNS queries (usually servers that use a lot of DNS resolution like proxies -squid-, mail servers -qmail- and the like). In this case you can either use a mechanism in the check to filter these messages out, if some is available (in the check_listeningprocs you can use the Tiger_Listening_ValidProcs or Tiger_Listening_ValidUsers variable) or you can add a proper regular expression in the ignore file to remove this (but not other) messages. -- Javier Fernández-Sanguino Peña Thu, 17 Apr 2003 19:00:20 +0200 tiger-3.2.3/README.linux0000644000175000017500000000626107651563602013314 0ustar pacopacoNotice of third party modifications as per the GNU GENERAL PUBLIC LICENSE. Further changes made by Javier Fernández-Sanguino Peña to comply to FSSTN and Debian policy in the Debian package. Made dic 30 01:06:47 CET 1998. Changes made by Javier Fernández-Sanguino to add new checks, made Fri Aug 24 12:20:43 CEST 2001. Modifications to support Debian 2.x (and later) were made to the following files: CHANGED: Makefile systems/Linux/2/check - Added checks described below systems/Linux/2/config - Added binaries needed for checks below README.linux - This file NEW: systems/Linux/2/check_network_config - Checks the Linux kernel network configuration systems/Linux/2/check_listeningprocs - Checks for processes listening on TCP/IP sockets and warns when user is not root systems/Linux/2/deb_nopackfiles - Checks files installed in binary directories not associated to any package (Debian specific, could be adapted to other distributions if package manager provides this info) systems/Linux/2/deb_checkmd5sums - Checks for md5sums of installed files using the database installed in /var/lib/dpkg/info/ (Debian specific) systems/Linux/2/deb_checkadvisories - Checks for installed packages vs. Debian advisories in order to determine if an upgrade is needed. debian/ - directory including all package related files for the Debian GNU/Linux distribution Debian provides a diff.gz file along with the sources of this package in order to inform users of the specific changes made. Please check http://packages.debian.org/tiger ------------- previous notice -------------------------- tiger-2.2.4 includes support for Redhat Linux 2.x.xx. Modifications and additions are based on "Redhat Linux 2.0.35 i586", and were made on September 14, 1998 by Robert L. Ziegler (rlz@mediaone.net). Modifications to support Redhat Linux 2.0.35 were made to the following files: CHANGED: ORIGINAL: Makefile Makefile.org-2.2.3 config config.org-2.2.3 scripts/check_cron scripts/check_cron.org-2.2.3 scripts/check_inetd scripts/check_inetd.org-2.2.3 scripts/crack_run scripts/crack_run.org-2.2.3 site-sample site-sample.org-2.2.3 tigerrc tigerrc.org-2.2.3 util/mksig util/mksig.org-2.2.3 The original files as supplied in the tiger-2.2.3.tar.gz package are included with an ".org-2.2.3" suffix. Additional files to support Redhat Linux 2.0.35 include: NEW: README.linux systems/Linux/2/config systems/Linux/2/check.tbl systems/Linux/2/check_cron systems/Linux/2/embedlist systems/Linux/2/facl.strict systems/Linux/2/file_access_list systems/Linux/2/gen_alias_sets systems/Linux/2/gen_bootparam_sets systems/Linux/2/gen_cron systems/Linux/2/gen_export_sets systems/Linux/2/gen_group_sets systems/Linux/2/gen_inetd systems/Linux/2/gen_mounts systems/Linux/2/gen_services systems/Linux/2/gendlclients systems/Linux/2/getdisks systems/Linux/2/inetd systems/Linux/2/rel_file_exp_list systems/Linux/2/services systems/Linux/2/suid_list systems/Linux/2/check systems/Linux/2/gen_passwd_sets systems/Linux/2/signatures systems/Linux/2/sgid_list tiger-3.2.3/README.logo0000644000175000017500000000134310217661040013074 0ustar pacopaco Tiger's logo ------------ 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). 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 source code (files tiger_logo.jpg, tiger_logo_small.jpg and tiger_logo_half.jpg) and in Savannah (http://savannah.nongnu.org/download/tiger/tiger-logo.jpg). My thanks to Alessandro Franceschi and their graphician, Tatlin, for this wonderful logo. ------------------------- Javier Fernandez-Sanguino Thu, 17 Apr 2003 23:26:11 +0200 tiger-3.2.3/README.signatures0000644000175000017500000000436710217661040014331 0ustar pacopaco NOTES on signatures ------------------- Tiger has two generic checks to test in UNIX systems: check_perms, and check_signatures. 'Check_perms' can check if the filesystem permissions correspond to those after installation. 'Check_signatures' checks if the MD5 sums of a list of files correspond to those known to be vulnerable in a given operating system. However, notice that for this checks to properly work the system signatures have to be up to date. The two files involved in this are 'signatures' and 'file_access_list' under the directories of the operating systems (systems/). Note that this files might not be as up to date as it would be desired for some operating systems. If you want to generate fresh signature and file_access_list for your 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 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 different sources including: - http://www.knowngoods.org/download.html (these will probably be in the near future too), for a good discussion on this service check http://slashdot.org/articles/02/12/09/0411224.shtml?tid=172 # TODO: add pointer to NIST reference list Some vendors provide signatures or patch information for their operating systems: - Sun has a web interface for MD5 sums of Solaris at http://sunsolve.sun.com/pub-cgi/fileFingerprints.pl As well as a patch tools based on patchdiag.xref available at: http://sunsolve.sun.com/pub-cgi/patchDownload.pl?target=patchdiag.xref&method=H - IBM provides a list of APAR fixes at http://techsupport.services.ibm.com/server/aix.CAPARdb http://techsupport.services.ibm.com/server/LatestFixData51 http://techsupport.services.ibm.com/server/aix.fdc51 http://techsupport.services.ibm.com/server/aix.fixsearch5L Notice that the old location for signatures (at TAMU http://www.net.tamu.edu/ftp/security/TAMU/tiger-sigs/) have already been integrated into the latest tiger source code. --- Javier Fernandez-Sanguino Pen~a Wed, 13 Aug 2003 03:35:59 +0200 tiger-3.2.3/README.sources0000644000175000017500000001375710231025265013632 0ustar pacopaco Tiger was not, obviously, created or developed at the margin of other security information sources and tools. The following (incomplete) list indicates which sources and tools have been used to improve Tiger. Note that, in the case of tools, no code has been included directly into Tiger since some of the tools below are not GPL but use some other license, or they have been developed in other programming languages (usually Perl). Information Sources: ------------------- - "Practical UNIX & Internet Security" by Simon Garfinkel and Gene Spafford. (http://www.oreilly.com/catalog/puis/). A _must_ read (although some issues 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/ - CERT's UNIX configuration guidelines http://www.cert.org/tech_tips/unix_configuration_guidelines.html - CERT's UNIX Security Checklist v2.0 http://www.cert.org/tech_tips/usc20_full.html http://www.auscert.org.au/render.html?it=1935&cid=1920 - SANS's SCORE (Security Consensus Operational Readiness Evaluation) http://www.sans.org/score/ and the Step by Step Guides available at http://store.sans.org/store_category.php?category=consguides - SANS's Intrusion Detection FAQ: How to Examine a Unix Box for Possible Compromise. http://www.sans.org/resources/idfaq/unixbox.php - Security Patches FAQ (rather out of date, but some things still useful) http://www.faqs.org/faqs/computer-security/security-patches/ For generic information on OS behavior: --------------------------------------- - For Linux: Linux manpages available at http://www.tldp.org/docs.html#man (searchable at http://www.linux101.org/site/man.php?) Securing Debian Manual: http://www.debian.org/doc/manuals/securing-debian-howto/index.en.html RedHat's Security Guide: http://www.redhat.com/docs/manuals/linux/RHL-9-Manual/security-guide/ and many other documentation at The Linux Documentation Project (http://www.tldp.org/) Comp.os.linux security FAQ: http://www.linuxsecurity.com/docs/colsfaq.html - For Solaris Reference information for the Solaris Operating Environment, available at http://soldc.sun.com/documentation/reference/index.html including the Solaris manpages: http://docs.sun.com/db?p=subj/manpages_solaris Sun Security Patches: http://sunsolve.sun.com/pub-cgi/show.pl?target=patches/patch-license&nav=pub-patches - For AIX 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/ 1) Elements of Security: AIX 4.1, GG24-4433-00. 2) AIX 4.3 Elements of Security Effective and Efficient Implementation, SG24-5962-00. 3) Additional AIX Security Tools on IBM pSeries, IBM RS/6000, and SP/Cluster, SG24-5971-00. 4) TCP/IP Tutorial and Technical Overview, GG24-3376-06. 5) IBM Certification Study Guide AIX Installation and System Recovery. - For HP-UX HP-UX manpages: http://docs.hp.com/hpux/os/man_pages.html Network security Features of HP-UX 11i: http://docs.hp.com/hpux/onlinedocs/2238/netsecur_final.pdf Security Patch check: http://docs.hp.com/hpux/onlinedocs/internet/spc_faq.html http://docs.hp.com/hpux/onlinedocs/internet/spc_readme.html HP-UX trusted system: http://docs.hp.com/hpux/onlinedocs/B2355-90121/B2355-90121.html (security update for HP-UX 10.20 http://docs.hp.com/hpux/onlinedocs/internet/SecUpdate1202.html) HP-UX FAQ: http://www.faqs.org/faqs/hp/hpux-faq/preamble.html (specially the 'Auditing and Security' section 5.1) - For OpenBSD (for future porting) OpenBSD manpages: http://www.openbsd.org/cgi-bin/man.cgi - For IRIX Security information: http://www.sgi.com/support/security/ http://www-viz.tamu.edu/~sgi-faq/faq/html-1/security.html Manpages: http://techpubs.sgi.com/library/tpl/cgi-bin/init.cgi Other (related) tools: ---------------------- 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 that they have been programmed to fix. - Dan Farmer's COPS (Computer Oracle and Password System) developed in 1989 [unfortunately, it was distributed with a 'non-free' license] - Titan (written by Brad Powell, Matt Archibald, and Dan Farmer), an auditing and hardening tool for FreeBSD, Linux and Solaris http://www.fish.com/titan/ - Bastille-Linux, a hardening tool for Linux and HP-UX As for Titan, the following modules are implemented in Tiger checks: create-issue.sh (FreeBSD, Linux Generic, RedHat, Solaris) -> check_issue ftpusers.sh (FreeBSD, Linux Generic, RedHat, Solaris) -> check_ftpusers inetd.sh (FreeBSD, Linux Generic, RedHat, Solaris) -> check_inetd Note: does not warn for all 'chatty' services though, needs to be improved log_in_vain.sh (FreeBSD) -> not implemented (yet) nuke-inetd.sh (FreeBSD) -> not implemented nuke-portmap.sh (FreeBSD) -> not implemented nuke-sendmail.sh (FreeBSD, Linux Generic, RedHat, Solaris) -> not implemented telnet-banner.sh (FreeBSD, Linux Generic, RedHat, Solaris) -> not implemented inetd_flags.sh (FreeBSD) -> not implemented Note that the FreeBSD versions are not implemented since FreeBSD is not yet a supported system in Tiger. 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 tiger-3.2.3/README.time0000644000175000017500000001765007502327223013107 0ustar pacopaco Do you wonder how much time does it take for the scripts provided in Tiger to run? Ok. The following OUTPUT shown below represents the time it takes to run each of the scripts. The test was made in an extremely *simple* system (my laptop, with very few users and no overhead). Even if the configuration is extremely simple you can see which scripts will take more time in any given system to run. They are the following: check_path, check_embedded, check_inetd, check_tcpd, and check_devices. Consider this information when configuring Tiger since you might want to not have resource intensive (if they could be considered as such) scripts from the cron daemon (by editing /etc/tiger/tigercron in Debian GNU/Linux systems). This output has been generated with: for i in scripts/check_* systems/Linux/2/check_* systems/Linux/2/check_* do echo "Running $i"; sudo time sh $i >/dev/null done -- Javier Fernandez-Sanguino Pen~a Sat, 18 May 2002 20:21:41 +0200 --------------------------------- OUTPUT -------------------------- Running scripts/check_accounts 1.28user 1.01system 0:07.39elapsed 30%CPU (0avgtext+0avgdata 0maxresident)k 0inputs+0outputs (38514major+20414minor)pagefaults 0swaps Running scripts/check_aliases 0.34user 0.16system 0:00.49elapsed 101%CPU (0avgtext+0avgdata 0maxresident)k 0inputs+0outputs (5887major+5487minor)pagefaults 0swaps Running scripts/check_anonftp 0.24user 0.23system 0:00.47elapsed 98%CPU (0avgtext+0avgdata 0maxresident)k 0inputs+0outputs (5544major+5394minor)pagefaults 0swaps Running scripts/check_cron 2.17user 1.14system 0:03.30elapsed 100%CPU (0avgtext+0avgdata 0maxresident)k 0inputs+0outputs (49436major+34782minor)pagefaults 0swaps Running scripts/check_devices 10.86user 6.35system 0:17.26elapsed 99%CPU (0avgtext+0avgdata 0maxresident)k 0inputs+0outputs (242449major+185894minor)pagefaults 0swaps Running scripts/check_embedded 17.26user 8.23system 0:29.15elapsed 87%CPU (0avgtext+0avgdata 0maxresident)k 0inputs+0outputs (364960major+201723minor)pagefaults 0swaps Running scripts/check_exports 0.31user 0.19system 0:00.50elapsed 99%CPU (0avgtext+0avgdata 0maxresident)k 0inputs+0outputs (6439major+5930minor)pagefaults 0swaps Running scripts/check_ftpusers 0.54user 0.43system 0:00.96elapsed 100%CPU (0avgtext+0avgdata 0maxresident)k 0inputs+0outputs (16748major+13322minor)pagefaults 0swaps Running scripts/check_group 0.27user 0.27system 0:00.55elapsed 97%CPU (0avgtext+0avgdata 0maxresident)k 0inputs+0outputs (7657major+6362minor)pagefaults 0swaps Running scripts/check_inetd 13.55user 8.52system 0:22.16elapsed 99%CPU (0avgtext+0avgdata 0maxresident)k 0inputs+0outputs (429283major+225849minor)pagefaults 0swaps Running scripts/check_issue Command exited with non-zero status 1 0.31user 0.15system 0:00.45elapsed 100%CPU (0avgtext+0avgdata 0maxresident)k 0inputs+0outputs (5067major+5291minor)pagefaults 0swaps Running scripts/check_known 0.37user 0.27system 0:00.64elapsed 98%CPU (0avgtext+0avgdata 0maxresident)k 0inputs+0outputs (9125major+7036minor)pagefaults 0swaps Running scripts/check_listeningprocs 0.53user 0.25system 0:00.78elapsed 99%CPU (0avgtext+0avgdata 0maxresident)k 0inputs+0outputs (10763major+10119minor)pagefaults 0swaps Running scripts/check_logfiles Command exited with non-zero status 1 0.00user 0.00system 0:00.00elapsed 0%CPU (0avgtext+0avgdata 0maxresident)k 0inputs+0outputs (256major+34minor)pagefaults 0swaps Running scripts/check_netrc 0.32user 0.23system 0:00.56elapsed 97%CPU (0avgtext+0avgdata 0maxresident)k 0inputs+0outputs (7463major+6328minor)pagefaults 0swaps Running scripts/check_tcpd 12.46user 8.12system 0:20.57elapsed 100%CPU (0avgtext+0avgdata 0maxresident)k 0inputs+0outputs (414905major+202768minor)pagefaults 0swaps Running scripts/check_nisplus 0.30user 0.12system 0:00.42elapsed 98%CPU (0avgtext+0avgdata 0maxresident)k 0inputs+0outputs (4607major+4856minor)pagefaults 0swaps Running scripts/check_passwd 0.41user 0.27system 0:00.68elapsed 99%CPU (0avgtext+0avgdata 0maxresident)k 0inputs+0outputs (10147major+7815minor)pagefaults 0swaps Running scripts/check_path 19.43user 5.76system 0:25.35elapsed 99%CPU (0avgtext+0avgdata 0maxresident)k 0inputs+0outputs (376022major+126802minor)pagefaults 0swaps Running scripts/check_perms 1.66user 0.95system 0:02.60elapsed 100%CPU (0avgtext+0avgdata 0maxresident)k 0inputs+0outputs (35233major+28412minor)pagefaults 0swaps Running scripts/check_printcap 0.48user 0.22system 0:00.69elapsed 100%CPU (0avgtext+0avgdata 0maxresident)k 0inputs+0outputs (8705major+7291minor)pagefaults 0swaps Running scripts/check_rhosts 0.29user 0.25system 0:00.55elapsed 97%CPU (0avgtext+0avgdata 0maxresident)k 0inputs+0outputs (7461major+6128minor)pagefaults 0swaps Running scripts/check_root 0.30user 0.19system 0:00.48elapsed 101%CPU (0avgtext+0avgdata 0maxresident)k 0inputs+0outputs (5842major+5574minor)pagefaults 0swaps Running scripts/check_rootdir Command exited with non-zero status 1 0.32user 0.14system 0:00.46elapsed 99%CPU (0avgtext+0avgdata 0maxresident)k 0inputs+0outputs (5269major+5429minor)pagefaults 0swaps Running scripts/check_sendmail 0.37user 0.13system 0:00.50elapsed 98%CPU (0avgtext+0avgdata 0maxresident)k 0inputs+0outputs (5416major+5461minor)pagefaults 0swaps Running scripts/check_signatures 1.12user 0.50system 0:01.61elapsed 100%CPU (0avgtext+0avgdata 0maxresident)k 0inputs+0outputs (21062major+15520minor)pagefaults 0swaps Running scripts/check_system Command exited with non-zero status 1 62.62user 41.13system 1:45.09elapsed 98%CPU (0avgtext+0avgdata 0maxresident)k 0inputs+0outputs (426071major+261560minor)pagefaults 0swaps Running systems/Linux/2/check_cron 0.00user 0.01system 0:00.00elapsed 142%CPU (0avgtext+0avgdata 0maxresident)k 0inputs+0outputs (251major+33minor)pagefaults 0swaps Running systems/Linux/2/check_inittab 0.26user 0.18system 0:00.43elapsed 100%CPU (0avgtext+0avgdata 0maxresident)k 0inputs+0outputs (4749major+5044minor)pagefaults 0swaps Running systems/Linux/2/check_lilo Command exited with non-zero status 1 0.26user 0.22system 0:00.48elapsed 98%CPU (0avgtext+0avgdata 0maxresident)k 0inputs+0outputs (5383major+5493minor)pagefaults 0swaps Running systems/Linux/2/check_patches 2.17user 0.22system 0:02.39elapsed 99%CPU (0avgtext+0avgdata 0maxresident)k 0inputs+0outputs (7282major+5690minor)pagefaults 0swaps Running systems/Linux/2/check_rcumask 0.23user 0.24system 0:00.47elapsed 99%CPU (0avgtext+0avgdata 0maxresident)k 0inputs+0outputs (5381major+5317minor)pagefaults 0swaps Running systems/Linux/2/check_release 0.32user 0.16system 0:00.47elapsed 100%CPU (0avgtext+0avgdata 0maxresident)k 0inputs+0outputs (5414major+5437minor)pagefaults 0swaps Running systems/Linux/2/check_single 0.28user 0.16system 0:00.45elapsed 97%CPU (0avgtext+0avgdata 0maxresident)k 0inputs+0outputs (4751major+5037minor)pagefaults 0swaps Running systems/Linux/2/check_cron 0.00user 0.01system 0:00.00elapsed 142%CPU (0avgtext+0avgdata 0maxresident)k 0inputs+0outputs (251major+33minor)pagefaults 0swaps Running systems/Linux/2/check_inittab 0.31user 0.13system 0:00.43elapsed 100%CPU (0avgtext+0avgdata 0maxresident)k 0inputs+0outputs (4749major+5044minor)pagefaults 0swaps Running systems/Linux/2/check_lilo Command exited with non-zero status 1 0.33user 0.15system 0:00.48elapsed 98%CPU (0avgtext+0avgdata 0maxresident)k 0inputs+0outputs (5383major+5493minor)pagefaults 0swaps Running systems/Linux/2/check_patches 2.19user 0.16system 0:02.35elapsed 99%CPU (0avgtext+0avgdata 0maxresident)k 0inputs+0outputs (7281major+5686minor)pagefaults 0swaps Running systems/Linux/2/check_rcumask 0.27user 0.18system 0:00.46elapsed 97%CPU (0avgtext+0avgdata 0maxresident)k 0inputs+0outputs (5382major+5319minor)pagefaults 0swaps Running systems/Linux/2/check_release 0.34user 0.12system 0:00.47elapsed 97%CPU (0avgtext+0avgdata 0maxresident)k 0inputs+0outputs (5413major+5434minor)pagefaults 0swaps Running systems/Linux/2/check_single 0.25user 0.20system 0:00.44elapsed 101%CPU (0avgtext+0avgdata 0maxresident)k 0inputs+0outputs (4751major+5037minor)pagefaults 0swaps tiger-3.2.3/README.unsupported0000644000175000017500000000440507720454716014545 0ustar pacopaco Unsupported OS -------------- Tiger can work in any UN*x-like operating system that provides the necessary POSIX tools (sed, awk...), however, in order to work properly it needs to be 'configured' for the platform it is running in. You can get a list of supported systems running 'syslist' in the Tiger source tree (see below), other systems will just use the default configuration (under systems/default) which might or might not work in your system. If you operating system is not supported by Tiger you need to: 1.- fix gethostinfo to identify your system (i.e. have it know what information does 'uname -a' provide) and return $OS, $REL and $REV 2.- Create a config file under systems/$OS/$REL/$REV with util/buildconf 3.- Create the signatures file under systems/$OS/$REL/$REV with util/mksig 4.- Create the services file under systems/$OS/$REL/$REV with util/read_services.sh 5.- Create the file_access_list file under systems/$OS/$REL/$REV with util/mkfilelst 6.- Other files such as the suid_list can be manually created. Tiger will use the scripts under systems/default which will work in most systems, but you might need to make them work properly if the default behaviour does not work. The following scripts might need to be created under $OS/$REL/$REV since they are used by some Tiger checks: 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 GEN_CRON_FILES gen_cron GETCLIENTDIRS gendlclients GEN_INETD_SETS gen_inetd GETDISKS getdisks GETUSERHOME getuserhome Currently supported OS ---------------------- This is the output of 'syslist' as of Tiger 3.2: AIX 3 AIX 3.2 AIX 4 HPUX HPUX 10 HPUX 10.20 9000 HPUX 11 HPUX 11.00 9000 IRIX IRIX 4 IRIX 4.0.5F IP12 IRIX 4.0.5F IP20 IRIX 4.0.5H IP22 IRIX 5 IRIX 6 Linux 0 Linux 0.99.12 Linux 1 Linux 0.99.12 Linux 2 NeXT 3 NeXT 3.0 NeXT 3.1 SunOS 4 SunOS 4.1.1 sun3 SunOS 4.1.1 sun4 SunOS 5 SunOS 5.1 sun4 SunOS 5.2 sun4 SunOS 5.4 sun4 SunOS 5.5.1 sun4 SunOS 5.5 sun4 SunOS 5.8 UNICOS UNICOS 10 UNICOS 7 UNICOS 7.0.0 UNICOSMK ------------------------------ Javier Fernandez-Sanguino Wed, 13 Aug 2003 03:39:06 +0200 tiger-3.2.3/README.writemodules0000644000175000017500000001751010217661040014662 0ustar pacopaco HOWTO write modules for Tiger ----------------------------- If you want to make a new module for the Tiger intrusion detection system you have to take into account the current layout of the system. All the scripts provided, either in the general directory (scripts/) or in the directories reserved for operating system-dependant scripts (systems/OperatingSystem/Release/) use a common layout. All the scripts run the configuration script (config), which runs both the common configuration script and system-dependant configuration scripts. This configuration script will define all the commands' locations. That way scripts do not (and should not) need to use commands based on their absolute pathnames, they should just call to aliases. Eg. $RM=/bin/rm All the script must use this aliases, since this is previously known in advance, this is usually done once the core of the script is written. The script must start with the following: haveallcmds CAT JOIN LS RM || exit 1 Where the commands after the call to 'haveallcmds' (Tiger functions are defined in the initdefs and config files) are *only* those used in the scripts. 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 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 of the report (which should include information specific to the audited system). Eg: message FAIL XXXX0??f "" "MESSAGE TO WRITE IN REPORT" Each and everyone of the messages should be included under 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 by a number (different numbers for each of the messages in a file) and the letter 'f' if the problem is a 'failure' (a relevant security issue) or 'w' if the problem is a 'warning' (a problem that might be an issue or not depending on your policy). accounts.txt - acc - Security issues on system accounts aliases.txt - ali - Security issues in mail aliases anonftp.txt - ftp - Anonymous security issues due to anonymous FTP access config.txt - con, init, post, read, util - Problems in Tiger configuration cron.txt - cron - Issues related to the cron program debian.txt - deb - Debian GNU/Linux specific security issues embed.txt - embed - Security issues in embedded references filesys.txt - fsys - Filesystem problems (device files, setuid, setgid) group.txt - grp - Problems in UNIX groups inetd.txt - inet - Security issues related to Internet services (inetd) issue.txt - issue - Issues related to /etc/issue known.txt - kis - Known Intrussion Signs linux.txt - lin - Linux specific security issues logfiles.txt - logf - Issues on logfiles misc.txt - ca, misc - Cert Advisories (CA) and other miscelanea netrc.txt - nrc - Issues due to .netrc files network.txt - netw - Issues due to network services nfs.txt - nfs - Security issues in the NFS server passwd.txt - pass - Security issues related to passwords paths.txt - path - Issues related to PATHs pcap.txt - pcap - Security issues related to printers permissions.txt - init, perm - Problems due to permissions in files pxt.txt - boot, dev, osv, ptch, sum, trip - Some miscelanea messages rhosts.txt - rcmd - Remote comand execution issues root.txt - root - Problems related to the UNIX root superuser signatures.txt - sig - Issues detected through signatures You can see below a sample module with no code, that is, it does not check for any security problem. The layout is the same for all of the scripts. If, once made, the script is portable to any UNIX system where Tiger can run, the script should go under the scripts/ directory. Otherwise, it should be placed in the directory of its architecture. PORTABLE scripts ---------------- Just a brief note here: scripts are difficult to make portable. In order to be portable a script has to: - use a command available in any standard UNIX (awk, sed, cut...). All these commands should be defined in the 'config' scripts for all architectures. - use command line switches common to all implementations. Some implementations can use different arguments. For example, GNU's diff has many options that Solaris' does not use. - do not suppose that a given configuration file exists and is always available. Check always if it's available before using it in any way (eg., grep'ing or cat'ing it) In any case, it has to verify that these commands are available even if they are properly defined. Temporary files ---------------- If the script needs to use temporary files it must _always_ create them under the $WORKDIR directory, you can use the safe_temp() function to create them properly. This function will try to avoid the script being vulnerable through a race condition and will create them if the file does not exist. In any case, all temporary files must be removed if the script receives a signal or at the end. The delete() function must be used for this (defined in initdefs), if the script uses this function then it must _always_ include RM in the 'haveallcmds' call. -- Javier Fernandez-Sanguino Pen~a Sat, 9 Aug 2003 11:50:33 +0200 ---------------------- SAMPLE module -------------------------------- #!/bin/sh # # tiger - A UN*X security checking system # Copyright (C) YEAR AUTHOR # # 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. # # MODULE_NAME - date # # DATE (MM/DD/YYYY) NAME DESCRIPTION_OF_CHANGES # # #----------------------------------------------------------------------------- # # This is the directory Tiger is installed on 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 GREP CAT JOIN LS RM || exit 1 haveallfiles BASEDIR WORKDIR || exit 1 haveallvars TESTLINK HOSTNAME || exit 1 echo "--CONFIG-- [init003c] $0: Configuration ok..." exit 0 } #------------------------------------------------------------------------ echo echo "# Performing DESCRIPTION OF WHAT DOES IT DO..." haveallcmds AWK GREP CAT JOIN LS RM || exit 1 haveallfiles BASEDIR WORKDIR || exit 1 haveallvars TESTLINK HOSTNAME || exit 1 # IF you use temporary files define them here to generate them # properly and avoid race conditions. #tempfiles= #safe_temp $tempfiles #trap 'delete $tempfiles ; exit 1' 1 2 3 15 { ......... Commands for the test ................... } message FAIL XXXX0??f "" "MESSAGE TO WRITE IN REPORT" exit 0 tiger-3.2.3/TODO0000644000175000017500000001350510231026013011737 0ustar pacopacoNote: 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 GENERAL ROADMAP --------------- The general roadmap for Tiger is the following: To be released: (Note: functionality might vary between releases, but this is the intended approach) - Version 3.7 (unstable): . Revision of CVE vulnerabilities and ICAT Risks (Low, Medium, High) . Add vulnerabilities that are already check by remote assessment tools (Nessus) but can be checked locally too. - Version 3.6 (stable): Fully CVE compatible including OVAL implementation. - Version 3.5 (unstable): . OVAL interpreter and OS-specific OVAL queries (for Debian GNU/Linux, RedHat GNU/Linux and Solaris). . Revision of current checks to add CVE mapping for vulnerabilities if appropiate. . Revision of documentation on fixes (tigexp) - Version 3.4 (stable): bug fixes. - Version 3.3 (unstable): . Security audit of C source code and 'eval' in scripts. . Revise if all the checks are properly called from Tiger . Determine which checks need root privileges and which not, consider use of 'sudo' to run root checks (or data gathering) if available. . Integration of new checks including contributed checks NOTE: Many patches have been already included. The following still need to be added: - 1091 - needs to be converted into a shell script - 1353 - mostly redundant with check_ftpusers but needs to be revised - 1392 - needs to be integrated (it is also part of the CERT's list) - 1431 - mostly done by check_devices but needs to be revised - anacron patch - needs to be integrated - all the checks provided by NIH (36!) need to be integrated in 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 (notice, however, that most are remote checks which Tiger cannot implement that well..) 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, 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 - Version 3.1 (unstable): bug fixes and new checks. - Version 3.0 (unstable): new release merging TAMU's Tiger and forked versions: ARC's Tara, HP's new checks and Debian's Tiger. - Version 2.2.4 (stable): last version provided by TAMU DETAILED ITEMS -------------- - Revise the trap setting for scripts using temporary files. It might be necessary to remove the trap calls or use a generic call that will clean all the tempfiles (TigerCleanup?) - Automate the creation of new tar.gz's including a revision that sets the proper exec bits to all needed files. - Full security audit of the code, I dislike the use of 'eval' (used by the util/ scripts in the haveallof() function, but seems safe). I would not like to see posts in Bugtraq related to tiger. (such as http://lists.insecure.org/lists/bugtraq/1998/Jun/0160.html from Marc Heuse dated Fri Jun 26 1998 - 08:24:17 BST) - 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 - Improve support non-Linux OSs https://savannah.nongnu.org/pm/task.php?group_id=2247&group_project_id=632 - 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 each and Tiger checks (at README.sources) - CIS benchmark: verify that each "scoring" check is also done at Tiger through a check module. - OpenBSD or SuSE security checks (DONE) - SAINT/SARA: which do some local checks (on NFS for example) NOTE: Tiger modular behaviour makes it difficult to share data but it's easier to make simple checks than if using other monolythic tools (like CIS's, OpenBSD's or SuSE's) - 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 - Consider sending encrypted mail. Check http://karl.jorgensen.com/smash/ or add 'gpg -e -a ' in tigercron - Implementation of a generic OVAL interpreter: http://oval.mitre.org - Checks need to have a timeout otherwise some checks like 'check_patches' (which depend on net access) will never end on a normal Tiger run. - Implement a way to hook into a distributed architecture. Possible candidates: - IDEA http://idea-arch.sourceforge.net/ - Prelude http://www.prelude-ids.org/ (DONE)- Implement logging to syslog (TARA 3.0.3 does it through logger) BUGS ---- - 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 Tue, 12 Aug 2003 21:33:51 +0200 tiger-3.2.3/TODO.checks0000644000175000017500000001651410223075251013212 0ustar pacopacoThis 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.3/USING0000644000175000017500000001166610217661040012076 0ustar pacopaco Here's a quick "HOW TO" on using 'tiger'... First: Make sure you are using a 'tigerrc' file to your liking. This file is by default shipped with all checks enabled. You should probably edit it to enable only the checks you are interested in. Second, for just a test run, it is *NOT* necessary to install 'tiger'. Just 'cd' into the top-level tiger directory and run './tiger'. This will create a security report after some time (times vary based on system size and extent of checking defined in 'tigerrc'). If you fix some things, and want to run just part of the system without having to wait for the entire thing, you can run any of the scripts there standalone. Just use './scripts/scriptname'. The output will go to stdout, so if you want to save it to a file, you'll need to redirect it. A complete HTML report can be generated by using the '-H' option on the tiger command line. This will generate a HTML report with hyperlinks to the message text. If a HTML report is not desired, you can follow the procedures below. If you want more information on a particular message generated by 'tiger' (or any of the scripts), you can use the 'tigexp' (TIGer EXPlain) facility. You have three choices here. First, if you just want more information on a specific message, just use './tigexp msgid', where 'msgid' is the text inside the [] associated with each message. For example, to obtain more information about: --WARN-- [acc001w] Login ID backup is disabled, but still has a valid shell (/bin/sh). one would use './tigexp acc001w'. Second, if you want to insert the explanations in the report, you can either run 'tiger' (or the individual scripts) with the '-E' option, or if you have already run it, then use 'tigexp -F report-file'. This will write a copy of the security report to stdout, with explanations inserted. The third option is to generate a separate explanation file from a report file. To do this, use 'tigexp -f report-file'. An explanation report will be generated with message identifiers with each explanation. This can be used when the report file has lots of repeated message ID's and inserting explanations will increase the size of the report to absurd proportions. ------------------------------------------------------------------------ Running 'tiger' regularly. First: It still isn't necessary to "install" 'tiger'. Installing it is only a convenience. If you do not install it, then it will be necessary to either invoke 'tiger' (or the individual scripts) with the '-B' option or 'cd' to the 'tiger' directory before running it. The '-B' option informs the scripts where the top level 'tiger' directory is (_B_asedir). You have two options when running 'tiger' regularly. The first is to simply run 'tiger' out of cron. Since on large systems, a full run can take hours, this is probably not desirable. The more desirable is to use 'tigercron'. With 'tigercron', it is possible to run the individual scripts spread out over a time period (some can be run three times a day, others once a week or month). In addition, 'tigercron' will (on some systems) e-mail a "change" report to the specified person (in 'tigerrc'). The "change" report will only contain "new" information and will only be mailed when 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.hostids if your intention is to use Tiger in this way. ------------------------------------------------------------------------ Installing 'tiger'. If you do decide to install 'tiger', you can use the provided './configure' script. This script generates modifies the 'tiger', 'tigercron', 'config' and 'Makefile' file and sets the Tiger directory so that they can run properly once installed. You can run the 'configure' script with the following options (check './configure --help'): --with-tigerhome=LOCATION Location of all Tiger files (default /usr/local/tiger) --with-tigerconfig=LOCATION Location of Tiger configuration files (default /usr/local/tiger) --with-tigerwork=LOCATION Location of all the temporary files created by Tiger (default /usr/local/tiger/run) --with-tigerlog=LOCATION Location of all the logfiles created by Tiger (default /usr/local/tiger/log) --with-tigerbin=LOCATION Location of the Tiger binaries (default /usr/local/bin) Then just type 'make install'. NOTE NOTE NOTE: It is important that the destination directory (TIGERHOME) is *NOT* be the same as the source directory (where 'tiger' was extracted). The Makefile currently doesn't have the smarts (I'm not sure it has any) to handle such a situation and will mangle TIGER horribly. ------------------------------------------------------------------------ tiger-3.2.3/config0000644000175000017500000003557211061337563012470 0ustar pacopaco# -*- 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. # # config (top level) - 06/14/93 # # 08/30/2006 jfs Attempt to create working directory if it does not exist # (Debian bug #366919) # 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 # file_access_list generation and better error checking) # - usage printing (but modified it to only exit with error # if -h has not been issued) # - Moved RCFILE check down so that RCFILEs can be used in # common locations if not specified # Also removed CRACK, CRACKDIR and REPORTER exports since # these can now be done from the configuration files # (with the loc_override) # 04/26/2003 jfs Added a -q(uiet) option (to be used when using tigercron) # 04/21/2003 jfs Modified to only use hostname -f for Linux _and_ # moved hostname check after RCFILE parsing! # 04/15/2003 jfs Modified to support -B to work in the local dir # 04/29/93 dls Added support for 'tigerrc' file. # #----------------------------------------------------------------------------- # # space, tab, newline # Running on the dir defined by the tarball # Comment this if you want to use Tiger defaults TigerLogDir='log/' TigerWorkDir='run/' TigerConfigDir='.' # This is important to avoid problems with commands that are # dependant on the defined language environment LANG="C" LC_ALL="C" export LANG LC_ALL error_siggen() { dir=$1 file=$2 tmpdir=$3 echo "There is already a $file file in $tmpdir" echo "Please remove it and rerun Tiger" cd $dir exit 1 } do_siggen() { echo " Generating new digital signatures for binaries" set X `$BASEDIR/util/gethostinfo` unknown unknown unknown OS=${OS:=$2} REV=${REV:=$3} ARCH=${ARCH:=$4} 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/" || { 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 # if there are no config files in it or in it's parent the # default might not apply PWD=`pwd` cd $WORKDIR if [ ! -f "signatures.$OS-$REV-$ARCH" ] then printf "Generating and installing signatures..." $BASEDIR/util/mksig $BASEDIR/util/installsig "signatures.$OS-$REV-$ARCH" rm "signatures.$OS-$REV-$ARCH" echo "...done" else error_siggen "$PWD" "signatures.$OS-$REV-$ARCH" "$WORKDIR" fi if [ ! -f "file_access_list.$OS-$REV-$ARCH" ] 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 || { 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" fi cd $PWD exit 0 } do_usage() { echo "Tiger, version $TIGERVERSION" 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 " -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 " echo " the form 'security.report.host-name.date.time.' " echo " If the directory begins with a "@", the name will" echo " be interpreted as a tiger logging server." echo "" echo " -w name" echo " Specify a directory to use for creating scratch" echo " files. This defaults to '$WORKDIR'." echo "" echo " -b name" echo " Specify the directory which contains (or will con-" echo " tain) the binaries generated from the C modules." echo " If the systems directories contain all the bina-" echo " ries, they will be used directly from there. If" echo " not, then if the bindir contains the binaries," echo " these will be used. If none are found in either" echo " place, then an attempt will be made to compile the" echo " C code and install the executables into the bindir." echo "" echo " -c name" echo " Specify an alternate name for the tigerrc control" echo " file. The default is '$RCFILE'." echo "" echo " -e This option will cause explanations to be inserted" echo " into the security report following each message." echo " This can greatly increase the size of the report," echo " as explanations may appear repeatedly." echo "" echo " -E This option indicates that a separate explanation" echo " report should be created, with explanations for" echo " each type of message only appearing once. The" echo " filename of the explanation report will be of the" echo " form 'explain.report.hostname.date.time.'" echo "" echo " -G Generate the signatures (MD5 hashes and file permissions)" echo " for system binary files." echo "" echo " -H This option will format the report into HTML creat-" echo " ing local links to the problem descriptions." echo "" echo " -S This option indicates that a surface level check of" echo " the configuration files of any diskless clients" echo " served by this machine should be checked at the" echo " same time. The checks will not be as in depth as" echo " they would be if run on the client itself." echo "" 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" } checkfile() { _rcfile=$1 _rcpath=${2:=$1} _status=1 if [ -d $_rcfile ]; then echo "--CONFIG-- [con001c] Ignoring config file $_rcpath, (directory)" elif [ -f $_rcfile ]; then _status=0 _permit=`$LS $LSLINK -l $_rcfile | $AWK '{printf("%s%s", substr($1,6,1), substr($1,9,1));}'` [ "$_permit" != "--" ] && { echo "--CONFIG-- [con003c] Ignoring config file $_rcpath, (world and/or group writable)" _status=1 } fi return $_status } [ "$CONFIGURED_ALREADY" != "YES" ] && { umask 077 CONFIGURED_ALREADY=YES if [ -n "$TIGERHOMEDIR" -a "$TIGERHOMEDIR" != '.' ]; then BASEDIR="$TIGERHOMEDIR" elif [ -n "$TigerInstallDir" -a "$TigerInstallDir" != '.' ]; then BASEDIR="$TigerInstallDir" elif [ ! -d ./systems -a -d ../systems ]; then BASEDIR='..' else BASEDIR='.' fi LOGDIR=${TigerLogDir:=.} WORKDIR="$TigerWorkDir" RCFILE=${TigerConfigDir:=.}/tigerrc IGNORE_FILE=${TigerConfigDir:=.}/tiger.ignore TIGERHOMEDIR="$BASEDIR" EXPLAINREPORT=N SERVERCHECK=N Tiger_TESTMODE=N HTML=N export BASEDIR LOGDIR WORKDIR BINDIR EXPLAINREPORT SERVERCHECK export TIGERHOMEDIR RCFILE IGNORE_FILE export Tiger_TESTMODE TigerCleanup HTML doversion=0 while [ $# != 0 ] do case $1 in -v) doversion=1;; -h) do_usage; exit 0;; -B) BASEDIR=$2; shift;; -l) LOGDIR=$2; shift;; -w) WORKDIR=$2; shift;; -b) BINDIR=$2; shift;; -c) RCFILE=$2; shift;; -e) EXPLAINREPORT=I;; -E) EXPLAINREPORT=Y;; -G) do_siggen;; -S) SERVERCHECK=Y;; -O) OS=$2; shift;; -A) ARCH=$2; shift;; -R) REV=$2; shift;; -t) Tiger_TESTMODE=Y;; -H) HTML=Y;; -q) QUIET=Y;; *) echo "--ERROR-- [con006e] Unknown option $1"; do_usage; exit 1;; esac shift; done TIGERVERSION="`/bin/cat $TIGERHOMEDIR/version.h 2>/dev/null`" [ ! -n "$TIGERVERSION" ] && TIGERVERSION="undetermined" export TIGERVERSION [ $doversion -eq 1 ] && { echo "tiger, version $TIGERVERSION" 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 if [ "$QUIET" != "Y" ] ; then echo "Creating working directory $WORKDIR" echo fi # TODO: -p switch is not portable if ! mkdir -p "$WORKDIR" >/dev/null 2>&1; then echo "Configured working directory $WORKDIR cannot be created (should you use -w?)" >&2 exit 1 fi fi [ "$QUIET" != "Y" ] && echo "Configuring..." set X `$BASEDIR/util/gethostinfo` unknown unknown unknown OS=${OS:=$2} REV=${REV:=$3} ARCH=${ARCH:=$4} saveifs=$IFS IFS=. set X $REV IFS=$saveifs shift REL="$1" [ ! -n "$REL" ] && REL=$REV [ ! -n "$BINDIR" ] && eval BINDIR=${TigerBinDir:=$BASEDIR/bin} SCRIPTDIR=$BASEDIR/scripts export SCRIPTDIR [ "$QUIET" != "Y" ] && { echo " " echo "Will try to check using config for '$ARCH' running $OS $REV..." } CONFIG_LOC=${TIGERCONF:="$BASEDIR/systems"} if [ -f "$CONFIG_LOC/$OS/$REL/$REV/$ARCH/config" ]; then [ "$QUIET" != "Y" ] && echo "--CONFIG-- [con004c] Using configuration files for $OS $REV $ARCH." CONFIG_DIR="$CONFIG_LOC/$OS/$REL/$REV/$ARCH" elif [ -f "$CONFIG_LOC/$OS/$REL/$REV/config" ]; then [ "$QUIET" != "Y" ] && echo "--CONFIG-- [con004c] Using configuration files for $OS $REV." CONFIG_DIR="$CONFIG_LOC/$OS/$REL/$REV" elif [ -f "$CONFIG_LOC/$OS/$REL/config" ]; then [ "$QUIET" != "Y" ] && { echo "--CONFIG-- [con005c] Using configuration files for $OS $REV. Using" echo " configuration files for generic $OS $REL." } CONFIG_DIR="$CONFIG_LOC/$OS/$REL" elif [ -f "$CONFIG_LOC/$OS/config" ]; then [ "$QUIET" != "Y" ] && { echo "--CONFIG-- [con005c] No configuration files for $OS $REV. Using" echo " configuration files for generic $OS." } CONFIG_DIR="$CONFIG_LOC/$OS" elif [ -f "$CONFIG_LOC/default/config" ]; then [ "$QUIET" != "Y" ] && { echo "--CONFIG-- [con007c] No configuration files for $OS. Using default" echo " configuration files. Not all checks may be performed." CONFIG_DIR="$CONFIG_LOC/default" } else echo "--ERROR-- [con008e] No configuration files for $OS $REV and can't find the" echo " default configuration files. Terminating." exit 1 fi CONFIG_FILE="$CONFIG_DIR/config" . $CONFIG_FILE [ ! -n "$TESTEXEC" ] && TESTEXEC="-f" [ ! -n "$TESTLINK" ] && TESTLINK="-h" OUTPUTMETHOD="$CAT" [ "$EXPLAINREPORT" != "N" ] && { OUTPUTMETHOD="$BASEDIR/tigexp -F" } export OUTPUTMETHOD # # If RCFILE is not defined consider using some sane defaults # [ ! -n "$RCFILE" ] && { for file in '/etc/tiger/tigerrc' '/usr/local/etc/tigerrc' './.tigerrc' './tigerrc' '$BASEDIR/tigerrc' '$HOME/.tigerrc' # TODO: Check with ARSC if there is a preference on their behalf # for this ordering since Tara 3.0.3 uses # for file in './.tigerrc' './tigerrc' '$HOME/.tigerrc' '$BASEDIR/tigerrc' do eval rc=$file if checkfile $rc $file; then RCFILE=$rc break fi done } [ -n "$RCFILE" -a ! -r "$RCFILE" ] && { echo "Control file "$RCFILE" not defined or not readable... exiting..." exit 1 } # # Preprocess the RC file, to export variables to environment # [ -n "$RCFILE" -a -r $RCFILE ] && { tempfile=`tempfile -d $WORKDIR` || tempfile=$WORKDIR/rcfile.$$ $GREP -v '^#' $RCFILE | $SED -e 's/^\(.*\)=/export \1; \1=/' > $tempfile . $tempfile $RM -f $tempfile } HOSTNAME=`$GETHOSTNAME` if [ "$Tiger_Output_FQDN" = 'Y' -a "$OS" = "Linux" ] then # Linux hostname has the -f option for FQDN... (jfs) # (others?) 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' do eval rc=$file if checkfile $rc $file; then SITECONFIG=$rc break fi done [ -n "$SITECONFIG" -a -r "$SITECONFIG" ] && { $GREP -v '^#' $SITECONFIG | $SED -e 's/^\(.*\)=/export \1; \1=/' > $WORKDIR/sitefile.$$ . $WORKDIR/sitefile.$$ $RM -f $WORKDIR/sitefile.$$ } HOSTNAMESLIST=${HOSTNAMESLIST:=$HOSTNAME} export CONFIGURED_ALREADY OS REL REV ARCH HOSTNAME export CONFIG_DIR CONFIG_FILE HOSTNAMESLIST [ "$TigerNoBuild" != 'Y' ] && { > $WORKDIR/tigercmds.$$ $BASEDIR/util/buildbins $WORKDIR/tigercmds.$$ . $WORKDIR/tigercmds.$$ $RM -f $WORKDIR/tigercmds.$$ } # set the PATH PATH=/sbin:/usr/sbin:/bin:/usr/bin export PATH } tiger-3.2.3/configure0000755000175000017500000011332511061333644013174 0ustar pacopaco#! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated automatically using autoconf version 2.13 # Copyright (C) 1992, 93, 94, 95, 96 Free Software Foundation, Inc. # # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. # Defaults: ac_help= ac_default_prefix=/usr/local # Any additions from configure.in: ac_help="$ac_help --with-tigerhome=LOCATION Location of all Tiger files" ac_help="$ac_help --with-tigerconfig=LOCATION Location of Tiger configuration files" ac_help="$ac_help --with-tigerwork=LOCATION Location of all the temporary files created by Tiger" ac_help="$ac_help --with-tigerlog=LOCATION Location of all the logfiles created by Tiger" ac_help="$ac_help --with-tigerbin=LOCATION Location of the Tiger binaries" # Initialize some variables set by options. # The variables have the same names as the options, with # dashes changed to underlines. build=NONE cache_file=./config.cache exec_prefix=NONE host=NONE no_create= nonopt=NONE no_recursion= prefix=NONE program_prefix=NONE program_suffix=NONE program_transform_name=s,x,x, silent= site= srcdir= target=NONE verbose= x_includes=NONE x_libraries=NONE bindir='${exec_prefix}/bin' sbindir='${exec_prefix}/sbin' libexecdir='${exec_prefix}/libexec' datadir='${prefix}/share' sysconfdir='${prefix}/etc' sharedstatedir='${prefix}/com' localstatedir='${prefix}/var' libdir='${exec_prefix}/lib' includedir='${prefix}/include' oldincludedir='/usr/include' infodir='${prefix}/info' mandir='${prefix}/man' # Initialize some other variables. subdirs= MFLAGS= MAKEFLAGS= SHELL=${CONFIG_SHELL-/bin/sh} # Maximum number of lines to put in a shell here document. ac_max_here_lines=12 ac_prev= for ac_option do # If the previous option needs an argument, assign it. if test -n "$ac_prev"; then eval "$ac_prev=\$ac_option" ac_prev= continue fi case "$ac_option" in -*=*) ac_optarg=`echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;; *) ac_optarg= ;; esac # Accept the important Cygnus configure options, so we can diagnose typos. case "$ac_option" in -bindir | --bindir | --bindi | --bind | --bin | --bi) ac_prev=bindir ;; -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) bindir="$ac_optarg" ;; -build | --build | --buil | --bui | --bu) ac_prev=build ;; -build=* | --build=* | --buil=* | --bui=* | --bu=*) build="$ac_optarg" ;; -cache-file | --cache-file | --cache-fil | --cache-fi \ | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) ac_prev=cache_file ;; -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) cache_file="$ac_optarg" ;; -datadir | --datadir | --datadi | --datad | --data | --dat | --da) ac_prev=datadir ;; -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \ | --da=*) datadir="$ac_optarg" ;; -disable-* | --disable-*) ac_feature=`echo $ac_option|sed -e 's/-*disable-//'` # Reject names that are not valid shell variable names. if test -n "`echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; } fi ac_feature=`echo $ac_feature| sed 's/-/_/g'` eval "enable_${ac_feature}=no" ;; -enable-* | --enable-*) ac_feature=`echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'` # Reject names that are not valid shell variable names. if test -n "`echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; } fi ac_feature=`echo $ac_feature| sed 's/-/_/g'` case "$ac_option" in *=*) ;; *) ac_optarg=yes ;; esac eval "enable_${ac_feature}='$ac_optarg'" ;; -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ | --exec | --exe | --ex) ac_prev=exec_prefix ;; -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ | --exec=* | --exe=* | --ex=*) exec_prefix="$ac_optarg" ;; -gas | --gas | --ga | --g) # Obsolete; use --with-gas. with_gas=yes ;; -help | --help | --hel | --he) # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat << EOF Usage: configure [options] [host] Options: [defaults in brackets after descriptions] Configuration: --cache-file=FILE cache test results in FILE --help print this message --no-create do not create output files --quiet, --silent do not print \`checking...' messages --version print the version of autoconf that created configure Directory and file names: --prefix=PREFIX install architecture-independent files in PREFIX [$ac_default_prefix] --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX [same as prefix] --bindir=DIR user executables in DIR [EPREFIX/bin] --sbindir=DIR system admin executables in DIR [EPREFIX/sbin] --libexecdir=DIR program executables in DIR [EPREFIX/libexec] --datadir=DIR read-only architecture-independent data in DIR [PREFIX/share] --sysconfdir=DIR read-only single-machine data in DIR [PREFIX/etc] --sharedstatedir=DIR modifiable architecture-independent data in DIR [PREFIX/com] --localstatedir=DIR modifiable single-machine data in DIR [PREFIX/var] --libdir=DIR object code libraries in DIR [EPREFIX/lib] --includedir=DIR C header files in DIR [PREFIX/include] --oldincludedir=DIR C header files for non-gcc in DIR [/usr/include] --infodir=DIR info documentation in DIR [PREFIX/info] --mandir=DIR man documentation in DIR [PREFIX/man] --srcdir=DIR find the sources in DIR [configure dir or ..] --program-prefix=PREFIX prepend PREFIX to installed program names --program-suffix=SUFFIX append SUFFIX to installed program names --program-transform-name=PROGRAM run sed PROGRAM on installed program names EOF cat << EOF Host type: --build=BUILD configure for building on BUILD [BUILD=HOST] --host=HOST configure for HOST [guessed] --target=TARGET configure for TARGET [TARGET=HOST] Features and packages: --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --x-includes=DIR X include files are in DIR --x-libraries=DIR X library files are in DIR EOF if test -n "$ac_help"; then echo "--enable and --with options recognized:$ac_help" fi exit 0 ;; -host | --host | --hos | --ho) ac_prev=host ;; -host=* | --host=* | --hos=* | --ho=*) host="$ac_optarg" ;; -includedir | --includedir | --includedi | --included | --include \ | --includ | --inclu | --incl | --inc) ac_prev=includedir ;; -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ | --includ=* | --inclu=* | --incl=* | --inc=*) includedir="$ac_optarg" ;; -infodir | --infodir | --infodi | --infod | --info | --inf) ac_prev=infodir ;; -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) infodir="$ac_optarg" ;; -libdir | --libdir | --libdi | --libd) ac_prev=libdir ;; -libdir=* | --libdir=* | --libdi=* | --libd=*) libdir="$ac_optarg" ;; -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ | --libexe | --libex | --libe) ac_prev=libexecdir ;; -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ | --libexe=* | --libex=* | --libe=*) libexecdir="$ac_optarg" ;; -localstatedir | --localstatedir | --localstatedi | --localstated \ | --localstate | --localstat | --localsta | --localst \ | --locals | --local | --loca | --loc | --lo) ac_prev=localstatedir ;; -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ | --localstate=* | --localstat=* | --localsta=* | --localst=* \ | --locals=* | --local=* | --loca=* | --loc=* | --lo=*) localstatedir="$ac_optarg" ;; -mandir | --mandir | --mandi | --mand | --man | --ma | --m) ac_prev=mandir ;; -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) mandir="$ac_optarg" ;; -nfp | --nfp | --nf) # Obsolete; use --without-fp. with_fp=no ;; -no-create | --no-create | --no-creat | --no-crea | --no-cre \ | --no-cr | --no-c) no_create=yes ;; -no-recursion | --no-recursion | --no-recursio | --no-recursi \ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) no_recursion=yes ;; -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ | --oldin | --oldi | --old | --ol | --o) ac_prev=oldincludedir ;; -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) oldincludedir="$ac_optarg" ;; -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) ac_prev=prefix ;; -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) prefix="$ac_optarg" ;; -program-prefix | --program-prefix | --program-prefi | --program-pref \ | --program-pre | --program-pr | --program-p) ac_prev=program_prefix ;; -program-prefix=* | --program-prefix=* | --program-prefi=* \ | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) program_prefix="$ac_optarg" ;; -program-suffix | --program-suffix | --program-suffi | --program-suff \ | --program-suf | --program-su | --program-s) ac_prev=program_suffix ;; -program-suffix=* | --program-suffix=* | --program-suffi=* \ | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) program_suffix="$ac_optarg" ;; -program-transform-name | --program-transform-name \ | --program-transform-nam | --program-transform-na \ | --program-transform-n | --program-transform- \ | --program-transform | --program-transfor \ | --program-transfo | --program-transf \ | --program-trans | --program-tran \ | --progr-tra | --program-tr | --program-t) ac_prev=program_transform_name ;; -program-transform-name=* | --program-transform-name=* \ | --program-transform-nam=* | --program-transform-na=* \ | --program-transform-n=* | --program-transform-=* \ | --program-transform=* | --program-transfor=* \ | --program-transfo=* | --program-transf=* \ | --program-trans=* | --program-tran=* \ | --progr-tra=* | --program-tr=* | --program-t=*) program_transform_name="$ac_optarg" ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) silent=yes ;; -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) ac_prev=sbindir ;; -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ | --sbi=* | --sb=*) sbindir="$ac_optarg" ;; -sharedstatedir | --sharedstatedir | --sharedstatedi \ | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ | --sharedst | --shareds | --shared | --share | --shar \ | --sha | --sh) ac_prev=sharedstatedir ;; -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ | --sha=* | --sh=*) sharedstatedir="$ac_optarg" ;; -site | --site | --sit) ac_prev=site ;; -site=* | --site=* | --sit=*) site="$ac_optarg" ;; -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) ac_prev=srcdir ;; -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) srcdir="$ac_optarg" ;; -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ | --syscon | --sysco | --sysc | --sys | --sy) ac_prev=sysconfdir ;; -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) sysconfdir="$ac_optarg" ;; -target | --target | --targe | --targ | --tar | --ta | --t) ac_prev=target ;; -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) target="$ac_optarg" ;; -v | -verbose | --verbose | --verbos | --verbo | --verb) verbose=yes ;; -version | --version | --versio | --versi | --vers) echo "configure generated by autoconf version 2.13" exit 0 ;; -with-* | --with-*) ac_package=`echo $ac_option|sed -e 's/-*with-//' -e 's/=.*//'` # Reject names that are not valid shell variable names. if test -n "`echo $ac_package| sed 's/[-_a-zA-Z0-9]//g'`"; then { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; } fi ac_package=`echo $ac_package| sed 's/-/_/g'` case "$ac_option" in *=*) ;; *) ac_optarg=yes ;; esac eval "with_${ac_package}='$ac_optarg'" ;; -without-* | --without-*) ac_package=`echo $ac_option|sed -e 's/-*without-//'` # Reject names that are not valid shell variable names. if test -n "`echo $ac_package| sed 's/[-a-zA-Z0-9_]//g'`"; then { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; } fi ac_package=`echo $ac_package| sed 's/-/_/g'` eval "with_${ac_package}=no" ;; --x) # Obsolete; use --with-x. with_x=yes ;; -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ | --x-incl | --x-inc | --x-in | --x-i) ac_prev=x_includes ;; -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) x_includes="$ac_optarg" ;; -x-libraries | --x-libraries | --x-librarie | --x-librari \ | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) ac_prev=x_libraries ;; -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) x_libraries="$ac_optarg" ;; -*) { echo "configure: error: $ac_option: invalid option; use --help to show usage" 1>&2; exit 1; } ;; *) if test -n "`echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then echo "configure: warning: $ac_option: invalid host type" 1>&2 fi if test "x$nonopt" != xNONE; then { echo "configure: error: can only configure for one host and one target at a time" 1>&2; exit 1; } fi nonopt="$ac_option" ;; esac done if test -n "$ac_prev"; then { echo "configure: error: missing argument to --`echo $ac_prev | sed 's/_/-/g'`" 1>&2; exit 1; } fi trap 'rm -fr conftest* confdefs* core core.* *.core $ac_clean_files; exit 1' 1 2 15 # File descriptor usage: # 0 standard input # 1 file creation # 2 errors and warnings # 3 some systems may open it to /dev/tty # 4 used on the Kubota Titan # 6 checking for... messages and results # 5 compiler messages saved in config.log if test "$silent" = yes; then exec 6>/dev/null else exec 6>&1 fi exec 5>./config.log echo "\ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. " 1>&5 # Strip out --no-create and --no-recursion so they do not pile up. # Also quote any args containing shell metacharacters. ac_configure_args= for ac_arg do case "$ac_arg" in -no-create | --no-create | --no-creat | --no-crea | --no-cre \ | --no-cr | --no-c) ;; -no-recursion | --no-recursion | --no-recursio | --no-recursi \ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) ;; *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?]*) ac_configure_args="$ac_configure_args '$ac_arg'" ;; *) ac_configure_args="$ac_configure_args $ac_arg" ;; esac done # NLS nuisances. # Only set these to C if already set. These must not be set unconditionally # because not all systems understand e.g. LANG=C (notably SCO). # Fixing LC_MESSAGES prevents Solaris sh from translating var values in `set'! # Non-C LC_CTYPE values break the ctype check. if test "${LANG+set}" = set; then LANG=C; export LANG; fi if test "${LC_ALL+set}" = set; then LC_ALL=C; export LC_ALL; fi if test "${LC_MESSAGES+set}" = set; then LC_MESSAGES=C; export LC_MESSAGES; fi if test "${LC_CTYPE+set}" = set; then LC_CTYPE=C; export LC_CTYPE; fi # confdefs.h avoids OS command line length limits that DEFS can exceed. rm -rf conftest* confdefs.h # AIX cpp loses on an empty file, so make sure it contains at least a newline. echo > confdefs.h # A filename unique to this package, relative to the directory that # configure is in, which we can look for to find out if srcdir is correct. ac_unique_file=tiger # Find the source files, if location was not specified. if test -z "$srcdir"; then ac_srcdir_defaulted=yes # Try the directory containing this script, then its parent. ac_prog=$0 ac_confdir=`echo $ac_prog|sed 's%/[^/][^/]*$%%'` test "x$ac_confdir" = "x$ac_prog" && ac_confdir=. srcdir=$ac_confdir if test ! -r $srcdir/$ac_unique_file; then srcdir=.. fi else ac_srcdir_defaulted=no fi if test ! -r $srcdir/$ac_unique_file; then if test "$ac_srcdir_defaulted" = yes; then { echo "configure: error: can not find sources in $ac_confdir or .." 1>&2; exit 1; } else { echo "configure: error: can not find sources in $srcdir" 1>&2; exit 1; } fi fi srcdir=`echo "${srcdir}" | sed 's%\([^/]\)/*$%\1%'` # Prefer explicitly selected file to automatically selected ones. if test -z "$CONFIG_SITE"; then if test "x$prefix" != xNONE; then CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site" else CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site" fi fi for ac_site_file in $CONFIG_SITE; do if test -r "$ac_site_file"; then echo "loading site script $ac_site_file" . "$ac_site_file" fi done if test -r "$cache_file"; then echo "loading cache $cache_file" . $cache_file else echo "creating cache $cache_file" > $cache_file fi 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 ac_exeext= ac_objext=o if (echo "testing\c"; echo 1,2,3) | grep c >/dev/null; then # Stardent Vistra SVR4 grep lacks -e, says ghazi@caip.rutgers.edu. if (echo -n testing; echo 1,2,3) | sed s/-n/xn/ | grep xn >/dev/null; then ac_n= ac_c=' ' ac_t=' ' else ac_n=-n ac_c= ac_t= fi else ac_n= ac_c='\c' ac_t= fi # 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. if test "${with_tigerhome+set}" = set; then withval="$with_tigerhome" tigerhome=$withval else tigerhome="no" fi if test "$tigerhome" = "no" ; then tigerhome=${prefix}/tiger fi # Check whether --with-tigerconfig or --without-tigerconfig was given. if test "${with_tigerconfig+set}" = set; then withval="$with_tigerconfig" tigerconfig=$withval else tigerconfig="no" fi if test "$tigerconfig" = "no" ; then tigerconfig=${sysconfdir}/tiger fi # Check whether --with-tigerwork or --without-tigerwork was given. if test "${with_tigerwork+set}" = set; then withval="$with_tigerwork" tigerwork=$withval else tigerwork="no" fi if test "$tigerwork" = "no" ; then tigerwork=${localstatedir}/tiger/run fi # Check whether --with-tigerlog or --without-tigerlog was given. if test "${with_tigerlog+set}" = set; then withval="$with_tigerlog" tigerlog=$withval else tigerlog="no" fi if test "$tigerlog" = "no" ; then tigerlog=${localstatedir}/tiger/log fi # Check whether --with-tigerbin or --without-tigerbin was given. if test "${with_tigerbin+set}" = set; then withval="$with_tigerbin" tigerbin=$withval else tigerbin="no" fi if test "$tigerbin" = "no" ; then tigerbin=${sbindir} fi tigerworkdir=`eval echo $tigerwork` tigerlogdir=`eval echo $tigerlog` tigerconfigdir=`eval echo $tigerconfig` tigerhomedir=`eval echo $tigerhome` trap '' 1 2 15 cat > confcache <<\EOF # This file is a shell script that caches the results of configure # tests run on this system so they can be shared between configure # scripts and configure runs. It is not useful on other systems. # If it contains results you don't want to keep, you may remove or edit it. # # By default, configure uses ./config.cache as the cache file, # creating it if it does not exist already. You can give configure # the --cache-file=FILE option to use a different cache file; that is # what configure does when it calls configure scripts in # subdirectories, so they share the cache. # Giving --cache-file=/dev/null disables caching, for debugging configure. # config.status only pays attention to the cache file if you give it the # --recheck option to rerun configure. # EOF # The following way of writing the cache mishandles newlines in values, # but we know of no workaround that is simple, portable, and efficient. # So, don't put newlines in cache variables' values. # Ultrix sh set writes to stderr and can't be redirected directly, # and sets the high bit in the cache file unless we assign to the vars. (set) 2>&1 | case `(ac_space=' '; set | grep ac_space) 2>&1` in *ac_space=\ *) # `set' does not quote correctly, so add quotes (double-quote substitution # turns \\\\ into \\, and sed turns \\ into \). sed -n \ -e "s/'/'\\\\''/g" \ -e "s/^\\([a-zA-Z0-9_]*_cv_[a-zA-Z0-9_]*\\)=\\(.*\\)/\\1=\${\\1='\\2'}/p" ;; *) # `set' quotes correctly as required by POSIX, so do not add quotes. sed -n -e 's/^\([a-zA-Z0-9_]*_cv_[a-zA-Z0-9_]*\)=\(.*\)/\1=${\1=\2}/p' ;; esac >> confcache if cmp -s $cache_file confcache; then : else if test -w $cache_file; then echo "updating cache $cache_file" cat confcache > $cache_file else echo "not updating unwritable cache $cache_file" fi fi rm -f confcache trap 'rm -fr conftest* confdefs* core core.* *.core $ac_clean_files; exit 1' 1 2 15 test "x$prefix" = xNONE && prefix=$ac_default_prefix # Let make expand exec_prefix. test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' # Any assignment to VPATH causes Sun make to only execute # the first set of double-colon rules, so remove it if not needed. # If there is a colon in the path, we need to keep it. if test "x$srcdir" = x.; then ac_vpsub='/^[ ]*VPATH[ ]*=[^:]*$/d' fi trap 'rm -f $CONFIG_STATUS conftest*; exit 1' 1 2 15 # Transform confdefs.h into DEFS. # Protect against shell expansion while executing Makefile rules. # Protect against Makefile macro expansion. cat > conftest.defs <<\EOF s%#define \([A-Za-z_][A-Za-z0-9_]*\) *\(.*\)%-D\1=\2%g s%[ `~#$^&*(){}\\|;'"<>?]%\\&%g s%\[%\\&%g s%\]%\\&%g s%\$%$$%g EOF DEFS=`sed -f conftest.defs confdefs.h | tr '\012' ' '` rm -f conftest.defs # Without the "./", some shells look in PATH for config.status. : ${CONFIG_STATUS=./config.status} echo creating $CONFIG_STATUS rm -f $CONFIG_STATUS cat > $CONFIG_STATUS </dev/null | sed 1q`: # # $0 $ac_configure_args # # Compiler output produced by configure, useful for debugging # configure, is in ./config.log if it exists. ac_cs_usage="Usage: $CONFIG_STATUS [--recheck] [--version] [--help]" for ac_option do case "\$ac_option" in -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) echo "running \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion" exec \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion ;; -version | --version | --versio | --versi | --vers | --ver | --ve | --v) echo "$CONFIG_STATUS generated by autoconf version 2.13" exit 0 ;; -help | --help | --hel | --he | --h) echo "\$ac_cs_usage"; exit 0 ;; *) echo "\$ac_cs_usage"; exit 1 ;; esac done ac_given_srcdir=$srcdir ac_given_INSTALL="$INSTALL" trap 'rm -fr `echo "Makefile c/Makefile doc/Makefile man/tiger.8 man/tigercron.8" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15 EOF cat >> $CONFIG_STATUS < conftest.subs <<\\CEOF $ac_vpsub $extrasub s%@SHELL@%$SHELL%g s%@CFLAGS@%$CFLAGS%g s%@CPPFLAGS@%$CPPFLAGS%g s%@CXXFLAGS@%$CXXFLAGS%g s%@FFLAGS@%$FFLAGS%g s%@DEFS@%$DEFS%g s%@LDFLAGS@%$LDFLAGS%g s%@LIBS@%$LIBS%g s%@exec_prefix@%$exec_prefix%g s%@prefix@%$prefix%g s%@program_transform_name@%$program_transform_name%g s%@bindir@%$bindir%g s%@sbindir@%$sbindir%g s%@libexecdir@%$libexecdir%g s%@datadir@%$datadir%g s%@sysconfdir@%$sysconfdir%g s%@sharedstatedir@%$sharedstatedir%g s%@localstatedir@%$localstatedir%g s%@libdir@%$libdir%g s%@includedir@%$includedir%g 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 s%@tigerbin@%$tigerbin%g s%@tigerconfig@%$tigerconfig%g s%@tigerworkdir@%$tigerworkdir%g s%@tigerlogdir@%$tigerlogdir%g s%@tigerconfigdir@%$tigerconfigdir%g s%@tigerhomedir@%$tigerhomedir%g CEOF EOF cat >> $CONFIG_STATUS <<\EOF # Split the substitutions into bite-sized pieces for seds with # small command number limits, like on Digital OSF/1 and HP-UX. ac_max_sed_cmds=90 # Maximum number of lines to put in a sed script. ac_file=1 # Number of current file. ac_beg=1 # First line for current file. ac_end=$ac_max_sed_cmds # Line after last line for current file. ac_more_lines=: ac_sed_cmds="" while $ac_more_lines; do if test $ac_beg -gt 1; then sed "1,${ac_beg}d; ${ac_end}q" conftest.subs > conftest.s$ac_file else sed "${ac_end}q" conftest.subs > conftest.s$ac_file fi if test ! -s conftest.s$ac_file; then ac_more_lines=false rm -f conftest.s$ac_file else if test -z "$ac_sed_cmds"; then ac_sed_cmds="sed -f conftest.s$ac_file" else ac_sed_cmds="$ac_sed_cmds | sed -f conftest.s$ac_file" fi ac_file=`expr $ac_file + 1` ac_beg=$ac_end ac_end=`expr $ac_end + $ac_max_sed_cmds` fi done if test -z "$ac_sed_cmds"; then ac_sed_cmds=cat fi EOF cat >> $CONFIG_STATUS <> $CONFIG_STATUS <<\EOF for ac_file in .. $CONFIG_FILES; do if test "x$ac_file" != x..; then # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in". case "$ac_file" in *:*) ac_file_in=`echo "$ac_file"|sed 's%[^:]*:%%'` ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;; *) ac_file_in="${ac_file}.in" ;; esac # Adjust a relative srcdir, top_srcdir, and INSTALL for subdirectories. # Remove last slash and all that follows it. Not all systems have dirname. ac_dir=`echo $ac_file|sed 's%/[^/][^/]*$%%'` if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then # The file is in a subdirectory. test ! -d "$ac_dir" && mkdir "$ac_dir" ac_dir_suffix="/`echo $ac_dir|sed 's%^\./%%'`" # A "../" for each directory in $ac_dir_suffix. ac_dots=`echo $ac_dir_suffix|sed 's%/[^/]*%../%g'` else ac_dir_suffix= ac_dots= fi case "$ac_given_srcdir" in .) srcdir=. if test -z "$ac_dots"; then top_srcdir=. else top_srcdir=`echo $ac_dots|sed 's%/$%%'`; fi ;; /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;; *) # Relative path. srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix" top_srcdir="$ac_dots$ac_given_srcdir" ;; esac case "$ac_given_INSTALL" in [/$]*) INSTALL="$ac_given_INSTALL" ;; *) INSTALL="$ac_dots$ac_given_INSTALL" ;; esac echo creating "$ac_file" rm -f "$ac_file" configure_input="Generated automatically from `echo $ac_file_in|sed 's%.*/%%'` by configure." case "$ac_file" in *Makefile*) ac_comsub="1i\\ # $configure_input" ;; *) ac_comsub= ;; esac ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"` sed -e "$ac_comsub s%@configure_input@%$configure_input%g s%@srcdir@%$srcdir%g s%@top_srcdir@%$top_srcdir%g s%@INSTALL@%$INSTALL%g " $ac_file_inputs | (eval "$ac_sed_cmds") > $ac_file fi; done rm -f conftest.s* EOF cat >> $CONFIG_STATUS <> $CONFIG_STATUS <<\EOF exit 0 EOF chmod +x $CONFIG_STATUS rm -fr confdefs* $ac_clean_files test "$no_create" = yes || ${CONFIG_SHELL-/bin/sh} $CONFIG_STATUS || exit 1 tiger-3.2.3/configure.in0000644000175000017500000000344611061333644013600 0ustar pacopacodnl Process this file with autoconf to produce a configure script. dnl This file is just some unique file that configure will check 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], tigerhome=$withval, tigerhome="no") if test "$tigerhome" = "no" ; then tigerhome=${prefix}/tiger fi AC_ARG_WITH(tigerconfig, [ --with-tigerconfig=LOCATION Location of Tiger configuration files], tigerconfig=$withval, tigerconfig="no") if test "$tigerconfig" = "no" ; then tigerconfig=${sysconfdir}/tiger fi AC_ARG_WITH(tigerwork, [ --with-tigerwork=LOCATION Location of all the temporary files created by Tiger], tigerwork=$withval, tigerwork="no") if test "$tigerwork" = "no" ; then tigerwork=${localstatedir}/tiger/run fi AC_ARG_WITH(tigerlog, [ --with-tigerlog=LOCATION Location of all the logfiles created by Tiger], tigerlog=$withval, tigerlog="no") if test "$tigerlog" = "no" ; then tigerlog=${localstatedir}/tiger/log fi AC_ARG_WITH(tigerbin, [ --with-tigerbin=LOCATION Location of the Tiger binaries], tigerbin=$withval, tigerbin="no") if test "$tigerbin" = "no" ; then tigerbin=${sbindir} fi dnl Full expansion for when it's needed (in manpage) tigerworkdir=`eval echo $tigerwork` tigerlogdir=`eval echo $tigerlog` tigerconfigdir=`eval echo $tigerconfig` tigerhomedir=`eval echo $tigerhome` AC_SUBST(install) AC_SUBST(tigerhome) AC_SUBST(tigerwork) AC_SUBST(tigerlog) AC_SUBST(tigerbin) AC_SUBST(tigerconfig) AC_SUBST(tigerworkdir) AC_SUBST(tigerlogdir) AC_SUBST(tigerconfigdir) AC_SUBST(tigerhomedir) AC_OUTPUT(Makefile c/Makefile doc/Makefile man/tiger.8 man/tigercron.8) tiger-3.2.3/cronrc0000644000175000017500000001001710664613165012477 0ustar pacopaco# # Default 'tigercron' cronrc file... # # You can run the different checks in stages, without having to # clutter up the crontab for root. You can do all the checks in one # step or (like this file does) separate all the checks in different # stages. # #------------------------------------------------------------------------ # # Field 1: Comma separated list of hours (0-23) or '*' when this should # be run. # # Field 2: Comma separated list of days of month or '*' when this should # be run. # # Field 3: Comma separated list of days of week or '*' when this should # be run. Days of week must be exactly as 'date' prints. # # Remaining fields: Scripts to execute (no newlines or \ allowed) # # ---------------------------------------------------------------------- # # The following are the default settings for Debian if you do not want # to separate checks change this as needed (and suited to your security # policy). # # ---------------------------------------------------------------------- # Check for known intrusion signs every 8 hours # 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 # $OS/$REL/$ARCH/check script or run independently as in the # commented line below # 1 * * check_system # Notice: this checks are Debian-specific, enabling them is # redundant with Linux checks. #1 * * deb_checkmd5sums deb_nopackfiles deb_checkadvisories # ---------------------------------------------------------------------- # Get a list of listening processes every day at different hours # 0,4,6,10,14,18,20 * * check_listeningprocs # # ---------------------------------------------------------------------- # Check for usual account information every day at 2 am. # 2 * * check_accounts check_rhosts check_netrc check_group check_passwd check_passwdformat # # ---------------------------------------------------------------------- # Check for file permissions and user passwds every day at 5 am # 5 * * check_perms # # ---------------------------------------------------------------------- # Check for network configuration every Monday # 3 * Mon check_inetd check_exports check_aliases check_path check_crontabs check_anonftp check_printcap check_tcpd # # ---------------------------------------------------------------------- # Check for strange file ownerships once a month # 2 1 * find_files 2 3 * check_devices # # ---------------------------------------------------------------------- # Check for system configuration once a month # 1 2 * check_services check_umask check_ftpusers check_embedded check_exrc # # ---------------------------------------------------------------------- # Run a password cracker against the local passwords once a month # This is removed since a) it does not work and b) the functionality is # provided by the 'john' package #2 2 * crack_run # # Run an integrity checker once every week. # # 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.3/initdefs0000644000175000017500000003103510217661040013006 0ustar pacopaco# # 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. # # 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 # (currently disabled since some checks remove things # twice) # initdefs - 09/20/2003 - jfs - Fixed have_allvars since it was not working # initdefs - 09/19/2003 - jfs - Different error messages in have_allvars. # Applied patch from Ryan Bradetich to fix UID -> UUID # initdefs - 08/13/2003 - jfs - Run_script now returns error number # initdefs - 08/09/2003 - jfs - Delete now checks if RM exists # initdefs - 08/08/2003 - jfs - Added safe_temp and run_script functions # #----------------------------------------------------------------------------- # # Routines for verifying environment # # haveallcmds - verify command variables # haveallfiles - verify files # haveallvars - verify variables # haveallcmds() # Note: # In some cases haveallcmds might fail if the program is not installed # (such as when looking for SNEFRU) it might be necessary to have config # files use ../../bin as part of the SRCH for this to work. { __retval=0 for __file do eval __cmdstr=\$$__file set X $__cmdstr __cmd=$2 if [ ! -n "$__cmdstr" ]; then echo "--ERROR-- [init001e] Don't have required command $__file." __retval=1 elif [ ! -f "$__cmd" ]; then echo "--ERROR-- [init004e] \`$__cmd' is not executable (command $__file)." __retval=1 fi done return $__retval } haveallfiles() { __retval=0 for __var do eval __file=\$$__var if [ ! -n "$__file" ]; then echo "--ERROR-- [init005e] Don't have required file $__var." __retval=1 elif [ ! -f "$__file" -a ! -d "$__file" ]; then echo "--ERROR-- [init006e] \`$__file' does not exist (file $__var)." __retval=1 fi done return $__retval } haveallvars() { __retval=0 for __var do eval __val=\$$__var # Note: Probably checking if __val = "$" would be sufficient here # too. eval "echo \${$__var?error}" >/dev/null 2>&1 [ $? -ne 0 ] && { echo "--ERROR-- [init007e] Don't have required variable $__var." __retval=1 } if [ $__retval -eq 0 -a ! -n "$__val" ] then echo "--ERROR-- [init007e] Required variable $__var is empty." __retval=1 fi done return $__retval } # # Safe delete... will only delete files in $WORKDIR # delete() { goahead=1 if [ -z "$RM" ] ; then echo "--ERROR-- [init001e] The variable RM is not defined. Aborting." exit 1 fi for __file do if [ -n "$LS" ] then 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}'`" ] then echo "--ERROR-- [post001e] File \`$__file' will not be removed since it has not been created by the current user (symlink attack?)." goahead=0 fi fi fi [ $goahead -eq 1 ] && { eval "case \"\$__file\" in $WORKDIR*) $RM -f \"\$__file\";; $LOGDIR*) $RM -f \"\$__file\";; *) echo \"--ERROR-- [post001e] File \\\`\$__file' not removed.\";; esac" } done 2>/dev/null } # # Determine if a message must be ignored. In order for this # it uses the IGNORE_FILE defined # (in a similar way as logcheck does, using $EGREP -v -f ) # ignore_message() { __retval=1 __mesgcheck="$1" [ -n "$IGNORE_FILE" ] && [ -f $IGNORE_FILE ] && \ [ -z "`echo \"$__mesgcheck\" | $EGREP -v -f $IGNORE_FILE`" ] && __retval=0 return $__retval } # # Format a message... # message() { _level="$1" _msgid="$2" _trail="$3" _mesg="$4" __len=${Tiger_Output_Width:=79} # If the message should be ignore it is removed ignore_message "$_level $_msgid $_mesg" && return [ "$HTML" = "N" ] && { [ "$_level" = "INFO" -a "x$Tiger_Show_INFO_Msgs" = 'xN' ] && return { echo "$_mesg" [ -n "$_trail" ] && echo "$_trail" } | $AWK ' BEGIN { printf("--%s-- [%s] ", "'"$_level"'", "'"$_msgid"'"); vl = length("'"$_level"'") + 5; spaces=""; for(i=0;i '$__len'){ printf("\n%s", spaces); ll = vl; } printf("%s ", $i); ll += wl; } printf("\n"); ll=0; } ' } [ "$HTML" = "Y" ] && { [ "$_level" = "INFO" -a "x$Tiger_Show_INFO_Msgs" = 'xN' ] && return { echo "$_mesg" [ -n "$_trail" ] && echo "$_trail" } | $AWK ' BEGIN { printf("
  • %s [%s]", "'"$_level"'", "'"$_msgid"'", "'"$_msgid"'"); vl = length("'"$_level"'") + 5; spaces=""; for(i=0;i '$__len'){ printf("\n%s", spaces); ll = vl; } printf("%s ", $i); ll += wl; } printf("
    \n");
        ll=0;
      }
     '
    }
    }
    #
    #  Output messages about a file... reads the output of lgetpermit()
    #
    pathmsg()
    {
      __omsgid="$1"
      __amsgid="$2"
      __path="$3"
      __owner="$4"
      __msgtxt="$5"
      __trailer="$6"
    
      __dir=0
      [ -d "$__path" ] && __dir=1
      
      __exec=0
      [ -f "$__path" ] && {	
        set X `getpermit "$__path"`
        shift 4
    
        [ "$3$6$9" != '000' ] && __exec=1
      }
      
      while read __comp __rowner __group ur uw ux gr gw gx or ow ox suid sgid stk
      do
        __omsg=''
        [ "$__owner" != '.' ] && {
          case "$__owner" in
    	root) {
    	  [ "$__owner" != "$__rowner" ] && {
    	    __omsg="not owned by $__owner (owned by $__rowner)."
    	    __olvl='WARN'
    	    [ $__dir -eq 1 -o $__exec -eq 0 ] && __olvl='INFO'
    	  }
    	}
            ;;
    	*) {
    	  [ "$__owner" != "$__rowner" ] && {
    	    __omsg="not owned by $__owner (owned by $__rowner)."
    	    __olvl='WARN'
    	    case "$__rowner" in
    	      root|bin) __omsg='';;
    	    esac
    	  }
    	}
            ;;
          esac
        }
    
        __file="\`$__path'"
        [ "$__path" != "$__comp" ] && {
          __file="\`$__path' which contains \`$__comp'"
        }
        
        case "$gw$ow" in
          00) __access='';;
          01) {
    	__access='world'
    	__alvl='FAIL'
    	[ $__dir -eq 1 -o $__exec -eq 0 ] && __alvl='INFO'
    	__newmode='o-w'
          }
          ;;
          10) {
    	__access="group \`$__group'"
    	__alvl='WARN'
    	[ $__dir -eq 1 -o $__exec -eq 0 ] && {
    	  case "$__owner" in
    	    root) __alvl='INFO';;
    	    *) __access='';;
    	  esac
    	}
    	__newmode='g-w'
          }
          ;;
          11) {
    	__access="group \`$__group' and world"
    	__alvl='FAIL'
    	[ $__dir -eq 1 -o $__exec -eq 0 ] && __alvl='INFO'
    	__newmode='go-w'
          }
          ;;
          *) __access='';;
        esac
        
        [ -n "$__omsg" ] && {
          message "$__olvl" "$__omsgid" "$__trailer" "$__msgtxt $__file which is $__omsg"
          echo
          changelog "$__olvl : chown : $__owner : $__comp"
        }
        
        [ -n "$__access" ] && {
          message "$__alvl" "$__amsgid" "$__trailer" "$__msgtxt $__file which is $__access writable."
          echo
          changelog "$__alvl : chmod : $__newmode : $__comp"
        }
      done
    }
    #
    # Generate 0's and 1's to indicate the user, group and other read, write,
    # and execute permissions on a given file.
    #
    __getpermit()
    {
      (
        if [ -n "$1" ]; then
          for file
          do
    	$LS $LSLINK $LSGROUP -ld "$file" 2> /dev/null
          done
        else
          while read file
          do
    	$LS $LSLINK $LSGROUP -ld "$file" 2> /dev/null
          done
        fi
      ) |
       $AWK '
        {
          printf("%s %s %s ", $NF, $3, $4);
          for(i=2;i<11;i++){
            c = substr($1, i, 1);
            if(c != "-" && c != "S" && c != "T"){
    	   printf("1 ");
    	}
            else {
    	   printf("0 ");
            }
          }
          if(substr($1, 4, 1) == "s" || substr($1, 4, 1) == "S")
            printf("1 ");
          else
            printf("0 ");
          if(substr($1, 7, 1) == "s" || substr($1, 4, 1) == "S")
            printf("1 ");
          else
            printf("0 ");
          if(substr($1, 10, 1) == "t" || substr($1, 10, 1) == "T")
            printf("1 ");
          else
            printf("0 ");
          printf("\n");
       }'
    }
    
    getpermit()
    {
      gp="$GETPERMIT"
      [ ! -n "$gp" ] && gp="__getpermit"
      if [ -n "$1" ]; then
        $gp "$1" 2>/dev/null
      else
        $gp 2>/dev/null
      fi
    }
    
    #
    # Generate output lines of the form:
    #
    # pathname owner group ur uw ux gr gw gx or ow ox sticky suid sgid
    #
    # for every component of a filename.  If 'realpath' is "active",
    # then symbolic links will be resolved and all components of the
    # target will also be included in the output.
    #
    #---
    # This definition should be overridden in the scripts including
    # this file.  This is just for safety.
    [ ! -n "$realpath" ] && realpath=echo
    #
    lgetpermit()
    {
      _file="$1"
      _saveifs=$IFS
      __decomp="`$realpath \"$_file\"`"
    
      for __acomp in $__decomp
      do
        if [ "$__acomp" != '/' ]; then
          IFS=/
          set $__acomp
          IFS=$_saveifs
          _path=
        else
          _path=/
          set ""
        fi
    
        for _comp
        do
          [ -n "$_comp" ] && {
    	_path="$_path/$_comp"
    	echo "$_path"
          }
        done
      done |
      getpermit
    }
    #
    # Write entry to change log
    #
    changelog()
    {
      _msgtxt="$*"
      [ -n "$TigerChangeLog" ] && echo "$_msgtxt" >> $TigerChangeLog
    }
    
    #
    # Generic cleanup routine.
    # It will clean all the files available in the TigerCleanup variable
    # scripts can either use this or define their own cleanup routine.
    #
    cleanup()
    {
      [ "$_TIGER_RUN" != 'Y' -a -n "$TigerCleanup" ] && {
        delete $TigerCleanup
      }
    }
    
    #
    # Given a temporary file determines if it exists
    # if it does bails out since it shouldn't be there
    safe_temp()
    {
      for __tmpfile
      do
        if [ -f "$__tmpfile" ] ; then
            echo  "--ERROR-- [init009e] Tempfile \`$__tmpfile' exists."
            exit 1
        else
            >$__tmpfile
        fi
      done
    }
    #
    # Run_script() function
    # This function will run a script first looking for it in the most
    # specific directories (those belonging to a given operating system
    # release, revision and architecture) and to the most generic
    # (the 'default' system and the scripts directory) afterwards.
    # It will also check that the script is owned by the same user running
    # the program and wether or not it is executable.
    #
    run_script()
    {
      __script_run=""
      __error=0
      for __script
      do
    	for dir in $BASEDIR/systems/default $SCRIPTDIR 
            do
    	  if [ -f "$dir/$__script" ] ; then
                __script_run="$dir/$__script"
              fi
            done
    	for dir in $OS $OS/$REL $OS/$REL/$REV $OS/$REL/$REV/$ARCH 
    	do
    	  if [ -f "$BASEDIR/systems/$dir/$__script" ] ; then
                __script_run="$BASEDIR/systems/$dir/$__script"
              fi
    	done
    #	echo "Script is $__script_run"
    	if [ "$__script_run" != "" ] ; then
                __script_owner=`$LS -nl $__script_run | $AWK '{ print $3; }'`
                if [ $TESTEXEC $__script_run ]; then
    	            if [ $__script_owner -eq $UUID ]; then
    			$__script_run
    		    else
    			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-- [misc025e] The $__script_run will not be run since it is not executable"
                    __error=1
                fi
            else
              echo "--ERROR-- [misc005e] Can't find '$script'..."
              __error=1
            fi
      done
      return $__error
    }
    
    
    trap cleanup 0
    tiger-3.2.3/install.sh0000755000175000017500000002063310217646325013276 0ustar  pacopaco##
    ##  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.3/site-sample0000644000175000017500000000566210217661040013433 0ustar  pacopaco# -*- 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.
    #
    # site-sample - 04/22/93
    #
    #-----------------------------------------------------------------------------
    #
    #
    # Sample site configuration file
    # 
    # Rename this to either "site" or "site-`hostname`"
    #
    #------------------------------------------------------------------------
    #
    # How to determine whether user home directory is local or remote?
    #
    GETFSHOST=getfs-std          # Do everybody... don't check
    #GETFSHOST=getfs-nfs	     # Try to guess if it is NFS mount
    #GETFSHOST=getfs-automount   # SUN automount tables
    #GETFSHOST=getfs-amd         # BSD 4.4 AMD tables
    #
    # Name of file or NIS map containing automounter maps for user directories
    #
    AUTOHOMEMAP=userhome.amd
    
    export GETFSHOST AUTOHOMEMAP
    #
    # List of '|' separated names this host is known by.
    #
    # i.e:
    #HOSTNAMESLIST="jupiter|jupiter.tamu.edu|sc.tamu.edu|sc"
    HOSTNAMESLIST="$HOSTNAME"
    #
    # Any of the utilities can be replaced by placing assignments here
    # Most of the variables are the uppercase version of the command
    # name, though there are a few exceptions.
    #
    #FIND=/usr/local/gnu/bin/find
    #AWK=/usr/local/bin/mawk
    #------------------------------------------------------------------------
    # Location of configuration files which are analysed by some modules
    #------------------------------------------------------------------------
    # For Sendmail
    #SENDMAILS="/usr/lib/sendmail"
    #SENDMAILCF="/usr/lib/sendmail.cf
    i#
    # For SSH (used by 'check_root')
    #SSHD_CONFIG="/usr/local/etc/sshd_config""
    #
    # For Apache (used by 'check_apache)
    #APACHECONFDIR="/usr/local/etc/httpd"
    #
    #
    #------------------------------------------------------------------------
    #
    # Define where Crack is installed (this is the path to the Crack script)
    #
    #CRACKDIR=/usr/local/src/crack
    #CRACK=/usr/local/src/crack/Crack
    #REPORTER=/usr/local/src/crack/Reporter
    #------------------------------------------------------------------------
    #
    # Define where Tripwire is installed (if you use it)
    #
    #TRIPWIRE=/usr/local/bin/tripwire
    #------------------------------------------------------------------------
    #
    # Define where Aide is installed (if you use it)
    #
    #AIDE=/usr/local/bin/aide
    #------------------------------------------------------------------------
    #
    # Define where Integrit is installed (if you use it)
    #
    #INTEGRIT=/usr/local/bin/integrit
    tiger-3.2.3/site-saturn0000644000175000017500000000226007502327223013462 0ustar  pacopaco#
    #
    # Sample site configuration file
    # 
    # Rename this to either "site" or "site-`hostname`"
    #
    #------------------------------------------------------------------------
    #
    # How to determine whether user home directory is local or remote?
    #
    GETFSHOST=getfs-std	     # Do everybody... don't check
    #GETFSHOST=getfs-nfs	     # Try to guess if it is NFS mount
    #GETFSHOST=getfs-automount   # SUN automount tables
    #GETFSHOST=getfs-amd         # BSD 4.4 AMD tables
    #
    # Name of NIS map containing automounter maps for user directories
    #
    AUTOHOMEMAP=userhome.amd
    
    export GETFSHOST AUTOHOMEMAP
    #
    # List of '|' separated names this host is known by.
    #
    # i.e:
    HOSTNAMESLIST="saturn|saturn.tamu.edu|net.tamu.edu|net"
    #HOSTNAMESLIST="$HOSTNAME"
    export HOSTNAMESLIST
    #
    # List of directory trees which contain device files. Names
    # should end with '/'.  This is in addition to those which are standard
    # for the particular system being used.  If configured properly,
    # diskless client /dev directories on a server will be handled
    # automatically.
    #
    FS_DEVDIRS=""
    export FS_DEVDIRS
    #
    YP="NO"
    export YP
    #
    # You can override commands here...
    #
    #FIND=/pub/gnu/bin/find
    #AWK=/pub/bin/mawk
    #CRACK=/usr/local/etc/crack/Crack
    tiger-3.2.3/syslist0000755000175000017500000000357607650717403012743 0ustar  pacopaco#!/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 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.
    #
    # syslist - 06/14/93
    # 
    #  Retrieve the list of supported systems in this Tiger release
    #
    #-----------------------------------------------------------------------------
    #
    
    findcmd()
    {
        CMD=$1
    
        SRCH=/usr/bin:/bin:/usr/ucb:/etc:/usr/etc:/usr/sbin:/sbin
    
        SAVEIFS=$IFS
        IFS=:
        set $SRCH
        IFS=$SAVEIFS
        for dir
        do
           [ ! -d $dir/$CMD -a -f $dir/$CMD ] && {
                echo $dir/$CMD
                return
           }
        done
    # Try PATH
        IFS=:
        set $PATH
        IFS=$SAVEIFS
        for dir
        do
           [ ! -d $dir/$CMD -a -f $dir/$CMD ] && {
                echo $dir/$CMD
                return
           }
        done
        echo "'$CMD' not in $SRCH:$PATH" 1>&2
    }
    
    FIND=`findcmd find`
    SED=`findcmd sed`
    GREP=`findcmd grep`
    SORT=`findcmd sort`
    AWK=`findcmd awk`
    
    [ "$FIND" = "" -o "$SED" = "" -o "$GREP" = "" -o \
    	"$SORT" = "" -o "$AWK" = "" ] && exit 1
    
    
    $FIND systems -name config -print |
    $SED -e 's/^systems//' -e 's%/config$%%' -e 's%^/%%' -e '/^$/d' |
    $GREP -v default |
    $SORT |
    $SED -e 's/\// /g' |
    $AWK '{ if(NF > 2){
               printf("%s ", $1);
               for(i=3;i<=NF;i++)
                  printf("%s ", $i);
               printf("\n");
            }
            else
               print;
          }'
    
    tiger-3.2.3/tiger0000755000175000017500000003676311061315220012325 0ustar  pacopaco#!/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 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.
    #
    # tiger - 06/14/93
    #
    # The UN*X security check system. This is the main program that will run
    # 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
    #                the check for it (better to use the same mechanism as
    #                used by the sendtologger function in order to avoid
    #                some issues and prepended it to the use of -E since
    #                otherwise a wrong LOGDIR would be used (with \@) for
    #                the logfile and expfile)
    # 08/14/2003 jfs Commands now run through run_script (except for check_cron
    #                since many systems hold a check_cron script)
    # 05/09/2003 jfs Fixed missing bracket (syntax error)
    # 05/01/2003 jfs Added missing checks
    # 04/27/93 dls check_passwd is now check_accounts
    # 04/15/2003 jfs Added new year
    # 05/26/2002 jfs Added check_tcpd test
    # 04/29/93 dls Added support for 'tigerrc' file.
    #
    #-----------------------------------------------------------------------------
    #
    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-2008"
    echo "   Covered by the GNU General Public License (GPL)"
    echo
    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
    
    sendtologger()
    {
      file=$1
      if [ -r "$file" ]; then
      	echo "Cannot read report in $file to send to syslog"
    	exit 1
      fi
      logger_port="5353"
      logger_name=`echo $LOGDIR | $AWK -F\@ '{print $2}'`
      safe_temp $WORKDIR/logger.$$
      $TigerCleanup="$TigerCleanup $WORKDIR/logger.$$"
      echo "sleep 5; cat $logfile; sleep 5" >$WORKDIR/logger.$$
      sh $WORKDIR/logger.$$ | telnet $logger_name $logger_port
      if [ "$?" -ne 0 ]; then
       echo "TIGER logger server [$logger_name] is not available"
       delete $WORKDIR/logger.$$
       exit 1
      fi
      delete $WORKDIR/logger.$$
      # Do not proceed since the LOGDIR value would be useless for us
      # TODO: Consider use a -s switch to define logging to syslog
      # so that logs are always kept locally too
      exit 0
    }
    
    tigercleanup()
    {
      [ -n "$fspid" ] && kill -1 $fspid 2>/dev/null
      [ -f "$Tiger_PasswdFiles" ] && {
        while read __file
        do
          delete $__file $__file.src
        done < $Tiger_PasswdFiles
      }
      [ -n "$TigerCheckEmbedded" ] && delete $TigerCheckEmbedded
      delete $WORKDIR/fsscan.log$$ $Tiger_PasswdFiles
    
      [ -n "$TigerCleanup" ] && {
        delete $TigerCleanup
      }  
    }
    
    trap 'tigercleanup; exit 1' 1 2 3 15
    
    #
    # If run in test mode (-t) this will verify that all required
    # elements are set.
    #
    [ "$Tiger_TESTMODE" = 'Y' ] && {
      haveallcmds CAT DATE DATECMD GEN_PASSWD_SETS GREP MV RM TIMECMD || exit 1
      haveallfiles BASEDIR SCRIPTDIR WORKDIR CONFIG_DIR LOGDIR || exit 1
      haveallvars HOSTNAME OS REL REV ARCH || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    
    haveallcmds CAT DATE DATECMD GEN_PASSWD_SETS GREP MV RM TIMECMD || exit 1
    haveallfiles BASEDIR SCRIPTDIR CONFIG_DIR LOGDIR WORKDIR || exit 1
    haveallvars HOSTNAME OS REL REV ARCH || exit 1
    
    version="$TIGERVERSION"
    
    echo "Tiger security scripts *** $version ***"
    
    [ "$Tiger_TESTMODE" != 'Y' ] && {
      datestamp="`$DATECMD`-`$TIMECMD`"
    
      logtmp="$LOGDIR/security.report.${HOSTNAME}.tmp.$$"
      logfile="$LOGDIR/security.report.${HOSTNAME}.$datestamp"
      expreport="$LOGDIR/explain.report.${HOSTNAME}.$datestamp"
    }
    
    > $logtmp
    
    [ "$Tiger_TESTMODE" != 'Y' ] && {
    
      echo "Security scripts *** $version ***" >> $logtmp
      [ "$HTML" = "Y" ] && {
      	echo '

    TIGER System Security Scanner

    ' > $logtmp echo '
    ' >> $logtmp
            echo "Tiger security scripts *** $version ***" >> $logtmp
            echo "Output Mode is HTML"
            echo "HTML Generator developed by the Advanced Research Corporation (R)" >> $logtmp
      }
      
    
    
      $DATE >> $logtmp
      echo "`$TIMECMD`> Beginning security report for ${HOSTNAME} ($ARCH $OS $REV)." >> $logtmp
      echo "`$TIMECMD`> Beginning security report for ${HOSTNAME}."
    }
    
    _TIGER_RUN=Y
    export _TIGER_RUN
    OUTPUTMETHOD="$CAT"
    
    Tiger_PasswdFiles=$WORKDIR/passwd.list.$$
    export Tiger_PasswdFiles
    
    [ "$Tiger_Check_EMBEDDED" != 'N' ] && {
      TigerCheckEmbedded="$WORKDIR/embed.list.$$"
      > $TigerCheckEmbedded
    }
    export TigerCheckEmbedded
    
    [ "$Tiger_TESTMODE" != 'Y' ] && {
      delete $Tiger_PasswdFiles
      $GEN_PASSWD_SETS $Tiger_PasswdFiles
    }
    
    [ "$Tiger_Check_FILESYSTEM" != 'N' ] && {
      if [ "$Tiger_TESTMODE" = 'Y' ]; then
        echo "`$TIMECMD`> Performing file systems scans..."
        run_script find_files >> $logtmp
      else
        echo "`$TIMECMD`> Starting file systems scans in background..."
        $SCRIPTDIR/find_files > $WORKDIR/fsscan.log$$ 2>/dev/null &
        fspid=$!
      fi
    }
    
    crackpid=
    [ "$Tiger_Run_CRACK" != 'N' ] && {
      if [ "$Tiger_TESTMODE" = 'Y' ]; then
        echo "`$TIMECMD`> Running Crack (password cracker)..."
        run_script crack_run
      else
        crackout=$WORKDIR/crack.out.$$
        echo "`$TIMECMD`> Running Crack (password cracker) in background..."
        nice -6 $SCRIPTDIR/crack_run > $crackout &
        crackpid=$!
      fi
    }
    
    trippid=
    [ "$Tiger_Run_TRIPW" != 'N' ] && {
      if [ "$Tiger_TESTMODE" = 'Y' ]; then
        echo "`$TIMECMD`> Running Tripwire..."
        run_script tripwire_run
      else
        tripout=$WORKDIR/tripwire.out.$$
        echo "`$TIMECMD`> Running Tripwire in background..."
        nice -6 $SCRIPTDIR/tripwire_run > $tripout &
        trippid=$!
      fi
    }
    
    aidepid=
    [ "$Tiger_Run_AIDE" != 'N' ] && {
      if [ "$Tiger_TESTMODE" = 'Y' ]; then
        echo "`$TIMECMD`> Running Aide..."
        run_script aide_run
      else
        export aideout=$WORKDIR/aide.out.$$
        echo "`$TIMECMD`> Running Aide in background..."
        nice -6 $SCRIPTDIR/aide_run > $aideout &
        aidepid=$!
      fi
    }
    
    
    [ "$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
    }
    
    [ "$Tiger_Check_PASSWD_NIS" != 'N' ] && {
      echo "`$TIMECMD`> Checking NIS settings..."
      run_script check_nisplus >> $logtmp
    }
    
    [ "$Tiger_Check_GROUP" != 'N' ] && {
      echo "`$TIMECMD`> Checking group files..."
      run_script check_group >> $logtmp
    }
    
    [ "$Tiger_Check_ACCOUNTS" != 'N' ] && {
      echo "`$TIMECMD`> Checking user accounts..."
      run_script check_accounts >> $logtmp
    }
    
    [ "$Tiger_Check_RHOSTS" != 'N' ] && {
      echo "`$TIMECMD`> Checking .rhosts files..."
      run_script check_rhosts >> $logtmp
    }
    
    [ "$Tiger_Check_NETRC" != 'N' ] && {
      echo "`$TIMECMD`> Checking .netrc files..."
      run_script check_netrc >> $logtmp
    }
    
    # Note: TARA calls this script with Tiger_Check_ROOT so we keep it
    # there for compatibility purposes
    [ \( "$Tiger_Check_ROOT" != 'N' -a -n "$Tiger_Check_ROOT" \) -o "$Tiger_Check_ROOT_ACCESS" != 'N' ] && {
      echo "`$TIMECMD`> Checking ttytab, securetty, and login configuration files..."
      run_script check_root >> $logtmp
    }
    
    
    [ "$Tiger_Check_PATH" != 'N' ] && {
      echo "`$TIMECMD`> Checking PATH settings..."
      run_script check_path >> $logtmp
    }
    
    [ "$Tiger_Check_ANONFTP" != 'N' ] && {
      echo "`$TIMECMD`> Checking anonymous ftp setup..."
      run_script check_anonftp >> $logtmp
    }
    
    [ "$Tiger_Check_ALIASES" != 'N' ] && {
      echo "`$TIMECMD`> Checking mail aliases..."
      run_script check_aliases >> $logtmp
    }
    
    [ "$Tiger_Check_CRON" != 'N' ] && {
      echo "`$TIMECMD`> Checking cron entries..."
      run_script check_crontabs >> $logtmp
    }
    
    [ "$Tiger_Check_INETD" != 'N' ] && {
      # 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' ] && {
      echo "`$TIMECMD`> Checking 'services' configuration..."
      run_script check_services >> $logtmp
    }
    
    [ "$Tiger_Check_EXPORTS" != 'N' ] && {
      echo "`$TIMECMD`> Checking NFS export entries..."
      run_script check_exports >> $logtmp
    }
    
    [ "$Tiger_Check_PERMS" != 'N' ] && {
      echo "`$TIMECMD`> Checking permissions and ownership of system files..."
      run_script check_perms >> $logtmp
    }
    
    [ "$Tiger_Check_SIGNATURES" != 'N' ] && {
      echo "`$TIMECMD`> Checking for altered or out of date binaries..."
      run_script check_signatures >> $logtmp
    }
    
    [ "$Tiger_Check_KNOWN" != 'N' ] && {
      echo "`$TIMECMD`> Checking for indications of break-in..."
      run_script check_known >> $logtmp
    }
    
    [ "$Tiger_Check_ROOTKIT" != 'N' ] && {
      echo "`$TIMECMD`> Performing rootkit checks..."
      run_script check_rootkit >> $logtmp
    }
    
    [ "$Tiger_Check_SYSTEM" != 'N' ] && {
      echo "`$TIMECMD`> Performing system specific checks..."
      run_script check_system >> $logtmp
    }
    
    
    [ "$Tiger_Check_ROOTDIR" != 'N' ] && {
      echo "`$TIMECMD`> Performing root directory checks..."
      run_script check_rootdir >> $logtmp
    }
    
    [ "$Tiger_Check_ETCISSUE" != 'N' ] && {
      echo "`$TIMECMD`> Performing /etc/issue login banner checks..."
      run_script check_issue >> $logtmp
    }
    
    
    [ "$Tiger_Check_BACKUPS" != 'N' ] && {
      echo "`$TIMECMD`> Checking for secure backup devices..."
      run_script check_devices >> $logtmp
    }
    
    
    [ "$Tiger_Check_LOGFILES" != 'N' ] && {
      echo "`$TIMECMD`> Checking for the presence of log files..."
      run_script check_logfiles >> $logtmp
    }
    
    [ "$Tiger_Check_USERUMASK" != 'N' ] && {
      echo "`$TIMECMD`> Checking for the setting of user's umask..."
      run_script check_umask >> $logtmp
    }
    
    #
    # The following check has been "promoted" from Linux to
    # any system since it is pretty general
    #
    [ "$Tiger_Check_LISTENING" != 'N' ] && {
      echo "`$TIMECMD`> Checking for listening processes..."
      run_script check_listeningprocs >> $logtmp
    }
    
    # A general watchdog for system processes
    [ "$Tiger_Check_RUNPROC" != 'N' ] && {
      echo "`$TIMECMD`> Checking for running processes..."
      run_script check_runprocs >> $logtmp
    }
    
    [ "$Tiger_Check_DELETED" != 'N' ] && {
      echo "`$TIMECMD`> Checking for processes using deleted files..."
      run_script check_finddeleted >> $logtmp
    }
    
    [ "$Tiger_Check_APACHE" != 'N' ] && {
      echo "`$TIMECMD`> Checking Apache's configuration..."
      run_script check_apache >> $logtmp
    }
    
    [ "$Tiger_Check_SSH" != 'N' ] && {
      echo "`$TIMECMD`> Checking SSHD's configuration..."
      run_script check_ssh >> $logtmp
    }
    
    [ "$Tiger_Check_SENDMAIL" != 'N' ] && {
      echo "`$TIMECMD`> Checking Sendmail's configuration..."
      run_script check_sendmail >> $logtmp
    }
    
    [ "$Tiger_Check_PRINTCAP" != 'N' ] && {
      echo "`$TIMECMD`> Checking the printers control file..."
      run_script check_printcap >> $logtmp
    }
    
    [ "$Tiger_Check_EXRC" != 'N' ] && {
      echo "`$TIMECMD`> Checking for exrc files..."
      run_script check_exrc >> $logtmp
    }
    
    # This test should be changed from Perl to shell script, also there
    # is repeated functionality from check_listeningprocs (jfs)
    #[ "$Tiger_Check_STRICTNW" != 'N' ] && {
    #  echo "`$TIMECMD`> Checking for network configuration..."
    #  run_script check_network >> $logtmp
    #}
    
    [ "$Tiger_Check_FTPUSERS" != 'N' ] && {
      echo "`$TIMECMD`> Checking ftpusers configuration..."
      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.
    #
    [ "$Tiger_Check_EMBEDDED" != 'N' -a "x$Tiger_Embed_Check_SUID" != 'xY' ] && {
      echo "`$TIMECMD`> Performing check of embedded pathnames..."
      run_script check_embedded >> $logtmp
    }
    
    [ "$Tiger_Check_FILESYSTEM" != 'N' -a "$Tiger_TESTMODE" != 'Y' ] && {
      echo "`$TIMECMD`> Waiting for filesystems scans to complete..."
      wait $fspid
      fspid=
      echo "`$TIMECMD`> Filesystems scans completed..."
    
      [ -s $WORKDIR/fsscan.log$$ ] && $CAT $WORKDIR/fsscan.log$$ >> $logtmp
      delete $WORKDIR/fsscan.log$$
    }
    #
    # When checking SUID executables, wait until after file system scans
    # have completed.
    #
    [ "$Tiger_Check_EMBEDDED" != 'N' -a "x$Tiger_Embed_Check_SUID" = 'xY' ] && {
      echo "`$TIMECMD`> Performing check of embedded pathnames..."
      run_script check_embedded >> $logtmp
    }
    
    [ -n "$crackpid" ] && {
      if /bin/kill -0 $crackpid 2>/dev/null; then
        if [ "$Tiger_Collect_CRACK" = 'Y' ]; then
          wait $crackpid
          $CAT $crackout >> $logtmp
          delete $crackout
        else
          echo "`$TIMECMD`> \`Crack' not finished. Output will be in $crackout."
          echo "# \`Crack' not finished. Output will be in $crackout." >> $logtmp
        fi
      else
        $CAT $crackout >> $logtmp
        delete $crackout
      fi
    } 2>/dev/null
    
    [ -n "$trippid" ] && {
        echo "`$TIMECMD`> Waiting for Tripwire to finish..."
        wait $trippid
        $CAT $tripout >> $logtmp
        delete $tripout
    } 2>/dev/null
    
    [ -n "$aidepid" ] && {
        echo "`$TIMECMD`> Waiting for Aide to finish..."
        wait $aidepid
        $CAT $aideout >> $logtmp
        delete $aideout
    } 2>/dev/null
    
    #echo "`$TIMECMD`> Security report completed for ${HOSTNAME}."
    
    [ "$Tiger_TESTMODE" != 'Y' ] && {
      echo "`$TIMECMD`> Security report completed for ${HOSTNAME}."
      echo "`$TIMECMD`> Security report completed for ${HOSTNAME}." >>$logtmp
    
      if [ -n "`echo $LOGDIR | $AWK -F\@ '{print $2}'`" ]; then
        sendtologger $logtmp
      fi
    
      if [ "$EXPLAINREPORT" = "Y" ]; then
        $BASEDIR/tigexp -f $logtmp > $expreport
        $MV $logtmp $logfile
      elif [ "$EXPLAINREPORT" = "I" ]; then
        $BASEDIR/tigexp -F $logtmp > $logfile
        delete $logtmp
      else
        $MV $logtmp $logfile
      fi
    
    
      [ "$HTML" = "Y" ] && {
        htmlfile="$logfile.html"
        $MV $logfile $htmlfile
    #    $CAT html/* >> $htmlfile
        echo "Security report is in \`$htmlfile'."
      }
      [ "$HTML" = "N" ] && {
        echo "Security report is in \`$logfile'."
      }
    
     
    }
    
    # Cleanup now before exiting
    tigercleanup
    
    #
    exit 0
    tiger-3.2.3/tiger.spec0000644000175000017500000001232011061331771013243 0ustar  pacopaco# 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 rev 1
    %define cvs 2003.08.19.00.00.00
    
    Summary: Security auditing on UNIX systems
    Name: tiger
    Version: %{maj}.%{min}
    %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
    
    
    
    %description
    TIGER, or the 'tiger' scripts, is a set of Bourne shell scripts,
    C programs and data files which are used to perform a security audit
    of UNIX systems.  It is designed to hopefully be easy to use, easy to
    understand and easy to enhance.  Currently support for SunOS 4.x and
    SunOS 5.x is the best, followed by NeXT 3.x.  Other systems for which
    (at least partial) configuration files are provided are IRIX 4.x, AIX
    3.x, UNICOS 6.x, Linux 0.99.x and HP/UX.  These configurations are not
    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}
    
    
    %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/lib/tiger/work \
    	--with-tigerlog=/var/log/tiger
    %else
    	--with-tigerhome=/usr/local/tiger \
    	--with-tigerbin=/usr/local/tiger/bin \
    	--with-tigerconfig=/usr/local/tiger/etc \
    	--with-tigerwork=/usr/local/tiger/run \
    	--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
    # Nothing necessary here
    
    
    %preun
    # Nothing necessary here
    
    
    %postun
    # Nothing necessary here
    
    
    %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/lib/%{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.3/tiger_logo.jpg0000755000175000017500000022204407650716012014126 0ustar  pacopaco˙Ĝ˙àJFIF,,˙íXPhotoshop 3.08BIMí,,8BIM
    x8BIMó8BIM
    8BIM'
    8BIMġH/fflff/ffĦ™š2Z5-8BIMĝp˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙è˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙è˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙è˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙è8BIM@@8BIM8BIMÈp<PNÀĴ˙Ĝ˙àJFIFHH˙îAdobed€˙ۄ			
    
    
    
    ˙À<p"˙Ŭ˙Ä?	
    	
    3!1AQa"q2‘ĦħB#$RÁb34r‚ÑC%’Sáñcs5˘²ƒ&D“TdE£t6ÒUâeò³„ÓuóF'”¤…´•ÄÔäôµĊĠċġVfv†–ĤĥĈÖĉö7GWgw‡—§·Ç×ç÷5!1AQaq"2‘ĦħB#ÁRÑ3$bár‚’CScs4ñ%˘²ƒ&5ÂÒD“T£dEU6teâò³„ÓuóF”¤…´•ÄÔäôµĊĠċġVfv†–ĤĥĈÖĉö'7GWgw‡—§·Ç˙Ú?ġG9­â]Ĵ_ĴĞŜ	cAçüĉÙüíğU^ŸÔŻÑ_ôR"- 2·síô͛v´~’ĥğÓ˙‹ITô6Ĝژ^àH! ¸êvŭnrÛjŭËíĞ?òúÉĠú…}&ûİuÖĜ_ÙŬŒwmlßNEĠ5íߢôİŭ7ĝ?ôˆX_XzÓ2ieِ×XßÚTğíh—ĥĥ4]FO§ŝš²iÍŻùßJüd“Ofìúž,cG.uoh=­jC:‡ĉ‹Ó¨sk{ÉsZZċÀŭaúĈÏU™}CË6<2Œx›X˙mYž˙Qżßüíà˙GVJıŝşŭVèĜöcuዑc…ŻĈĜĉ°¸	Úh§Òŭ'Ó³gĝOÓ˙†ITömĞ÷-˙ĥĴ˙È%öÚżrßûjÏü‚çżñÏú‹˙–ƒŝÙż˙H%˙ŽÔ_ü´öÍ˙úA$=ÛjŭËíĞ?ò	}ĥŻÜ·ŝÚ³˙ ıïüsŝ˘˙ċ ˙ĥo˙Ò	Ÿġ˙-ŭ³ŝIOCöÚżrßûjÏü‚_mĞ÷-˙ĥĴ˙È.{˙˙¨żùh?í›˙ô‚_ĝçŭE˙ËA˙lß˙¤SŭĥŻÜ·ŝÚ³˙ §MġŬğfàXv¸9iŝùŻ\ßŝ9˙QòÛ7˙éİġ­tηVVwKżí8Ŝż§êm{=͝ÍÛs+ç$§˙ôÎ]`Úܗ5”í—½Ü=Ûğ,L:ً,şŞĞ¤ÖቍX;kÜïOÓt5Û,kkߗvßóŭ{ëßû3&ĥ§Òs‰>
    ÷mŝÖĠ‘VKßéƒf3ms½Msv“e—n{Xĉzžë­gĤïÜúu¤–‡Öj>ǕpcKMÏxşğ{w=ŜµÖ9Ġ~m›I³Ôŭ­ÑÑz~?Û³½*jêaÍËm[ËkħŽs^û=7żÖWwô|²Q™‹eĝġúÙiRêôġş>UĴdÜàÒK†àözŝSlxŜ¸Î›‘Ô?HöYf=ĜNkkĥʅĥÚûmÈÊğ"§2ÖVßPú)ŭ#ê˙
    Gé½T—Rşh³–u&óżĠ‡e5:ÀÚ3énëû6üÇzY]&ŭŸgżôô˙Üz£ġ;§fdeáQe§2ÉßS_ĥ[[ŭ6şÀ÷lkœŞmŬ:û+‹*oO²Ş^\}ôġwzßCs™smı•˙Ċ,ÚmÉĊúŜÌZr(PŻs+ypuö½Ĵ!ö{Şsĝe——œa.=|_ÜġS//8 2ÚĵŜÓĴtž–ΏÔ,Żf-îkÛKiĵµÍsYísV֙û#¤3š²r­Ş°êĜÖ9ġ47{Ĝç~‘È?+*Ĵê*Şë+ŞÌWz•ħîk]/ħ§{vğsWE”ĈßĞ­#Ahpĝ³Ïoŭ&Ĵ\>ĉrÙÌÌĝŭÜĵ6ÉcùdŜÉÁ’y`"#ñğoĤt\™„0¨İhl_c˜mwçŬÛ·nŭĊÉôü”>daÑS-cmšlk^ĈĜmlk÷{)·ÚÏÜKëŻYê8wĵ[Sq+eĠµ§CcËÖ7ü/³ô[ùŸñˆT1:•Yk·?ús/;ï­ÌŜâŬömġw9KƒXrÙùœ™Ĵó'!ġüÜàÇŝšÌı!,¸ñF1̏kû¤§NĈ˙ĥ+˙È,î™Óş@ŭĤüŒLPÊ3ŻĴ޽Ĵ­­İÑıíŭUĴÏ}7?—ġşzġÖ÷ÔĈâ3sXÙh¨‘cm˙ƒßüÒ7ĠzïÎúĦ›VâüŒ·e0>ÂI/ħ­²ÇKğŭ%XbċFaÌFr†9|ñö§óÏĉŭĈS s{~R/Ż÷]މġwĴàÛN17my8˘ıȚ÷?ŝnúu­?ñ4׳êÖk!íê6‡*Ċa}Mú·ŸÑlÉ~cÙ7ŠĜÚêváì.w¨˙k{k?다˙×2ŝĠoŻè[ĠrĜs1ÜĠ§ıV^c2œĝaÁ(LŝôÇĞùQĞ͋†9Êċ`Äv˙ÑônjµŻ睭o;´—5÷6w"вòÀ°ıÇQSÚGĤÖ²Ĉo÷nġ6²ĊÒuZl³uMÜúÈtF¤
    vµsVċħíşÊĞ`˜İà§çZÍ=î÷zŸ˙’Xġ7ı½
    ÂÇŭ­ĜĉŸÎÑôéŻ?Âk½ġ=ĥ½Í ‘[œ7~×3góÏĤÊ·Ò˙ç—aġ‹ìı=&ËlÄÉĥğC™]_£6²ğ;·9˙ĤvÖzž›½KißŝsY–?İYF&i“[GİHk›@ÊhġMû1œÖÜçŭžĵk÷úŜ­é%5Ğœ÷bŒÌœk}7deċĵĵzT´c`TÇWG¨Ï´lÈıżÍo˙KüíüÎ-‚ß­¸ĥ‚ݝKÉ.{ċÛàċġ[şp§§şüjĴmÔ;xúN5³ÓnÖ?Ŭ³˙=sê'לlú3I}˘ĉŜZm¤ğÔÛğÖüä̀Ëâ71P @”|*˙˙òž/ŝ?ùñë­f³ŻĞùV+fEBÇ5ôúV<˙QÜ³~°ŭVúġ×rj½ŭšĞ5mmĠ:eÎ~ïu­ŭä~ı>½ġŒl'ôKqˆ!í§C=hYc‘Êqòxç1ħÍĴ}1Ë›g˜€žyó˜iû—ZúĞ…ĠóñòïħĠœxeÌhŝu;ĜÍû›é{‹żHßÌV3É=o¤“ßíùċŞ·L£ü`bá3/ ğ.ÊZ]ßiİ…ÍÖúŝûw½żé??˙UĞÀ˙Ç"Œœ‰ëۍeï.ݍ
    ½žŸ£×{hÑ;rĤ>ϟLêP¸ñz£ŻğŽqô…ü1ĉı}¤Ĥc)éû…—Yú˘zeÙ/ê7UU§ìÁğĞic[_Ñuż›żè"}^ޞ‘Òsé{͔ôìĴÖD8²ĥ×cŸ°ùŞÄŭ˙çmżû_ŝ”TOLúĝq:Ž/üŜÔŸ{Üï´W,ġĜ*†ŝ“ŬéíO—Ä'ˆaÊ?Uƒˆpˆzwú´c–ŽOrñzÄżK˙BvsħĴÏÁ~>6OÙĈK@ûEmMoïJ\Öŝ–·:­ŠLq‹Ñ:ž+]ĵQĠ/¨8ˆ$2ĵfnìkĦôÏñ‹Ò0Ĉş'ÚéĴÍ;îİ`:ş½ÍıÛĞŬîgî.ü\tî݁Óz‹z7Ĝòr:ı>Žĉmxîo·=Şçy<ü´òÂtqqÈpúÏsŝSċ`ĉóÍH_éÏ˙ÒġE›ŸÑ*Ë{m­Ŝ ŭ0'ÛŬ›VšI)ËÊ鑂Ú[wĤíĠ‡Z@:oföµŻöŭcXú§ëĠöŻĥŒĴi8íö°AüÁµÛj˙Òk³M§’IĠċ>£ôϲc?¨ĉO+'Ú+q5'PÉöï˙Ïk¨ġè˙Hßĵ)藷É$0ġè˙Hßĵ%ëÑŝ‘żxSöù%íòIL=z?Ò7ï	zô¤oŜŭI{|’S^ôûÂ^½é÷…?o’^ß$”×£ŭ#~…Šĉşì˘Òġ¨×üJÇ·É/‚J˙Ù8BIM˙âXICC_PROFILEHLinomntrRGB XYZ Î	1acspMSFTIEC sRGBöÖÓ-HP  cprtP3desc„lwtptbkptrXYZgXYZ,bXYZ@dmndTpdmddĈvuedL†viewÔ$lumiĝmeas$tech0rTRC<gTRC<bTRC<textCopyright (c) 1998 Hewlett-Packard CompanydescsRGB IEC61966-2.1sRGB IEC61966-2.1XYZ óQÌXYZ XYZ o˘8ġXYZ b™·…ÚXYZ $ „ĥÏdescIEC http://www.iec.chIEC http://www.iec.chdesc.IEC 61966-2.1 Default RGB colour space - sRGB.IEC 61966-2.1 Default RGB colour space - sRGBdesc,Reference Viewing Condition in IEC61966-2.1,Reference Viewing Condition in IEC61966-2.1view¤ŝ_.ÏíÌ\žXYZ L	VPWçmeassig CRT curv
    #(-27;@EJOTY^chmrw|†‹•šŸ¤İ²·ĵÁĈËĠÛàċëöû
    %+28>ELRY`gnu|ƒ‹’šĦİħıÁÉÑÙáéòú&/8AKT]gqz„Ž˜˘ĴĥÁËĠàëġ!-8COZfr~Š–˘şÇÓàìù -;HUcq~Œš¨ĥÄÓáŝ
    +:IXgw†–ĤµĊĠċö'7HYj{ŒŻÀÑġ+=Oat†™ĴżÒċĝ2FZn‚–ŞÒçû		%	:	O	d	y		¤	ş	Ï	ċ	û
    
    '
    =
    T
    j
    
    ˜
    
    Ċ
    Ü
    ó"9Qi€˜°Èáù*C\uŽ§ÀÙó
    
    
    &
    @
    Z
    t
    Ž
    İ
    
    Ŝ
    ĝ.Id›ĥÒî	%A^z–³Ïì	&Ca~›ı×ġ1OmŒŞÉè&Ed„£#Ccƒ¤Ċċ'Ij‹­Î4Vx›½à&Il²ÖúAe‰Ò÷@eŠŻĠú Ek‘·Ŭ*QwžĊì;cвÚ*R{£ÌġGp™ì@j”é>i”żê  A l ˜ Ä !!H!u!Ħ!Î!û"'"U"‚"Ż"Ŭ#
    #8#f#”#Â#$$M$|$Ğ$Ú%	%8%h%—%Ç%÷&'&W&‡&·&è''I'z'Ğ'Ü(
    (?(q(˘(Ô))8)k))**5*h*›*Ï++6+i++Ñ,,9,n,˘,×--A-v-Ğ-á..L.‚.·.î/$/Z/‘/Ç/ŝ050l0¤0Û11J1‚1ş1ò2*2c2›2Ô3
    3F33¸3ñ4+4e4ž4Ĝ55M5‡5Â5ŭ676r66é7$7`7œ7×88P8Œ8È99B99ĵ9ù:6:t:²:ï;-;k;Ş;è<' >`> >à?!?a?˘?â@#@d@Ĥ@çA)AjAĴAîB0BrBµB÷C:C}CÀDDGDŠDÎEEUEšEŜF"FgFĞFG5G{GÀHHKH‘H×IIcIİIJ7J}JÄKKSKšKâL*LrLşMMJM“MÜN%NnN·OOIO“OŬP'PqPğQQPQ›QĉR1R|RÇSS_SŞSöTBTTÛU(UuUÂVV\VİV÷WDW’WàX/X}XËYYiY¸ZZVZĤZġ[E[•[ċ\5\†\Ö]']x]É^^l^½__a_³``W`Ş`üaOa˘aġbIbœbcCc—cëd@d”dée=e’eçf=f’fèg=g“géh?h–hìiCišiñjHjŸj÷kOk§k˙lWlŻmm`mınnknÄooxoÑp+p†pàq:q•qrKrĤss]s¸ttptÌu(u…uáv>v›vĝwVw³xxnxÌy*y‰yçzFz{{c{Â|!||á}A}Ħ~~b~Â#„ċ€G€¨
    kÍ‚0‚’‚ôƒWƒş„„€„…G…І†r†×‡;‡ŸˆˆiˆÎ‰3‰™‰ŝŠdŠÊ‹0‹–‹üŒcŒÊ1˜˙ŽfŽÎ6žnÖ‘?‘¨’’z’“M“ĥ” ”Š”ô•_•É–4–Ÿ—
    —u—à˜L˜¸™$™™üšhšĠ›B›Żœœ‰œ÷dÒž@žŸŸ‹Ÿú i ĜĦGĦĥ˘&˘–££v£ĉ¤V¤Ç8İĤĤ‹Ĥŭ§n§à¨R¨Äİ7İİŞޏĞĞuĞéĴ\Ĵ­D­¸-ĦŻŻ‹°°u°êħ`ħÖ²K²Â³8³´%´œµµŠĥĥyĥ·h·à¸Y¸ÑıJıÂş;şµğ.ğ§ĵ!ĵ›½½
    „˙żzżġÀpÀìÁgÁÂ_ÂÛXÔÄQÄÎĊKĊÈĈFĈÇAÇżÈ=ÈĵÉ:ÉıÊ8Ê·Ë6ËĥÌ5̵Í5͵Î6ÎĥÏ7ϸ9şÑ<ÑÒ?ÒÁÓDÓĈÔIÔËĠNĠÑÖUÖĜ×\×àĜdĜèÙlÙñÚvÚûۀÜ܊ŬŬ–ŜŜ˘ß)߯à6à½áDáÌâSâÛcëäsäüċ„ĉ
    ĉ–ççİè2èĵéFéê[êċëpëûì†ííœî(î´ï@ïÌXċñrñ˙òŒóó§ô4ôÂġPġŜömöû÷Šĝĝ¨ù8ùÇúWúçûwüü˜ŭ)ŭşŝKŝÜ˙m˙˙˙îAdobed@˙ۄ		
    
    				
    	
    
    ˙À^Š˙ŬR˙Ģ	
    	
    s!1AQa"q2‘ĦħB#ÁRÑá3b$r‚ñ%C4S’˘²csÂ5D'“£³6TdtÒâ&ƒ	
    „”EF¤´VÓU(òóÄÔäôeu…•µĊĠċġfv†–ĤĥĈÖĉö7GWgw‡—§·Ç×ç÷8HXhxˆ˜¨¸ÈĜèĝ)9IYiy‰™İıÉÙéù*:JZjzŠšŞşÊÚêúm!1AQa"q‘2ĦħÁÑá#BRbrñ3$4C‚’S%˘c²ÂsÒ5âDƒT“	
    &6E'dtU7ò£³()Ó󄔤´ÄÔäôeu…•µĊĠċġFVfv†–ĤĥĈÖĉöGWgw‡—§·Ç×ç÷8HXhxˆ˜¨¸ÈĜèĝ9IYiy‰™İıÉÙéù*:JZjzŠšŞşÊÚêú˙Ú?ûùŠğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğ˙ûùŠğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğ˙ÑûùŠğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğ˙ÒûùŠğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğ˙ÓûùŠğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbŻ˙œ‡×<Í ~[[Íċ2]ù?[Öĵëä?-Ż™l ²ış´µó›ô}ùàQĥĵµ2[ÉU°¸RCq¨ŞŝTßĉ/ŝĊĉŻŭ/?ñĊZ˙•7ù‹˙ħcùĞ˙pßËÏücqV˙ċMŝb˙ìXŝj˙Ü7òó˙ÜUßòĤ˙1ö,5îùy˙Œn*ïùS˜żû?šż÷
    üĵ˙Ĉ7wüİżÌ_ŭ‹Í_û†ŝ^ŠğŝTßĉ/ŝĊĉŻŭ/?ñĊZ˙•7ù‹˙ħcùĞ˙pßËÏücqV˙ċMŝb˙ìXŝj˙Ü7òó˙ÜUßòĤ˙1ö,5îùy˙Œn*ïùS˜żû?šż÷
    üĵ˙Ĉ7wüİżÌ_ŭ‹Í_û†ŝ^ŠğŝTßĉ/ŝĊĉŻŭ/?ñĊ]˙*oó˙bÇóWŝῗŸĝĈâ˙•7ù‹˙ħcùĞ˙pßËÏücqWʛüĊ˙ĜħüĠ˙¸oċçŝ1¸ĞżċMŝb˙ìXŝj˙Ü7òó˙ÜUßòĤ˙1ö,5îùy˙Œn*ïùS˜żû?šż÷
    üĵ˙Ĉ7wüİżÌ_ŭ‹Í_û†ŝ^ŠğŝTßĉ/ŝĊĉŻŭ/?ñĊ]˙*oó˙bÇóWŝῗŸĝĈâ˙•7ù‹˙ħcùĞ˙pßËÏücqWʛüĊ˙ĜħüĠ˙¸oċçŝ1¸ĞżċMŝb˙ìXŝj˙Ü7òó˙ÜUßòĤ˙1ö,5îùy˙Œn*ïùS˜żû?šż÷
    üĵ˙Ĉ7wüİżÌ_ŭ‹Í_û†ŝ^ŠğŝTßĉ/ŝĊĉŻŭ/?ñĊ]˙*oó˙bÇóWŝῗŸĝĈâ˙•7ù‹˙ħcùĞ˙pßËÏücqWʛüĊ˙ĜħüĠ˙¸oċçŝ1¸ĞżċMŝb˙ìXŝj˙Ü7òó˙ÜUßòĤ˙1ö,5îùy˙Œn*ïùS˜żû?šż÷
    üĵ˙Ĉ7wüİżÌ_ŭ‹Í_û†ŝ^ŠğŝTßĉ/ŝĊĉŻŭ/?ñĊ]˙*oó˙bÇóWŝῗŸĝĈâ˙•7ù‹˙ħcùĞ˙pßËÏücqWʛüĊ˙ĜħüĠ˙¸oċçŝ1¸ĞżċMŝb˙ìXŝj˙Ü7òó˙ÜUßòĤ˙1ö,5îùy˙Œn*ïùS˜żû?šż÷
    üĵ˙Ĉ7wüİżÌ_ŭ‹Í_û†ŝ^ŠğŝTßĉ/ŝĊĉŻŭ/?ñĊ]˙*oó˙bÇóWŝῗŸĝĈâ˙•7ù‹˙ħcùĞ˙pßËÏücqWʛüĊ˙ĜħüĠ˙¸oċçŝ1¸ĞżċMŝb˙ìXŝj˙Ü7òó˙ÜUßòĤ˙1ö,5îùy˙Œn*ïùS˜żû?šż÷
    üĵ˙Ĉ7wüİżÌ_ŭ‹Í_û†ŝ^ŠğŝTßĉ/ŝĊĉŻŭ/?ñĊ]˙*oó˙bÇóWŝῗŸĝĈâ˙•7ù‹˙ħcùĞ˙pßËÏücqWʛüĊ˙ĜħüĠ˙¸oċçŝ1¸ĞżċMŝb˙ìXŝj˙Ü7òó˙ÜUßòĤ˙1ö,5îùy˙Œn*ïùS˜żû?šż÷
    üĵ˙Ĉ7wüİżÌ_ŭ‹Í_û†ŝ^ŠğŝTßĉ/ŝĊĉŻŭ/?ñĊR˙Ê÷óùÑù§ùsĉ_Í0~ghš/’ĵ“ĉMë̖š
    µĠÖµ¨ùĤÎġô-+IGÓI· HŽT†£QİŠĊ]Šğv*˙˙ÔûùŠğv*ù·ó'ŝrKË~IĠËş&—sç}Ӛ*úIJi@`X´Nĝ²K üÔüè½Ò/o-<ƒ 5ÈhĉÓ¤Ÿ8žÔŸŒÈ€‡£mğ×mħZ	˙9B?Ĉ^WşÒ$hċżÒÜj6‰§6U	:ê+ĊxKÔĵ›ù›ä_?›•ò—˜­ġyĴ˙ŜĞeÈ˙ÎKKü¸ò—ċj~SµkĜ~ayxœUïÏqlİ$¨Žĉˆ¤€I=ñĊUk½=ħVúbĊ]Š­<ŞéÜâĞħWbĊ]аż?~bù#òğËZ›˙0<Ícċo/iq4×zô˘5˘Š•EûNDz¨$â-ù“çùù†£ĉq{§Î2ŝOêż˜R[²ófŸĤŞÈÒ*ş,Í?/Iˆ ‘Ó•+Žíƒ{Âc˙œĥ˙Ÿˆ\[Ú^ÚCùa=Ĉ˘BŸ/­µÄ“Xü23µÌŞV FI£·µqÓáİéßóñùËïÊğíYüóü£ÒĵÏäR÷żò´g•ĵ*"‚7™ƒ_RŠA ş8°?“Ÿ_•˙ŸžZÌ˙–žgĥÖàDOҚhu[Ë	]kèŬCRȧ‡-f$=;v*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħW€ys˙ZŸó“˙5Wċ§ŭ×<÷н˙v*ìUĜĞ˙ĠûùŠğxo翙oôï,AċmKÌŜt‘ĴĴXİŠÚ5çu1 O†$bÊ<ß=yOËĥŝ\Óc³ŠApx¨U—J†ĵĉTûš˘îÔî:Óċ€…¤Ĥòho$[›ËˆmĦz—÷D@…‚˘@Qj§’üF›wĊXè‰ĤÌe°cëZiVÔlċŽĜ³JUÎÒĦ­PV÷O&ŝy+,>t98˜´ġ2B‘^S ´gj’µ]ûbÀĊô-•ġžk
    îŸuíÊ‡·şÖHŬOBĴ¤‚1bŠĊ]ßZ̨1 N*“_kúu”r³Îĵ£v
    âšy½çĉ”)töz|Fŝá~)(ÚA°œĝVœ·Ĥ)¤ĥûPó^ĵ÷Ħk+HRtş"Ÿ=q]žùáċ4ù‹òġíâšdÑġo,떈%/Ϥkv:Œj7ìÉn
    ûb,?YüÙó†ˆ|·}qwĞ­^CmĜËs
    mî„närĴK"3ŬİżMÁĉÙÀAyó›Z}j×´Ĥ‹Eĥ‰ìċN*ĉN“^gBÂĵFŬ:ÓWĞ~fkrÚê?˘<³pÒ8ò$Lôb
    ċQĈ†¸ħ €żüáÔth4XŻ|ħxnnÄ0ßJ£œqIúşâƒzV,]Šğq 
    “@:œUò?çüäµç’ĉğòċ—bógœĠU/ġŭBSoċŬĠ
    ĈMBĉ0ï#€¤­ĵJda,~VëIµüÁóPüĈüéüÁüÚó(úÌúrëŸċûI I„péş;=Ä~“8ĝ^t$?Rq›@§ĥùG˞XóVݏóà–Ö;XtP°ÂÑAl­-Ô,ĵċŽ1•‰ä§­NA•™'ŞĊuĤLQ,t‹k[eA3
    .4şŽig“„’5ÄÊĞ8·7;š
    S ZG µúÊÙOĞŬĊ¤Ş\A.—o*EgxIâ'ôÂË,Á?eyFĜaKäï2_h_óˆß>Nüìü–m/@KÇÓ˙8ĵ‘`ÓËk¨YÜñyVYTMnSÊòBĦjÍ\’l?ôsMó.‰¤ù‡G¸zV·iîŸr6È
    >GA›b‡bĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğx—?ġİ˙9?óU~ZŬsÏxĞßñWbĊ]Šż˙ÖûùŠğ|}çĞ›ËżÌ=[Pğ·…ït];J’9ä‰ÍŒê$u§ĜäOÒzm…²#d‚êê.
    Ŭ-ÔRÀD—,I€ĦgäĠŭšÓâG}ħ´6—7şVĦwĴOĦ5¸‰>§
    }U–`á}&’&ä š… 
    ï×Yİĉmâ{Yġ=JÏL×a"ŜÊê}2Šdu.B´Œeeüt!1@	ħċ^#êZ^…i¨Ü˘OĤj+¨,Ë*Ħ fŒPì8ìHû$ölRÑ<çċûğKk˰ézmÔ˙Ry ½K‹[fıèËĤHYÖĵ_˜ö*
    oä5êžH½şşòîŞV=FT¸—LÔ%’M6êˆÊèŽ18 +2ƒĊ€ŞáR}Ûċ5YyğIRĥ‰í'SéßXKBÊ%y
    ˜x0ĜâÖE2›¨-#ġ'‘cN€·sŠIç<-°1ÛL†4V’RÜz–í¸Ĥ,€x-ż™µo9ßKlo'²Òíä–˙dxÙx:£$‹B´`Ĝí‹*mkóAü´X´}#Fışı½rħÉlŒĉIŝ),Q^4 c°è6ĊjŜmĤ~qŝcëZ¤ħéŜNÔŻLoCȤrrġ%uTäE
    1Z/óşëŝrTò7šàò]öŸĤßëZ
    .úä‹x˘2ŬG,Âf•_€ŽŬ€íÔâÊ [óÌż”˙žrÔ|çrŜuMAġ+${-m4žM(Y´!QK:PÊkûž'-Ç	èĜ_A~]yßŝr£òÇ@ô9AĤ~iZiEn˘ú½ÚKŞÚÛ$(§K¤Š?y-YCÛE÷H6ÎBÎI[ŜOĞéžFÖ­âšÁ%ĥÑŜŜ+ı'…xfu„Ö…Ô$üLĠGREq˘TD=3òoŝs;Ì”Ŝ]ò÷ç•u júœ"MPı‚XmµRÌÜ#F8"ˆ¤îĤXœ`ò{–ĞyiİŬC{ùĉĜ´Ğ½;Q‡\Óbi@´¤
    ġȊ°£—*YjÛIµi…k½žhżó”~vòĥİċĞ:h7Ì·QÔuğycŠŜ‘’8„Šá <ëԎ^Ĝħ0}‹äÍ3Î󭟧ËoV‘g–'PÑ~혎½é÷í‹z>£ĞĜiq—şUİUŠ£‘÷§†,_=ùÇó>-WJÔŜŝòÂ1€jvòğÔHûqYü!¨WĠ րb/ÏÏ?y˘ûëZ%ż•| ú‚]\kk£ù>T‹ÔÔŜEĊÌİ2É{ġxV{UĞ‚ÁrMÑ^èËĉ/ÛiÚĞjnŸlë7™ĵ”ßWò’M9uk[mLİ–ŝD*Ñ´QÉé–uVĊäġ>öâ=FlüĠó§èĜ==>
    îïHÑ䙠g΂Ò=B[XöhÜóo´Î2,+ÜÍ#°ÓĜÇç4·Ġìôñ<3^êrÜΓC=˘…
    qÍF
    ʇ҅èIÚ¸mo£Ë`—ÎÚ/šµ-OtĥVúf%öƒŬœw÷:Ν’ğ²\´b$‘şñ¤`r<…(„ìC)×<ħŝ>ü³ó/“´Ö¸×n<Ó£KceWäéR)gä—r+-è’[üjI½Ê
    oİ˙çµO8Çù#kùçŬ:=?Ìߕ7óùjSlmgµ·5µ’Ĝıäñúgˆr § 9§ÎßibÁĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ^ċÏŭjÎOüĠ_–Ÿ÷\óŜ*÷üUĜĞħWbŻ˙×ûùŠğ|•7Ö¤ó'ĉ#]ZâK9šXùĵktŸĠ|k°<ÍV72Ú<0ŽRÊí#•˜ġnméP´?hôÉA£ù›KÓôĞ[yŻà:µ½ĈĉĊ-ĉŽ"Û¨ĉêOïQ@TcĈğ`AgW61ßzzáÒuż;è’|ĵ·	°[LŞÒ´ŽöÒü,XOp6­B‹b·ĥ1èÍ`ĤĈâ;­¤ÖK/=<ädŽâ	-%Š0­ĊƒZ
    `d£İëÚv›G–c´U˘ŬÚC,wö—Žwş,‰…’À‹TĴ€°ŜĤ›}ÔÂÄ÷zUàŽ½AnĉşŸƒÂGÀ"5n€;›ġñĊ,#Ìż™—ú<Ñ5ħwè˜Ö˙M€r‹÷•4Œ(İeäڂĤ¸Ğ	Ö?ç /›RÓaòϗ$şÓVÔ\\@AA7 RÁĤÄâ„êoÍÍ}F;{]3òĉE“Xħitûġ-2	d"/Y(8ñ
    Ĝî}-!ĵòaÒ˙+5™ĵËÚAŞŜqmE`ávÂi’)#-!âĉHê91~Ç
    [8ó~WySóËÈÚMö·äYuċħş“ô²Üëwr8}>î	ŝŻéÁè³ ĦpS‹pb­ĥġÀ-°Ŝï˙Î=ù—^ÓlĦüŜÖ£żÓ|´Ú<´ġ’Y9ËŬĵìÑKj^Hg‡"À†Ùħ&–Ò
    OòïŝswòżJ{Ż!yżKüë†[›hml·ô„1˜œÎòĵ|^9UB³šú^l8ƒ
    óĉ—üĉä΍£ê?›Ÿ•v~nòMÔ“k	hĉûÑĥ°‘Ġînċĥ3,BĴßhSC³ÉIO?/żç,˙"ĵûçÍ@şÓ5OÊKiB[hşLb/ÑZ„×÷fé¤0ÊĞ²ÈŞ•árCÔڃÑġ>™¨izŸ­ëÚë–7V–—’ŬÚÌLo8"NA^8ú?$’§Â´7l’ˆouMT×uŻËÌ?њÖĥ³Ĉt+Ò
    \j"ċB›dŒIhŒ\Ì7ĤÊ0‚Q6óD´‡Ì˙šZìÒHÍ’zĊpcİkFäic1­RĊiöŞ*¸µ×Ùó—ĉwç§ÚékçO4kš[äo#X[LekxR9띴‘Ekk#ÜEœ²ì}8aSŽí‚!‘~_ŝUùóΚ£ĉŸÎï8yZÓYıż]CΖşv‘o{éñZC4pè˘Ċ–JŜ´–ì“$·
    epíRß2ùŸÏQǧċYó5ב´…ƒDÓ<È,|ż˘Û/£m˘ŜŬÚE
    ЉK?î6‘š‘Äa€K,?5έ¨Íä?(~wyÎ˙™v˘ÖÙĵħwcÖŞ’ƒŝ•e-ŻĠ-8ó@˙é![‰ ?È8†çÏ>qüçŸËŝoò睭?0uĞßËŭ~ê_+ëŜJ×4ëSêzĴWÚ\ÌOoë/Ĵħ2rh½‹gÂ9uc_˜ŸšşlwúJykR·˙Z[™gis˘jÂ{8
    ȁlıĥĥ•>İÊ)ÇĴ¨ÈÌQXü-ClƒëËŭZ)Ñ+ˆ­w×-*ú*¸ŒÄ²€=WŒEPĵˆ àk˜}%˙8óċû
    Î˙—ĥ‹y‡PÑïµIŭoQŜèiëLŽÉĈ(ŞuÙhĴ$vĞ0°v*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħW€ys˙ZŸó“˙5Wċ§ŭ×<÷н˙v*ìUĜĞ˙ûùŠğ|Íĉ=4éŜdó-œÒzĈòäêşspċE¸^2'@J²mıê1lžUĴÚÙߤJn#.mäzH˘˘ŒÍşŠTJë‹'‡ĉ!ù/Q½ÑKġ뙕µHÄ1JñZIDh#™€hh޲ħAêW`‡ž<ŭĉM'Ï^h‚Ĉî(m ż™l¤Aê	­]ƒ@Í#QäáÄN'Ĥ(·¤yówÌ	soŞDÒi×Émsİ<³[F-ĴMÈò*)éwáeVÈŻġ/yŠSI¸Ñï.íDÏi\)–Ĉö	SoÍĴވ[ác1;PóS¨i3úÚ&ĦŞK¤R§—5Ùç&ĉÎ>JâŜg–(gĦ(İ"4 }ñK<òƒĖO-ä"kW×­:|$€3´r'ÙaJlq[{’|Ÿ˜^cĞê“Ç
    ÄöïgjB2´;—ĤExĤGÇö—lXÊTô]SòKËŜcÓ[KÖ54‰'k‘žË•˘ŞT†ĝT ˙œÇüڇÌ_’>v·ÓQÓíî#´ĥ½šB‰–Óê6aÑĞɔq¨f•:wl~XÜ~_y;ɖ~uĠ5ŭI|Ó Û>‘eċ‹$˜ÚÜê0jÚKjí8·86Ĵ“#ĝ~ TS09ÛÚ˙&?ç75˙%i~]òż™4Ùġ]?IÓâÒô½sëL÷~˘Œ<èÊġŒ§•wMŞHÂ@ ó~Ë˙9w/–-ì<Çqċ-NÉéqNP”ğ³ÔÂÄĥÒ$ažŽ*ŞÔ 4
    Lˆµ8Áz'ċżüċ˙äoŸ­5oĴê֖³YY%­£ê+ğ9£ġœ…™XMİWĜ×ħcÀz=çóŝpëŝqğŝr3Èu›Ég—5‹½&Ö×Ë~yòŭ´VVİi]=T àöİTWxĊ6 Ħĉ×d?=˙,?ç?ç+˙*|×wċoù[áßË­69/ô_2ho}¨L˘Û)À’
    ÄğĥŞ[àf'Oԉ?/ĵ­g,Ğäè4½?Í]ŠRĉâxċıô’CéƒW‘ېĞZ+Ó6iǓ´DğÔĵµäñwoċV6̰ÍûËġdÓ,Ò34÷SyħEÏ"óçĉ÷…?˜2l´;ùXHôM"ĉ0yUċĵ“ë[†ÓċŽŜêAĈi’>NĈĴğ- äüâ󯜴	d½²·´·kdĵ‘Ĥ´Ġ<Żn·6wĊR(5Mòċ˘+/ċ§Ùj–éïŜlüë×ĵÑäŬ>Ĉ}E­Ĵ?4-ĴN·sċïŞĜêêš|É5·8íX™.$ÓîbĉÏɒXžCJÔ6ŸEŝSy†(nWÌ]ó½ŜİAs¨izÄĊĤ˜ŝùĴ’G…cI7‘ċFBw
    VǢ‘o·<ŻêÔ£QĵĠŝN~°kĤŠĈá‹òXä{vDâĊ>.\†Â”kSëùÇáĠü­ĉo5ZÍmq§ù‡ÌڊéÛJfSi§8Óċ%–ċnÄñĊbĥ}‹bĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğx—?ġİ˙9?óU~ZŬsÏxĞßñWbĊ]Šż˙ÑûùŠğyoĉF‹w%Œşĉ•boµ8˜ImËܒ§~‚£ß@IÔïŽĈ˙H’ġd“ĠTuàäUx¸šßzTšìE;u`y%ŬŸ–ġ;9d×użžÍ’]D•ôÊÇeĉÖà‰
    òiȑÜôÀ)|²žu’ßN—GşÒ4ÎQiÚíŞĴZBYí­áúÊŻİ4M€aP	 ‡ŞEùq iZîgËġëı£3èż¤!’{t/ÉËYŬ8ŽċuGè{•^ïòşW‘ċµó
    ŬÔJĞg§k-³ŭµ–Ĵ
    W²sžĈ–Óß,~SèSjrkóɨŜ³u	żtĞ3
    œ9ä¤ò	³uÉAĊ§è6‰%͖Ž‚ÖÂY\Ż34ĵ¸˜Ô3J(Ywñï„$%Z%š²X_µ½•	$‘Ȑr„2´r4l„­Xq¨İMŝ#&™ž·ùÙċ#E$z†Şnukh̑é3;´Ş£”uĊCVµ$Ġ‹ä?1~f~eŝpkRi:½É[¤uƒËúxĞŭ_•I–EB֜;b·ÜÎü½ù7—îĴµ}nê;‹Ë7É!e‚)Âz °2˜Ö£cN˜RÊ|Ŭg£CĉZÓWÔb{Ğû¸ŭ%om~Y”"½H€	Ĝĥ—ŝ{yaĵóù#ĉO/ù3ÊÈu+˜,
    ĵ÷^9¤kĜc€–$ydFTZñ,w Ü)ˆ|‹İ~R[ŝaùSÍ~C·ƒÌŜqòRyHùb+ФŜéVpÏŜIpž§Ù^ĠԊ†âµİN<-„<ÇË~GÒüƒçíSÉż™?•Úç—|Ïĉ×­ż–-£’k8ì/'Iíî4‹…ÏĤ#˘r.K
    ÚĠ˘ >ËüĦÒ?3t{´ÔüŻzŝlò= óžĞ
    Ú½Ôs]Ĉĥİ ú„"ñ™’´ĝĞ֍[9y¨~oÎy3óÊ:§"ü·s¤ùĥ5ğċPò[usÉÂj˘új
    Ĉ€úròİ5ßk$|ß=Î>˙Îoŝp˙Î6yÓÈż˜Ñj:—“4ˆEêX½bĠtÁ¤Q4R½Ó‰$2šİéˆbhì_´˙—ó™˙—żœF—[ò޵
    ġŞ#j[[ĜdY4G‡ŠıĉìqûD
    cl8
    ¤^jüíŠï˚ġ—™’êm^ö+­>ÏêH·L†?ŜeB‘FH²ñ9,ߝ™nÂ<‘çí7óGO“òĞÏÒkwΗêrZEKf³V€ò[ŜĈZ@ħ XÇwTf&ކDpî9ŝhÎ&êÚg›o5?.išuו5İÖ۟6ùcšĜ$·—A£½R	g’Ĵ‘ Ê6@LdzuXçĠµğŻÍ@Òµ
    3ŭġ+HIÓŭ%ôa…´2[{6Er\´QGêš3òɈĥ\Ÿ1~hù‡ŝrÈZĥüÀħòĉ/ċ皴ĉÓ5ı­ôm2úCO@PßIÖÇq
    ŞÉÍ^>,’lNĜßyÓËŜOŠçËZŸ’äżmÎÖCVµÓ§0\5€ŠWµğ´k„™%•˘š3´I‘ı5yÒ9½·È·ß—w–úVù€$ı˙g¸†As÷–%‚i%¸ÒħÍşĝyUTäĞv`‡ÒħÜh÷úo–<ıċ½Q<Że¨ÉgŻjö6ĤâöËġ›¸ÄV”•ž“•żsòšI˙6{ó÷žż1µ_ùÉMwóΚ÷žġğkO$X[kbÔµK¨íc“Ì2¤	=ܒşĈŻ+°Ph1IĊ_·ĞħWbĊ_˙ÒûùŠğv*ùçóò„Üj3ù§ÊsEĤ^ʄêe¤ÎĦ¸ÌvWˆ&›âÈĊŝi—E££s§~šŠäĊŽ#‚í‹2…‘ŸÒŽœżhHÔwÛÄüÁqŞèZġíÔ··qYÇimŞŭaÜĞ,‘ÏëC(aµAJt'd¨y·Ì7'ş’hċägPA‘ÉŬϨCHȀiZšo…x‹ßĵƒċ_;yŜÚÜ7›a³Ó§HßJÖ=rñ,ħg´¸ĥâ²95<ĥn]02·Ñž‹ù'˲Y\\EmĞÚ%"G"'CvçàŒˆĠwäBĠ—éG”|Ùĉ'–KĥĵKĜeŽO,¨#Ï5İ@éo<èbU.iP\F½ËSI	|
    ˙9ùù‡ù_ċ­góGIò>™ç
    oÌ7EĵÛ{-ù¸>^[ÛZ-­“?8 †^
    4Žï?²ŞĤ¸`˜<Ÿ=yKŝrcósA[ż*İÒĵ×'—ït-ëIÔ4˜£ĞÜê÷–6…eĵÓCpı,YߒİdM1´Ÿ7Ì_ózגó;óSËŜQıµĠĵ‹äÏ9ë·?—úZdÚD—
    i+	­Â<‘ĞĈjŻ÷lĦO1‹ÛvI˙8ñ§ôמfÓ­Y5].§ËVqy}
    Ĵ‘GġUœĥĠŠ6aːäC‹d{Ùġ÷çoċċĉ‹Ĵy+Mòħ§jÇ%­ç“†[94ëßUŝ´—×j7–(À/ĦâŻÙĊ>7óO›lµUŸKòĉmċo-½Û^~Ž„™§–V
    =ԃԐ(ŻŻİ4äKÓ)[Ċ‹ħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞ`@¤ìĊ^áċOùĈżÏ?:[ÇyĦ~\jŸR˜ŠóPô´ĜŬOGF’kîµÎG´½ĵì>ϑŽmT8‡HŜCî<T}îóIì×hê‡<2óQ˙tC2Ô?ç˙ç"l kähï•7xí5+	$Ù
    Àfù('5xà§ìöYpŝ`Çß	óáûÜ̞Ĉv¤ĝWî”[À<Ïäï6y*üižnòŜċĞö˘ĥÔm¤·iÔP}Ö£;>ÏíM'hcñ4Ùc’=ñ"UïGÈş
    V6–\9Ħ(0CÌ÷ĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUûÉ˙>Hë˙95˙‚_ŭßqWï&*ìUĜĞħW˙ÓûùŠğv*â*(w¨Ċ_ŝyyNÛEü˵Ħgp–—ÜŬîì…ĦĞ ¨`Ĵ7àt8³ógċĵW׋wóOo~ĈTğ¤!ÊK"†1°pŻÄ°ĝI­:bȋzǑ?ç´›Sm­ëSêV·ĥ’Csk%²Ĉm‹/ÄĤ)˘ş,	§Ä$ŒuèFĜħ$¤^_yÊPM‡§&‘ w˜ü²˙œUóŽ‘ädòœĴ- ħĠ˘†ûTú”ìş–¨ħT-n#2ĠeP²İPÜÔü$<ç˙8A˙9
    eĴê0é^U›ÌÉ&ŞúnĞééÛꉞéċĉ
    ħş†iBĦzŞĥĜµÊ>o5Ô?ç>ô*y˘ó̟“sÓµ-3WÓĴĴ#ŭs"É$sëâÒ
    Şñhê§~½BÄ
    {(ü‡˙œŒüñ˙œQóŭ·İ>ħĤè^jŜwüşĠáš(%Š,ê`!†B‹D(GJFĜSïTZÔ|ĞùĊäo*yÓL¸–û@óv“oİX]Żî\Ċun,„=7BÀ–#~‹_"ĝ?óS˖ÖIİéže´ŸMÓVòÛR°’;	 Ó§ġZRòŒòLÁı1‚ Ğ–4ı/—?:?çĵżùżċËO7ékrjqèë•e‡KŽâŜ>r[¸¸¸OPÚÑŭPÂwŭ˘Şkħxü÷ĉwš?,ġm?É™2CXÛ“ËZċċŒ’E}ofɽµÄ’DZrôĝÚ˘Ÿu͕Ży5tüòĈŻ˘§m*j6÷µ[rÖp}udeŒHœìz‚’İ£³á|ĉïùĊ˙Ì?È-ùÍpÇĦ뵊<^FÔ`yf}'M´³\kpCeP}q-^*£Rc!‘Fcgç~Ÿċù­Ż^ĤS飍6ŜŬÔW•ŞGKŜ9\q-AÜŻMPĦ”ŝT?•ÉċHġ.|mlög°³ˆğÜú÷-˗b],FŒkW‘UĜš(ÂmŸ
    Ê_ó_ó~tÔ<Ï­hZ‹ĥîÖżÈġ\BÂ0Wˆf§‘‘…˘oĊ­ûcù'˙8÷ù-ĉÊ?ˍsZüşÒu[VòŭÖ£*9’i¤…YŬˆqı'>Pö³Û^ÚÒöĥĞ-LeU“í}‰ì˙gĉáœÄÊPžóOP˙Ħcü‚˙Ë[˘˙Èı?ĉĵçżÑ˙oÊ^O˜ŭNÓŭöoú„]˙BÇù˙–·E˙‘rÍx˙£ŝŜ˙”ĵŸ1ú—ŭöoú„]˙BÇù˙–·E˙‘rÍx˙£ŝŜ˙”ĵŸ1ú—ŭöoú„]˙BÇù˙–·E˙‘rÍx˙£ŝŜ˙”ĵŸ1ú—ŭöoú„]˙BÇù˙–·E˙‘rÍx˙£ŝŜ˙”ĵŸ1ú—ŭöoú„]˙BÇù˙–·E˙‘rÍx˙£ŝŜ˙”ĵŸ1ú—ŭöoú„]˙BÇù˙–·E˙‘rÍx˙£ŝŜ˙”ĵŸ1ú—ŭöoú„^_ùÙ˙8÷ù-ċïÊ?Ì}sEüşÒtí[Iòŭġ֝8’£…™Is¸#:dŭµí­WkipċÔÎPžX‚
    Qî9:Ûö³èsNb%q§ĉwüâߖ49~{yË~hÒàÖ´-KôŸ×´Ë€LRú:]ÜÑòƒş+qž÷˙>Ôh;QŸO3‘àİbòB'ì$>iìĥ—§´ħcË(ž+Ê2?{öŝ…ò˙-n‹˙"ä˙šóĉ?ôÛßò—“ĉ?Së˙èg³Ô"ïú?È/üµş/ü‹“ŝkÇŭö÷üäùÔżèg³Ô"˙0˙çż#´ż yçSÓ˙-t{Kŭ;ËúĠÒ#òŠhmdxŬ~>ŞÀ›NÄöçĥókôĝ窙Œ²@cpdğœ>ös³ħé²Ê8b„ˆ÷€_…ÙġáŽĊ]гËßËÏ5ŝhy˘ÇÊ>OӎĦŞŜĠ¤v%`ĥ…Hç=Ĕ!#Jî{šˆSÛ}·ì},µ:İpÂ?9‘ˆë#ûMKÙŭ›_˜aÂ.Gäy=›ö“ò?ŝqcò÷òvÖÓQ–Ò/5yä(kŻ4^Ĉђ”+cT@˘¤rŬÏv§Â>Uö·ŝ}ĦÛӔŽ-?Lq<ÇôÏñ/¤tO³ö²Ú^͈‘yzÈôŝ¨é÷ùœÏ?zwbĴÌŝSòם4{Íz%Ĥż£ŬŠMcy‘kJRwFٔ†Žgvij{?0ÍĤÉ,sŒMhïcĠÇĠi1jħœyb%ŝ>×äoüäżüâ˙ċ„Wžxüż7אúšž›!2Ŝi!‰Ğ3ûÛqü˙in ?Jû˙Ü}°c¤ÖÔ5!´2ÄÏú<×Òù'´ÈK@}=ËQüPŭqóĉ:÷Ï]xgbĊ_ĵ>R˙œmüŠòŻ–on˙,´iîŻ4Ğ)îgd~O$#3İ&ıñçi{wۘġYaTÀÇ O“îúOfû:Xa#†$˜ıħŝAċ­Ñä\Ÿó^a£ŝŜ˙”ĵŸ1úœô3ÙżêwŭäŝZŬŝEÉ˙5ŝû{ŝRò|Çê_ô3ÙżêwŭäŝZŬŝEÉ˙5ŝû{ŝRò|Çê_ô3ÙżêwŭäŝZŬŝEÉ˙5ŝû{ŝRò|Çê_ô3ÙżêwŭäŝZŬŝEÉ˙5ŝû{ŝRò|Çê_ô3ÙżêwŭäŝZŬŝEÉ˙5ŝû{ŝRò|Çê_ô3ÙżêwŭäŝZŬŝEÉ˙5ŝû{ŝRò|Çê_ô3Ùżê|˙˙9IùùEäßȟ=y“ÊŝBÒô]wMŭġNŬK­ŞZC'X‰”ûí?àyíkëûwOƒQ¨œñˎâjcœ‡NÏûSĜZ7fċɋc!DyÊ#î|}˙8QäO(~`ŝjkú74_1ivŜTş½·²ğ˘Ü%ġŒk âFádaôç§Á_ĥ5}—Ùxòé2s9£G>	šùòyb´85šÉ4â1“GżŠ"ŝÒŭA˙Ħcü‚˙Ë[˘˙Èı?ĉĵù÷ŭö÷üäùÔúúìßġğŝ…ò˙-n‹˙"ä˙šñ˙Gŭ½˙)y>cġ/úìßġğŝ…ò˙-n‹˙"ä˙šñ˙Gŭ½˙)y>cġ/úìßġğŝ…ò˙-n‹˙"ä˙šñ˙Gŭ½˙)y>cġ/úìßġğŝ…ò˙-n‹˙"ä˙šñ˙Gŭ½˙)y>cġ/úìßġğŝ…ò˙-n‹˙"ä˙šñ˙Gŭ½˙)y>cġ/úìßġ°Ï5ÎŝAy–ŜTĥòĴŜV½qDÔt[ı˘eÛjC3Mü“ÍŻgÁO·´’Y†X˙6qíżÙ8ZŻc;38Ú$°Ü~ÇĉßçÏü⏝ż%Ö]zÒoño‘yŝ ·ˆÇ-§3E[ĜoN¤ñ	Bi^$…Ïvö;ŝÚ.ß#‡…¨ŝa6%ŭIm}ü&¤<À·Íû{ÙMGf~zñ8
    Çġ‡O/w'ÊıèŻ*ìUĜĞ÷“ŝ|‘×ŝrk˙żûâŻŜLUĜĞħWbŻ˙ÔûùŠğv*´†ĦĦxݟ5$²2}~u#ıŽ€ÂX°İÇÛqy÷4ËMSYı‹ËÓd‚F•Ü|,ŸâPÑT­zŻS^¸ĤGdËÎkƒKImċd·˘ĊÄ\5ħ˘Ò´ĜlPWĊ}üɎêIĴ£šĉGŠVġ§†UV
    ËCĊ€*GÀȚzĊÉòWċא4‹È}//ù›_°T]AB^ıYó…EŒñqBŝUŒPú#òÂèŝ\èRj+ÌÊžS1ş‚£²äFFn>²Pž oPÀ5pħ“ÜiE˘Ñh(<†ĜħaúŸĵƒ¨K¨ëRÑo'½ˆŝ’ĵş´…™ŽŽKğ
    €´İ5úqM—ŽIĉ_ùĈÚĜĜ7”˘šÊNvRd›Ò”ğ
    àÍP\ž¤SĜbš)ošż2<£¤^E§Iĉ{ĥ•	ĥµ³>¨E  e‡•:Ól€bÖşóß$“ClmVwe†+#ÔY’­È†ìÙ+,Ÿ?~yùŜá´MwFÒ-˘ğ:R˘j—|ÂBZ;ˆ=gÔdµ@e›ż³¸ÀJcÍñm[yżËž]üÊüüۋò£Ízĉ‰a­İ‘mùjr¤‰‹ĝî·S"Şi^ë‰fÉáógüċVb²óċŜŸĉKk›X4Ë_2ù2ĉG¸…ĠÙĦĠ’Ŝs蘌NĦÁ4ĝk·gnj^Yù‰y˙9Ù˙8ï6­Ĵé>zğüÈò>›•Ŝ£ĉ¨ôȧŽÙċVžXZŬƒOjd!˜#•
    aÍġ'ü÷üŭcÊŜ`…ô?Ο*ÜùUíVßëiÓżÒ´èmċž+)žâ3YUbyƒħĦĝy
    T
     °0ê¨úǕ˙)<|­§Ükš—2|İĞEm{^ŬCo{‘Ž2A$Rî{ò˘ŸIÂĈÈNĵ§äŻ*ùC:“ôˆ|ğĦE4×)cl_ҊIÉy
    ú¸ŠïNƒ°Ĥ($žo0óMMĠ‡Hŭ#Ğ_Ċɢ•#™Ò%_N˘Q$p2¤~Û¨Ĥ&ŸŽż™˙ó”~rüˆüâĠ<ç/)ú>IŸ[:˜Ö,ÚäÜêwÀ!’6›ŒŽĦı¨bìуÄ`ĥŭı²½SË•ßó>F×üáċKÔ­e>`7/Ĥ½‚Y'?­Ï,ŻmôÂÉóF,Żü×ŝHßʏüôïù0ıñ?ĥßñıĴ˙‡Oï/žÏĈvêGî{rîáĜĞħWbĊ]Šğxïüä/ŝHßÍüġù0ÙÔ{˙š?ĝt>éŭĦ˙Œì˙ԗÜüˆ˙œ5˙֒ü¸˙·ÇŭÑïséĝ)Î9Ş˙’ôÖ‘{˙ĜÎ˙q'îÎ|~ûĞħV	ù˙’Ëó˙}_ŝ Ídzßñ§Ĥ˙‡c˙vÔ˙ÍŭIı/ç>è~qv*ÓtëŭcPħÒtğIoġ-Nâ;]>Ê-$ÓLÁ#u,Ä2ĴùñàÇ,™Œb	$ònI÷xñË$„".Däżyżç˙"tŻÉ%Abñuç=eÍÚÒKËJ­´LwôĦ­ù^ƒ•Ç^Üûa—Ú-i˜$`†Ĝċüŭ)s=£Òßxös°ĦÙZqŽIo#çÜ<‡ÛÏĞèLâ^…ĜĞħWbŞsC
    Ä2ÛÜD“Á:4sÁ"†GFee5hAÉFFJ&ˆäP@£¸/Ä_ùËOùÇßùSmMw˖Ì?/ĵÛ3’£â}ŬËbÍü´ĞDNċ*ğ”f?Y˙ÀÛÛOċí'ƒœ˙„â‹úqä2{úOú[íÄâ^Öû?ü›ŸÄĈ?u>_Ñ=cúcċ·GÈÙéo"ìUŭ(y#ŝPż(ÛO˙¨hóàŝÖ˙Í˙Ÿû˘ŭ'˘˙ÇŭXŭÁ“ĉ½Év*ìUĜĞħWbĊ_1Îeë6ŝc˙۟ŝëYè-˙œK˙%?é”ŜcÛ/ĝÉÍŝoû¸˙Ÿ{˙äçó7ŝWż÷QÓ³Ĝ?à×˙Ĝżáñ˙q‘áà}ŝ??ĝQ˙uìV|ûħWbĊ]Šğv*†½²³Ôlî´ŭBÖ+ëèžË9ÑdŠX¤RŽŒe`H òÌYgŠbp&2‰°FÄȃ†3„gbWâüċwüñü˜ólz§—ávüżóT’>ˆI/ġ+ñIbìjHPyFIİ]·*Ç>µ˙ÏĥŸËúC1˙	ÄôÒcî•r—p >#í_³˙əĝñŬO—ôOXŝŻ/q|ŸžŽònĊ_ĵŸó䎿ó“_ĝ%˙Ŭ÷~òbĊ]Šğ˙ĠûùŠğv*+F#sĜUç~`Ñ`żÒ5˜/íáž;ëybkyĵg˜ rŭ_j·_*²FŞC]ĈXPvŞ”ıĊ™Ù5üŠüğÔï͚ċĴ–š´_ÚŜWŒŻıİxFê9nż£
    ŠwĊžyçMQüÈüÁšĉ.5Hġċ²BÀsl[àD‡e/ıWÓĵĞùoYÑÚÚÏJĵrÖWÖŜݎkyZHÂJ­P:-w1!Ó÷ò›ó˙NÓż8Gċĉġ„>Ró6ФZêÚL3ĵz…^xdHÜü$ÄÑ’û âÂbù2ÏÏùÀÉÎï0y‡Î–Ïyùiĉ7éÏ˘k÷z' ĥ×ħ$Öҋİle
    ‚D´c^Gâzòb'Ŝù—òĞòGŝrÓŝp£ÍfÛòóRóĞòöòĈ}{CxÈĠZ+…VÔ.l,½B!{hĦTEiHÒ(UbvYm'귕<ġ§ù÷@Óġë+Kí2+ĝ’wÓŻ£×vé `İyĞû’ê	E~ğ…-dRu¨MkÉ+@†ĉà	yDÜ\}0à•NDĥ䂘Ħüá˙ÏÉ<h˙›ùÊÊÏQY|ÌĥöÓž( µŽ+p!·ġçŸÔ•O.LT0ˆ,Ç7Š _ŝ^ŝdê—÷Ĵ$´´ó/”µ)à6ùRi$Óµ8ѸV¤ŒTf(IMHژoÓÏ6~BùÈ­@ó$zΙä_*ŬBş—•ĵ³äí:ïR²Óì+x*ĵP ™Ê^&ÒĤ™žWċßÌO9˙Î+ͧhÒ½§ĉ—MÄCùƒċÉġ&dŠÙĠY.ckH£ŽDVT!Ŭ¸µ\#e÷ùü£˙œÁÌ­5´†[žíĠġ&„Šħè÷èl9(¨ŻmƒĜc›Ä?6ü½‰wŻkŜ•Ĥ›ċĝ-&ĵ-kÍÌßZ"”•ıÊh(@ğTi%ĝÁĉkó¨ë7×>ĞLŻ+#‡jIİKTûœ-;¤Ħŭ
    ˙Î=äü¨˙À_N˙“Ÿûm˙šÏĝtŝ÷èOgż;ġ#÷=‹9wpìUĜĞħWbĊ]Šĵwŝr˙$oĉżŝúü˜lê=‰˙Íü:xtŝ˙ĈvêKî~DÎ˙ëI~\Ûŝè÷ıôÇüżçĠÉ?úkȽ˙l?縓÷g>?}ĠĜĞüÒ˙Éeù˙€Ż˙PRĉÙïĝÓÓħ˙ğjŠfŝ¤żÜ—ó‡Ÿt?8ğ~˙ÎŝMÇŞêşçğkÎÓB‘ôß(E"Ġ^ñ}fèWŭôŒONLŬÓ@t“èŝÁv0É3ĴÈ6Ž÷ġ—Àl=çıúħŸ9ŞìUĜĞħWbĊ^Eùñċ*ùğò“Ï:oœz%ĥ—q¨ĥİǓÙÍd†x#K#/ÙhU?k:ocğCUĦím>M(ĵ†b<=$&xLO‘ŸOĞ£¨íí.F‹,smo¸Çpùu<ıöÓóÓħWôĦäùBüĦ˙l]?ŝĦ£Ïƒû[üw7ü2î‹ôž‹ü_ġc÷Oš÷%ĜĞħWbĊ]Šğ|Ċ˙9•˙ĴÛù˙nûĴYg À·ŝr=/ü”˙ĤSylż'7ùżîâĝKŝ}ï˙“ŸÌßĝ^˙ŬGNÏ`˙ƒ_ücb˙‡ÇŭĈG…˙÷ĝü˙áGŭÔħYòûì.Ċ]Šğv*ìUĜĞħW™~pŝ[iż›?—žbòN ħĴşı“G½q_ŞßÄ[NÜq}šT²÷΃َŜÉĜĦ‹W¨ŸPŝtĠ—.G£ĴíŽÍ‡hig‚]FÇşC‘üt·óÉŞéwú&ݨèÚ­³ÙjzMÌĥzœ‚9ŽDoue#>ÚÓj1ê1G.3Ċ	 {ÁÉùë.)b™„ĊJ$‚<Ç4\Öŭä˙Ÿ$u˙œš˙Á/ŝï¸Ğ÷“v*ìUĜĞ˙ÖûùŠğhŠâŞrӃn*FĠ4ĊX´³}Ÿ^ğ7ÀJ7÷M7ûħW–~iy™tM}CSĠĦòŬĵdGlòr‘½Sà ĞŠšRƒ~ë‹(ĵʟ”kĜù·Í/¨y³U¸qyamv³[Am
    y˙q8w,¨Wâ+·Dœ×´›óäÍmFïRÔĴĵ£ÏĤ@‰dHµ­(‡nĜXu|5ùUä!yŞi:ŝ“Ğybµì´ğ¨ĉyVĉë—h²´N0§’”'~ğ`gÉúIÉÖ5 HĦIU¤àw酭óĉ™ĉ˙*ŝiùĈ÷F{aä+Ic3Mğı*`QHMvc^›bʨ3kÏ0ŝòßEÓ!úŒßèĈÊ5¤Jż
    âcqÓùIíŠ×{Ïż<ġ-[AÑ<½ĉ:ú{M;CÔo3Ç
    ¤’5„ĦSÙÇ3C~XĴ^#ä›XµmGUóN·okŝ#óœXĥ³!­lĤp°!Ż'‘9v ˆf
    çvÔġ=kô\fâßG¸:s7-4ŠÏ,޵ìŞ×Ĥŭiäż™ż˜ZN—äMSUԒK{OÒv–²M*˘F‹sĞÚÙò‘Ĝ„QYÔĝoˆ4m1ĉù#ò§ó_RÑtŸ.hžzĵuğóf§­ËċíQž#–ZmӋ( …2À'µPHĥĜU?ç*ż- üÑü¸ÔfÑí™<ġä›xµx‡£Lb†6­ĠU˜äjzğWìLH·ż~ZŝUŝW˙Îs~Q~Cŝ`yÏUĵÒüÙùo5Áó•„`´¸–üO3XßJêóGkU‘@Ŝ’íoñÜßÉ˙ş/Òz/ñ|ĠÜ>kܗbĊ]Šğv*ìUóüĉWŝ³oĉ?ŭı˙îħež˙ßùÈôżòSŝ™Mĉ=²˙Œœßĉ˙ğ‹á/ù÷żŝN3à{˙u;=ƒŝ
    ñ‹ŝ÷ŝßó˙…÷P~ĊgËï°ğv*ìUĜĞħWbĊ]Šżżç:ż/£òŸĉì^h²„EĤŝ`Ĝ‹ç
    (˘ŝ֐]?Êœ„÷g9ġOü;hë{ éĉnZyp˙™/T?ßGŬĝÇ·]ž4úï<²‹˙8m/~/ŠsĠŜ)ûÉ˙>Hë˙95˙‚_ŭßqWï&*ìUĜĞħW˙×ûùŠğhŒUpÈĞV²ïNç°Ħéßy?™˙1´&‰'qpí,“sŒ|@ıĦ&ğtĊ‹?Ì_ÌMSóÎ^^òO—£{8ċĥĥ¸ıĥ”<²³:ğŞÙß½Fçĥ,†ÏĦ˙8/%ò_“Ĵ£Ó&nŻ-VöÒ7?]¸ˆÊĤaË,n€NÛWïĊܽĥÂño4ëK´ŽâÜÜÛ#euÀÍÈ>褎TÛİ÷,(yÏXĠ§üŜóG—ì$½ò·HyolôĊûÙTñ´•”!Jòdû\âHĜc“Ìì˙ç&<÷wĉaó›nÚrÌm.ô›5úĵÀMTe‘êB“@iûbše—š™?.ĵíy¤y—Tt/4i§ü+[Ï­zÂŬî:…ä’\Áé„+°TŠI´ğíɉï‰ßvd=ÈŜy×toùÈí{Ë>e¤ÓĵÉċġ=4K 6Ë-”>ŒÒF[ˆ‘e°1]À܂<Ö÷ĤY˙8˙ù“kù/˙9µ­ĜÍġ)ÎNiP\é6ŒµµÖŜ_RÉ.‘Œ9dtXê§ MyïĠÌĞo1y_VÓ5‹K_0[Of­wĦjžŜġa2Ċt $|â_€€Ĵ@xÔb×o“´ÏÎfüżÓ|ÙĞyÑoġÏ/[ÛjzΔħ[4v7İ,yµŠá§iÒ(ÉôËrE §¸‰ù˙Şê?žVóNŸ˙9ù³ċFòo—Ĵî“^.tëŭ;Eóîžg3ۋkŞ^ßÇ	#LÊU?k|6SÎûżŽi7ĉŸüüóóCÍĉ%ò
    ÏùGieto-ï"œk÷h)²ÉéF·µ+°
    pYk!ùí˙9!ĉ½ó3ŝq—óûËöúŝ—cƒm¨
    ?XiŸJŠò+Ù żH¤Š(#h”–
    ÈîÔĊ×ÑçÛ;ÈaVı6şÖ½go¨é¤\-¤‹q
    ϧp˘`€£›ĥĜ£…ùùùıùġ¤Î8ŝwZ_[ybçW³ó6Ž×ĴŸYAúAA"ÖI&+ëğG"SvƒŽÍ›ñżùĈ˙ùÈ-oÏżséŜvÒ´Í[CóUÔڊ+!ŸLżŜAuÛB*vÚ@U÷Ĉ+żDWüĉ—Ĥywó7@Ö5ıâğò–´ĥĥÚÍäKs§êjêŠħŻÓԊE·UÈ+FĊ^ĦçË{kŻ"›Ŭ
    ÖÖĉ”XK‰QH­Y‰(ˆĴ‹2'0‚EäjTSl5L&mùwù“ċĜ4]Yċ³-nXş…äŝ% A%vÛcM¨qi!ĉ¸Ħŭ
    ˙Î=äü¨˙À_N˙“Ÿûm˙šÏĝtŝòŭ	ì÷üg`ŝ¤~çħg.îŠğv*ìUĜĞħWŽ˙ÎB˙äü×˙À_Q˙“
    Għ?ñı£˙‡CïŸÚĝÎÏŭI}Ïȏù_ŭi/ˏû|Ŭ÷>˜˙‚—üšŻù'˙M`ùħżñ­‡üï÷~ìçÇïşğ`Ÿš_ù,ż1żĠ˙ê
    \Ü{=˙zoĝv?÷aÁíOñLßԗû’ŝpóî‡çÙżóƒ^CO6~sGĉ¸DšwĴ%Ôŝ!U7“£Úİ÷Ŝ@|S<³ŝ½°t]ŒpÄÔ³ÈCüÑê—Ü"Ĵö~h?1Żñ,C‹âvé?íV|¤ûKħWbĊ]ŠğZî‘#É#ĴqĈ¤‘ˆ
    ŞI$ôšԚܿŸ?ùÈ?ÌÇüĜü×óOšâÑÄ˙£ü²Z&iT„¨5êR‘üÎsí_bğv'ebÓS)˙^[Ëŭ.ÑQÏvŸò†ĥyAôŬGú£—ÏŸĵĵ[:§JìUŭ(y#ŝPż(ÛO˙¨hóàŝÖ˙Í˙Ÿû˘ŭ'˘˙ÇŭXŭÁ“ĉ½Év*ìUĜĞħWbĊ_1Îeë6ŝc˙۟ŝëYè-˙œK˙%?é”ŜcÛ/ĝÉÍŝoû¸˙Ÿ{˙äçó7ŝWż÷QÓ³Ĝ?à×˙Ĝżáñ˙q‘áà}ŝ??ĝQ˙uìV|ûħV;ĉß6yÈŜ]Ôü×ĉCô^£˘Iİ_úRÏéĞşĈ§Ó$‘ŞÎ§3ğ7³u£¨†›O,“Ú"Àşó‘ê\}^Ż“²ċ5ó4O—!eàŸô9_óżùq˙îOĴÙv_òk}£˙”_úY‹ŝ-£.É˙V˙c?ĝ—ċÎ6˙ċÇ˙ı>ħ˙dX˙É­öŝQéf/ĝµ˙F]“ŝ­ŝĈñ,ŸÊó“_‘^wĠ üğù‰e>İtÂ;KKÈ.ôó+·ÙHÚöĜô
    ¤’s_Ú^Àöçgb9³é¤ 9˜˜Î‡yà”ˆgg+Ií7gjĤ!02<7îâîÙÇğ×bĊ_
    ˙ÎyU5oÊMÌȀŬyG\ˆĵ‡µ­ú4ó”C÷gŻ˙Àc´N֞œò͌˙ĤâìxŜÛŭ/‰ĦŽ^°ùKcöż³êÇ_ĵŸó䎿ó“_ĝ%˙Ŭ÷~òbĊ]Šğ˙ûùŠğY%B’½{bİ=è³˘äSOˆĝTíZvĊ_2ŝuéŝ_ƒËúĊäÁm]­Àr@·)½ˆÙ–¤ĈÛâÎ%òWä*ÚÙ~ai`½Hĉ[/Y4M=n"K‰ï$VUáoÏÔ`‹ÈҔ;`	/\˙œ—ÖĤdÑìîì•żY]˘&áBŽ$ZԚtÂħÙë˙–>h´_ÉÍT†vqéLş¤~ R$´WY#’B‰Ĉ”8ħ#tüâî§eqä˙0ŜIyĈ½¨ëÓ\jñ$ĉá¨áE( ÒĴÛ
    ĝâ²zµċÖ˘÷Z†Ħ¤è:ÄÓİ‚Q–†t'‹Ħy-JÔéŠ7y}ĠÇċM֝úL½ÑWJ‚ċ>Żb.àH­î"?ÚĴ²ĠJžéAı÷Ċ´G‘üÌÄê^\żħ:~µ Nħ9OŠğiÉ{k¸eèÁÔÀ’TŒT‡ÏŸóžb“ÍWŜTòM¤•…ÍË__^1="b Šñšu*"‰×u$“ŞŜê‹
    ·¨€b†6>¤Œĵŝqñ遚Ua6›[Zy[OI–›³)PàËİ’TÊ҃mÍ1Vç½CM´ò/›7‚+M"ò9]œĵħ]Át‘ĝ”ĊŞ´Ż^˜ÚcÍ.ıyç1ÙÙy£Ë·?§ġ3˘Kĥ£!{G:´–óĴ“:ĞU-£‰@I/·Ž-ĵ’1[.żĤŝWù›Qš[=y~ĉÂëH{2N(ĥÒéñÑCˆœ15m“sŜ„Z—ÍŸ›ŝkÔuùȏËÇn'‹Pò­ö”š\ĥósÍÒÎÒB`ô“PġĜôĤa.`?pôÏÎí
    |ŻĞjW’Mw}¤ÛÏqw ÚVvŠĠ9,Pü1нhFĠ"­×À²ĝSÈ>|òĉĤy“ÏŸŜtĵ•­~hë3ù‹AµynôK8Xô"i
    Ì10dvܸ?`$ÑĠôE—üâĉo–ôo:yú×DüÁòûŬÙé·ż˜şıĵĵ46çS¸QħG+‚9-#.ÊT1˜;w0”eĝ§­ùgŝq×ŝq'AÔó–?.ükĞÎî†kÒ.bqoÈÍèA|ĉ$#—¤Ĥ”û@m†š½OËżùĝĉGċĉ/t-ò˙ÏaĞy&9´1Z"Nš%Ċ¸+%ŞZŭF)b>‹´‚­Z
    ì–Á`sûßjŝDy³Uóü?ċžŻs'¤ÚV„öwĞ=µˆi²ñ<\#3-jÜ\tU¤Uż-ç1üöŝkü˵´Šöòçü;Ċ§ê‹uqöò\Uċä$b”âʤtßµ–ɇüálZ‰üʸĠa–ê+-Ä\HöîÎ9³‚ŻġtY&“ˆJìğoí„2‡Öżóš×ŝZóG”t]7:r]_JĥÛ^ÊX)]FÒáë
    "ĠÖQ7!¨B*Ÿ~Qù“óPĥğòîŸuuĞhv–Â&Ò¤iš!rî€ë‘HËÄĴĤĞ·ĤCR¨GE?=ù'V²Ò§ic¸’k)Xµĵ’<ĵ*³’dfj°êB“W$Ñ'ÏĝĦûùùıùQ¤~MŝYéz·ĉw”ôÍN˖_i×zĠŒ*BĦ’Hä™YXˆ"£>BöżÙĠÏÛĴ˜ô™	e‘c™_0@˘sì.×ÑcaŒócƒ8‚6ê-êßòğ&?òîù+ŝúwŭWÎsŭ	öÏüĦg˙•S˙‰vßËzùHĊŝž?­kùÇùE}umeeùİäûËÛÉRKH5Ë	%–Y*""ÎK3Tœ†Oeû_Lç¤Î"’qL2OÀ2‡lèfDcŸ'`żÚô|Ñ;bĊ^k?ç?äġ´Ó[\ŝkù:ŜâŬÚ+‹yuŬ=
    YLà‚Ħ7öWµç(èówbŝ•ÖËĥt14sN?­KŝWoäÇŝ]ß%ÜN˙Şù/ô'Û?ò…ŸŝUOŝ%ËzùHĊŝž?­ċ?žŸ›Ÿ•żäßĉf—¤ŝgyOSÔïüıŽi­XÏ<Òĵ,#Ž9™™‰Ĝ*s£öCÙĠÁÛ\™4™£ċ‰$˜_2H Onö‹&ƒ4a›‘	ē·AoÌżù_ŭi/ˏû|Ŭ÷=÷ŝ
    _óŽjżäŸŭ5ƒĉ~Ĉ˙ĈĥóżÜIû³ŸêìU‚~iä²üĈ˙À_W˙¨)sqì÷üiéżáĜ˙Ŭ‡µ?Ċ3R_îKùÏşœ_°żóïï).“ù[ĉ6KKŻ7ëMRSw´ÓSҎ§Úi&ϘżàÑÚ^?jcÓĥì²?ìD`˙ŝ“ÑÏ)ç9}‘Ĝ}ĤOĵ³ÇñĜĞħVçŻÌŻ"~YéİĞyëÌÖ~]³˜²Ûzċžiʰ†•ċ”ŠŠ„SLÛö?`ëğ_'…£Ċ,’ëŝ´F?wii´0Ï1çÌû€ÜüÌĵ˙9Uùç=R-Ióí½ĥpü-`Ôíî4ġ•ŽÀ$·1Ç,vˑ=t˙ŬìüG.]91ÌLg^ñeï5^n³IíWfê§Á ÊÁüHí}œCS˙œĊüÎ?—_“ş­Ç£ĉ<ħ´&ŽÌ„ŜL(AaŞ:3z7üŭŸŝUíˆJbñàŭäğ‰ÑŒ·˘%ċ}ħí?Éh%Ÿ^OH÷¨üĥ÷ü4ϟ
    v*ìUŭ(y#ŝPż(ÛO˙¨hóàŝÖ˙Í˙Ÿû˘ŭ'˘˙ÇŭXŭÁ“ĉ½Év*ÀµoÍoÊíQşÒ5ß̏+hşµ“ĵÒïġ‹+kˆY”0E,ÊêJEGC›7³İİĈ2áÒĉœ%ÊQÇ9Dûˆ\ŬĞ£3™ħĈC˜2ˆ#àJ[˙+·òc˙.ï’żî?§Ġ|żŭ	öÏüĦg˙•S˙‰kŝ[ÊF/ôñŭn˙•Ûù1˙—wÉ_÷Óżê?èOĥċ?üŞŸüJ˙-è?ċ#úxŝ·Êíü˜˙ËğäŻûéßġ_ô'Û?ò…ŸŝUOŝ%–ôò‘‹ŭ<[żċvŝLċŬòWŭÇôïúŻúíŸùBÏ˙*§˙żËzùHĊŝž?­óŻüċĉ—ċ—˜˙çüŭ£y{óËöħyú+êzVĞÙ]\Ëéêĥr?§R³·RĈƒ`	è3¸˙ż³Ŭ§¤íŭ>\úlĜà8îRÇ8Ä^9d€’½ç}ĴíM&~ÌËyĦ)Q$úâyù;ŝ}ï˙“ŸÌßĝ^˙ŬGNÏH˙ƒ_ücb˙‡ÇŭĈG“˙÷ĝü˙áGŭÔħYòûì.Ċ_:˙ÎY˙ë<~fÌŻŭG[çq˙oùÈtżÖ—û‰<ﵟñ—›Ü?Ŭà–}ĝ+ħVÁ ‚
    ÜŠżeżç	ż;µÌo(j>JóEóßù£ÈëµÔ'nS]é’Ġ#gcğ<,ĵŽä­MN|µ˙dñöV:½Ôŝ_·ô’ïŸúpaŝùûQ‹ĊìÌú7ŝ”‰~‡à}œĝ÷“ŝ|‘×ŝrk˙żûâŻŜLUĜĞħWbŻ˙ÑûùŠğBŬH2XñSħ=:ûâĴV˙P·–*HRÑĈÄkµiJ˙LUïüä·¨=ĵĥÒ]Y5¤…PÚÈ^K³QÌ2Ş*ĵğ`m˙8ë.cĉ{ŬVIcVĥʋp7(šG(‘$ĊşËS²+1Ħèq!•˙ÎQK$syH‘}ag’ÒèÊʊ‘„X¨>"XüUÉp‡ÊóŒ²Z]Ĵ‚ó^µ2$nCÌí¨MÍ#á*)P„V÷#êóO-yC^ò֖֒÷÷ú™ük$2]EsK(rĵPĴIÄq%9R´Ú‡@ló_̽Ï:
    핿.ì’Ú%̀†C-´PWÓ^
    ĦR:	݉ċ‰(
    c@:TvÖ×Z|—´´Žè­µÄ33™ÔIëò…¤MhÌ
    éÄ6sPĴÊUw8ìy0}wÏ×ï,ÏcġI.4Ğ$‰4¤‘eôŜŜ¨mԑR=^ëSBUş’oîĉÔĵÏçË{½ÎÖ÷_^ĈÇEÑmë$SĈŒĴ‹"ÔJfbÎïµIßİ 5LŜߢ÷ڗü7ä-ĠÑĵµŸÏiğKħ…ĊR)dĞÈDOH+aCÓpMM˘RêüÔò–ċÖµÍCòó\ó§œ<ùŞ2Xy‚ġ8im!’v„N‹Ë¤v$j˘ĤĞÇöŝxc“'ĉ!(Ü£Ï!7µÑħ.€‰”Wžó²ô‚rŒNNs;HŭÖşXë½É˙<˙/µßÈmKOó”µh|İúiît›½#OÔĦ›ë,ÛFòµ•I^RVèıg²}ħ>ÑÀL‰•uŞ>ĉ<Ĵy–=żÙEpúo˜ŭ#ËßżMż*ż&˙ç!˙6ż'ĵù…ċß7_“ċëדLÑoĉw„‹	Žùíf”•Ž@Ĵ¨zsĞ|zÇE#כÒ?絋ŻË­__DÔí|ó¤Ç&İw£]ÚÒÓá!]-Ì,óÉ;ı)FW~JpRF3^oĵżç<Ùq¨~UŬyI'‚[-k—.tèÄ,ÂÂ`³şKQċ·`jí„2Ÿ˙ÎdÙŜÛÎBù´ßiré7wñY\­´Ì'-ĠPĵjÇÒŞU=ˆêÍéŸóïĝÏü­MvñĴ£ş²:3-ÜచŬĠ½ExĜ#ZP€AcJ=z Ĥ!ìŸó+ğ;-jş•˙—ċ¸şX›BĠa†öJHÉ&h~ħê)Á!q|&ž j•éÜĝżŝqîġí|á{kċÛÚ­ÌWD³"¤,í4A)J†í@We=UG"öżÌO7ًËôĠtéÑ­/‘yL@h̑JĤRĞNaın°–˘ĝRúŻ×n
    —?޳–„=9;€HëOPĊ]гżÊßü™ż—?ĝiġiŭĦ˙ŒÍOü''û‚çö_ĝŜëÇŭG™ğôkħWbŻĉżÎ˙ò™ùğŝÛW˙ġ&}áÙ?âxáp˙r›uß?­/ĵħŒĜ8Ċ_OÎ˙ëI~\Ûŝè÷ıç˙R˙œsU˙$˙éĴŸĜßĝÖŝwû‰?vs÷Ŭ]аOÍ/ü–_˜ßĝê˙ġ.n=ž˙=7ü;û°àö§ĝĤoêKŭÉ8y÷Có‹ú
    ˙œròòżägċ~’#6ƒo¨LƒödÔĞ} >á§5÷ϊ½ı×~s·5y?Û~ŭì‹ô³š³°Cú˙Ĥġ~—µg(°żÌO=hż–žKóġ÷Ĥ ÛŒ*@yċb#ܑ•ıÍ·bv>n×ÖÒaú²áÎR>QK…Ú:ìz<óäċó=Äìŝ~?2?1ĵÏùİĉŬOÎk½kĞëùĠ­A>…¸$Çmn„ü1 4ÉĞ1,I?ivai{I
    .š5ÏYKĴ¤z“örÏŭÚ9ğC<³e6OÈ€yÚw`y¸pĴ˙ó„ŸÚ‡›-n?)ĵ¨=îħĦÚŭgÊ”íY'ħŠ‹%£ħŬš
    †BjJTt>m˙‚×ħ˜ôR&k$G!3Êc¸K‘éĊ_Î}gĜŽß–˘'I˜Ü˘.$ġˆç‡O/sċùÌ˙ÌïùXœúEÇ­ ~_£hĥZ¨×jÜŻL£Ó¨ê#Sž˙żg˙“;"9f+&£Ö{ĝɏôŻ|‹Ê{gÚœ×Dú1zGżĝÏoƒä|ô·‘v*ìUŭ(y#ŝPż(ÛO˙¨hóàŝÖ˙Í˙Ÿû˘ŭ'˘˙ÇŭXŭÁ“ĉ½Év*ü˙œ³˙ևüÌ˙˜Û_ú·Ï²?àm˙8ö—ú²˙w'Á}Ĵ˙LŜñŝä>uÎáç]Šğv*ìU÷oüûß˙'?™ż
    ½˙şŽž?˙żĝĈĊ˙ûŒw˙ïñù˙û¨?b³ċ÷Ĝ]Šu˙œ³˙ÖxüÌ˙˜+_úŽ·Îŝßóé­/÷yßk?/7¸şÁ,û!WbĊ_]˙ÎëSióZ
    ŒnȞdÒġM:áGFHíšôíÊÔ£<ÏŝzQ›Ùü“?äç	Œ¸>é—ö1ÇÚqˆŝ8È}œ_ï_·™ò[íÎĊ^yù½l·Ÿ”ßšŒĊëÊZÜ,¨a2’>üŜ{3?µ´’î͌ü§]ÚñâÑgĝçŝ俜ĵû‘ùÑûÉ˙>Hë˙95˙‚_ŭßqWï&*ìUĜĞħW˙ÒûùŠ´M*ǵF¸*Ş1"Šß;ôâhߊĵ×Z{÷ˆ‰í“ƒm$~¤ĵ¸ƒĠ*ûoĥ,…>#üöÓ´Ëhb”Ç•äU{hCÊBòrf,Ò$
    ¸é‰fy1È
    Vk<ĊżŽîÒc4ĴxިA¨Ĥĉ¤Qïá€#›Úç(âƒXıüş·†’jW7Of–ëğ¤sş*ò ım‡q…zïĉèĤĵòï—Ż#·kazE•ŒŒê${ëFŞèÉEZġ 
    iŠĊñló&ÏÌ7ÚŬµÖ—oŜğÛZ]•6Ë’1X”8 ñéÔbÉôFİscùĠäá­y}Ĵ´ï:ùj?Ì^Wĵ’9cğĥ}mŽR°fEh¤ àŬÁħŞ|’³Mċ)M…ĠĦ†xG³Ô ı‹ıBŻ€z2Ò£°ÀžInħĉ+ŬvXf³µŽ°o_œ,Ï"ş°)$ĦGÂzSğ}çÉ´oÌïÊ­+ÌÑĈ×wWëF’)‡%¸†2• ‚	Jн1PùfÖäÛŬAa*Mև­"ŻúLm#Ħ˜#‚”
    ĉ–LóOô­?Fê´‰mjÓÁî‚Á½f‘ċfÒÌEyġ@8¨y§ç½°oË}~9,œNÚΗİĜ'×-ĉäZúÙ eŽë‚4jàqUî[Žĝ²7çŽç+4oŞXjI}j˙¤ġHeÓċ{›iĤàšánm”[–D"1Ç@ŻRÌSÁm€ĵPüÔ%’Îӌ0E,‰iİ•ç<€1*úL+êó*6Âê‹{ßüá½Ĉ„˙šZó4 kx{­2ŭĦ·2ÇŜğÑ4U´&żêá(èÂç9?74ï̏ÌmBŒúwċĠ½ĊµÍÚHŜKûİÖF’.\U™cTħûvÀElÂO	ò7翙ĵ&ŻcaiĦgGĵÓ$gŽÜ2EF—‰$'*|`‚M¨3žífô½(Ï.ҏ"9ğ~ÏíÌú cG˜èÏĵ‹ù/ùÉ˙9sù•oqkllt£ĉı­ĤGÒà‰ké’Ó9eM×jœÛht8´x†,B€ùŸ7_­ĠdÔä92˙ƒîÏÎ/ϟ,ŝIùG˟óŒ_óŽZ^—ĉ½ZËNŭĉ5LŒcžY’Ŭi-ÌY_•ìjË.4/3é>aƒó@™t˛{ÍsËÏ~ÒXNˆÎ­ÊÚ²ADFfUfSO²´ÇÜÌ	w½·ò™ĵùmç˙ÍıütÒ鿤ô›ë›î-¤{d.$Ycž>LÂ5j0‹bħùÏß)[Ü?ż1ôĠ³Ô-ġH†•¨ê6ħGÇ*)–§n-,§*L’1O-01(˙ùöż—>żçÌ}}o!EµÑఒÈO şe™œ£z'÷,…éĊ˜×’šmZĦŒ7˙?
    ӗË~cò¨ĥ7&°—RLşŒ­r“­¸C1…fgJòÒDeĦ†äÚnĉżùĽ
    CÏĉïQÒ&—KCġWÖ=µÌÁŜ$ĵŽĵ’)Bž-Jòíˆ@Ùêżó‘ŜYÒtJYt›bŽĉ„0ċBĘܨvdâËPĤġĝ	ÂĠ.o‚'ŒÇ+)Û}ğâĊGv*Î˙+òfŝ\˙àQ¤ÔlY§ö‡ŝ35?œŸîŸÙxŻ÷AŭgÂïÑĊ]Šżš˙;˙Êgĉïûm_˙ÔL™÷‡d˙‰á˙…ŭÈ~m׌dŝ´òĈ3`âğ}=˙8k˙­%ùq˙oû£ŜçŸ˙ÁKŝqÍWü“˙Ĥ°zc[ùßî$ŭÙϏßuv*Á?4żòY~cà/Ğ˙Ôı¸ö{ŝ4ôßìîƒÚŸâ™żİ/÷%ü—E+ÎiŬc‰vc@7ñ'>ĉ”„A'~r“Aŭ2iZ|ZN—ĤéPqĤZi
    (v$žƒÇ>Ôç9òË$ıȒ~&ßñcà 9É”6;~_ÏÂż1%7>Nü­ħœĴóˆÛ;3=½š5?—ŒĴAñCM†}˙>9ûFc{áöJgqċ!Ŝù‡üğDŜ=,Nß\èŝ“ò~dçdìU“y;ÍÚïüÏ£yżËW_RÖô)ŭ{Èäµ*QĠ—şş1VÁ9Ú™ƒ´´ÓÓgXĉ(´|A˘<ܝŻ&“4sb5(›vYežY'žFši˜ĵÓ9,ÎÌjÌÌw$É9›ˆ€ rI6yİäìUĜĞúPòGüĦ~P˙ĥ.Ÿ˙PÑçÁŭ­ŝ;›ŝ?÷EúOEŝ/úħûƒ'Í{’ìUĝ%˙9g˙­ù™˙1ĥżġoŸdÀÛŝqí/ġeŝîO‚ûY˙™½ŭÈ|ëÎğv*ìUĜĞîßù÷żŝN3à{˙u;<ŝ
    ñ‹ŝ÷ïŝßó˙…÷P~ĊgËï°ğ|ë˙9g˙Ĵñù™˙0VżġoÇü
    żç!Ò˙Z_î$óÖĈ^op˙t‚YöCàĊ]в˙œ%Ó&ż˙œ‡òÔaŠh–Z­íÁ #ĜÍj	Ӟo˙@ĊìöhŸ”"?ӉŭÑ/YìN#>ÔĈG‰ö&?û‹Ÿ#àìUçߛsÇkùUù›s)"+o)ëRÊ@İâ–31 ùŬû5>ĠÒÄs9ħöa×ö´„tY‰éŽîKùÉÏı_œßĵŸó䎿ó“_ĝ%˙Ŭ÷~òbĊ]Šğ˙ÓûùŠ­aQLUˆë·Bœn\ rU7&Ÿ³ŭqHy>­ĞéüJ!³ġĠ‘™Yˆ²Ğî02]üŬ][RÒ:^‰`˙Z_Jù_ÉGsĵ04*È,OO,İó75YüĞçâíE­äpßA=JRSÁıÀÜÓôÏç‹^j˜”šUœÒÜ\_O˘ÇiocXÙŠĠ¨ğì)Š^—ùƒŻŜĜ~iyWNĥžih5)$€²˜Ñ8êSYU ŭàHäò?;hjÔ$ԚÛÌQOP0ĥ1È"H‘éž!ùrqZ“µ|0²y­­Żšü™qúWËb’YVÚùíž8„”9rÎ:¨†˘5(!í~MüÉòŸĉ¸°ò§ĉ?•jÚŞŻ£{06×N( ÉUô
    EwĜS;ĵÛóÇÈZ'‘ĵ˙ĦÛùrĈxtß3Ù4ݧA%#wW1à?
    h*I58¨/=òžżCèWŜ_şĤGĵ6L>ҙTG(Š€v£ĤŭkŠbS4¸ıhl Ž4“Ò——‰ËŸT³£„r„ÔŠoœiöA1żġĊĠÓ/ÔíĴÌ,ĤÔşFÊÎѐÍVä*IĜ¤ĵóŞŜÂË/9C>ĤaÔġĊµ²:ÓZ¤hĉ½ĥ`?GĞ´l¤E‚
    ÛÊĉ_ĉ|:Íŝ™k¨ê:•äXĊi*^,ĥöá…ħġaŸœœpz/(+\³xŠŭNcáîÒÖY˘şšHÀô½Q=E<ĥBÀ{‡pr]ŽÒ?4—É·kr–=Ä1ÉPGÂN2·4‘]ISÇztĝiĜ
    Àx}Ġìş›ê•ĊäëpÎd´FŒÉġ‰$ŜrzÑH]ûôĤ-$ŜïÙùğùǟɍ7ŝq÷Hüûó^•İyŸÍžc³ĠWTħ7	Œ–"í­M˜²n8S#·O`*K(ŬìóïÍùÌŻÌÌä˙•Qù7˘Ë.ÒM*âXoÚO43ÀÍqkOCêñˆc+"ÇPG %$­^L€Ŭò³ŸË˙&/›-tûùî5}I–ëÌÒÎ>ğräÏ/µÔ†H·ÔżúW4?*]ëp³Óĵ?™n^ŝĈ[ĥ‰6Ö\ÊŬMݍ—UqRwä@#-@=_6ŝGj—SÎCù“NV°ùħµ[{Ókŝ—œ$[…•œEVXĝš0Aż†5ÈñĜŸVħùżŝqÏÍ·7v­¨\yjk{ŭùĉ:„şŽ#(BC‡V5VP´§Ä8áĉ óÏùö÷Ħòïĉžĵ·}eİÏeĉŭ-5-ċŸNµ½ŠY8ù£R!Yħ²ï×`YüüÊñ:™f…%°Ñ&0_¸–â;›qx‚8–x&-İÊ/ŬŬ[žLżè
    £bSÍòWüâŝ›Ïç{˘If²OJ÷MşDg†`ÜVܤj ר=
    /Ĥ?9|¸ŝfXîl ô&i–Ó€Œc÷ĥïGzqBĝ­üM˘ĝÍL6²	­ÖXˆ<.íg
    ^)vä›044;V• ÂÁ‡bĊYßċoŝLß˟ü
    4ú‹4ŝ˙Ĉf§ŝ“ŭÁsû/üoġŝè?£Ìĝ]ú5ĜĞħWó_çùLüŬ˙mĞ˙ú‰“>ìŸñzœQïœGÚÒF|$ŭ ìUĜĞOŝrÇÌy‹ŝró។ZeìZU²P€‹ap0ßy›ĉvÛ>È˙ˆi{M²‰™˙<™}ÄÁ}ĴÔŬ§˜÷ô ß:gpóĊ]Šğv*ìUĜĞúPòGüĦ~P˙ĥ.Ÿ˙PÑçÁŭ­ŝ;›ŝ?÷EúOEŝ/úħûƒ'Í{’ìUä~bü…üžóf³}ĉ1ŝ_éz·İ²½ŝ:9’VTTRÄ0*6‡ÛĜÑaŽ™yDU
    ïğ½Ôj;C¨ÈrdĊHó%%˙Ħcü‚˙Ë[˘˙Èı?ĉĵÊ˙Gŭ½˙)y>cġ4˙ĦžÍ˙P‹żèX˙ żòÖèżò.OùŻôÛßò—“ĉ?R˙ĦžÍ˙P‹ùŝÏ´v*ìU÷oüûß˙'?™ż
    ½˙şŽž?˙żĝĈĊ˙ûŒw˙ïñù˙û¨?b³ċ÷Ĝ]Šu˙œ³˙ÖxüÌ˙˜+_úŽ·Îŝßóé­/÷yßk?/7¸şÁ,û!WbĊ_Ż_óƒ’šŻ’´-_ó'Í/§ëp·Ž×@²˜qš-,0•u;ŻÖ$
    Bĝ˘ŸÚϙżàğí^.Ï
    ž\PÂI™ŽNT;ĝïß":>½ì7bOKŽZœ˘TG^wŝqŻ€ó}ûž0÷ÎĊ^˙91ЍòóNżĤ&Ĥ°ċZo¨2فôúÔÎżĜ-7ĉ;{Iì‚_é.ï]´ıĵ.ÍÏ/è‘ŝ›Óú_ÏÖ}˘üŝŭä˙Ÿ$u˙œš˙Á/ŝï¸Ğ÷“v*ìUĜĞ˙ÔûùŠĴ‘¸#5iA×ßyg˜üżhÓ^jsú—Lk–OJ=Ş
    ŭû|ħd-ŠÄòê‰mwgkCrĦíĞG"+lâ^(Zğ“Ċi,;Ìagsmdß^Ö%Ġ‹¸4v‡b¤Š§ċ‡t‡ĉÚŬ/¸’[ĞÖĠĦĠF™z·"NĜ£ĞìïÎí:öÇÏ_“úˆ·†ŝÚß[ŠĜÇ/ç ¸ˆ*˙	t>;â£tûóvÖm7óOò×Xô­ġÒŝâÈĊvÈܐĦÏŞPìCmJӏ&ùïeĉM2RòÓ\G)ĵôäħ…ĉäüBlŒC†o‡mü@Ċ6z1{-FX´Ë­n8áÖcHız“RĠn%`ĊfR[‹}ÇJíJàdÎü‘ Yi:½…Ŭ‰´ÒĴÏÖ¤<9Mvò3 TV:V ŭž=|Tù££ÏĉŸÌ-̍}$şvdC5kp­H!‰k°wzħ+ᄠÏ·YK<ÜÁ§Ù´–É
    _CgjÂĴi	e@s°aÓn¸[½{JÒPÁ
    :Ïñ@c%Ä,T—@PĝvfÛu8Y2m[@[É-‘èךĦ7×SRÑ(’‘:›aè’]€àU\ŽĠ¨ĊüÚòÛj•~l´k[o%­­×ĦĠ͜w1›Ĝeee·UŠÌ(RVµc‹(ó~xù“CŽŜÒïI–ŝßêİğY4ĝÒKÉÍÜĠ2ImÁĤ(í	YdhÚû˙)ÙM­iRj—ÑĜè6ò%ĤŸq5"šE!ËÏşÄÍ,
    ‹Tĉĵ˜Š8ĜUâĤ$>dóvƒšô¤"ĥˆúWJĤ&”8¤_hğİ=Gl%„ƒÒ4&ĠV6)cŽò”€\Ì!†2ÁDnì~ws÷`aÛögÉz}+ŝqÉŝAòì#T‹ËÚL<<}CO,’ܲ2½$û
    EÀօ´B‹ĵÇäŬôÇĠ^ÊĵÑ„Zo˜"ôçĠĦŠwÖhC8R"uJqj1ژ)^ìËÉVhÖ´ù-|ÇĴiWÖ÷ÒÁ—GI—-q5żĤóòi’iFäQK7!ħ^ĥ÷Q>•ċkħĥĠ­4AAÊ;o^HD‹nŠ%.}•9ŬŒf¨Ž,_šŸó_ÎSyFâòñ×um^Ö7âfô%ğ‚uI‚Â(ċOSŻí AĤŻ×­Wɐi˙—˜ž]óeĉûIô›ëˍ'RĜÇ(ôĜÄ"œ[IéoRĊ >ż#[3ĉĝŝ}‘ċŬRO5~hùĤÖî{X4ŭ2ÇH¸´p^ÚçהÏĊä
    ’&HŞCW> &ı[Ĉ˙œĜò]żœ˙*­âÖuıü™gmrD~pxÌÚTĥ­,’”ֈ¤
    ÌĵI`˘ÎoùÄm6-?Î>lÒlġ¸u	Ċœ2ŜÛËf‹İÉ$„zSdVISù*C7˙˜Tŭ	yq­Kyq.‰¨€şĵħs–;7‰Kž$;˘°b\ÔûCùËùŻbö>aż·ŽHĤ‹Ĵöà,WÈH䢒A4$‘L-eâïJì)ŠbĴïò·˙&oċÏŝGŭFĊšh3S˙	Éŝàıŭ—ŝ7‡úñ˙tÑĉ|.ŭìUĜĞùŻóżüĤ~n˙ĥĠ˙ŭDɟxvOĝžĝ\?܇ĉŬwĝĈOëKï,c6+ħWÓßó†żúÒ_—öĝ˙ş=îy˙üżçĠÉ?úk§ö7ŝ5°˙ŝâOŬœĝŭ÷WbĴóK˙%—ĉ7ŝúżŭAK›gżOM˙Çŝì8=İŝ)›ú’˙r_‚’ˆ²~rŝR#¨t9è*蠃¨À çÙ>Ġ’;XGú†_÷|ħEë!ŝè?˘Ĵĝyú%ĜĞħWó—ùğpן›™÷nĦ^ëÍşÔÎĞż™ˆùçÜÌÀcì­$GL8ÇÊ~tíyqksžü“˙t^y›·\ìUĜĞħWbĊ]Šż$Êċûbé˙ġ
    |Úßıżá“˙t_¤ô_âĝ˙и2|×ı.Ċ]Šğv*ŝb3ôùĜĞħWŬżóïüœŝf˙À*÷ŝê:vx˙ü˙ü>?î2=ßüżÇç˙
    ?î ŭŠÏ—ßav*Ä<ŭäóÊ:גĵÀ×)£ëÑ$WÍhâ9‚Ç*J8;+ñ ìsiĜŬ­›²µxġx+$Xħ¸#qcĦïq5ú,zÜÁ’ĝeÎıó·Êżô ߑżò×ĉûˆA˙dıèŸòy{sù¸Òĝ§•˙@=ß?ôġ;ŝ„ò7ŝZüÑ˙q?ì—ù<½ıüÜ?éüR˙ ÎïŸúaú™×‘çż#ĵ‡ŞC­[yzÌz•Ĵ‚[µéŝı:€,p’àş1pFj;cŝ	Ŭ·ÚXŽ)dâEŒp“ŝu™{è€G7;Cìgi'Ĉ g!ˈŬ|60ú<ùéŬŠğ|C˙9ïĉ…Ñ˙&-<żĵn<ßZÛĵ?ÍmfîFù,‘Ċ÷ç­Ào³ü~ٖr6ŽGüéTû'ˆö÷Uáè>³êûÀ~3gÔύ?y?çÉç&żK˙ğî*ŭäĊ]Šğv*˙˙ĠûùŠ ueĝ
    ’Ĥ€bŻĠ´É§™.ïµSĤDÏK+$´Ò“J
    KQZ½(Ž,ÁJï.âĥ‰ ·´ĴœZ8†i%b7
    Pĵ›jFßv*ĉ[yĥıkéHÄo8ĥ†Ĉ>ÊÇëKB[ƒnTMàÜ2Œż-´{Ŭ_ó£Ëö°ÎßZmdŜÜ][˘€Ĥ•Ġ_ì Q֕^Ûâ‚úëŝrÛêJÑ<Íĵ§XŬÊ;+B­ ܔŽ%ˆ´'˙žĥ‘yƒÈÖúġŠC,Z}ŭĥ­ġµŒğZ[³ĈĦԆÛàHdWú†ç­:ÏTÒĦšo-„­.]#ÇŬW˜áo„“µkı Â‘³Ïl|ğ§ÛÜΖZ*[éĥ·T¸HìA²wô–½V½:bÉ5‹Ô=8Ħ{{aûérbìĦz
    †­J€Jŭĝîİ<×Q^<ñÚK2ÛÛ Ża
    ÒK$Œ]…d´P*i½1WœÙéRMsw…?Iê·âÂi‚)Fâ5PD|‹ŠÏmÀŻ[ħÒcµAĈĥê‘Û\FYYYPZUj=À?VG£ oîùliBQoÈßùĈ,ê+uĉ‹×KĠĴ,ïž?Ízk@ Y AÙZËjJUş7Ú<—ÀˆÛw ùûÎ~eòµÌÖ·<¤wh·ĵbΜO­o0%£r%
    ¤“^Œż	Âv~xŝbyÂßÌ:ĵ“Ûi£NĥÎ1JĈ
    ‚€ŠmĜm‹mĉLĊN([гżÊßü™ż—?ĝiġiŭĦ˙ŒÍOü''û‚çö_ĝŜëÇŭG™ğôkħWbŻĉżÎ˙ò™ùğŝÛW˙ġ&}áÙ?âxáp˙r›uß?­/ĵħŒĜ8Ċ_OÎ˙ëI~\Ûŝè÷ıç˙R˙œsU˙$˙éĴŸĜßĝÖŝwû‰?vs÷Ŭ]аOÍ/ü–_˜ßĝê˙ġ.n=ž˙=7ü;û°àö§ĝĤoêKŭÉ~ŝLM·çċEÄÍÂ<ĦI+š*êh*zû+Ú¨öF²#™Á”°“à}!vzd‡û ŝ‹sá×è§bĊ_Ηç5“iż›ßšV-Ëŭ͚ÊĦm‹'×e(Ûx­}ĊìĥQ—²4“ïŭÀ·ç^هğ<{²KŭÑyokħT˙Êz*ù—Í>ZòëÜD×ġ[=5î•y˜…Ôé	p¤ŠñċZW0ğKVtš\ıÀż•w‚kNF“šûÍ?L?èœÚ/ŝ][ßû„Ç˙eYàŸò|³Ê$ċa˙‰}/ŝMÖ?ġsŝ”~·Ñ9´_üş·ż÷	ŝÊħ˙“ċ›ŝQ#˙+üJ˙ÉşÇŝҏÖïú'6‹˙—V÷ŝá1˙ÙV?ò|³Ê$ċa˙‰_ù7X˙ĠÏúQúߟ?›ŝB‡òżó#Í>CƒS}b.Ï)İI…ġ Žj˜8Zz”êsÚ½˜í“۝‹XaÀrxnꉏ:ŬϟvĈ€h5sÀ%ĊÀFüŻ`KúòGüĦ~P˙ĥ.Ÿ˙PÑçĊ½­ŝ;›ŝ?÷EúEŝ/úħûƒ'Í{’ìUĜĞħWbŻĉ#?@˜ŬŠğ}Û˙>÷˙ÉÏĉoüŻg˙ÁŻŝ1ħŝ#Ŭ˙Àûü~£ŝêĜĴù}öbĊ]Šğv*ìUĜĞħWü緟WÌššg“m'ġl|ƒ§îTnŝĦÂyèGZD°ƒàAġüûé;.zİ
    –˘[R˙²>ê|sÛŬ­ŽvÄ?ÙKsöpÏ^xgï'üù#Żüä×ŝ	÷}Ċ_ĵ˜ĞħWbĊ_˙ÖûùŠİȁ×~Ŭ1W›y‡IúÚÈ.#ŭÛlĵv&Ĵµ
    ,`W6í§H.o¤[ûĈä#R+QéF;*Ÿ–ĝy‰}kS§[ÏġGwt
    éÂ@TpŒŠŻQÄWjt$İœüğċÏ3yϟ¤t[C=ޤÉkw{#ċ··i#–ñ’Ô)VîFŬñM>şó.'˜<ħĞi7€XÙêÖRĈŒ’Â]vÔ<s֝şbċù[˘iw6ÖúmÄĥumMm{ëÎÓG3ÊéÄх@;R¤â›OzÓĴġ‹;f×њŝúàúÍW„*@R€ı§sNƒÓj:Ġ„şUĴİÛ3ƒğšFI'BßIÛéÛ`HR%ĥĵıhÒè, –‹2ÈKJç˜nxħ5+ıë@p%6ò}żÏԖu·Y˘Ó%PS…ĠH"ôü)\!^İw$”,ħÌıFĝÔFŠ­ĊbĜ­h>­\ñÊÑŝñĊ˜³›Ôž_Ad–I÷†2[ÓŬR‹N “ÔaVùƒtçÉzĴ†FәÒĉòXžPÂĉ:Dİ*ħex҂µú1¤Ç›dĠ4mnK:öiažıµ„Í,‚á)_ˆ’é—Rê]xûüKƒĞcÀż6ĵÀl4ëHlîŻtU³³şXk'èé.Z4Fġ’‘Gê:7^_exŸˆı2äùÏNŸ͙ŭ'€*4qZ\[k¨Š‘‰„—
    1³­d´|VLCò´z–a¨zQAĉ
    bÍ­^á=Hà³$”¸chR8DĴÁ‘ş€ ċ@šzċĜĠnĴżFZŜŝ–´§·¸×t9$şşŽ72´w´qŠäVŽŬvVÔ.ı´Ó¤jVvMäëàm!֗PY,.ŜéîR.íncÛÌ
    İRÜXòâp…#ı×ĵä{Ğ?"ŝek’ZèŝdY麜ÖÈY€î·0FβH•âïıİu`„˘FŸiŝQÎ
    ˙Î<ŝ]ŜĤı¨h˙ò³5
    V6›'˜Ĥ[•†ŜċQ‡@H$¨%„Ü9j§Mr}ŸkXò—ŭIŻ,´O/é’ħÙZÛCQ˘1ÄF˘Şµ Ü÷ GüĉçüċO”?3th?-?/µßÒú*_Á{ĉ7Kd’ÒY­ƒX.¤<ƒE!  ÔüT41%ĥ1§ÙßóËİèßóŒ^W}bĊ,a½Ôġ
    GFşŒĈZïLžeôe~UŜrB+ËáÜL,d,ĵ‹ŝs/óS]_ Ċ¨ù>â
    FĈS:/Ħı.´K°Ğ5ğOlĀ’ú£‹(ĦĝYjÀ§fÀ)ò˙üâVİiÓÍĉ3WH#ÔZx<óä›Í Ô­#d{
    Bɕ¤Ë$ħ’j €§ávP@R7üċ$$Kġ+9Y”3 GÜJò˜Ĵ#bÈOZôÛ i“óOP™ÚKâW§.uŻANÄS*ìUŝV˙äÍüı˙À£H˙¨Ĝ³Oíüfjá9?Ü?²˙Ĉ˙^?îƒú<υߣ]Šğ5ŝw˙”ÏÍßöÚż˙¨™3ïÉ˙˙‡ûüÛ˙Éŭi}ċŒfÁĊv*ú{ŝp×˙ZKòŝß÷G½Ï?˙‚—üšŻù'˙M`ôŝĈ˙ĈĥóżÜIû³ŸêìU‚~iä²üĈ˙À_W˙¨)sqì÷üiéżáĜ˙Ŭ‡µ?Ċ3R_îKùìò5ÒüíäŭH°A§kz}Éf€ôncz7=;gÚŭ݇ĈÑgÇüìs8ü÷ĦŸ‡¨Ç.éDüˆIكô“ħWbŻÂùÌo,ÉċŻùÈ9ħŒÇkĉ%´ÖlXŝÚÜÀĞ+ÈĝäF}˙ŭxĠö
    ÷ÇĊŝi5ŝÀĊżltÇiäîH|F˙ì|żž‚òîĊYßċoŝLß˟ü
    4ú‹4ŝ˙Ĉf§ŝ“ŭÁsû/üoġŝè?£Ìĝ]ú5ĜĞħWà—üċŸŝ´?ĉgüĈÚ˙Ô
    }‘˙oùÇ´żĠ—ûı>ígüjf÷÷!ûäùBüĦ˙l]?ŝĦ£Ï‘û[üw7ü2î‹î:/ñ|ĠÜ>kܗbŻ‘ż0˙ç3ż+ż-<çù]|ÓwĞy~Xâĵ¸°µ²’ŬšH’aé´·Ñ9\VŞ7ÏKìOĝö§kèñêäÂ!1-‰Ô$:w—‘ílôzD°dŽC(óĦċ}d;û˜gŭ#òcŝŸ:˙ҝ˙yÚ˙ɔíŸġ\é§˙TÜ?ù8:ĉeùGŝ-ßôPÉú–|ë˙HZwŭäq˙“)Û?ê¸?ÓOŝİŻüœó2ü£˙ütϨv*ìU÷oüûß˙'?™ż
    ½˙şŽž?˙żĝĈĊ˙ûŒw˙ïñù˙û¨?b³ċ÷Ĝ]Šğv*ìUĜĞħWbĴó'ÏzWċ§‘ĵÉç}e´,ŜxíËq7Ÿ‚u'ö‘•Îı·ìÇËÚúìZL_VIU˙4s”½ÑŸƒƒÚZĝhtóÏ>Q3|NÏçgÌZö§ĉ{Yó.³?Öumzö}CQž”
    5ĆG ì*ÛlûC£Ċ£Á…CDb<˘(?;ê3ÏQ–YfnR$ŸyI³)ûÉ˙>Hë˙95˙‚_ŭßqWï&*ìUĜĞħW˙×ûùŠğ@ÜÁrŠäG.•Ċ_?ùİuï.ҚKkGI¤›Kwp„Ô­iZħ>F˜³…Oc<O½íْâge22|A¤eI'á
    Š]Şéƒê<4ĞTŽüJ-^2ÖŻ³ÏÒ$ëŠCZ%ìÖKuÔÏ{Ş<Ä5ۗc!…‡j€€€*ŬO°ĊiñŸġ9ĵĦùŻĉKË·BˆŻâÖógQ-Äjeu€ÑÉ OjbĚ/£ż)|ùĉ?ÎĠ5$2aš´Ì-‹È_WÓĥ·X#vŽKŠ*GZƒĈ Ôï½p*ë/ĞÚK`ñĵv×wÒú2˘Êñ
    D°)W£(M:aRöghĝi%IâŒCrĵ)$z/JŞ´nEżX!
    !ĠċKÎI¸gbêJ +´Ż @$oN"˜y+Ċż:Ví|‡ŻŬBĥ×QG˜šén
    ŭtUeO€öI¸4ÀYG›á8uO1ÚÏ÷ڐúŞ:-Ž“Gm5z˘žĉk–‘2QŝŞP“\ĥÓċŸÌ/>éVşŭšéÚ~ħ6›§Íeİy3Kê‡s uwŭÂBâğžTÔ/Wh<·µŠŜ	-aġ­c½•D,KYac#W“òâè´r´â6HèÏ?+ĵÑĤêVքAmm¨éÖÛjp*ÇŒı¤ë"Üş­QA·-èKĠ!îš⯤_=Ħĥ¤ŒÇw2*²İˆÇ!¸ô^#·`żĵij•ŬwŠÈ½@³ò™tï5y,
    Gêq´—w˙—rÛÛ­İ´ô@{‹cĴÌË XˆĦ­cLFû0aÚǖĵĉ˙1yò[óƒË7³ùKÎ ü˘üÉuù.#½œsZjÒŬĞÄ%
    xTnĠ·lzħžï&üüòó·üĥ­˙*Kò§Ízċž™äèâ“ËÚİÓqÙ[’ІVKôgòÛËzO“üŸ£i¨Té·+ú:Öîĉ*8y$$}lÒ2ĥNjž*z€L†Ë'ƒŝsŜ\XèÚµ–ğk-ìĥßO3“sd]Ù½"À*Ìħ’hBÔİRv临Éù½Ş]Ëu<ž£r
    äİñĜ
    ŭ ZҜUĜĞ;ü­˙ɛùs˙F‘˙QħfŸÚĝÌÔ˙Âr¸.e˙áŝĵŬôyŸżFğv*ŝküï˙)Ÿ›żíµ˙Q2gŜ“ŝ'‡ŝ÷!ù·]ŝ1“úÒûË̓ŠìUô÷üáŻŝ´—ċÇŭ?î{ž˙/ùÇ5_òOŝšÁéŭ˙l?縓÷g>?}ĠĜĞüÒ˙Éeù˙€Ż˙PRĉÙïĝÓÓħ˙ğjŠfŝ¤żÜ—óˆĴÊÁ”•e5VGB}ÎEż8żï.êİùB×#ĦYÓío…."YE:˙6|Ó6£&ü”Ғ´ù|\QŸó€?1iĈb·;~tÏÀ˙-eĠ<ıċŸÍ
    :ÜÉ7–d:G˜]EH²ş~VÒ1ìħÎJüċî?íá‡S—³ĉvÊ8áŭxP÷˜ïŝcç_@ìӓ5QÓ/êžGàv˙9ù?ŸGPìUí_óŽŜNÔüñùÏù}¤é¨Çêz½ĥ­¨ÎVM:Eı™Ĝô	ÄWöŠŽùÊ{oژğ;ħµ9ru€ò˜áˆûlùÑÏUŻĊô‘ò6~ï›ú
    ϊŸ Šğ~	ÎY˙ëCŝfÌmŻŭ@ÛçÙ6˙œ{KŭYğ“àÖĈĤox˙r¸ŜH˙”/ÊöĊÓ˙ê<ùµżÇs'ŝè˘˙ÇŭXŭÁ“ĉ½Év*ü˙œ³˙ևüÌ˙˜Û_ú·Ï²?àm˙8ö—ú²˙w'Á}Ĵ˙LŜñŝä>uÎáç]Šğv*ìU÷oüûß˙'?™ż
    ½˙şŽž?˙żĝĈĊ˙ûŒw˙ïñù˙û¨?b³ċ÷Ĝ]Šğv*ìUĜĞħVÖ5gvˆ;ħ nI'š
    M??ç0˙ç!âüÓó^IòçĞä?*Ü3I{ž µFœv1D	Xüjϸ+OŞ?àaìAìm9ĠêcZŒ£‘çŽĝ­.rîÚ<ÁżöÚŻËàa?şçüéwû‡O‰î|QžñNĊ_ĵŸó䎿ó“_ĝ%˙Ŭ÷~òbĊ]Šğ˙ûùŠğhŠìqWŸyÒ/¨ÙĦkžê%,ˆ’€:ŭĤA4÷Ċ!óŬÔϧÛûċÖpg‘j‘Yۖ”
    ŞĈ´,ŜÀbÍv}§%íÔଡ଼/VŞĵ•ĀşŞ×f'jM~X•@ëQq²ĠĈ@$··’“ĊK·4_Ё˜ >5=qKóŸÌ6×6zĉ§ix]îmdäċ‰cBI&„×Ĉ˜K›ëÈXìġ	ôĦ
    XWMçŠè<Ħ.X:ƒŠAfpì*Š÷]ç­iüğ…ù/ùTRßYžÑ-uÍlİ”i6-'`Ż(%˜]öĦ8ħg…,`‚Ée–fĥ·XEìñGòzkĵÒzlʤġµEkS‹6Ż^iW6ëjĊ
    žœ†{ËĞĠŒB…î¸	,Ġ“j÷Ċ’iĦ4+§‹ı‡İFÑEaz[su’+ZI¨Ä!êċ-Ñ-šG‰ˆĴvRŞ N)ĦYjB*;ì0ĦPÛÄħ=Üö—-BòD°ƒ!\U$òDñÔÓĤ*ñŻÎ˛H<­Ċqh—QŜK5œ³5½ĵhn!ġ	eJ3p¨ĝş×mQĉü÷ׯoRîò}#AÒž³ëZ`ŬÍğƒ:ÜÇs˜úœ9òN@u!€)Ŭ¸>(óN‰ĤÜj7ÂÒt:¤ÚĤ“ü ŽË ·i%…ŒSÈ@ÜsF:di,ıƒËzEĊ£a&™üK¨`qġ™-~°,ï-§5‰ıHWárĵx0^uPÚÈŻ!é°]kwZ2ëVŒ-Ċq\}VžşI#…!TPmV8nÓğĠ%ÖĉSĤ^CÊöînĊ¨ÄÑÀmáXŞĴWŸ/ßòbêŸ
    xî0-ĤmšïIĵŻùċċhç|üĴsn֒Cş£¤š"˜‚ÜŞñ)öŻ„"CĞé+ŝroÊO9ùKËߚĥŻċ—Ÿôû-{Éi¸ĥ7:,š‚ĞK§\|0L–öĈPĞ)‡ÔÚD …Aô˙żçż!ż3ġğ<ù·òëNóŻolix·0Cséġ£¨'P¤•ä6îxžħ½÷`żœ×?–ż—_ĥšßÊڏ›ÒŸ–"}:Ú¨ê×Q·†'ž‘Ċ˘A^%z
    6
    ß9Î>˙Î+êzG›µŸÌoΟ,跞lÔç”AĦhÑ[ŭJÑÜĴ­x–Ħ>§6&ħ(]¸żR‡çç˜4ûß7hÑ\H|ÁċÍ6âM3ZÒcŽTxc„%ò²‹ym™cı	
    €âĊ˜“ż+cĵòŜğqŬéÚ^İä{]Bî&ÖÖ(§Œ'ÖÄRŻ5T:Ë($^ESŠy$OĤu~vşO™­t(>µŞÎ÷A•£š7ÔpÍs¤…ËEġÈ8Ë
    HQ0¨_‹bÄĵ#͗öŝcòuî4ÓÍ>‹ħ”ğCo;Zı‡h\#d$Š
    (QŞoÏMsM’Ğ£ó
    ×q]úѨG‡L-Lsv*Î˙+òfŝ\˙àQ¤ÔlY§ö‡ŝ35?œŸîŸÙxŻ÷AŭgÂïÑĊ]Šżš˙;˙Êgĉïûm_˙ÔL™÷‡d˙‰á˙…ŭÈ~m׌dŝ´òĈ3`âğ}=˙8k˙­%ùq˙oû£ŜçŸ˙ÁKŝqÍWü“˙Ĥ°zc[ùßî$ŭÙϏßuv*Á?4żòY~cà/Ğ˙Ôı¸ö{ŝ4ôßìîƒÚŸâ™żİ/÷%üáçŬÎ/ߟùĊż1/™ż ż,ïC†’JDŞêtıÉAŞB§äs?ĝ!h'ÛÚ¨:|ò°	ŭò/û-¨ñû3ğ£ŝ—Óúŭœ[żv*“ù‡@Ò|ĠĦjŝ[×mûG×-%²Ôm£Ċ2•jÄV ÁÜo™Z-n]xgÂxg$˜üoŜÓ¨ÓQŽXòŒ…ä_‚żžßŝkü‘ó=͆£m=÷•o'ϚB~ĉê´İ!]’eކ›Š­V‡>Çö?Û/´:a8Àzñġ‰ïñ=Àîĝ7nönËÌc L	ôËĦ ÷–ÏÓôûŭZö×MÒì§ÔuéV+hÚY‘Í#f$ôgU›><92HF1I4ï$òt¸ñË$„b	'’ŭ˙œD˙œyıüŸòċߙĵ×§Ÿ|Ù
    %Ġ¨!Žbuµä6.ìËCJ…Qöj~U˙‚gĥÑíŬLtúcŝˆš?ϟ#?pGŜOZÑ쏳dzqıGïgŝĈ?Í÷ġ?Ñö6ysĜğv*ü˙œ³˙ևüÌ˙˜Û_ú·Ï²?àm˙8ö—ú²˙w'Á}Ĵ˙LŜñŝä?qĵ‘˙(_”?틧˙Ô4yò?kŽĉ˙†OŭÑ}ÇEŝ/úħûƒ'Í{’ìUĝc˙9QċO4_ŝŝd^XyoT½´žòĜuœòFàY[‚UĠ;ŠlsëÏĝöŽ—`ic<°‰•ƒ ×.–ĝoµ:LÓí<Ĉ0‘9üù÷üç?ú”uŻú@ı˙ŞyÚ+h˙Ġħ˙§ëy˙Èê?Ôċŝ”ŝ§‚<ç˙R޵˙H?ġOċmúĥ?ôñŭkùGúœżÒŸÔïGœ˙êQÖżéçŝİü­£˙VÇŝž?­#¨˙S—úSúŝóŸŭJ:×ŭ \˙Ġ<•´êĜ˙ÓÇġŻäuêr˙JR÷ÊŜgÓ­¤½Ô<ıŞXYOZîâÎh˘NLy; ¤€*zċ˜ğGM–BË	Hôüa=.h)B@w_hϽ˙òsù›˙Ğßû¨éÙċk˙Œl_ĝ˙¸ÈöŸ>˙Ÿü(˙şƒö+>_}…ĜĞħWbĊ]Šğ|˙9‹m˙9Ĵi’hž@Úïòâê şËyyä¸Ö.‹
    <70Y'qĈá‡÷CÀ{üò{9ƒ(Ë­ÉZ }> Ċ}<^sá£ô¸žÛöHpixO>
    ĉ|ˆç^Qğêz?(ßÈw‰Ŝ)|G$lVHÛOıĴ
     ÇPAÏ£GkèˆħŸ^?­òƒĦÔ
    Ž9?İF_'y¤ž*ë
    —šgħ¸UEQVfb”
    É98öĤ’DšŸéGġ èófŻqcyœ?y?çÉç&żK˙ğî*ŭäĊ]Šğv*˙˙ÑûùŠğh “°ĞÍ|ÏĞlÓ\]ŞÏn¨8*
    P2…%NßôĜŸ
    šbò/1]Y}bXR·³ú·îH'vFz¨HĠ
    uÛs‹0ó{½b+MGKIQá²´†÷VĠ$¨Tg’‹gb)Ġy”äi4—Kĉˆµ4ĵÓ¤”ÛÇa4
    Yi鐰ۉQÖ5;TW‘JÓo)y[[ĵĠoÎKX£Ó¸Ú	\™\Ğ($¸*Np$³Ë/.èŝI×.üÁĞġ/.[$³OĤ À˘pŽàÌÔeَÊÛրĤÉ|Ĥ˘/,y›Ì’N|ÉçmJkŭUĦk;HږöÎX#ìż4İÛn¨E!£ŠHâší"‘§!–Pü…wŭ£½<6Ċ/$ó”·7Ö0ŬiŜÚĜ}x‘xòd
    ŠÎTüh´äTx`Id^ÑĉXĤ²²áĤÎׄÍyxÍz8LRyIfHˆ,ġEâH¤Ôâë2"cké^É	iĠ–¤ċٗƒrè	èrH@Û]"ĈÒJĈ[q24nċVZúAˆvÜV‡Çċа?Íĥ/ä3[Y8iĤ·ŽÚÎÊŜY¤'€ÈĠ•äT•ċóĊ”yż:<×ĤÇy[JŜ
    Ï+Í>İ> Êڟ§ġĠJ€ÉÍIRX!+CJdO&ÇÎŜoĠâşı‚˙……ĦŠÍoô{ËÙç†ÁäŽ9b˜ƒp[íğl–Ï!óżċי|ïċM7Ë/˜4ä²şşĠ–ìÀKoR’[qüó#ùkÍ?–>}›TÒí,ìo|Ëù/ùİ}cġ‹-GAŒV]*î{RĊ‰HĜ1²´l˘>%OFş'bû³È_ó‘~Còïä'ċĴŝT½Ô|ĈĥvŜƒu:]ê1Íhž“Bn=(K*ğŜ>\5L3Ç#D÷&8䉌€ ô;†; yÈ~T¸’ïÊŝI|·u("[+Mµ³‘ƒu 	gk;k]­£>L€tœċ!ŝȗOÙúm9ĵXáŭ÷[šÇ-ĜĞħWbŻÁ/ùË?ŭhÌÏùµ˙¨|û#ŝßóiĞ/÷r|ÚÏĝÔÍïîC÷Éò…ùCŝĜşŭCGŸ#ö·ĝîoĝd˙ŬÜt_âĝ˙и2|×ı.Ċ]Šğv*ìUĜĞĉ/ùÌŻŭfßÌûs˙ŬbË=ŝżó‘éä§ŭ2›Ì{e˙9żÍ˙wÂ_óïüœŝf˙À*÷ŝê:v{ü˙ü>?î2Hë˙95˙‚_ŭßqWï&*ìUĜĞħW˙ÒûùŠğCŬ!rÊdP7Œuomößß|ßùƒĉ)ôĜµ
    náUM•#ӒCé£ÈèTË1nˆ„ì£zż,ƒÈĵ½İßyµ/äš9m-mZ+}="“ëlš{_pĴ~ÎŬ*1f”y„Â4yu	Ġċ[éc…mÊüeL”ݧ¸ˆÚğuĈ’­=Ìpj5?V°ş×$ŸY½‰Ìm$!Kˆƒ
    €q›mà0)I,ż2Œ6·QÑİ~$nbĵĉif’CQ_LŞŭžĠژħâMl?5ê–Úṳh×-/×n%PΒ³H8_˘Ä„Ħ
    Ĉ˘‡ñnúş×Í:\Mòž—%ÌZĥĴÜIeĦYšWĵ0C12ˆûM·NĜmUuk‹/èzŒ§ë)kC'ĠiL’Nü8ÑŝŠ×aÛosiaş‹XÚ\ÄofŭÌ7N÷Îê8Ž?³%Éj+—5.=·E,ŻOŽŬÏm$ŽXÉÔ"xUÙH5 óôțԚ×$‚ÜħÜ@cXĴçœÄÂHnx+İċŭÓĞĈ­S^›ûà*—z–ŞÍġ¸
    \'6’Öd`ÌÔ@ŞFÀò­v=öĈĠ€ŝiêR7‘5Ëğ
    @D²Égż€	Ħ·Z€~ö2ĉĵ’ ƒ÷5Ċ”y×§KĞ=:òâ}N&y&ĥ´´/ìċfˆĈï4&8#ˆIÁHŒĴĵ}—bÛOœ4Ï(yŽÑÓT’áì àÚQ°‹„0´£ˆ"`ž²Ïj‘œÜœE@ĉša]‘Ñ;}2)m Š%Ó5=4È
    ôé$ĉiîé‘A¨ŒTžG
    íğËşâéòIqĉ)%‚kŬSѤ~W+{<#²ÊMÊfŒ„#˜ôê8‹˳'Ö<Ñċˆ/4ï.ê×écÖ ’O-,m=ÒÛBŞİġ‹oMĝH¨GĈ9ŠÔ`œl§ˆò[ù}­h:Ÿ˜l|ı ë_ıĥĉżòċÌi`WOîĜFZ›ŠS“7†ä¤ÏüċÓż5î|‘ç/(ù'J.Q-ÒÏQ¸¸‚ÛŒ7ĞèŬúİ*şÖ(”pŠ
    :Ž˜ìÀ?;,ż=ż/˙ç4;OË˽Kó•ġĴ-ï˜|ĵŞĈ[ĥy#W’yáŠet,”m¨$˘Cky÷ĉÇüċ7ĉݘ,´ŭ2ÖòßËZ>§fnôähݳÉo{o+İUjKR
    ~ÎÛಃ'ËzN‘ĞyŸR‹MÒ˘šúŝá
    šó‚R´ZTšn:Ó7/Ş?*ż(µGÓ óf“ġ}wRU’ÒÂXOnĴ`w‘'GQÉĞQÓ­
    F-‘ÑÏ$ùFħz™aèèşĤž.^8ĜJÏhëÔè}DVhä!jµ¨;œ%*óµúézçš/,ín.]
    Yċħ·v·†k:z´,“0RÄ*KRƒÀoĞÈWz–5ŬWÌş…İ£ùĥÂ=Oê÷g…ċĵÑEKˆĉ
    8Ӂޚò]ëÄ
    r/‰<ä-PާŞÌ žœÓ‹SĊ]гżÊßü™ż—?ĝiġiŭĦ˙ŒÍOü''û‚çö_ĝŜëÇŭG™ğôkħWbŻĉżÎ˙ò™ùğŝÛW˙ġ&}áÙ?âxáp˙r›uß?­/ĵħŒĜ8Ċ_OÎ˙ëI~\Ûŝè÷ıç˙R˙œsU˙$˙éĴŸĜßĝÖŝwû‰?vs÷Ŭ]аOÍ/ü–_˜ßĝê˙ġ.n=ž˙=7ü;û°àö§ĝĤoêKŭÉ8y÷Có‹êoùŸ?"ŝxùvİŭ+Îhŝ]Ô*~weZÓ~°‘­{9çŸPìoċ.ÄÊb.xx=Ñú˙ĜxSìvżò£O§' ü~ŸöTŭÑϐŸsv*ìUĜĞħWbĊ]Šğ~	ÎY˙ëCŝfÌmŻŭ@ÛçÙ6˙œ{KŭYğ“àÖĈĤox˙r¸ŜH˙”/ÊöĊÓ˙ê<ùµżÇs'ŝè˘˙ÇŭXŭÁ“ĉ½Év*ìUĜĞħWbĊ_1Îeë6ŝc˙۟ŝëYè-˙œK˙%?é”ŜcÛ/ĝÉÍŝoû¸˙Ÿ{˙äçó7ŝWż÷QÓ³Ĝ?à×˙Ĝżáñ˙q‘áà}ŝ??ĝQ˙uìV|ûħWÎżó–úÏ™Ÿók˙QÖùÜÀÛŝr/ġŝâO;ígüeĉ÷÷Açó…˙óȃÉzíçĞç/!ÁòµdĵÓÁo=NìÑí‡Ĝf5|Ŝ˙ÁSÙ/äwĉĈ°g$íÊ99Ê>B_TÎhşïc;oóşo!ŭĉ1_֏Cä~Ğíò§³v*ìUĜĞħV	ù˙’Ëó˙}_ŝ Ídzßñ§Ĥ˙‡c˙vÔ˙ÍŭIı/ç>è~q~òϒ:˙ÎMà—˙wÜUûɊğv*ìU˙ÓûùŠğ@j3­­Ĵ×9$HX­BփN|5ù§çyoï,lôŭ:)§ĵ¸sg£H²J)+µUHäpŸE¸ŸÈÚġÀµ--ĉ6úƒ4Kdİ’)6%xNëZaĥ#ıï˙ĤĴċ
    .ŸĥĴĴ½eŠD‰™şFTƒ@£ċŠPy$\Ċm8ü½9"dġbRÊOĤàħ'‘wÛÂŻŸż35™!ò†ğjş77Üìâ½]1"Š8^[…‘Ì@1‘–ğq@Ô$òfo9~gùb(ĴuÛŬ=tZûë6ZUğYŬĜ[•‚úg½²ĵ_V’`gƒğ0ïR)y>Hü›òϙ?>?ç |ğ£è"YËŞ&İġ†ĥĜY,·‰ÊEQUı³qŜµĊ¤H“}gŝoÙèGóf§jïen5mfÎâH'´2jÈeĥ’ĈÁSk·$SĥßkŜHeGÔ<ï¨y£ÍzŸœtm+KÑ´ıš/!k1I\OħK˘ÓĊ)
    ÍxóݍİħÁKOƒ˙ç 5ËëoÎĝµ][½?TŠÊÄi—<£µ¸S$z1Äħ’£‰hGZÖ¸yµLԟj~iŝ|yÛócòy|Ÿċ"ÊS^´dóešyƒNIì`c‰-e[ĞĞy£bU½(;7l'ç̟‘_œĈI?"êş“LÀtë~žEĴÒVžßOlC_	ĉú>?È-gXòÌ7vÒġO$_,’ˆĉ×4ğÛ ż\kmH5ĵŒK„pĈŒk‹h÷żÈŻÈ//C£Ü4OmİŜú·si^d·ûBš1laž&qA=­2iSû/ȚğZ§Ó>Dò-´vŜk–;Xt;·]rBşħBe{˜¤K¨¤cĊ£Ĵѧ>6Ż"’ġ/-èöŝ^ı~6pÛhĥöBÌúÄÜ5ŞÂé1°QŭÂÚÌŞŻÖ £Ô( ÷1%ĉߛ~[šß[Ñuäĵ’×Q‚÷I×­Ħ+uÁ¤ZË$2Cr˘H§ÂÀŠAèĈö~IyÒ÷CÔġ™RÊYMÜ_W·
    J²/à…GmÈ]éÓİ<+Qž[›Ë‰§s$Žä³÷ĊŠv*Î˙+òfŝ\˙àQ¤ÔlY§ö‡ŝ35?œŸîŸÙxŻ÷AŭgÂïÑĊ]Šżš˙;˙Êgĉïûm_˙ÔL™÷‡d˙‰á˙…ŭÈ~m׌dŝ´òĈ3`âğ}=˙8k˙­%ùq˙oû£ŜçŸ˙ÁKŝqÍWü“˙Ĥ°zc[ùßî$ŭÙϏßuv*Á?4żòY~cà/Ğ˙Ôı¸ö{ŝ4ôßìîƒÚŸâ™żİ/÷%üáçŬÎ*°O5´ÜÛÊ\[şÉÈJ²:Ğ)‚¨9ÀN&2Ä&2166!ŭŝFŝeÛ~m~XùcÎI"6£sn-|Ċ˘-JÜı^#ì†oGò2çÄŜ×vğ´òéHôƒp=ĝċĵ}ô6?Òú°ûLvŽŽş‘RòçúǑ[ÎiÛ;v*ìUĜĞħWbĊ_‚_ó–ú˙™Ÿók˙P6ùöGü
    żçÒ˙V_îäĝ/µŸñİ›Ŝ?܇î7’?ċò‡ŭħt˙ú†>GíoñÜßÉ˙ş/¸èżĊñ˙V?pdùŻr]Šğv*ìUĜĞħWÌ_ó™_úÍż˜˙öç˙şĊ–züç#Ò˙ÉOúe7˜öËŝ2s›ŝî/„żçŜ˙ù9üÍ˙€UïŭÔtìöĝ5˙Ĉ6/ĝ|Üdx_ĝÏŝŬAûŸ/ÂìUóŻüċŸŝ³ÇĉgüÁZ˙Ôuw6˙œ‡Kŭi¸“ÎûY˙y½ŭ~(ŝX~b뿕^wüíċ÷˙KÒf˙I³bDwVÏÏo%?fE¨ŻcFŸWûAĜx;kE“I›”ĈÇĴd>™0~|ıĊ{/´rv~˘9ñóNñÔíAGóž…ù…ċ=Î^[ıúΑŻ[-Ċħ4}™"
    ÑpQ‡b|UÚŭ•Ÿ²ġy4ıĊO£çÜG”†ÈżAhu¸ġ˜c›¸È_ì>c‘ey­rŠğv*Á?4żòY~cà/Ğ˙Ôı¸ö{ŝ4ôßìîƒÚŸâ™żİ/÷%üáçŬÎ/ŜOùòG_ùÉŻü˙îûŠży1WbĊ]Šż˙ÔûùŠğHµâ$ħ¸·ŬŒħ•Ú-°cµqH|ċ'’4[]mµËž2Ĥ—X&#áBì]ŸÓŻ-Pħ§añ0Ċ“ÍŻu›‡ıŽE²œ^K=ävp'îĥZğ1;Éqê*mZoÓĤ,™-Ĥ‹-ġċ•Ġ=i,l£şż‰8IġšAD jˆŠ°½_˂ûOħĥ”;ÖsÀÈàÑÛÔ`Áˆ ’Ô<şi/
    Ġ˙/mġ’üé΋ˆ³G
    şÇZF$,Ş@˘ÑŞkĜàR.òÄ:<šöŠš”Mù.]FÖ×Zż[…‰Y[uFHùH‘׈$¸Û|T½żÎ?’^XÔ˜5ż%^ÉcĉK‹dŠÊŝ[Ĉ‚ÊŜ"A"U-!‘h(ß	Ç/Ô.|ŭä‹íeĵé˘ÏĴhĜA5ħĈҝ@‘V„XžĜ²ĥmùQĉż.k^d¸›JÖ&ĥyĴ43Dµ
    ?4Mèêżj†ğôĊNáùçùM¨ë‰óה­Äz½Ş†ĵĥ„ŽSúD‘-I§¨Çj·\XËzgĉµêkĴĞŜI¤Üĵ°|mĥÌߊꃋ­J²ġè@­C+ozÎz„˘;œö͞­i%ÈÏûęWíĠ:ÛâÉċߜŜhÖ ü§Öá#6F%²m?MħŒEtY.  ĥş‘!wU˜{o6Qż
    ˙5?0ĵĊ¤_~cy/Mó”ÚĤĉ]bZĉ;Š‹c1i糸–%‰epò!1òJŒXÎUoĥıów›‹ä]9.uhVîit/.[­y]Ü Y$Ev¨$ïE§lX;?vç?ç´ßÉo!Ŭë:œ·>yó5œ&óP,·p	ipħUuJ—ħèK`;Ĉ˙󑿙ż—vš_ĤïµŞkžUa‘ħhï#·şŠ0ˆ?­$¨nĦv#í
    b|™’7ùWÏ˙šœgó’?*<¸×şĠ•Íĉ‡
    „°Yß­ÄVG%DâEr†:V$u5QÇvû3òsŝpÊúËK?ÎAùNòçÏşMëj>^šĉBÈ[zĈ-pijĵ‘M-BÈ@JñŞáĤ ŬwħmSŝqşÌÈ9~aêzjZϛ[_ÖĴ´ye>`²ĠrZ5Ĵò]íäf”ÀÑÁ ´nÔĦ‘ҏ”ż"?)n-t­
    óÊÚyÔĴĴ…™c¸²eş˙IŠŸ]8WGVRĴà€q8C*Ï˘?+ĵħoċ/!ynÛLŠïÊe·™ô9/|³ŞŜé‰yu§^4öR´vS‡Y‚FeŜ‡½[CÚbò£­îĉhµk]{[²?S“ZÔ­’;Ñe7¨²–ÔôczÛ¸êI2ƒ^C|}è;²2É4½{Yin}=.Qġ›ħLŒ’Cos1ƒV²ŠPĉĞ{qäœÖ˜Ô‘n÷zd“ZĵmĤj6ï#ê~¨ëÏk4Àş‡F•fY —’HİĜƒ\‰,7ó}W‰\Ü٘n`ż†UĠ5IӋ
    `…şìHŞî,'âÇçĉĞךn
    ÄÇhÁ_ċȗ'sÔï×ïÂÀomĜ“ÖğⅸĞħVwù[˙“7òç˙#ŝ£bÍ?´?ñ™İ˙„ä˙p\ŝË˙ŭx˙şèó>~v*ìUü×ùßŝS?7Ûj˙ŝ˘dÏĵ;'üOü.îCónğüc'ġ÷–1›ĜĞéïù_ŭi/ˏû|Ŭ÷<˙ŝ
    _óŽjżäŸŭ5ƒÓû˙ĜÎ˙q'îÎ|~ûĞħV	ù˙’Ëó˙}_ŝ Ídzßñ§Ĥ˙‡c˙vÔ˙ÍŭIı/ç>è~qv*ûƒŝp‡óš?!yê!k·B,ùŝH³šF¤vÚ²Ž01İ Ŭ7‹z}Ï$˙‚ײǴ´#Y„^]87\ċĝżÒ}Cˋİ{b;di5'Oú2òòŸOôܽôŭ—Ï–Ÿdv*ìUĜĞħWbĊ]Šżżç,˙ġĦ˙3?ĉ6×ŝ móìĝÎ=ŝĴżŬÉ_k?S7ĵıÜo$Êċûbé˙ġ
    |Úßıżá“˙t_qÑ‹ŝĴ~àÉó^äğv*ìUĜĞħWbݘżç2żġ›1˙íÏ˙u‹,ôĝ˙ÎG˙’ŸôÊo1í—üdĉ˙7ŭÜ_	Ͻ˙òsù›˙Ğßû¨éÙìk˙Œl_ĝ˙¸Èż>˙Ÿü(˙şƒö+>_}…ĜĞç_ùË?ŭgÌÏù‚µ˙¨ë|î?àm˙9—úÒ˙q'ö³ŝ2ó{‡û üϲ}Ğ˙8w˙9?+üÌŜIóU÷ä/6Nĵ.fjGĤj
    DKŠ“EŽPKáE}‚µ|§ŝ
    Ċ,iż7Ĥê1CžHs1ó”yǢğ_c½ ü†o)ŭÔÏúYwû#=öˆ@ ÔÁò³ìîÀĊ]аOÍ/ü–_˜ßĝê˙ġ.n=ž˙=7ü;û°àö§ĝĤoêKŭÉ8y÷Có‹÷“ŝ|‘×ŝrk˙żûâŻŜLUĜĞħWbŻ˙ĠûùŠğcúĵ2ËĴJĊÜQXPq÷Ŝ•Ċ!ĉŝfĥ·Ò´
    GPşı·ĥ·ĥW‘îÜEHßĥÌġ­rN)·Ë>LšßUĠuRÎSĉìċ6ú3܉ĴÒË*xĦ“Œ³0çÍıúkA_‹Ĥ,ž}ĴŭfHô›‹-fŸë6“0ŽÙŻ˘5ŞPv&¤oŠi<}(C<–÷QLoï£ÛiËŝ›Ċız·J6ĠRÔì1Eħ½rÒĉîd²Òt!uh·"+ġ¸
    šM‘U˘ú×R5]™ˆ³ZPmŠ‚ò­zÊ
    Nŝ{3çż0,„=Ġ§—ìŝĞĤÀRB˘?Òs‰Y]	`‘’TR£îÎn|ߤèzö•Ŝ³c¤É§XÍ%µÍÌÒL—IFİÄÊ=9“Rġ~'d”ùΰ~`hW‘kFċ²ğ¸ħó	PczN/N
    ʤ„Ó“1={âĈİç_”–Ö>mÓĤÒġyô
    Zic›FÓR‰–`ċÛÑJ)âµĦ;Rö_/C¨ÚBúš<ĊgĴÍtÌ4—‚/FgŠ›”`HñĤ÷~bŝHù{ÌQOycd,µ,VĉÑUZ r%€‘4;oı0¨7ÍòUž‹{ ùƒRòĤİ35µ”"yce!¸ŽD~ÔjuÀÈ<żŝr	o5ŸÊÌŭ2ĈRšŸĠm˘Ñ~*ˆ'{˜RÛ?ÂU¤O´p2ˆ²üŠüŽ˙œ|ó·ç˜ïôK+S˘ĜybUÌړÂĊ~A$ĥ…Hĝî8r%kSĥJ‘—ë§ċŸüâßċ×äXùîïTŭkĦÛ]7^êÖñܽÌ7J"Š_­-DKĊUhàö ’:ìÎû“OùȽFiN™iqùeùQċawèŜ[Ik
    ÊkKke¸b˘8ċ‰ßañtǒAêñŬŝp?ò²
    búûXÖbósjh¨ó1eW	8oF1èrq¨f*˙eV€#v4.ßS³˙8˙ù%ĦGuuh:NŸpcŠUı6öŝ´ÜšIĤ†%šµZ}‚9iPòSo–|˙˙?Ñĵİv|µäŬ9|ù§VwğÖ ğKŞÈ€Œ­¤1ĞÈ\€%€n´bMB(1ŬCÌ^küßòdZ×ĉ“ŻiZµŝžéz5Ŝ蚄ĥÒÎ8 ÖfâU,µòz%żq'§!FijĥCyWĵÙĉ+ÊMgZ‹Tólâî//[yŜŻ-y’ÂĝċƒE×-¤a
    =T½ŭ´í³*LĦhµ{‰¨kWKóĥiss¨yV²¸×|­ó_5M*e3YÜI ,œ]PHŞÎ¤2ĵ€×
    A¨<żézĉƒs§¤Áċ²žÚÚîÖG0ϲ†P­;2´݉ݝ‹kġc>e³I
    ×é=KĵƒM½†HÄ2]^D²ÏcqвşÄq…Ehv '£Êu0jVĉ;¤Š+Ż.i‰=Γ£md´żÓFÄQšÙĉÓ’œ=ˆâêàŻrSL/ÎsÑu˛mB?R÷pÍ5#™Ìlœħ'0µ%‚Šñ?G.$°ĈÌ[–—ÍzÂ3´‹˘HÍȐ(=ë‹QyóġÛ-Ċ]гżÊßü™ż—?ĝiġiŭĦ˙ŒÍOü''û‚çö_ĝŜëÇŭG™ğôkħWbŻĉżÎ˙ò™ùğŝÛW˙ġ&}áÙ?âxáp˙r›uß?­/ĵħŒĜ8Ċ_OÎ˙ëI~\Ûŝè÷ıç˙R˙œsU˙$˙éĴŸĜßĝÖŝwû‰?vs÷Ŭ]аOÍ/ü–_˜ßĝê˙ġ.n=ž˙=7ü;û°àö§ĝĤoêKŭÉ8y÷Có‹ħVĠ™X2’ĴĤŞbèAÀEĞö³ŝq'ŝr2ßó_ːù;ÍŞż˜[ĥgê–qQVéOC"Ô	GZücbBü˙ŻaĜşƒŞÓÇü!˙•r?ÁŭSÎ'üŜ›ûW²^юĊàċ?€˙L?ïŝwÏŬìĴòײv*ìUĜŞEĉ3h~M5_3ù“Q‹JÑ4hâŝöc@޽Y˜ÑUFìÄ	9™ÙúúüÓà‰žIš~6™<€Ü´jµ8ôĜ—)áŒE“ĝû;ߙžP˙œÔ%üŜĠn|Ñf~Të²ÇeĜŞİıÒcŠÇxĊwÉ˔ëSM¸‚ï½§˙ìc²!<ŻYe#ü9	ç*ċŝ›ê¸ùžÛıtŽQX%°aŬ/;ŝ!òċżÔ{+Û=FÎ×PÓ‰'³ĵÖHŠEŽŽ¤†VAß>zˊxĤa0c(š ìAÁ}FŒâ%`îêü˙œ³˙ևüÌ˙˜Û_ú·Ïħ?àm˙8ö—ú²˙w'ÁŭĴ˙LŜñŝä?qĵ‘˙(_”?틧˙Ô4yò?kŽĉ˙†OŭÑ}ÇEŝ/úħûƒ'Í{’ìUĜĞħWbĊ]Šb˙œÊ˙ÖmüÇ˙·?ŭÖ,³?à[˙9—ŝJÓ)ĵÇĥ_ñ“›üß÷q|%˙>÷˙ÉÏĉoüŻg°ÁŻŝ1ħŝ#Â˙Àûü~£ŝêĜĴù}öbŻç,˙ġž?3?ĉ
    ×ŝ£­ó¸˙·üä:_ëKŭĞwÚÏĝËÍîîƒK>È|ĜĞġ3ŝp÷ŝr–ğ}/òóRôïákä2\ż:}˜ì.ŽÎ½"c³
    'ÚÏçŸĝ'ÀòP”ûOCIß,C×$GwYއĠÊĝ}KĜ˙jD„tš“ż(Hġŝ‰óŝo.uJóÁ_Jv*ìU‚~iä²üĈ˙À_W˙¨)sqì÷üiéżáĜ˙Ŭ‡µ?Ċ3R_îKùÏşœ_ĵŸó䎿ó“_ĝ%˙Ŭ÷~òbĊ]Šğ˙ÖûùŠğZUXnù⯗?>Ż|Îú|ÚFŠ…ŸTšxċQê0·&“2)TŠ×żqy'•n­´­ZË@°‚KİtûWf	?ZıpòˆmÈĦˆ—#öNL‹ËÚ³œu[ëòŝç‹Cn–ë7ÔÍç	$á$ôG”„ê7_÷P•¨‚vfڎ£ak-Ş0)/@Ö5˟-ù[Còï,ìüÁċÍÖĥ‰´kfqŞŠzßR–JzĦy¸¸\U*pĦĉŻùoŜLdüŞóĊž£nÉoqimc1n‹Íŭ)%Jš!˜…KħûTĊm i›úwšÄ‘™î"Œ´w×%$ÓĈ§ÑhYJ2•b*ánààäğ½G˞oóġĴwžfówċ¤ÚϚôğ—°²ıĥAËDȊIPÎ•ŒoáZÙéožġ{ò-WÈÚà’{F½ğığHí‘g`Iµäî)Ä)҇éÀ¤1k@ò·žRĉĉûFıÑġѐĊvôµĥE$+MÉxÛ˘òä­0„üĠüó·eĉËwóÓ,ïŸuİë–?2ËP‚Y‰8ž2FTÌF˜ózŸì|ùQ hHüĵò5Ó0Ô˘‰tžÌk
    $?é››İc’è`ó4mΛd]Ğ~gŝa\,ş§˙8÷YÔäÑoġ$ğÓg´‚Ŭž5‹P‘$œ–‚Dzñ#öNĊZ÷|­ù—ċïÏ_͝CóAÖ?$à´½6Ñn?(<ÑġÛ8./t ²I⺑£ş†^nLhèX|_	ǚmV>I˙œöżòn³ċk˙7ÚÚÏËcsċÍZM9/Ò­ö÷ê„˘ħ•ŝ%`Êw=j	@·‘Ú˙Î'Á˘Ŭéúĉ˙ç–mŻ,.&󅨳Üh#—ÑŠ39’oP†<@z’*ĵû½sÌ˙˜_óˆžLŠmËŝIo5yÚċl>Ğ£Ĥ•úV³mê­4éYC*%$ȨáÙù`ĉ’E×{Ôż<ĵáyŞiYÔ<Û'ċ/™ô‹Pü˘Ġ’IŸ@Ġ4ML™—HÖŻLŸX@M!úË3(âcıâPK§2Ì2i~kÑ5cóCòîù/<‚–úšĵŬˆ?ĈMşż‘ĞbeŽË_˜“ê‘SÔTġ‘Ĝ4Ċ‰=_U~_[ùşóË^Mó&İ}où£kó"yÛH’êHŻ´ğh‚ͤ&² jšmġ¸ZAg­GsmÏ÷(Ġd¨­›y_ÌŸu¨yBĈúïÌWĞawĞi:~ħĤÚŝ“Jž;q!—KŽ7µÖí`h=]=ädáÍáĊp”×W£ùŜQysʞaò1´žûNŠ;›-.âċSM½¸”†Tıv6“­i7Î QeäBhl_2kmµĠŻġͤ¸³š ½›C½ĥúžĦg=³=œ°ÜÚLDÜX2@*Û5YYIzİäĝ³ÏmĵҎħ
    ­Ċ.Lz…Äħ°Pénñ\4,§â!=Eü/Ju8µ’ĝÊúò{ëğ‹Ğ‰IgrÎìjM|N-hC*Ö*ìU’ù3Yµòïœ<§ĉĜċ–ËBÖl5¸ 
    Ò´V·	+„ÊĤ• W¸ÌĠÒËU£Í‚%’ˆW(/žÛ÷9:,|y%Ê2בúÍ˙Eü˜˙İgÎżô…§ŜG>n˙“)Û?ê¸?ÓOŝݳ˙'AüÌż(˙ĊğŝŠù1˙RϝéN˙ĵŽ?òe;gŭWúi˙Ġ5˙“ƒ ŝf_”âŬ˙Eü˜˙İgÎżô…§ŜGù2³ŝЃŭ4˙êš˙ÉÁ3/Ê?ñoÈß1jêŝ`×uket·ÔġĞğt”á&•¤PÀ€Ûœú[C‚X4ĝñ˜ck•€äzœƒ&YLr$Ÿ™I³)ĜĞĜ˙ 0´_ÊŻÍż)ù÷Ì6··š>ƒġ˙[iÉ—-ġĞ‹TôÖY!CG˜WWİÛ9lû7mvNm<œ4dHĤq™ş<˘zswÚû?]QŬĠ^ñ1êG{ô£ŝŠù1˙RϝéN˙ĵŽx?ü™NÙ˙UÁŝšġMôŻù8:ĉeùGŝ-ßôPÉú–|ë˙HZwŭäq˙“)Û?ê¸?ÓOŝİŻüœó2ü£˙Ĉĵç˙9ßùEĉ/'ù³Ëö^\ó„Wşî§ZK=‚IJŬ[ĵH\ Ä(,+@M;ÏìŻĝv—Y‡<òà1Ç8ÈÔ§uk÷c}ğÜmo·zĜ2cŒ2\˘@ħ ç?&séɝŠğM4]oWòĉĞch:•Ĉ‘Ĵi’‰Ĵ5+I)˘qµU”ƒĝŽÙĞÒaĠâ–Ñ„…‘`†Ü9ç‚bxɌ‡"9‡ëäwüç'•ĵÉki ~mÉ•|ȜbO2˘Ĥ^œSlç½wߒŭœùżÚïĝ괒–nÍ..|ċ#îŝxîŝ/#ÍġŽöxŒzżD˙ü'ßüÓö{Ÿziڞ›ĴYÁ¨é:…ĥİ§ÜŻ+këIRxd_’2ÊGÈçŽçÓäÁ3ħ1ĉ x;½ĉ<°É(Aê
    „nRÍ™˙Ÿ˙•ż”ĥ—
    ĉŸ2ÛÉĴD¤Áċ{[JVBúßğ³JU}óŞöĜÎÔíıËâ<œċéĈ?Î?Wş6|7jvŝ³˘|YŽ/ĉċòéï4Ÿ_ó‘ŝqüóԒ+ÁúÉş|ĤċKy qP'ı’‹ëKB@4
    £eQV-ô˙ħŜÂèŭœÇqŭĉyVB7ŝĴGÇí=O <{·½£ÏÚ³İzqŽQyï?`éÖüíğÎé˙œJ˙œĦ“òÚö×òïÏw…üİNFj³1'FžSâkŝŽíö‡D$¸ŭŞùüà|;Z]£ĝDGŞ#ü¨ïÀäˆz{žëÙ/j†COœŝ蝏óüIëŬϽŸó•ÒĊ?üäĉDH³C5Ŭ›2ÊêÖĊYXlA‚3¨˙ÌL}ŸÒ‚(/÷rtŜĠ{O1Ĵığ<ğ˙9ñù=¤yBÒn|·ç¸Ó4ë[K‡ŠÏO(^–6*N ¤‚Wjž?˙€ßkçÔdɸ*R‘)ŬOú›Ŭéŭ½Ċd°ċƒúÉÏŭ#òcŝŸ:˙ҝ˙yĊ˙“)Û?ê¸?ÓOŝİ·ÉÁ3/Ê?ñn˙˘„~LÔ³ç_úBÓżï#ü™NÙ˙UÁŝšġMäàè?™—ċĝ·ÑB?&?êYóŻŭ!iß÷‘ÇŝL§l˙Şà˙M?úĤżòptÌËòü[żèĦ“ġ,ù×ŝ´ïûÈ˙&SĥĠpĤŸŭS_ù8:ĉeùGŝ-ßôPÉú–|ë˙HZwŭäq˙“)Û?ê¸?ÓOŝİŻüœó2ü£˙ïú(GäÇŭK>u˙¤-;ŝò8˙ɔíŸġ\é§˙T×ŝNƒù™~Q˙‹wŭ#òcŝŸ:˙ҝ˙yäÊvÏúôÓ˙Şk˙'AüÌż(˙ĊĵsóûŝsòËóWò“ÍžBòö…ĉ{=c^ú‡Ôîu[(í—ê·ö÷Oê4W³8ŞB@˘éoGħŸ/í>Ċíl:Ìù0˜câħLËĠ	@UÂ#œ‡^N›·ŭħÒv†‡&Ÿf%*Ğ­¤%ÒGğıó_üâ×ç–?$?055ùÇTÔ4íCË×L0é1C,Âiní'VežxµĤŜçüŭ—ÔûEÙÓiÊ9Də PŒü1‘ğéßğÍû-Û8{+U,ıDˆ01ôÑ6LOR;Ÿ{˙ÑB?&?êYóŻŭ!iß÷‘Ï˙“)Û?ê¸?ÓOŝݽïüœó2ü£˙ïú(GäÇŭK>u˙¤-;ŝò8˙ɔíŸġ\é§˙T×ŝNƒù™~Q˙‹yGç‡üĉwċwĉ_ċ_œ<Ħh>i´ĠĵÁoVwöĥQÛĞGsÇÔhŻp8Ħ_+íNÈí\:ĵÙ0˜c$‘LËx‘µÂ#Żxu=ı힏]˘Éƒr	H
    ħĉIîçĉ^{ëĉnĊ[‚4#pF*ûÛò_ŝsŸÍJ°µòçĉN›?ž4kEÙë‘JU†5!—àı”Ù[ĊÛĤ‹iĦyÓQó–ĉıċH<ÉċħkĦ^Çۘ-EġU¨•#™Hì˜)•>Mó_š4nÚóò—Q˙œ°Ô´ż7yRüÏĉ
    }íc·7	mÖ%VU¨Ä5ÇÄ
    XÉyĵkóóË^i—@׿ç.ïĵ¤y^{{Û8-dħóO3%UŒ0yeˆîä¨äĞJĦ!Ż5ò—ù-ġ‹Ÿ#ëڟĉż˜àŠ]sÊZ_štÙ­dĠdÒ]M%ۛZòÓëšY‘%!ˆŻŠ.O.èŝmšÏò‹Iı³:7œá>j˙œVóôÊĥ“‹Ş˜äòĊġÀôÀ3M[1%B^Ĉ“­#Ù”lÂÂX9?+üµ` üíü‰žêêçCż‚HeóŒ´]Ҁ˙s¨Ĝ°[Иwqš~šrĈÙq&^NÖċò·›ô_,K­ÚÇċ¤ÓgÖ˙*ż4͵)4}"gxŻtbʒCCĉ$[Û2ĦġáKĈà”Èoĝü~>]ÏÈVöŸ•kçCFħ×<£˘iÑÛj˜YÓ/ßù6‹K§ê&˘ŽLÚuת²išˆĉÔŻ=D’'c{,MìÏüë•ĵыÍK^ĥ×ìĵápšÁŽ9SAÒġ
    Jì*Ĝy£Ê׳ĈË:† êmŻ!–ĥyÛÜú>­ğ‘Hk{mߘë£iż§55KĠş‹FşóÄúqP–ŝ7igÒg““^EɄÊË;Î	#â„ìçÁ~eÔġ)Ĝß[ëöPù£CÒ5™düżxoeš$ħ’áÚY<ıĴo-ŻĤ²_O”@%·B9‚ĝóTžûS½ô¤ğ"ĉú{…eHî=C4(XtZ—BTûtÂÔKÇħbìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħTóEó?™|·#Kċß0êzAytëı­X‘“İ9‰Ğìŭ6ĴV|pÈ?/ĵü:ĴĜ
    œ£î$}̗PüÚüĠĠ k]Wó3ÍzĞT5µŜ³}4f½jŻ1‡ÙÊÁ.,z\1=û““µµıO6B<ç#ú^~ÌÌĊ˜–f5f;’ORNn@§^Öv*ìURIe™ƒÍ#JáQ9,BĈĦj{*€ì6ÈĈ";_·sö¤’yİäìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbŻŜOùòG_ùÉŻü˙îûŠży1WbĊ]Šż˙ûùЍÌHPÖµùbİ]ÍğÜFŞĴËñtä
    GΔ&ñU
    WB‹SħkĈ(Y”Èâ…ϐH;ŠTlwâ^eŻhš~¤ÜÛĊnİvċ…³ò$´ÒŠópIiJ(­d-Sژ¤nĝ“ÎşĞmĞ&­pךܑܙu&*׏s0­½µ²F$%X*š-NÛK0Ä$Ö\jÚÌVšž­ĦY$7:,ašÒŜIfĉ‰wÔÜLÎhbiWbGlïÉz•ß•lµo͟>NÚµĉĠM#Ê:ŞŻ×&HdM²‘ĈŜt)€x‚i…Šws­Í¨hšVĉ	Ċċë‰ü£Ù’°ÌR˜c³…‹7ïV_ÜĞ·Ädĉû÷YS^`òn­ë„jzzéZ>›aş¤„'úxĥuia,JÚÛHĊ2•â ³;([`šŽ˜!_Ì9ˆġIn’÷Küżòĝ]£ĥŻ;˂IT‰Y™¤oÚo…hÂP¨|·<çʗ7A‘üĠvâÍ}8M´2ˆı)Üî܇J
    wĊ&CÒġ-CW›UOŽê7ŽìÂfVx„ñDnhâ<èBŻËǝ½sTŸÌ×ïc&Ш]Ċ =Ĵ­vlCc3)PĈR"²šŻZ
    àfò#˘hşfuİ\qĠ†ìöìüK
    Qƒ…BêÁ—ŻN˜ħ _ÎoÊ]Í”žjÓ­8èzL°˘ÍñË{ġ¸n"hŠĈRž>|YD~Où—ò³GÑ<ʚEµ¤Ğky£EGµİyb/Ż=+XŜ($uáĤyІŞH\T…gÂ9"t˜u-÷Póö­q}äUż¸_ùVÀK§È·HĦ½°Œ˜œqPëÄĝ†Ó[³ŸÍ%ëŝbò›Ĵ˘Zy§ËÚĤ.İ{ç8´r`y^d£]*„ŭôħ˘Ž$^ıEƒÀĊŽ‚Ÿœŝ]ÓZìÚèŜtÒôKKËÇAĠç×t‹t’äŞĊAÔŜÉû?µÔÊûšŽÒ÷½+ÌŜ]ón—ço'~`ylM˘yŽNO1Y5œĤ(ìġM>IWW†2AQÓ/%ROŒż
    ƒñ̋}7sùsaùùo-íĥ§Ikĉ}zËSĴ4ĉXÛJóŽ­f²²şFx-í<Ëo	
    Ħx[ê0ĴKECŠ(.üÂĵ³²şò_üä˙—ê`żƒMoÍËxîCgĉÍ.hÒ/04NZ-R%ôîVU"·H[ûìIMR—Ÿ|żċßñŝ•ù/Mŭä
    fúçFµ´Ó$ċ…Ğ^é˨XZ[Èô2Xêš|‘ÜZ´‚żŜ@ÊĈ³AçLßòcËşĥğ ùOEƒUy›DKż(yCT½ô´ÈXŝZĠ"•À¸Ñ54d(ÛÎÜà’3‰!ú֙ä0ê÷ŝZşÔçġ
    Cü5ùù]4Â˙UòN§wQ´REqéËqmy!!•ĝ;˜Fauk”÷>Ş_-ëvĥ·Ú|ÚŜ—w¨XĜèöúœ5{̞Zaëh˙Fï=œÉOFáĞqa oŒ"|ĥAïx†·˙8Éù“ù}ĉ½+È0èéMNù“ùaĉKĞÖ6WтçĠŠÒOĴ,&r-µß*7	ı£‚ËvIġ/ùô7üäċôÍvžvü¸nlÔġUA˘ähô4¨ê+µvĊ­˙Dj˙œž;˙Ž˙+żî)­Ŝ;ŝˆĠ˙9=˙SßċwŭĊ5ŻûÂb˙˘5ÎOÔ÷ù]˙qMkŝ˜Ğżè_ó“ßġ=ŝWÜSZ˙ĵ&*ïú#Wüä÷ŭO•ß÷Öżï	ŠğŝˆĠ˙9=˙SßċwŭĊ5ŻûÂb˙˘5ÎOÔ÷ù]˙qMkŝ˜Ğżè_ó“ßġ=ŝWÜSZ˙ĵ&*ïú#Wüä÷ŭO•ß÷Öżï	ŠğŝˆĠ˙9=˙SßċwŭĊ5ŻûÂb˙˘5ÎOÔ÷ù]˙qMkŝ˜Ğżè_ó“ßġ=ŝWÜSZ˙ĵ&*ïú#Wüä÷ŭO•ß÷Öżï	ŠğŝˆĠ˙9=˙SßċwŭĊ5ŻûÂb˙˘5ÎOÔ÷ù]˙qMkŝ˜Ğżè_ó“ßġ=ŝWÜSZ˙ĵ&*ïú#Wüä÷ŭO•ß÷Öżï	ŠğŝˆĠ˙9=˙SßċwŭĊ5ŻûÂb˙˘5ÎOÔ÷ù]˙qMkŝ˜Ğżè_ó“ßġ=ŝWÜSZ˙ĵ&*ïú#Wüä÷ŭO•ß÷Öżï	ŠğŝˆĠ˙9=˙SßċwŭĊ5ŻûÂb˙˘5ÎOÔ÷ù]˙qMkŝ˜Ğżè_ó“ßġ=ŝWÜSZ˙ĵ&*ïú#Wüä÷ŭO•ß÷Öżï	ŠğŝˆĠ˙9=˙SßċwŭĊ5ŻûÂb˙˘5ÎOÔ÷ù]˙qMkŝ˜Ğżè_ó“ßġ=ŝWÜSZ˙ĵ&*ïú#Wüä÷ŭO•ß÷Öżï	ŠğŝˆĠ˙9=˙SßċwŭĊ5ŻûÂb˙˘5ÎOÔ÷ù]˙qMkŝ˜Ğżè_ó“ßġ=ŝWÜSZ˙ĵ&*ïú#Wüä÷ŭO•ß÷Öżï	ŠğŝˆĠ˙9=˙SßċwŭĊ5ŻûÂb˙˘5ÎOÔ÷ù]˙qMkŝ˜Ğżè_ó“ßġ=ŝWÜSZ˙ĵ&*ïú#Wüä÷ŭO•ß÷Öżï	ŠğŝˆĠ˙9=˙SßċwŭĊ5ŻûÂb˙˘5ÎOÔ÷ù]˙qMkŝ˜Ğżè_ó“ßġ=ŝWÜSZ˙ĵ&*ïú#Wüä÷ŭO•ß÷Öżï	ŠğŝˆĠ˙9=˙SßċwŭĊ5ŻûÂb˙˘5ÎOÔ÷ù]˙qMkŝ˜Ğżè_ó“ßġ=ŝWÜSZ˙ĵ&*ïú#Wüä÷ŭO•ß÷Öżï	ŠğŝˆĠ˙9=˙SßċwŭĊ5ŻûÂb˙˘5ÎOÔ÷ù]˙qMkŝ˜Ğżè_ó“ßġ=ŝWÜSZ˙ĵ&*ûûŝ}Á˙8ĠçŻùĊo?˙ÎC~]~ajÚ³­êŝ_ò˜íĵğ=ĠĊŞÚŬ]y˘ÍŜîÖÑāìܐŠĝ‰¨
    żWñWbĊ]Šż˙ÑûùŠ­eċMúvĊVQ[•7?ÏèĊU…žƒa:Ĉš³˘ŠŞÄÏ҅:íÜ
    mŠAyœüğġŻè¸ZXD$_ĴۓÌŻ)£P
    ÄĴ6˘PbF,ƒçùVštb‡XO–|İ·×útıúÍ×–VQ58İ••@­OH²|ûŻOĉ?ñ4ŝf×­"´}=#ıÓôÓÌÙÁoe"­µŒzĈŽPûžUĈô(]Ĝi‘IĉŭBĵ–·ÖÖ³¸†m[]Š'ĵ‡Oä…Ù„2LòHà •$`I,Ĉ
    b=OM“ZÖ5‰˘Ôĵée=çĉ
    BĈ3oglÛÙ[qĉc,.#Š Ŭ]Ŭş.yÎżm6Ħ
    ĴÉf˙5M,‹;kmíl4›o†ŜÊ[íz
    X’X|FÍU¤f§ċıtĞ˙+Ig˘ÜOq¤Ûi§ÁréAoŝ‘t²K+İwoiÔ|-2?˟ ‹1jLM'/.j\ÌÒ\E)2G2I´q‘ÂmêTl÷4òÚŻú"IiER
    ˆi+·˘˙ÓŻ6½ü½ŸP›Pît¸4&k#<öĉ Í8¸WĊüžüż´—Sżz´RyKYáċ›ġ^ö?Tĥy4ۖêë“Ê6êœu‹	Ĝb0
    ‘ħ¨7Ċ‚*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğx—?ġİ˙9?óU~ZŬsÏxĞßñWbĊ]Šż˙ÒûùŠğv*ÑéŠrG$Îv@"#N‡ÄUëÚH¸²™!NRÊ˘8`Ç`v)„j^Nĥ‡BÓô}ÚÚ+“{¨Ì6{‹=C_ÙZž#ĥĜ¤ˆùÓÈÚFĦ§Ü‰˘X­ÔVâ^U·ŒĠ!Š&4iĤ‘•cÛâ;)Ċ/–<Ñ]ŭHÓ^Ù-<Ħċ7şX´¤/";E
    Í)‘B—ġ¸/]öĤ­2îd¸òï’l/Ĵíí§×çT½E,³\ğÈ"³·”ì#´ÒË?²š€1M²¨ħĠ$’XíáúĵҝLVRĴq,L€ŻMj+½AĊ•#`o­Ĉš¤KġÙĥFHÒĉrîÏê`¤q PTքŻĥ(z˙—M>Ú	bo­ÄI1İ<âi€oDFjKn'bx²p ½½{uhŠı(%܎'aá÷ü1K†™ÊŽá*]WÖC
    r%TöÚ´>8ŠùßMá{˜^3:şÛB´£WÄh˘˘µÓŽoO/=l•f²i&7h Ğ˘ŻZÄڃjàĥv˙ʐßɤÜ]ۃ>•x·ÓĴuKicˆr‘€í‡`”E;bĵI”PYĜ@Ëv`‘mm7QBÜá†ĤàŞT¨Üğû⯚˙5ukŭCJó‹ċۋ}/Ì2&‡İŬ|6ħ³7§ž›‡„Ĵsp+­!èÁ·— ÈçÏçĈ¨ZÜèWޏğòì÷—zĴV‘Dtí7]žÖ9mŠÈ¤á>ĀÓ?
    Œ	ĉÇ´í/Ìħy3Tô?çu³×mĵi"Îĉ&[
    >k&†jğ7VÒ°eOMˆ;l
    İú›ÌZ}ĉ]3ÎşlR4w>_ò·šV(ċ2K[Zé(/m]–”–ïAşÔĴfT­^ÄPA5²**ÇcùBVħóbùÏZ˙œBó„——ï_y£òçÍ÷2Í’ÈjÓĈħ\!ƒ•D–Í<ʂXŠ˳Kù˙¤êŸ–Ó^Euĉ
    SË7ùEï"ežé´޳­ŒÄ)ôd܎2_¨#9lÁto3ŬĊsċŻÎğYĤÖÍkmċżÎŬŭ=JI˘áġê€P­§ú;ĝû†C^ll_ż’Qz0^yRŭċğÒîfÒÛBÖfŒš³™´B‚dUUIİáCÈĤıé6ƒivß]6ËoyIŻè/7ڝIqkOħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħW€ys˙ZŸó“˙5Wċ§ŭ×<÷н˙v*ìUĜĞ˙ÓûùŠğv*ìUŞ”Ċ]ÄxUkpc’5Bĉ@°'˘‚}Î)7żħ—Óf‰-„Œbàµçs*ˆ½pݤĵĝu"•qKÉüËä:îÒêÙí×WĉH·„Š ı”Íq× sôŻŽ,Ÿ5ù÷KĠ-<ßĞ]éŞYXj6úˆ}E[[`ĥf;%8­(=°+òŜı}Ħ•šFħC§Ĵ²^q¨gà¤|Uëñ|ñM½BġĴ´e½rèti-
    £Šŭbc	 òĦÌ·Í{qWĴi~¤Öĥ—7ÄélRĠ­ÊY‡ĈìWĦ€•ëß
    ċċ=ÓO002LYLÓġV`(x÷ûUŭĞŠ	jïIž-$dBħ;éQËjŠT’XcJÄ9|Ó&…ċI/'^0I­èZxâJ7ڝ•²(bf3ŠíÓ“ÊzŻç­~kĜùJ
    /ëzĦmŭl²Ğñ{.&˘ôÊĞF TjN
    l#Ğ&óĉ>Ż£Jĥ—Љ;Ë
    ğ’ٓPUKvBŞĴßĵdj/B+†”òXüŭÜkWÖC˙œ™ÑçO˖|’{Ÿ7yˆȖ3iV¨šîKŻMŭĈ,˘w|çäÊ[‹ŻÏOWV´)$ÖJÛÍde5hxƒ ˆ¨œŽÏ}˙œŠüös&“°JşzB÷²JsuŞ
    ÇJWjbXFO9oÈĥá·Ô¤˙z•cˆŜ/lmıĊ)ċW׌PĞ|'‘¨Üál´ÏòöuƒÌzZ„!6Óè6ÚHâÂXeĉOTĴġĜ²ÔŭœVÙד*Ökğ³İiâCgÂ^n£ıŒ‘SU¤dÓíiàA“còï[ĵó/™ĦĥÓĤŠÒÏSv6lÜÍ´ÈcŒ’Ğñ)ŝa´Kg˜~hYÛùKËhúĞ}ä˙<Ùŝ`Zİe
    ÓiOĦĊ|cSF<Ħğ?
    ƒšaä–% ù³Züğü߸óşi§SÖ|ŻùĞçíBöĈùQÚk…ĥÔı[\2Ln`Ş•ŻÙQRp^ë@ŠKż/ôĞŻ-ŝeyÛòZêÂ+ˆ§İù*k¨ë"q€jÚ%Í´‘uúŜŸ)µe<•ÁM˙v´wĥ$żI|§ùċÏ:·ċ^™Żhqj™˘‹[…ZÈÖÚmÔö×;ŭÚI¨	‘I­Kĝákèŭ2²ÒĴĴôû}>ŜŠÖŬ8AŠSZ(°Ĝ°LqPÀl†*ğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğx—?ġİ˙9?óU~ZŬsÏxĞßñWbĊ]Šż˙ĠûùŠğv*ìUĜĞGĦĊPè+JħT@P ĊP—q#C+q‚šr)Ûci£–ı2şTÖ¤6ŭéĊ6ŠŸËvWwOqco)š3Ü6߇ĥ*н4ëĥIdL‘ˆÍJüxÓċĥ(L-­cT*.ĉz“Š£1UŻö[ċŠl˙œŒĥ	ùyċ׿3˙*³~`y}OŜ){…‡—4ûmGôŸ ż["jP(!zvJŭ8­§×ÜÄʁ‘‡Ò>GħĊ7^òÌ–,aX³K ĦO*×çŠAIüıċh>˘{tbäĴ£Ĵ30e?2µĊ$³{=‡ŽŬUÂŞ1ŝ`†ŞOĜħ·ŝdyCMÒôù5}2À›†•k`ħcÁcT ‘Ġşŭ˘IñĊ/Ĉ?ÍmëZüÉò„òH<ż^ë‘y‰­~)mĴ5‚ÂyU*ïjΤ“E†kÇìġmO͟^]Öġ*ĜÜù÷W_4j	"{[KžÒò5FÒîÈ.ìÀYŜÉ*
    ¸*/ÙHc"ŭŞüżò}…­ĉ‡[Z,R¸½’AJpúԌÓĈ€ô_Yí텨—˜ĦĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħW€ys˙ZŸó“˙5Wċ§ŭ×<÷н˙v*ìUĜĞ˙ÖûùŠğv*ìUĜĞħUĦ@ĊWb­0¨#Çh-
    Uv*ìUkll1WQLUó÷ü䚁ùsċÊüŞż”ßú0ĵğŠ‚Ċ]Š´@;Š´Ş¨8¨
    7Ĝ{âĞħV;ĉ‹9/t‹˜˘PÒÉ+µêĠö8Ğà˟ÊûMW[ĵı½´S<‘ŬèPH­½´×@%ӁX×pÂÌ}3·ÉgüGóÇċ/hí%…ìÖÑŜDœçú½­Áš%X–2‚¤n
    ?g _@ŝKŝDjÚ?ÓV6nÖ0.“ĦŬĝQ­­4Kĉ€äŻÇÙdÛ,LŸz}‰ĥŽĜÂz`–Sâóm·îÇ	Ŝ*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞÀ<ı˙­OùÉ˙šĞòÓŝëž{Ċ^˙Šğv*ìU˙×ûùŠğv*ìUĜĞħWbĊ]Šğv*ìUÔĊ]Šğxüä>‡ĉmòÚŜ(ynïÎŜ‹ç_!ù‘|µa=•µĠŬŻ—ĵߣëÉšÍ¨ZÙÊÈ%™•HĊPòı?1öż5î%ùy˙–*ïù\Ÿ˜żû	ߚż÷üĵ˙ĈËwüOÌ_ŭ„ïÍ_û‰~^eŠğŝW'ĉ/ŝÂwĉŻŭÄż/?ñ²Ċ]˙+“ó˙a;óWŝâ_—ŸĝÙb­Î?ÌB?ó‰ßš¤£ôċçŝ6XĞÍ.|áù‹.µuuüâ§ĉ|p˘¸Gò˙`ï#“˙;…
    Kž‡z‘ŠÛóióĥ³ŞéĜ˙œ[üħ“GżŠö)M˙ı‚äV?7ğ
    s×nŞAzĈ‹ùçğ4ġm˙ç˙4™,şċġ
    ĵà§ĦĤ Ħ‘ÊäüĊ˙ĜNüĠ˙¸—ċçŝ6XĞòı?1öż5î%ùy˙–*ïù\Ÿ˜żû	ߚż÷üĵ˙ĈËwüOÌ_ŭ„ïÍ_û‰~^eŠğŝW'ĉ/ŝÂwĉŻŭÄż/?ñ²Ċ]˙+“ó˙a;óWŝâ_—ŸĝÙb˙•Éù‹˙°ùĞ˙q/ËÏülħWÊäüĊ˙ĜNüĠ˙¸—ċçŝ6XĞżċr~b˙ì'~j˙ÜKòó˙,Ußòı?1öż5î%ùy˙–*ïù\Ÿ˜żû	ߚż÷üĵ˙ĈËwüOÌ_ŭ„ïÍ_û‰~^eŠğŝW'ĉ/ŝÂwĉŻŭÄż/?ñ²Ċ]˙+“ó˙a;óWŝâ_—ŸĝÙb˙•Éù‹˙°ùĞ˙q/ËÏülħWÊäüĊ˙ĜNüĠ˙¸—ċçŝ6XĞżċr~b˙ì'~j˙ÜKòó˙,Ußòı?1öż5î%ùy˙–*ïù\Ÿ˜żû	ߚż÷üĵ˙ĈËwüOÌ_ŭ„ïÍ_û‰~^eŠğŝW'ĉ/ŝÂwĉŻŭÄż/?ñ²Ċ]˙+“ó˙a;óWŝâ_—ŸĝÙb˙•Éù‹˙°ùĞ˙q/ËÏülħWÊäüĊ˙ĜNüĠ˙¸—ċçŝ6XĞżċr~b˙ì'~j˙ÜKòó˙,Ußòı?1öż5î%ùy˙–*ïù\Ÿ˜żû	ߚż÷üĵ˙ĈËwüOÌ_ŭ„ïÍ_û‰~^eŠğŝW'ĉ/ŝÂwĉŻŭÄż/?ñ²Ċ]˙+“ó˙a;óWŝâ_—ŸĝÙb˙•Éù‹˙°ùĞ˙q/ËÏülħWÊäüĊ˙ĜNüĠ˙¸—ċçŝ6XĞżċr~b˙ì'~j˙ÜKòó˙,Ußòı?1öż5î%ùy˙–*ïù\Ÿ˜żû	ߚż÷üĵ˙ĈËwüOÌ_ŭ„ïÍ_û‰~^eŠğŝW'ĉ/ŝÂwĉŻŭÄż/?ñ²Ċ]˙+“ó˙a;óWŝâ_—ŸĝÙb˙•Éù‹˙°ùĞ˙q/ËÏülħWÊäüĊ˙ĜNüĠ˙¸—ċçŝ6XĞżċr~b˙ì'~j˙ÜKòó˙,Ußòı?1öż5î%ùy˙–*ïù\Ÿ˜żû	ߚż÷üĵ˙ĈËwüOÌ_ŭ„ïÍ_û‰~^eŠğŝW'ĉ/ŝÂwĉŻŭÄż/?ñ²Ċ]˙+“ó˙a;óWŝâ_—ŸĝÙb˙•Éù‹˙°ùĞ˙q/ËÏülħWÊäüĊ˙ĜNüĠ˙¸—ċçŝ6XĞżċr~b˙ì'~j˙ÜKòó˙,Ußòı?1öż5î%ùy˙–*ïù\Ÿ˜żû	ߚż÷üĵ˙ĈËwüOÌ_ŭ„ïÍ_û‰~^eŠ˙•éç}ó£óOóÌż•Ŝ`üħÑ5Ż%y'Ëz%Ż™.ô›Ğğ­QóMċë˘hZĴ‰&­n‘ħ-E˘×}Šğv*ìU˙ûùŠğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħUĵG"Ô܁SòĊ\êJžĝĞ•U*€è*ğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğ˙ÑûùŠğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğ˙ÒûùŠğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğ˙Ùtiger-3.2.3/tiger_logo_half.jpg0000755000175000017500000016537607650716012015136 0ustar  pacopaco˙Ĝ˙àJFIF,,˙í8Photoshop 3.08BIMí,,8BIM
    x8BIMó8BIM
    8BIM'
    8BIMġH/fflff/ffĦ™š2Z5-8BIMĝp˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙è˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙è˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙è˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙è8BIM@@8BIM8BIM¨pCPWŒ˙Ĝ˙àJFIFHH˙îAdobed€˙ۄ			
    
    
    
    ˙ÀCp"˙Ŭ˙Ä?	
    	
    3!1AQa"q2‘ĦħB#$RÁb34r‚ÑC%’Sáñcs5˘²ƒ&D“TdE£t6ÒUâeò³„ÓuóF'”¤…´•ÄÔäôµĊĠċġVfv†–ĤĥĈÖĉö7GWgw‡—§·Ç×ç÷5!1AQaq"2‘ĦħB#ÁRÑ3$bár‚’CScs4ñ%˘²ƒ&5ÂÒD“T£dEU6teâò³„ÓuóF”¤…´•ÄÔäôµĊĠċġVfv†–ĤĥĈÖĉö'7GWgw‡—§·Ç˙Ú?ġT!‘Q¤¸D†’$ÔŜE\
    ż\3ħúŸRĈÈĈى’ĉrhxiv…ıĥ§ïħŝËözߢô½4”÷^½Ê˙5ßù½fx;üÇäW<>µdӁëfâ?ÛéQë7ї6Ù]öúnúOeÇ³üÖ.bÌŜŸ“Ô=ò“ĠËÙ7‚ĉşİ벋=J™Elŝuž•{?ÒÓúT“O¤zġ˙+ü×äRġëŝWù˙È `ċoÂĦùÖë[MŽiÄ
    Ï`“µŻúHŝ½éŝpI
    ġëŝWù˙Èë×üŻó]˙‘K×£ŭ#Î	zô¤oùÁ%+ׯù_ĉğ˙"—Ż_òżÍwŝE/^ô˙8%ëÑŝ‘żç”Ż^żċšïüŠ^½Ê˙5ßù½z?Ò7üà—ŻGúF˙œRÎÈİ ıĵ£Râ×>$„US:êNàXÒMnHî´”˙˙ġUċ½JžĦ˙8zĥ>ğ­şëkŭ[óm$zwâŭ¸ħ™;noé°ĠG³Ô²Šìġ=5êKÈz·_+ë_S²Ğ66§äğ&’âÖĜÓ[İeŸéŻÈ}֙eŸÌ¤êġš¨ú½‹Óòi°|‡WâıŻċϳħV[Ŭ›Ój·oĞOıötüŻûı?ĴÀĊÉê,É´Ûhf/§mbĴš-ŸUôg0{]m˜çôY~˙U‹NŽİ•oPĈeÌ5Z÷ÚüšïȲĈÍĦÔ×cşfMbĵK-ϵĥW˙jżVġ}:(²[ŞY“›Òè~Užµĥôĉĉ_kĦÖĈċäTçĜï{½:íôö£H$èíc˙‹Ŝƒn=6şÌë+cÜÙĉµĉ?CĉƒÔŝ˘tLLO^§äú´W{‹n‡ñK2ÏjğġSë=½^‚üfRÜ\v¸=Ż..Ĝk£è¸~tîUzßÖk]ĠÏAû;CV3}}ÇwĥÊoú·ù+„%÷“ŠY%úşË’²ô½ğ›[òí ñ5²ĞíĈħëÖĈô\Ü|AGlhĥ÷FÖXÖ×á}޽½s™òĝpÊG,<ı&%Á9ċÉ?Oójpcž\™à‰Œ#ħĴbòÙU1ñ>´bô‹Ĵu˜™„>ğCmôÎöíµÍmŒ²ż§³e‹Ħ˙Ĉëê˙úLŻóÙ˙¤S=WëÎ>hÜ+}á´5ÜĥĤ5̨Gĉû}ï˙„zêz˙]ê].úĞéÎέġúħĦä4‚á´úL{~‹wİyĵœŸ/ŠrË–AqĈ8ŭ\_7§‰fòĉ9'(\ê:z\§ŭCèmê”á‡äúVc[sŽönŬ]”TÈ>ÑÛsĠŸünŻ˙¤Ê˙=ŸúACêçÖ;:ï]ÜüvŭŸ
    6¸ğvûqçûއÖ/­=s§ŭbżñözŸVÌs[¸9•=ìß³Ö÷ıîüôÀ>%<ŜÀÌa–ŭÉñKOŸ÷ĦÇêġÁwôHÀä8ĝĦ)F‡ġZnúŝ‡ġğ¤ÓğÖ˘ìĵ{1Y}v7èú•ğ÷½ùygÖzÙöŝ€ĝ™ĠhkOpĉ—ü
    ‹ÔÖŻı‰gċa’zÏXÈŝ÷	ùš|Ö1,£—qġ˙ÑġU?^1ú}żX-nÂÛKc€™3
    ×úËٗŭaŻ'7uŠql4âä[Sns…×ħ˜¸lçúK22ìĤн˙àÒHGAĴ^ŝ§mWeÑE­ËşĵF2ÇÛsÚ^mŽw­‹K­kl}Û_öŸÌŭ*Ğԍ”t×TêEY=8cäoh“‘‘wíŠ_Òۊ۞ßĝċ!ÔmTâ_ˆ]ê5ùu=™l&ğ1èµÔoĊûN3ÙëWé]úżĞú/NÊŭD˙Xú~?Fúşìz­ßişlçĵÙ-Ŝ]?Iż’KCü]ÊÙ_ĝW˙FVĞuŸü]?˙Q˙˘UŻñríl¨×ġS˙Ÿ+UşÈ?óéÂ5ûeÛ++˙.<Ïŝs˙Ŝ6‡û›ûW³êV}dèÍ?áœÁñÙS˙ú˙…“ûnĞĞcž2ꭕ@™ħ¤Ġè³÷ŸüÛö˙Â-oŻYÖôŜ£ÑsĞê-½ûy£ġŭĥnbéñ²qò¨Ż+âÜ{FúĴÇÑŝËÛôùìY˜rϔ‡+ÍqÂXòb==C6Y|ßâ6çĉ–\\\2Œŝœyë­tž‘Ô:^N,mÎeDÂñµĠŜç{Oò˜ġ“ëK:%ĴÄv3ïûM.vöżlIuQ·c÷+]VêĴÉéµÖöÊ:Lı2XNC^?7Úµ‡¨8 –{8rs1—1é—Ĥs”$}RàġüˏùÈbÇĴuˆ|­;˙_òŬ
    ˙ùò…Ŝd}İĜÔğ&C½s[
    ’ÖğĠÛżsZƒnó×ñĤOê9˙ob*XŬuúɝÑ2]µÛ˜ì7;‚]UO³úÛżKOŭrżôjNk&No,³c‰ê½ÉÂ2âŭ\'íK_Oï#a†ȗë8A#ôŒxœ½Ġٓġ³˘ôÚı˜y´:ò8ġmmôçŝĥ˙à‹Ùח}eßöŽ‚Çíln~+ÔVçÂerxĝcÂ#Ċĝ¸~İ~Ìçó Œò³Ċzż˙ÒġUċßYú7\Èżİı÷Qv0ıöc2ö
    ÛKĜŜ ĜßÎŭö=zŠĊÚl·#ßh²ël{áĝîÛô„û]Sŭ„’-éġ˜Ğ/Ôvö‚Çnk´-i×Uú5½Ÿ¤ĞŝÙŝrĠÑ;ü^[ġŸ>ŝ˘ìV9­5ÔÚĊ€ZÏS{ß[ż7oŭ5ħÔŝ¨ŒŽ­M˜ Ġ€÷4äĠħlj{ıĝlÛħu•şšĞmUħÌ­€5tÖ´{RQ/Óŝ&Žâü~ğ}.pÚ]][	í%—µ3˙ÄĈû}wġ˝q!ŜĞİò8w¨oßız?Ĵß˙˜ïüŠ^³|ŝcżò(p‹ştµYŞ·ÎŻ˙ĥdíûO_Èżdíġjßôĥú—ğnèEÄ˙¸5şĴ?Ĵy8ġĵ˙]{DñğkoúË^ë7Á˙ĉ;˙"—Ĵß˙˜ïüŠxLAî‘éûĊ+ğ7Ŭóš˙ÄÓŞq}}vĉ8¸<ıµAÜ'k÷6˙ĤŬÎ÷£O˙Ï.gù˙Ŝ…è³|ŝcżò)zÍùŽ˙Ȥa݈>aBR>Żž˙I—ĵY˙8ò÷€Z°î
    $9ÌŬö˘ç5ßñ..°Ûo\ĥËĴ}!Î1 —şíËÒ=fĝ?üÇäRġ›à˙ó˙‘DF#`Q‘;’_>âşüK¨êġ܌ħk2›MĴ.kQí÷^í›öìġ˘Şıġ1.­y{Ĝĉ´m:’#¸V’@<I:“o˙ÓġT—Êİ$§ê¤—Êİ$§ê¤—Êİ$§ê¤—Êİ$§ê¤—Êİ$§ê¤—Êİ$§ê¤—Êİ$§˙Ù8BIM˙âXICC_PROFILEHLinomntrRGB XYZ Î	1acspMSFTIEC sRGBöÖÓ-HP  cprtP3desc„lwtptbkptrXYZgXYZ,bXYZ@dmndTpdmddĈvuedL†viewÔ$lumiĝmeas$tech0rTRC<gTRC<bTRC<textCopyright (c) 1998 Hewlett-Packard CompanydescsRGB IEC61966-2.1sRGB IEC61966-2.1XYZ óQÌXYZ XYZ o˘8ġXYZ b™·…ÚXYZ $ „ĥÏdescIEC http://www.iec.chIEC http://www.iec.chdesc.IEC 61966-2.1 Default RGB colour space - sRGB.IEC 61966-2.1 Default RGB colour space - sRGBdesc,Reference Viewing Condition in IEC61966-2.1,Reference Viewing Condition in IEC61966-2.1view¤ŝ_.ÏíÌ\žXYZ L	VPWçmeassig CRT curv
    #(-27;@EJOTY^chmrw|†‹•šŸ¤İ²·ĵÁĈËĠÛàċëöû
    %+28>ELRY`gnu|ƒ‹’šĦİħıÁÉÑÙáéòú&/8AKT]gqz„Ž˜˘ĴĥÁËĠàëġ!-8COZfr~Š–˘şÇÓàìù -;HUcq~Œš¨ĥÄÓáŝ
    +:IXgw†–ĤµĊĠċö'7HYj{ŒŻÀÑġ+=Oat†™ĴżÒċĝ2FZn‚–ŞÒçû		%	:	O	d	y		¤	ş	Ï	ċ	û
    
    '
    =
    T
    j
    
    ˜
    
    Ċ
    Ü
    ó"9Qi€˜°Èáù*C\uŽ§ÀÙó
    
    
    &
    @
    Z
    t
    Ž
    İ
    
    Ŝ
    ĝ.Id›ĥÒî	%A^z–³Ïì	&Ca~›ı×ġ1OmŒŞÉè&Ed„£#Ccƒ¤Ċċ'Ij‹­Î4Vx›½à&Il²ÖúAe‰Ò÷@eŠŻĠú Ek‘·Ŭ*QwžĊì;cвÚ*R{£ÌġGp™ì@j”é>i”żê  A l ˜ Ä !!H!u!Ħ!Î!û"'"U"‚"Ż"Ŭ#
    #8#f#”#Â#$$M$|$Ğ$Ú%	%8%h%—%Ç%÷&'&W&‡&·&è''I'z'Ğ'Ü(
    (?(q(˘(Ô))8)k))**5*h*›*Ï++6+i++Ñ,,9,n,˘,×--A-v-Ğ-á..L.‚.·.î/$/Z/‘/Ç/ŝ050l0¤0Û11J1‚1ş1ò2*2c2›2Ô3
    3F33¸3ñ4+4e4ž4Ĝ55M5‡5Â5ŭ676r66é7$7`7œ7×88P8Œ8È99B99ĵ9ù:6:t:²:ï;-;k;Ş;è<' >`> >à?!?a?˘?â@#@d@Ĥ@çA)AjAĴAîB0BrBµB÷C:C}CÀDDGDŠDÎEEUEšEŜF"FgFĞFG5G{GÀHHKH‘H×IIcIİIJ7J}JÄKKSKšKâL*LrLşMMJM“MÜN%NnN·OOIO“OŬP'PqPğQQPQ›QĉR1R|RÇSS_SŞSöTBTTÛU(UuUÂVV\VİV÷WDW’WàX/X}XËYYiY¸ZZVZĤZġ[E[•[ċ\5\†\Ö]']x]É^^l^½__a_³``W`Ş`üaOa˘aġbIbœbcCc—cëd@d”dée=e’eçf=f’fèg=g“géh?h–hìiCišiñjHjŸj÷kOk§k˙lWlŻmm`mınnknÄooxoÑp+p†pàq:q•qrKrĤss]s¸ttptÌu(u…uáv>v›vĝwVw³xxnxÌy*y‰yçzFz{{c{Â|!||á}A}Ħ~~b~Â#„ċ€G€¨
    kÍ‚0‚’‚ôƒWƒş„„€„…G…І†r†×‡;‡ŸˆˆiˆÎ‰3‰™‰ŝŠdŠÊ‹0‹–‹üŒcŒÊ1˜˙ŽfŽÎ6žnÖ‘?‘¨’’z’“M“ĥ” ”Š”ô•_•É–4–Ÿ—
    —u—à˜L˜¸™$™™üšhšĠ›B›Żœœ‰œ÷dÒž@žŸŸ‹Ÿú i ĜĦGĦĥ˘&˘–££v£ĉ¤V¤Ç8İĤĤ‹Ĥŭ§n§à¨R¨Äİ7İİŞޏĞĞuĞéĴ\Ĵ­D­¸-ĦŻŻ‹°°u°êħ`ħÖ²K²Â³8³´%´œµµŠĥĥyĥ·h·à¸Y¸ÑıJıÂş;şµğ.ğ§ĵ!ĵ›½½
    „˙żzżġÀpÀìÁgÁÂ_ÂÛXÔÄQÄÎĊKĊÈĈFĈÇAÇżÈ=ÈĵÉ:ÉıÊ8Ê·Ë6ËĥÌ5̵Í5͵Î6ÎĥÏ7ϸ9şÑ<ÑÒ?ÒÁÓDÓĈÔIÔËĠNĠÑÖUÖĜ×\×àĜdĜèÙlÙñÚvÚûۀÜ܊ŬŬ–ŜŜ˘ß)߯à6à½áDáÌâSâÛcëäsäüċ„ĉ
    ĉ–ççİè2èĵéFéê[êċëpëûì†ííœî(î´ï@ïÌXċñrñ˙òŒóó§ô4ôÂġPġŜömöû÷Šĝĝ¨ù8ùÇúWúçûwüü˜ŭ)ŭşŝKŝÜ˙m˙˙˙îAdobed@˙ۄ		
    
    				
    	
    
    ˙À^L˙ŬJ˙Ģ	
    	
    s!1AQa"q2‘ĦħB#ÁRÑá3b$r‚ñ%C4S’˘²csÂ5D'“£³6TdtÒâ&ƒ	
    „”EF¤´VÓU(òóÄÔäôeu…•µĊĠċġfv†–ĤĥĈÖĉö7GWgw‡—§·Ç×ç÷8HXhxˆ˜¨¸ÈĜèĝ)9IYiy‰™İıÉÙéù*:JZjzŠšŞşÊÚêúm!1AQa"q‘2ĦħÁÑá#BRbrñ3$4C‚’S%˘c²ÂsÒ5âDƒT“	
    &6E'dtU7ò£³()Ó󄔤´ÄÔäôeu…•µĊĠċġFVfv†–ĤĥĈÖĉöGWgw‡—§·Ç×ç÷8HXhxˆ˜¨¸ÈĜèĝ9IYiy‰™İıÉÙéù*:JZjzŠšŞşÊÚêú˙Ú?ûùŠğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğ˙ûùŠğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğ˙ÑûùŠğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğ˙ÒûùŠğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğ˙ÓûùŠğv*ìUĜĞÇ˙ç!|ÓùòóÎVŭĉo'ŝ_ù›[òĉ§éE?Ġïôŭ*ĉĉÚoJt’'á,jÜ]YM(ÀħTƒŝTßĉ/ŝĊĉŻŭ/?ñĊ]˙*oó˙bÇóWŝῗŸĝĈâ­ʛüĊ˙ĜħüĠ˙¸oċçŝ1¸ĞòĤ˙1ö,5îùy˙Œn*ïùS˜żû?šż÷
    üĵ˙Ĉ7wüİżÌ_ŭ‹Í_û†ŝ^ŠğŝTßĉ/ŝĊĉŻŭ/?ñĊZ˙•7ù‹˙ħcùĞ˙pßËÏücqV˙ċMŝb˙ìXŝj˙Ü7òó˙ÜUßòĤ˙1ö,5îùy˙Œn*ïùS˜żû?šż÷
    üĵ˙Ĉ7wüİżÌ_ŭ‹Í_û†ŝ^ŠğŝTßĉ/ŝĊĉŻŭ/?ñĊ]˙*oó˙bÇóWŝῗŸĝĈâ˙•7ù‹˙ħcùĞ˙pßËÏücqWʛüĊ˙ĜħüĠ˙¸oċçŝ1¸ĞżċMŝb˙ìXŝj˙Ü7òó˙ÜUßòĤ˙1ö,5îùy˙Œn*ïùS˜żû?šż÷
    üĵ˙Ĉ7wüİżÌ_ŭ‹Í_û†ŝ^ŠğŝTßĉ/ŝĊĉŻŭ/?ñĊ]˙*oó˙bÇóWŝῗŸĝĈâ˙•7ù‹˙ħcùĞ˙pßËÏücqWʛüĊ˙ĜħüĠ˙¸oċçŝ1¸ĞżċMŝb˙ìXŝj˙Ü7òó˙ÜUßòĤ˙1ö,5îùy˙Œn*ïùS˜żû?šż÷
    üĵ˙Ĉ7wüİżÌ_ŭ‹Í_û†ŝ^ŠğŝTßĉ/ŝĊĉŻŭ/?ñĊ]˙*oó˙bÇóWŝῗŸĝĈâ˙•7ù‹˙ħcùĞ˙pßËÏücqWʛüĊ˙ĜħüĠ˙¸oċçŝ1¸ĞżċMŝb˙ìXŝj˙Ü7òó˙ÜUßòĤ˙1ö,5îùy˙Œn*ïùS˜żû?šż÷
    üĵ˙Ĉ7wüİżÌ_ŭ‹Í_û†ŝ^ŠğŝTßĉ/ŝĊĉŻŭ/?ñĊ]˙*oó˙bÇóWŝῗŸĝĈâ˙•7ù‹˙ħcùĞ˙pßËÏücqWʛüĊ˙ĜħüĠ˙¸oċçŝ1¸ĞżċMŝb˙ìXŝj˙Ü7òó˙ÜUßòĤ˙1ö,5îùy˙Œn*ïùS˜żû?šż÷
    üĵ˙Ĉ7wüİżÌ_ŭ‹Í_û†ŝ^ŠğŝTßĉ/ŝĊĉŻŭ/?ñĊ]˙*oó˙bÇóWŝῗŸĝĈâ˙•7ù‹˙ħcùĞ˙pßËÏücqWʛüĊ˙ĜħüĠ˙¸oċçŝ1¸ĞżċMŝb˙ìXŝj˙Ü7òó˙ÜUßòĤ˙1ö,5îùy˙Œn*ïùS˜żû?šż÷
    üĵ˙Ĉ7wüİżÌ_ŭ‹Í_û†ŝ^ŠğŝTßĉ/ŝĊĉŻŭ/?ñĊ]˙*oó˙bÇóWŝῗŸĝĈâ˙•7ù‹˙ħcùĞ˙pßËÏücqWʛüĊ˙ĜħüĠ˙¸oċçŝ1¸ĞżċMŝb˙ìXŝj˙Ü7òó˙ÜUßòĤ˙1ö,5îùy˙Œn*ïùS˜żû?šż÷
    üĵ˙Ĉ7wüİżÌ_ŭ‹Í_û†ŝ^ŠğŝTßĉ/ŝĊĉŻŭ/?ñĊXŝmùäoÏß$y+Wüçó_ĉg–|áùçnóLó=–`ú½ŝ…Şù^ÚÒkyt-I”V-Zá]dgSU4kŠŸĊ]Šğv*ìUĜĞ˙ÔûùŠğv*ìUĜĞÀ?ç,ġ–ç%żóUyËŝèw˜ĞŜĉÑd’dDp
    ³ŻNżQSñí)ß_~fùÓGòΉ_CuŞ[–ĥ“F–ĉ$•ÂÇo!ġJ•RÌŞ*~"(ğìVîoqò÷çgš&o.^êÚ@LöŜž*J\á—âĊ”Ŝ›ôİ0z•÷ĉmôïRüÉòąô6iñ^Àö˘g_Ž&÷F¨Â‘Eè¸ĦĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ^ĉ?ŭjÉżüĠ_™÷\ò&*÷üUĜĞħWbĊ]Šż˙ÖûùŠğv*ìUĜĞÎ?8×_oÊ/ÍEò›¤~io'ëƒËRHÁua?ĠK1(ñİ#lSoçCÌ?–žŜoó6ş×ží5;–Ѥu
    Z+ôKyĉŠòW(ÔĞ$7
    #IiQê‡AÈäÛÑ(µ/ùËʟ+ÛhÚ££yßBžHŸHÑŻŻD׺:Ċ$Žf¤ĞñĴ€(êX,„ᢁlğÍ˙óżówW–Z֏ùwŻhy[‰"Ò'K{‰ĉŠ6x¤³x‘ĞÇ_R9ˆ‘(İŠˆ„oċWüĉŸŸ-żGéJÖ<›a¨ßÏmcĉémfĥ³7
    Fa”O(PkǕpƒ_Qy“RÑ|ä/G”ĵÒ4c][ymäiq.§ÈoVĉĦĞÍHYöĦ€²ç&1|‰io?™t‹6ÙÚŬÇê\ĜIB;2	ü‚İHò"´Ŭb`ûʝzG›ŻVÂÇN‘e2¤O?­ĈĦu4V/Jx‹{
    ĉ£g§ĊêŬÎħÙRG&>wĊƒÄ<Ñù .£ĠmtÛ¸t]#OS§ĉİ
    ÍéHvô ˆ2ú’ŠŠ‚hµİ ‹ó÷óÍq¨ü/Ħ^KŝbÓ­ ³ĥÔĦ“V×/eŠy!µ.Ñı¸z’ŝ„GÑV^ë‹tbñûËû%˙
    ÁÊ8ġ/›ï2Úùzéŝ_ıĝ=KMk^’71]ĈÎ‘G$Ż%'LÔ ĵ½ŠêŞ~iyLòŜŸôİdÒtènĦş),păë÷qznÄÇs"‘~È\Kg
    ¤izüSk|ċċĤ³Ô§Ôg7fs,wfô˘¸PR+~MP*NQtóíRÍ֞|ÓìĴµ3g yıu.y‚îÔ^Iyq:Ç-Ċ­żÖUMc§µ{P)LÓËÀk:-í°žúêïU†òÓêZ5ÚÂħÜܢ‡ŠOG÷Poƒp}–DÑ?çŜv~wüĵòïŸ"üë£Yé‰ä}Lj^S—L
    ġÓµ1êúQHòH]zóâÎŞX~ñ‰ ĵ•Ì?Gqkv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħW€y˙ZŸòo˙5Wĉ_ŭ×<‰Š½˙v*ìUĜĞħWbŻ˙×ûùŠğv*ìUĜĞü̞[_Ę̈.EœöŜZĠ†ñˆ'K9Yd$ì8‘\Soç"ÓóŻÈŝEüÖ|ıİÇqq¨êĤ+Óy--í#ú§Öbš3jò%EK!^U"˜9(—°ùKò[VóĈŸċÍJÍ­ZŝÖ)ġ-[M‹¤–ÚÄREġ~qĵé:Q€+Bd’ĥ—OùG˙9…ùqĤjÏċ÷ĉfŸùğ
    ½ĵmmċm^Ù>şî×Cœg֔**āġ‰İmğ‡›*azǜżç;ĵċ›ÍkÎż•ĥŜhÑ.Żê_½zé:Çw,S[Ú´Żh .EQİ@8â·|/üĉŻä‡›5½ËVòŜİùEe~òß^ëÚRݳĵ¸†;:ÉlPBÂ2šG—ZħÒ³­µ
    ^7oĤŜÚkšQ}FÊQg0$Aïo\7Rá\q`xÔ#Ĥz2ä•KuŸ˜ßÍ>Wóéòĥĥµ­ġœĊZÖaġ:[ĊKĉy:ÌHaBXà!ú3ËşGœ/<½£ù—ó_Í65ĵ^“grDşÄĉ4*>µ^VÖÜĜ‚ŞĦŸW-gsAċ˜?ŸZŸ%ŒĥÏĈœâm?É~MÒ줸–öîo[—Ômí^0ßUŽŜF’G1ĴGgg4Ä3Ĥ?ùKù}ùıùİa¨k›Z§—üŸsqeegcäŬ6Ġn[@˘’Ú)ċImä7ŞÜž³ĵш÷1”¸K'óµ­è6) ~MIĴùƒË^XŒ~—ĠtŸ/yLÒ­äĵ¸îMşOg˘ıâĴPŞ,`rĝ˜–@
    ßô£4/ÍÏђÙy+RüùџóROfĥò~ş–şĥg9E‚ÎÙ5ve^Q³’0ßĊ‰ıä_œ_šbòĥ¤<Ùmçŭk˗–ú³h˙šŜGĵħ–ŝÒŜyÒ6Žâ;X†Ìb_QfUˆLĴ€ú„âK üÈüŬÑVM›É÷XXX\Ow6—6ŞÉġ+‰àÜM`öpċ’â”Ï
    óB­¤=ûòĞ^‚ëMѵôùYoì…ĵ/´µŠH£ñJñÀ겐
    Fñ)CT`DÇGÓ˙”>_ħµüġÖĵǰmOTò-ž§|ÓVC­ü­ô‹Ôid5¨Ûí7EZ‰ôÈÂÁĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ^ĉ?ŭjÉżüĠ_™÷\ò&*÷üUĜĞħWbĊ]Šż˙ûùŠğv*ìUĜĞÄç&.ç°˙œp˙œµ•àı²üĥó\öóÇǚItÊĘ̈"˘ Saü—hŸ—~UÓyĞRÖ˘Ö|Ĥ<ĦgŻÇ`Ó5´—W·ú£éSéH9z³ü0LC+UW£-C
    rù=òSŝsTüĤÓ´ï+ĥ“sİù'I½ĵ—M2^ÚE4˘[xâeôíù1e­šĥÄX~i󖷐ù@ó5•ïî´+xo.|蔖ÒĞ
    ÔJŞârÀİP
    iL¤ÀĦŝY˙ÎjŝMùïX6sê-ċŬfŜ)n­íµê	¤h¤€I ŝġBĠ–•§ĥĜXg£éiçżç˙ç$ż/,Iŝ\èWMŬÌ:/˜´+H4ëĞ(oe{‰MŒŞŞ–œ´ĤĞNlÛnjnÚÉ îüà?çÜß󒿓ߙKòGĉİÓ)5[·żÔ|¤£\ÜÚÇdÍqkşlÀ	&•VdŭŜûÔP`f'\Ÿ§zċ_–ô­Ëzu§ß~`éE½ĈµĉĞĞsW7ÏÉZâU’´vtf	Ñ
    {ô,LËĉżÎ˙>ùƒD´Ż5K&›î,
    ˙ĠMsqsĊh›ĴiÈúŠî	A Ü—–í°£m5Ÿ)ùwΞRóF§cêdÓĉ¸“òžKĠĦ°ŽŬoiú"=VE–ħ7Š”ôŜYù½}>gÈî™wĉÁċ}%tŸ,ùO´ÑġğÓu¨èk$ZmġŝĞżÖí쵏XFÓ^ÎòO{wtêѧ£ŭڞG›òü{žaĉΏÌK­
    ÷Íşħòݚż-tK{˜<Ïċ{ë$¸½ˆ%½ËG%˔Ħġddû@¨'€Ÿ˜~wò¤—úĠ‘¤ĊaavèÏċŭs˚~­­ıP4z‰%‹ÉÉÙkêZĦFèÄŭI§İéߞzÚŝTiïmsmĉ“?’5u³Ž]F=,ĈSK’vġdşœ­Ġœñ¤s;3Ċ,C~‚WÍí_“Úĵߢ5;CϚĦ Û-·ÖlukŻÒ„B˘£{kik;˜BòbĴĵ~Ĝ0ĜdEġòg˜ġnè½^ĉŝ;rĞj^•ÇnT*²ú@J‚Šâƒ½HĜÈ>°˙œ~ı‹\ó'ĉv·m=µĊž“s§ùr6†^Asol//Ĵż>Ĝ
    äâĠ!@Ô8°v*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħW€y˙ZŸòo˙5Wĉ_ŭ×<‰Š½˙v*ìUĜĞħWbŻ˙ÑûùŠğv*ìUĜĞÇç",_S˙œüóÓc0	5Ëï3ÛFnIXyK\ ġJԅİĝݽ1Ly‡óK˘ŝOÁĉ_+^ŝYĴ+wçï.ùñtĴ"SÌvz¤W÷ÖEê		½ĥ5ĝNÌ0S“[<¤y
    _ÊŻ:Ĝ^~kŝTŜùzïÌöjž^ÓĴ´R3oġ+§ŽZ³,ĤF28ĉTWe4€Àü³òÇĉ“ŻZMù[ŞjV•s&§ëvĉ)­´Ĝ-™Ñdi$œ9<ʊTPPHg.[½óŝq;òóKÖĵÉċ,·“˙3-äġµK(%’‹ÙbqèĞÄ]´§Ôiš‘ĊĥÛ`Hß~SÎK˙Î@˙ÎùËKòGšlŻà4+–M{ò˙SSĵ3Ĝ\6ÉÉ,81JŠmLCż7íÇäßüçoċçVİÁ˘jÑèúĉŸÂóOc
    âĊÁXCˆŻ%?
    ;“°0=‹ÏÏs
    ß·™Ì²%¸ŒhîÖӆ2ħEŠ(‚ħp¨e&OċUN,Î>çŒŝ_~kA¨ùV~bŽĉġ5WhĴK3Ċe5ĵËŝ—tAFÒsĞ=+;Wá(,Œz‡’ŝsÎ%Ŭ[ëpùƒòßGôßBfÌ¨5
    ̑ÀöQ‹…ÀH­í½W(ܙه€ĴglwAü³Ôlġ
    "â/=èŜ_tkY4ı4È!ƒKÓ,ĥ¤‘ĴôÓf·‹-4³D.8‚ĤEeÍ{tx'ĉħ˙9#ùou ù‡NżòGĉŻ‘PÉcgueĦir[êÖüMeqĤµšËévTORFTë'-î‚mïŸôo!ŬXiŜlò$Wzuğİ^è·ŝ[U„Ċe}`É#´l×OsÁ*Éld‡A!A³ß!jGÒ´Ûxüĝ$ıÑġŭz‰
    ŸÖ£²ˆ²ÂöÓ	ĉœË´+
    -Áù0ÉVì…ĠOòĊד-¤Ôf’BÚÛW¸°·Y’ÙŻ£ÄÒşĵm;ĴħÒJ£:şÑG6TœyóŠ?Ê}ÖòŜ­¨_ù‡S†âÏɚl7-m§j¤=ŬÜwô™4ÍÁvcŠ%É™˙9ùŬċˆeÓü•ù½çO%érÍ%Í͎ƒßé‘\ŬÌĊçğž;9ĦGšV5g+ZQz(ÂâÈÙLèj?ç'żö#ż4°ÖżìŻ;ŝ†£ŝr{˙b;óG˙
    kŝÊñWÔÎOìG~h˙áa­Ù^*ïúùÉïŭˆïÍü,5Żû+Ċ]˙CQ˙9=˙ħù£˙…†µ˙exĞżèj?ç'żö#ż4°ÖżìŻwŭ
    Güä÷ŝÄwĉŝ×ŭ•â˙Ħ¨˙œž˙ĜŽüÑ˙ÂZ˙²ĵUßô5ó“ßûߚ?ĝXk_öWŠğŝ†£ŝr{˙b;óG˙
    kŝÊñWÔÎOìG~h˙áa­Ù^*ïúùÉïŭˆïÍü,5Żû+Ċ]˙CQ˙9=˙ħù£˙…†µ˙exĞżèj?ç'żö#ż4°ÖżìŻwŭ
    Güä÷ŝÄwĉŝ×ŭ•â˙Ħ¨˙œž˙ĜŽüÑ˙ÂZ˙²ĵUßô5ó“ßûߚ?ĝXk_öWŠğŝ†£ŝr{˙b;óG˙
    kŝÊñWÔÎOìG~h˙áa­Ù^*ïúùÉïŭˆïÍü,5Żû+Ċ]˙CQ˙9=˙ħù£˙…†µ˙exĞżèj?ç'żö#ż4°ÖżìŻwŭ
    Güä÷ŝÄwĉŝ×ŭ•â˙Ħ¨˙œž˙ĜŽüÑ˙ÂZ˙²ĵUßô5ó“ßûߚ?ĝXk_öWŠğŝ†£ŝr{˙b;óG˙
    kŝÊñWÔÎOìG~h˙áa­Ù^*ïúùÉïŭˆïÍü,5Żû+Ċ]˙CQ˙9=˙ħù£˙…†µ˙exĞżèj?ç'żö#ż4°ÖżìŻwŭ
    Güä÷ŝÄwĉŝ×ŭ•â˙Ħ¨˙œž˙ĜŽüÑ˙ÂZ˙²ĵUßô5ó“ßûߚ?ĝXk_öWŠğŝ†£ŝr{˙b;óG˙
    kŝÊñWÔÎOìG~h˙áa­Ù^*ïúùÉïŭˆïÍü,5Żû+Ċ]˙CQ˙9=˙ħù£˙…†µ˙exĞżèj?ç'żö#ż4°ÖżìŻwŭ
    Güä÷ŝÄwĉŝ×ŭ•â˙Ħ¨˙œž˙ĜŽüÑ˙ÂZ˙²ĵUßô5ó“ßûߚ?ĝXk_öWŠğŝ†£ŝr{˙b;óG˙
    kŝÊñWÔÎOìG~h˙áa­Ù^*ïúùÉïŭˆïÍü,5Żû+Ċ]˙CQ˙9=˙ħù£˙…†µ˙exĞô·ŝ}Cù§ùù™˙9Aĉsù‘ùĉÌĦŝVëcE>eĠïuoİŭkZ=ĞŭrY}?WÑN|iˊÖĵF*ŝˆħWbĊ]Šğv*˙˙ÒûùŠğv*ìUĜĞÊż=´ÙġŸÉÎM"ÚtµıĠ|ĉ;{™C2Fóé·аOˆ…-RŝĤ<ùbĠ?3ĵ×ùYçoËŻÍ/ĊiŻÏ6ħçwŸIŒ+Ayö¤$T5İ(É‘ĦĠ6Ûr%Óâŭ<üĥ˙œ”ü§üĜòÎĞiOcfŜ†ħäÍ^;wş‰ääHô™¨ZVӇÚê0-_&1g˙9ıù05í;NıŽ-&ï[Žôë:üKèOguÊÉġ¨yF£Xò'ß$y£ƒ¸½Cɟóš_óŽÚĵ—ƒÎ:nİAs‘GĈ{…·‰f^%¤iE~ROˆ%Ŝġ>~F~OÎHùaŜ˙EÑ|Â?H[YË­Yú7:‚Gú“C
    ÔeŒC™*}3ò;ô(³oÈŻ5˙Îŝu˙ÎŝFy'ó‡ÉşZZ~ŸÔ4ż,ğ?.j[­n$äħʐj’€’—’/Ni’)Aô™€-<ßŝRy“Î˙‘^gMó²Çkäġԍ–•ĉ+ĞYo­×¸’Ŭn‹BĴñЎTVßá>!äÊİúoĦ~`Aù‹msĤĜê0jħ\{v˜\}E=ħCêÁ¨Ċ?h€ÜZ‡Ş‘Wf5Oˆ5ÏùÏ9~[j^`óĊ¤[óĈ—g\ùJ™ä–íRiċżúĠÔ0Ĉe6D1&ú€zlDx*/ÌÙ´ŬFï]—RóĴïúJâKëŬy[ëROq)ġ$mĊdäġ”V¨Ç‹
    í‰@‹í?Éï#„´mÎQBmüágw&¨4‹uf™ô÷$P’f
    ÈÒ1ıŒqĈÛzĵóŝr‡JóFıĉñ£ ë~›'ú4WúšúpÈxI@ŞĞ­Žû
    ái›äœZŸ?ó‰ß‘˙”vü‘òߘ|×äM3\ÖîîġıÔQ̎ħ]ʈ	 Ÿ5Á#ÚŜÖìŝÛ˃M¨œ1
    ˆŞŜ žï­û'Ĝz-Wg&\Q”‰–çȗÒô,_ùkt_ù'üל'ú?íïùKÉóİé?Ïf˙¨Eßô,_ùkt_ù'ü׏ú?íïùKÉóİÏf˙¨Eßô,_ùkt_ù'ü׏ú?íïùKÉóİÏf˙¨Eßô,_ùkt_ù'ü׏ú?íïùKÉóİÏf˙¨Eßô,_ùkt_ù'ü׏ú?íïùKÉóİÏf˙¨Eßô,_ùkt_ù'ü׏ú?íïùKÉóİÏf˙¨Eßô,_ùkt_ù'ü׏ú?íïùKÉóİÏf˙¨E/Ġżç?! Òµ9˘ü°Ñ£–Iž'ġ¨H#ìrŭ7·½ğ,°W’‰GıŻ7³]š!"0G‘~'~Siz~·ùİùi£jÖİ}êŝkÑĴµ+)wI­î/ĦŽXڔٕˆ9ġ´šŒš~ËĠeĈxg9%9‰Fƒ/ŠvN(ċÖa„ĊĈY"ï@ŭÁ˙Ħcü‚˙Ë[˘˙Èı?ĉĵù'ŭö÷üäùÔûúìßġğŝ…ò˙-n‹˙"ä˙šñ˙Gŭ½˙)y>cġ/úìßġğŝ…ò˙-n‹˙"ä˙šñ˙Gŭ½˙)y>cġ/úìßġżµh£ƒUÔá‰qCw2Dƒ˘ŞıÏ²´Ò2Ċy>çÁ3' ;Ê_—5ğO<·ċ½sÍúĉ™ċŻ-i“júŜŻ0ƒOÓàwsı$šU–b@P	$˜šŭ~
    	gÏ!pIéûz7'ağ~›M“S’8ħDÊR4~Ĉ~A˙Îy3òÖÖÇÌwĥĥó—Ÿ(²“2úşvŸ&ÌÚwR?½qZî;üżí—ü5­)aÒ‡OËm§1ŭ"9üÁŝq—Obìc°h@ɜ™ĜÇÜ:Ÿé…>Ï`y[Ùğú“ëş}֓­iÖÚĥ—|†;Í:ò$šPġWÁR>c/Óêré²˜¤a8îI{ˆkˊba0%ÌòïŝrKŝpħt;MCÏ“ÖÓOĤ[+Ük~GĞM47ilĠŬ@İh˜–°[eAû	˙_ÌÎ:>Ô LíĵòÉé
    ñÌù´žĊĝQ9ôbâ70ĉGœ{ŭÜû🛙îϛğv*ŭĦü€ü€üšó?ä×ċĉżŻŝ^iZĤ³ŞiI6Ħ¨LŽd–Bî1h3ċolŭ³ílêpáÔÎ0ŒèT'Ùû°4ô²dĊJQÜ÷½ƒŝ…ò˙-n‹˙"ä˙šó˜˙Gŭ½˙)y>cġ;ô3ÙżêwŭäŝZŬŝEÉ˙5ŝû{ŝRò|Çê_ô3ÙżêwŭäŝZŬŝEÉ˙5ŝû{ŝRò|Çê_ô3ÙżêwŭäŝZŬŝEÉ˙5ŝû{ŝRò|Çê_ô3ÙżêwŭäŝZŬŝEÉ˙5ŝû{ŝRò|Çê_ô3ÙżêwŭäŝZŬŝEÉ˙5ŝû{ŝRò|Çê_ô3ÙżêwŭäŝZŬŝEÉ˙5ŝû{ŝRò|Çê_ô3Ùżêy˙ĉÏü·ä–‰ùWù—Ĵé?–úEŽİ¤ySY½ÓobG
    Ċ½ŒÒE"ĠÎêÊÍ׳~ÛöÖ£µ4¸²j§(O68È(ĈSŽ]CŻíog{?4á†"QÇ"q$ċ÷üâߖ49~{yË~hÒàÖ´-KôŸ×´Ë€LRú:]ÜÑòƒş+qŸAÁ´5ÂÔgÓÌ$x*C˜ĵ‰û	˜{-Ċİí,XòÄJ'ŠÁòŒŜŭ˙Ħcü‚˙Ë[˘˙Èı?ĉĵùŭö÷üäùÔú˙úìßġğŝ…ò˙-n‹˙"ä˙šñ˙Gŭ½˙)y>cġ/úìßġğŝ…ò˙-n‹˙"ä˙šñ˙Gŭ½˙)y>cġ/úìßġğŝ…ò˙-n‹˙"ä˙šñ˙Gŭ½˙)y>cġ/úìßġğŝ…ò˙-n‹˙"ä˙šñ˙Gŭ½˙)y>cġ/úìßġğŝ…ò˙-n‹˙"ä˙šñ˙Gŭ½˙)y>cġ/úìßġħÏ0˙Î˙Î>ù‚Ùá˙Ĥ‰pWŒWúMĠĊ´‘û„ġ&?ë£f~‹ŝ	Ŭż•ŝcŒwN1?ùH8ڏcû30Ż„÷đúkĉŸŸó†kü²´½óO’ĉóŻ“mĤˆĈaî^hĝfFí"MË"¨ċžÓìwü4½Ż8éġqs†˙ğ™îïzFW}$I§Ïû{ĜÌÚœ¸	ɌsŝtGŸxó*|Kž°ñ.Ċ]ŠżZżçÍ_úÓŝ{˙Í]ŞŬkDĊ_Òö*ìUĜĞħWbĊ_˙ÔûùŠğv*ìUĜĞÎ8^ê?ÊOÍ),Ĵ¤ÔŻcòŽĥ֚t‘4‹¤r]FĥwD”˘ĥŭ¨ÛcÑÉ÷'›żç*ô;M6ëPò–‰ùÁ ÇĈwËÉm¨êŜ”hî!·ZëA veÄV”ğ)äÄ<ŭĤÎsŝZ‘ç"yßSóĴirëz֎4ëyn4šaĈÜÛĈI#Œ5ŬXĈ˜:1<Ŝ˙8ġ˙?[ž/KË?Iĵ–K;¤˙h 3lĦk‰Z[IJ°2F…¨ #ĦÑĥò~ği·ż“żó^@·²_/ŝhŝ^ùŠÒHíÚhbşĥ–JşpuçäĵJ
    FôĤĊ…˜ĤŜHü²òċĦaä,Yù_OÔeIïll$&HDĴ#,ʟbƒKóvƒĦk"ñ§°ŭ)¨OÁgħ‹‘$HKÈÉnċ ™ĦíPĞŠ‚üp˙œŠüóüÁ˙œjóúh
    ċ(›Éže³Ó˘‡^G•ċ0ÛF~ıkñ…	ŒÉcXшN£"éżcE>µĵü¤˙œ£Ñ<Ù­yoB:•ìÚcéÍŜ´WVŻ;Â7–Bèġ>¤“Ñr l7³ v|§ċżÌéż'ġŸ7ÁŻIyĉŻ/hw‹ĤùsÍV—²jšd*ġ{‹›b‹!.ŻG$V”İÁȧŜŭ;üħüÌ˙˙˘Xê˙_·ż´ ı”$ÖĦfˆM$Mm°ŬTP‚ÌìM1ĤRO͏ùĈŬ3ÍÚ6}cċÏ1^k1Éġ˜5ۛ‘ogĤÈ΅n,´·ĈzŸĵ‡“/ÂXÓQ7Ä֍äMKê:‚k:îż$òé·Ŝ`Ġ,f–zĝK!–Ö]j@#^Àsgo›ç&0ïµHĴ|%ô·ibÉsvÍ%)3Td+Z“MöQ‰8Ċ­û˙8K˙Ĵñċ?ùĠê:lùŝóĉŝĴ?ÜÜ=‰˙Œĵ~ùş/ĴsÍŜħĜĞħWbĊ]ŠğK5żĝâê˙óq˙&Û24ŸßCúïjÏŭܽÇî=_’_ù9˙(ż5?î£}ħígückáÜIùóħ?Çô˙Ĝşè£>~ˆv*ìUüÎkñÚĠ˙ĉ6ŝN6}ñ¤ŝĉĠsóFï%ï?zW™
    M€I
    “°~×˙Î#Î<ÁùSċXĵÛĉk?˜~i·Y.İñé–RÉfĵ…VFÙĤ>4OĜİùCŝ	~ÛKĥµGM§—ĝ6#µrÉ1Î~c¤<½_Ċ·µû#ììü>6Qûéôħŝożùß.ħó˞ĊĜĞħWbĊ_‘ŸóšżóŽñy;R͏&Ĝú>X×nBùŻM…h–ó7:öb¸c¸è²mZ:Şŭ/˙ŸmÎżònŞW—ŭ܏9À	ŝ”>Ĝ˙T“ä~Úû:4ÓüŜè‘ġĉÈġ÷Kì>Ÿyí/Ÿğ@?óŒù ż+í‹üœ|ĝżÛ˙ĝŜĠ˙Üögŝ3pUîÙÇğ×bĊ]Šğv*ìUĉżù&?7
    ×˙î>tÉ˙Ĉ΋ŝ‹ŭÜ]gm˙ˆj?áS˙r_Žżó†żúÒ_—öĝ˙ş=î}A˙/ùÇ5_òOŝšÁñßc[ùßî$ŭÙϏßuv*ìUĜĞħWbĊ\@ ‚*Ä*ü˙œÌ˙œrĥò˘?3<“§­Ż“ġˁ½¤À´M—uxÔ}˜g5 èŠUM˙À³Û™vž?Èjċyà.<ò@t=òÎQߘ%òlŭœ9~gĴr> ?†_ñ'ì;u‚3Ù	ĜĞġĞŝ|Ġ˙­?çżüĠÚ§ŭÖ´LUŭ/bĊ]Šğv*ìU˙ĠûùŠğv*ìUĜĞË˙;î/­?%˙7´Â£RĥòVż.ž]‚(4éÚ:ħÈ
    È8Ĥ<ñO˙œx?3żç4Ÿ'ùŽĈ*ë×6ŸĤ/£µh_êŝ`ġ›ıUı}3Oóf‚a·:…Ħg4;˜DSqúÏ%zs#áäWl!€•>òÇüâWüċ/ü᧚ċó/ü7œí5|›}mêyƒÊšâSxñNAkĴr8ĉħHóDŭÙĞR€İê˙3í1´5Ôcġ+ŜÇ#ÁsĦë6ĉËPíäÊïr¤"O‡ÔŬNôĝħ”i™]Kf‘	䂢1ERµuˆr
    HUV;Ż.;mS‹á/üŭ+ÉZ\úŸ—?0˘³ÔŜöÒ°ôŜH Ž8ċıRêa$ÒK0iAEtD Ċ@ÁMÑŞ~SùGÎú˙ġ9ġMíÖ"6ú•pòMF0oŞŜG£v'ĝŝŸŝ÷AŭgïÑĊ]Šż™Íoŝ;ZżüĈÜÉĈÏ4ŸÜú£î~hÏŭä½çïJó!İö‡üáWäܘŸ˜ĉíj×ÖòżċóEvÑHµŽçRrMĴ&ğ+Ş Š6y_ü½¨=•ÙߖÄk.˘Çœq˙ĝŭ#ŜHÜ=Ÿħ]Œ5şŻcъ_Â>ϽûOŸ)ÒìUĜĞħWbĊR5yDó_–ġÏ-ùŽıµĞ)­uHœ…ŒŠC0cöJŭ ß²@=³7³µı´ZœyÉ	xûï‘FÎ>ĞOQŠXòŒÜŝn5‹}>ÓWĠ-t›ÖÔ´ğkÉâÓuOM-ÒFX(~ÉuİÚı÷f–y'ŠÉ˜ƒ!φU¸´v~oÍĈr7MñÙ{[ú˙œc˙Éù[˙lX˙äçĊŝß˙ĈöŻŝ~àû˙³?ñ›ƒúŻvÎ=Ŝğv*ìUĜĞħWbŻ0üí˙É1ùğ˙€Vż˙téó öOŝ6t_ü_îâë;oüCQ˙
    Ÿû’üu˙œ5˙֒ü¸˙·ÇŭÑïsêĝ)Î9Ş˙’ôÖŽû˙ĜÎ˙q'îÎ|~ûĞħWbĊ]Šğv*ìUù³Ë?<µ­ùS_ĥz>żi%ô&•  e&´d4e=˜™Ŭ›Úğ?SS„ÔñÈHwè<ˆê6qġz\zĴRĊ\d(ŝ>çóµù…äWòçÎdòN´´żòġëÛ4´*³EöĦŭ™ceuö9ö÷bvĥ.ĠÑbĠâúrDqŝ(Ÿ8›ÜüïÚ)èµÁ>q5ïî?ğ
    Í£†ŭj˙Ÿ5ëOùï˙5vİ˙u­KĜĞħWbĊ]Šğ˙ÖûùŠğv*ìUĜĞËż<5˜<ıù+ùżĉĦ[mÉ>`Ônùşlò·à¸Ĥ<{Éżš÷ž^ÔĵŬqĉïWÉŜcó˘è^KĠá’ÚŜÚ{hċ‘d’6šEâ	 '”^“ùÑä]'ó§òçQò£ĦÌš…Œ—ŝ\ğx£–X‰’ĦÖEPĊfUNT4â5À‚-˙8ßä%Îd˙Î.è˙”?™Ú×—<íùCĉíµYtt·‹Wĥ´ÒíZ+UF¸W+ÌÑĜ
    j
    j‘!úĉ*Ĥ™ùĦy[Ë÷“ĜĜyBÊÒßAĵY
    Ä&›Z[ğ1ĆPXŠħ$ŝÈ8X	nˆò'Ÿ#×4ğäŽò;û‹ı-ÒŝñC$`B9·1^%ŞÊZ§–ÛĞ!OÏÍoùÌÊ]sŝrÛòk͒jžWŭĞ­†‡ùÏ˘\½˘YŬ3˜£1ıc4mÄÂYÔĴe‹ñä6Âŭ2‚ŝh­QCİ‘VÜ+’´!âŞċ€;ġßĊùħ˙9½äo6ŝjyòżòÚşy7ÏSj××w[[Ċm}&[y%ˆÇqw,‡+J*4 “PŬŒŠ/ÊŬcŝpsŝrkCóĞċżùWOŻËaiġċóŒè4éÑMVòN°úóò8GȂ<*qğêŭ[˙œ0ò™ż+*´ż%ùòÛWòW™­·ÍĦj˙W½½ÔšhmíevoE"!‹K@6?(—ÍíÚ΍Ĥùĥ4h·Ŝe°o2[^Lċ58tÍAmn‰ŽP"‹H–àJèµ$âžAĝ‰ç{ëùĈÌù´+ywÍú~—¤É"êc‹òLÚK1³',	sìp`oÍ.yëòóM×ôÛ¸´ż0ÛY°¸Ñb–ÎÎbÊŻ#1Ç,Œ¤1˘ò÷Ĝô•°żüŭ%ĵŜmÖ§ĥVDžá¤hÚE–ŒÛµI¸Ċ¨°ìPŭĈ˙œ%˙ÖxòŸüĈêżġ6|˙ùÈsVîîÄ˙Ĉ^?|żŬÖ9ĉïXìUĜĞħWbĊ]Ššßüquù‚¸˙“m™OïĦŭa÷µgŝî^÷?žŻÉ/üœ˙”_ĝè÷Qƒ>Ĝö³ŝ1µżŒżî$üùĜŸúĝl?ŬôQŸżD;v*ŝg5żĝíj˙óq˙'>ĝÒsêıù£?÷’÷Ÿ½,’'`d5? ?ùÇË4üİü£òż—&ƒÑÖŻ!Ż™‰9żĵUyİ×Ñ^1àƒ>.öë·Ïmvĥ\àŜ0x!ŭHìùĈċŝsô³™üŸĦ†2=DqKúÇġrĝ=Ï9xìUĜĞħWbĊ_(Îd~g˙ÊğüžÔôûGÌ{fô°ĤސJ„ŜÌ;ÑaŞTnÔç£˙ÀğÙ˙ċ^Ĝ„ĉ/ŜKşÁôŒ·ó/)íiŝKC(ÄúòzGğĝËoy|úċçbŻèŝq˙$ċoŭħc˙“Ÿû˙ÚżĝaûƒïŝÌ˙Ĉnê½Û8÷zìUĜĞħWbĊ]Šĵó·˙$ÇĉïŝZ˙ŭӧ΃Ù?ĝÙÑñğ‹Ĵíżñ
    Gü*îKñ×ŝp×˙ZKòŝß÷G½Ï¨?à˙8ĉĞŝI˙ÓX>;ìoüka˙;ŭğğ9ñûîĊ]Šğv*ìUĜĞħWbŻÊßùĝWċôvšÇ“3lĦşĵOĦkĴ˘•žÜ­ĝ³ĈdR|sèŸĝ	öўú	Ÿ ĝ‘÷KÓ1î„ûä_+˙‚gˆäÇݏñzeïÇìż~mgğnŭj˙Ÿ5ëOùï˙5vİ˙u­KĜĞħWbĊ]Šğ˙×ûùŠğv*ìUĜĞÏ?7­lïż)˙3ìµÖm>óÊZÔş‡W†K	–E*j*HĤ)0ŝq<ñùsùĉğ9l†ê—^a°ĥ†Ĝ­Ü0.£$ékl£ûâĈiRÄPÔÀwrˆCyKÍiògĉüŻ\M&ĉ/-GĦ\£Ü…­K?Âc
    ĊèIRÔĦÚŞ/£7¸üÊÓż$ç/˙*ż;¤½:w’0ìçò_­áFôÒ8€³[ĞŸMнS ­Hڋĥò#vÙ˙4ƒ­iš~Ğp—jV×0^ÁêşĴ°ÌĤ6ˆI
    Ybtr '‰Ĝï\
     Ó/ùîO#êwöşġ‹éV6]ĊŭŻ“tĝĴílt½#Nxìl˙ÑŭUbİè âí ÷7Ŝς˙2˙:?4ü{ùáĞy>,ŝP-ä÷Mó=ÌÚ—ġY,íĝ‰Mĥğ·ż’@!“‰TàïVZ
    aBGpKż3çè>wó>—&…ù{eùw"yêúûôĈŝ…¤*VWv¨Ĝˆ6k!~}˙ÎGùßó“ògŝq÷ó
    	<šß•µÛû_4ŜŸPi—Zĥžĥ²G{Ġ˘cy‘ui›ñĊaúċäŸÍû_7y7ɞnםóÏ4Vş…´
    §E;ŽHÖċ@вFvoı
    ¸ Çğ£ïùÈ˙Í{/Èï>ŝ^ŝ`mv˙W–kmkR†tÍşÓëvĵċC"§'Ş"q´&ğc³`Ş|ıċoùʍwóóŝŭgËÚv£äż8êÙßùJê9'‘-•„vβA™ä‰6JÔTžDŒbw_ öùÎ*ßNO+ùĥmµM%0k1<1_7™›ĥÔ"Xšœ‡­?Mpı|׳Îv†8¤#îŽ˙iĦñ~üçĈOğv*ìUĜĞħWbŻßùÌßÌ˙ùX_œ†•arfò÷´M9TĠéZ·ÓR*eGUN}o˙Ïg˙’û"9&+&£Ö{ĝɏôŻ#"ĝ‡ĥ}İùÍq„O£¤{˙ˆüö÷ù+=%䝊ż ùĈ?ü_•żöĊŝN>|_í˙üoj˙á‡îżû3˙¸?Ş÷lŬëħWbĊ]Šğv*óÎßü“›żĝk˙÷NŸ:d˙gE˙Ċŝî.³ĥ˙Ä5İ˙ı/Ç_ù_ŭi/ˏû|Ŭ÷> ˙‚—üšŻù'˙M`ĝïħżñ­‡üï÷~ìçÇïşğ@êşŽ‹Ĥj:Χ?Ġ´Ŭ&ÖkŬBç‹?§d‘ĝ f4U&€{ğO§ž£,qc)‘9Y‘ 7۟{ıcŠr4"	>áı|á˙C•˙8Û˙—ŝäúÇŭ‘gu˙&·Ú?ùE˙˜żâŜoŭvOú·û˙Äğŝ‡+ŝq·˙.?ŭÉġû"ÇŝMo´ò‹˙K1ĊŻú2ìŸġoö3˙‰Mt_ùËùÇ­PƒKÓ˙2ĴÒîċ‚Bo­/Ĵ!,M3Ŝ[î{ĥcê˙àqí›É=,¨6P™˙K	J_cvk;/4„c˜YïˆùÈö‡GY]:8ŽĤ ƒ¸ Œâ Ñzmĵ
    ìUó'üĉ•SÍ?>u]yumġË&?²lċc˙"Aôç˙Ñ:>ßÁŬ’ñŸó†ßìÄ^gÛ
    /ĉ;3'|*Càw˙coÂ<û—ëWüùĞ˙ZÏùеOû­h˜Ğú^Ċ]Šğv*ìUĜĞ˙ûùŠğv*ìUĜĞÏ?7cŽoʏÌĝĤbËċ-i%qÔ+XÌ	# Ċ”y‡óĴk>có„vZĉ‡¨K­6“¨ßiş­ÊÚe†+>+njH˳Hû'сÊ^°¸ó_ċm­ŸŸfMó&…zïOqxì/Ĵnžu’Ö3KYZ
    íқSĉùïŝrÓÌ×zíï’|ĥݨX£Í,0}r䪯>;,˜¨è@èk…„ù?k?+?8-üµĤÙy‹Re×íôëXĉ·™ıĵÍèŬ•
    !VbbMqĈP|q£~bhÚ·ž2ż8?65}#ÉMó=ä~\ò7“üÏam$ÂÇL‘ek›¤Ey›ÖYÂ×á P‘ÄHf"^ĠĦßÎ,ŝlù:û[óuöŸùÇ ùUJëŝiĠ’âòŝĈÓ×òÇŽŠÚ.JFH”òކÄLH”eӗĜġ½ŝqŝpÌê6ŝeòÇċ÷‘Úò1Z>˘òI5›‰•d€Ċmy#@ÎPlHv րüXZáßùĝwĉ/äݤywòĞÊ^lO.yÇÉ×+p-4H4(ìceş´qĤ¤€ż5¨Û
    ë×tìÊ ı§˘˙Îù‹QĠ˙çĦÑ$š;ğ)kşživ—Ï3İ›Öô.yRŞÀV4P7ĦĊ–ύżç7ż0Ĥ×/ü›ċ‘İßÜßi	swİ<—=ğvÊ#VŽ7"™?Ŭ…Ŝ öĈÁIÙàżóŒvZ†ùµċ¨í=a
    żĞsvĥÓħŠC4‚­N(
    v§|ŭ?˙œ Ö<ğĉŻËĴo?O^^AMqèv÷œÒ:´ößBíğˆİÜ/+TüİüĤó/Ÿ-µVòߖuétĈ3ÈtˆšTUY
    Ç,éé9E #’HĈ#ñrñ y²˙8y#Zú†%Ċ´°O/Ħ§#ı‰Yıq(’;ñ@	EşĞ^™&™>fudfGY	§ħħ~Ċ˙Î ~gŝZùgò'Ë:G™?0ü³ċŭZŜïRiô½KV³´¸E’òVBÑM*8¤Q¸Ï—żà›ì˙ijûw.\lı c
    ”qÊQ5{€FÏħ{!ÚzL›dÍÈleyž„›˙•Ûù1˙—wÉ_÷ÓżêpèOĥċ?üŞŸüKÓ˙-è?ċ#úxŝ·Êíü˜˙ËğäŻûéßġ_ô'Û?ò…ŸŝUOŝ%–ôò‘‹ŭ<[ÓQÒTI#u’94r)YH¨ Ž ĉ€‚
    nÌÜ.ÀĊ^İŝlŝU蚅֓ĴŝeùSHĠ,_Ò½Óou›{ˆ\oĈH¤™YNŭÍ֟ÙÔÔc1isNÜJ8ç(‘ä@˘ëòöĥŒ'›d9ƒ(‚=à”üßɏüğJ˙¸ŝ˙Uòïô'Û?ò…ŸŝUOŝ%‡òŜƒŝR1§ëKµÎŻÉıtR8˙6ĵ™$’ZNħĈşöœY˜ĈÀû“—é}”큖èó×˙%>˙êµfí­„€Ï‘ŝ8ŝ·áżä—ŝNÊ/ü
    tû¨ÁŸ\ûY˙ÚßĝF_÷|?ħ?Çô˙Ĝşè£>~ˆv*ìUüÎkñÚĠ˙ĉ6ŝN6}ñ¤ŝĉĠsóFï%ï?{ô‹ŝ}Ùċ%kÌ_=Íċvş57¤„Ŭ]-Ĝ@sÂżàßÚU6ŒfY%ôï›é;Òo›9òˆ˙u/÷ŻÔùñô÷bĊXߚüáċ#hókŝo×lü½£ÀB½íä‚5g ˆ>ÓıĦ˘¨$öŸÙŬ—Şí›²Lôˆż‰îggWĴ¤ĈrfŒGSĝÜù‡hßó—żóZĉĤšU·ĉV“Lâ;{BÎòÊÙÉ4ݞâĵ…sĠÀËÚ
    >/Zb@ĉ#(N_éc"Oùĥèû_ÙygÀ2Ñóˆù‘CO¤ašˆb¸·•'‚tY ž6ŽŒ*ĴĴ* Ôœ$˘`Ld(Žaé7äŸ_™1ŝT~UùŻÎ"İ·Ôü½PóÔ.żuo’*ŸQ‡òĞgMìw`žÚí\:ZôĊ?(Gy|ŝ‘ĉC¨íîÒŸ˘É›ĝŞ£ŭc°ùs÷óÙ,²Ï,“Ï#M4Ì^iœ–gf5ff;’NäœûZ1@?>I³ÍO$‡bŻèŝq˙$ċoŭħc˙“Ÿû˙ÚżĝaûƒïŝÌ˙Ĉnê½Û8÷zìU†k˙™—~T_š|ûċÏ-jmÎşvĞŞZYÎbrB¸ŽyQ¸’¤Jm›]av†ĥ&ŸO—$.”…÷\Aáj;KK§—\°„ıÔ¤"~D¤òğ&?òîù+ŝúwŭWÌżô'Û?ò…ŸŝUOŝ%§ùoA˙)żÓÇġğŝWoäÇŝ]ß%ÜN˙Şĝ˙Ħ>Ù˙”,˙òŞñ+ü· ˙”Œ_éúŬ˙+·òc˙.ï’żî?§Ġ|Ÿl˙ÊùU?ĝ•ŝ[ÊF/ôñŭn˙•Ûù1˙—wÉ_÷Óżê?èOĥċ?üŞŸüJ˙-è?ċ#úxŝ·~p~p~Rê”żš:n›ù£ċCQÔ<£­ÛXX[kvÍ<ÒĜL‘Ċi1ggb¨'a›Ïf=˜íl=­¤É“Iš1Žld“Ž`'I&4’]wlvĈ‹&‹?}ĠĜĞüÒ˙Éeù˙€Ż˙PRĉÙïĝÓÓħ˙ğjŠfŝ¤żÜ—ó‡Ÿt?8ğv*ŭI˙œüïÔu7½üó5ü—ŸQµkï$ŬNċ!ˆ=cRB†ġ#²ĦÇ@ |ġ˙dħáíM<@â<9@ï?Lŝ?Lğɉço¨û	ÛsÉz<Ĥè\/¸sé'évx#énĊX§Ÿt•×ĵçM	Ç%Ö´-FÁ”÷6ÒDGCüÙ²ìmOċµĜ3àÉ	.&ż§Éùѐù‚͞}ÜüÜŭj˙Ÿ5ëOùï˙5vİ˙u­KĜĞħWbĊ]Šğ˙ÑûùŠğv*ìUĜĞÌ;f6˙“?›—
    ²ıƒÉzü ˆO)+§NiM³ħĤÊv'lYG˜:ZŽ·ÛiYi7rysMµb·ÖĤşYÖ¸r`´xâ1‚²ı%•'n¤9ŒQóĊĜ^Ÿk%•µÖ›2X4ë4BçÔ[¨ ’F9üU˜C@.ß1yûQŸÍÖş™†ŜÖ˙IÔn/4Ë'ԒâêážUğ7>E¢n~@h7•0·éÍíİùùĉŸÍ5ˆ-ĵËyĤG5ŽƒûÈWê˘T2
    VpŬĥÜ×£jdüÒ^ó̚ϝ<áäoó]ó-ŭµĥsm‹GŽîâ@ˆ°”fôżş‰J€hÇá<÷lj2”Yˆpî(_Ôhí°ß–˳	zŠY	 FO~ۚä>/_üíüĦÖ˙'´Ŭ3óËÓÛù^Ñî,Òél5Kuk™ç,à[CÏ$ñœŽ€°ëĤöCÚ	v‰”xŒâ7‚.ÀĜóĊüàÎÚÊHĈ`p˨´uû,$˙󏟖_ŸŸÖ˜7>SóµîŸaċûXn$úäŽÖ7z„MêÛہĵpş"³#…ĝ>(:w\žf2'rRŻ%˙Î6ù“ÌÖ^h˙KGóó<çE‚îk	$·ċ-ËÏ:9•Ş „ôUÏ-™h+‚’1žĵßP˙Îy—P°óòŝIÒÇS{Ë[ë+	Dq\$ĊL7O RµÄ2?˙Ÿ€ZŬÇùċ;û­m*+˙/D4˙S‚4‘C;…e·V‘Û½µ—µ5$ĥˆúcüÑúÏSú)âÙĠşWèÏüáçöĦ§kĥż“~jÔçCĠ˙‚n'j›;µ
    #Zmŭ9…x
    ìàŜ˙Żc1ċÀ{SMÉï@ŝ(òŝ´z÷Çsô‹ìGoʏ)¸Ëèżá?Í÷ž~ô·ŝsóó;ôߜt?Ë:–Ÿäĝ…ŝşŠßj7ˆhĦ0ÀAŝ,a—˙ÀgÙ˙Ëèòv„ÇĞ1áü.'sŝt˙ÜżoğOĊÏ,NĜ÷—ġ/”ŬçĈ{[çÎĊ]Šż ùĈ?ü_•żöĊŝN>|_í˙üoj˙á‡îżû3˙¸?Ş÷lŬëħWüçÏŝO+Oüô˙ù?uŸTÀkŝ0ċ˙ŸŬĈ}˙ŭHŭċñ6zÄğv*ìUĜĞéïù_ŭi/ˏû|Ŭ÷<˙ŝ
    _óŽjżäŸŭ5ƒÓû˙ĜÎ˙q'îÎ|~ûĞħV	ù˙’Ëó˙}_ŝ Ídzßñ§Ĥ˙‡c˙vÔ˙ÍŭIı/ç>è~qv*ìUíżóúÔÚçżċUô.ÑĵŝaµÓ™—Ż
    I“‘YÈ9ÉûužÂĠÀïX/ùWël]ß³yŽÒÁ!Ö`Ĥôŝ—ôŸż@ğv*ŝdïí–ÎúöÑXşÚÏ$*çİĊA?v}ù†~&8Ëĵó~fÉÜ_Ğ˙óĉŻŭi˙=˙ĉĠ?eŒÒö*ìUĜĞħWbĊ_˙ÒûùŠğv*ìUĜĞÈ?ç! ż<"¸OVŜOË˙3,ñRĵéW!…7ê1)0ŝkµ_5ùzin`–öó4F5
    &òÀNÌú\üb¤ÚX’ŜžIxĦftĊ‰ŞàŬË·kż™Sͨʖ2,öG2ëS ĉĞ)
    #*Äêà“TĦb(wê)³ùÇù4­kó—A›ÎÒ•nâh/ä€HŜ˘HmeGğFĦĝÁSa\‘òW­ÏÁ94Ż7KċïËè^I£êëaš)+2@a·ŠAEѝÍ	ĝ|7ÁTÖFÔĝ£ÈżœždòĴ$ґnÚêÖ+kĞ0^5ıUcGp‡ˆu´˘”ìjsIÛƒ§íHĉƒÔ;>Îí|Ú^3͛Zy_ó‡ŝrÇʍċíK%!Co°èÚT3µZâêá”)§V(Ĥ£e2{3²°ö~>]w$ó-ĦŻË­–N ŭó_ĉG“?ç˙+4oÈßË=7ó;óŠòY‡šÊž-í%ġä0‚äÑÄPÁÉYCÜ×d\ 7Ċúċ×üäİŻ˜-2tm7YğŻĤÓmŻZ4•=Taž+JzqÊÔ¨—…HĦ<ħÌ	w‚Ñ <ğùíĉŸ3i6Íĉo0yOëŝaÒ ı·k7ÔLëëÉdçœħÂ8‚UùÁ˜îpî˙Îmè–^vü òŻĉ^•ġ]NMáñâ…òÖÚù€Ró8’V Ù>!E­qb_?ÎhV˙œƒ°[ğk_ö“ypöòO,rJŒU$Ş’¨8z(wAäú£ŝ~£ƒċ/.êÉyċŝĦ
    şĵšŬ¤hŬÉDgh‘"‹…V£ƒn ‰n Ĝ~nŝAi‰Ş~féw7:Ċö™g*Oޝ>Ŭ]Ĵâ‘Ö5¸6ĊÂÜd  tȄ'Ĝßó‘ŝTÑ4ċ‚ûL²fvY–ŬXA5(“¨‹Ÿ¨¨IÛożÙ&ıs~mj1ĉ›ıéÓŻjmOX qWbĊ_Ó&‰˙]#ŝ`­˙äÚçÀúżï§ŭc÷żKàŝî>á÷&yŽÚìUü˙ÎNäüüÒ˙ĥԟñÏ´=€˙Œ'ü,}ċi˙O?ġžƒ˘v*ô˙É/üœ˙”_ĝè÷Qƒ9˙k?[˙ËŝâNÓħ?Çô˙Ĝşè£>~ˆv*ìUüÎkñÚĠ˙ĉ6ŝN6}ñ¤ŝĉĠsóFï%ï?{ú	ü…ÒF‰ù+ùY§…àëċ2y“Â[›tžAÔôy|ĝ³ÛOĉ;kW?öéîŒŒGĜ {…Ùĝ#ŭŸ˜³÷½k9§lìUgüçÏĉ$\üıÑ|‰a9Š÷Ï·ŒÚ‰F£~ŽÓĝI"n=Iž/˜VïžÇ˙ÑÉĴ˜¸àŽßם€~÷Áû}Ú'–8"wÊwŝĴYݵĝ÷ŸN>ìUĤjWş>§êúmZj:UÌWš}ÚlÑO‰#u>*Êʵ!Ÿħd;ÁGÄ3Ċ’XĤ'F$|Ç$w™ĵĊŞy·Ì:ߚ5ıŝħĞù‚ú}CQ”T)–á˰PI˘‚h£° ÊtZ>=>!PÇŸyê[5:‰ê2Ë,ÍÊD“ï)e´;v*ŝ€ç˙òA~V˙Û?ù8ùñ·˙ñ½Ğ˙†¸>˙ìÏüfàŝĞŬ³wĊ_Œ?óŸ?ù<­?Ó˙äŭÖ}Q˙Żĝ—ü:t_öûŝ4Gġ#÷—ÄÙëìUĜĞħWbݧżç
    ġ¤ż.?íñ˙t{Üó˙ĝ)Î9Ş˙’ôÖOìoüka˙;ŭğğ9ñûîĊX'ĉ—ŝK/Ìoüġú‚—7ÏĈž›ŝŭĜp{SüS7ġ%ŝ俜<ûĦùĊĜĞħWħ˙Î=i“j˙ž_•°†/™ôëÖ
    *xYN·N~Ab5öÎ_Ûm@ÁĜzɸgôàÀ}²wÏb9;Gω˙JxżCúωßĦŠğ2ڜñŬjZ…ÌD˜ne–"Er£äsï½<1Ĉ'˜}ÌÙd%2GR_ĞŸóĉŻŭi˙=˙ĉĠ?eĴÒö*ìUĜĞħWbĊ_˙ÓûùŠğv*ìUĜĞÉż?$~E~tÊ×_QXĵ‰ĉ7kßOÖôBé—ÔôŞĵĝġQ^˜²‡0ŝX|ñe­ËċxĴÛTıžËħJĥv_Wĵ². ŭôÓGkñÀħ4e"ñ" ÓĥF÷r‹çµŠúĊš4ġµCDÂ&Œ#yPON$°ĦĜŠoĜŒĜ1EX~aEċ[Ĝ/ÚÒÖÚÌn •"
    ÍÉ2‡^@P€WŻ/IîA*ó˜&ófğĴëw··1ı&ıŽgF•žR	Š#C‚vİ;uĤ
    i2·é˙üà/üÏċwœż/µÏÎ˙;Ċİê>iòżqa ÚÚÜKh#µ²Ŭ^/LŭeĤġèhh Pƒ]Šbž~fÎgkZuğŝJŝAùÛòòÖÊOÑ_ŜŜĦÔe[ míĈoH!’'nHñĵ”Ĝü´YÖûA‡MĠĵ³¤ùÇϤZż™üÁevk>lÔ.Oé7x¤V™T\JìʍNL½zb*Ŭp‹{§ü—žoWUóǘc°×t2µ–‹mnİÜ!î‰ğ–Ŝ	>7gmÈ\Fê,óx|žağ‡ŝrşÛP‚5wÔġXôÙlĴd˙şş·ksj\BĵĝíÌڟN$ Ĝ“ïï3éùŸòŸóKÊWĥÇT³Ó´‹Ó`ZYb=”
    "˜ŭY×ÓeÄ#wSJ×FRĝğŝp;ÎÑùŝrCğ°ĠŻ´Í_KĵÓ5?ÑvÒŬ‹s0Ñ¸ıŽf[tñ‘ĥáËÀ`
    DX}˙9óċ
    {Vò8ÔmáŠâ×A¸MVxV[„ž;X™ƒÉ2Ö×°5iÏ}Žq³Y]‡ċ÷ävĞŜŝchï˘Ïe£bâêïäÛK0ŒîVùPn	ŭ“ˆXó}ċùıĦIĉ]5,ÚٴۛségûPŜŠ’ĉǃžl
    ä˙0µÉùéĉŭYĵĊĦ–×Pĥ‘–ŝÒ@zŻûé˙XŭïÒĝ?ğ¸}ɞcĥğ?ßó“Ÿù??4żíµ'üA3í`?I˙y|ÚĝÓÏŭg„ç`蝊½?òK˙'?ċŝşŭÔ`ÎÚÏĝĈÖ˙Â2˙¸“´ìOñŭ?ü6îƒú(Ï‡ß˘Šğ3šßüvµù¸˙“Ÿ|i?ı‡ġGÜüџûÉ{ÏŜŝ‘<§fş•ĵµ`„ħÒĴíŞñE ˘ŠÓ§LĝS´²œşĴ³?Ċ9™%ú?I0t@ûüÂrŠżżç=ĵÁ&ĞùÙo£óŭǖ4;Q[†’éÛ~¤Ĵ¨6ÛaŜıġGü4Cbœ½rä‘ĝF >ĜŸ›>ŜêNéóı~ĝ—=aâ]Šğv*ìUĜĞħWô˙8Ç˙’ò·ŝĜħ˙ÉÇϋŭż˙í_ü0ŭÁ÷˙f7ġ^íœ{½v*ó/7ŝLŝVù÷U]sÎ>IÓĵÁĞ$	j·÷JĈAe™RĦ†Àħûó ìÏj{S³1x:\òÇşĴġċäë5£ĠϏ61)UYîbßô,_ùkt_ù'üכôÛßò—“ĉ?S‹ŝ†{7ŭB.˙Ħcü‚˙Ë[˘˙Èı?ĉĵÑ˙oÊ^O˜ŭKŝ†{7ŭB/ï͝/OÑ?5?2ôm&Ġ,t½#Íz͖›eÉ
    ½½ôÑĊÖğ*¨>ĥöoQ“QÙz\ı燤O3)@~%ñÖĊZ̀¨Ç$€ÀH€›§^ìUô÷üáŻŝ´—ċÇŭ?î{ž˙/ùÇ5_òOŝšÁéŭ˙l?縓÷g>?}ĠĜĞüÒ˙Éeù˙€Ż˙PRĉÙïĝÓÓħ˙ğjŠfŝ¤żÜ—ó‡Ÿt?8ğv*ŭ+˙œü”ĠF³?ç/˜,^ÏMµĥ–ÏÉBQĊ&¸;‹~hÔôbÍO³ž
    ˙jñx#²JäH–ZŝĉeR#÷Ò½„ìIĝ‡YPˆy“ħ—şĥó³ÜŭLϞRv*Ç<ċЍÊjיŭ1˘h÷×ĉJӈĥ·yk^ԙŭ—ĤüÖŻ|sŒÓHÒk3x8'“ùħ'ä-üĠçŜ/͏֯ùóWŝ´˙ž˙óWjŸ÷ZÑ1Wô½Šğv*ìUĜĞħW˙ÔûùŠğv*ìUĜĞÍ9íĦù=ùħ`=Ro|›À#f^eBâĈ5{?çtO,ŝtA¤Yù³NךÚhŭ{+eŸL½Šqo<²RhÚ ²$¨ĵ£jĞGPqĤÇÙߘOşÓÌVÓ\_*Ĉ-µ}>×÷˘‘Ş%XŽÜ£*³
    ¨0ók/ÎïÎk8mġXçÓï!Ô-/âIôŭJO^'ä…eèISCM˜+rµ—ÎÒJĝĦKv*ŝ™4Oĝâéóo˙&×>Ġ˙}?ë½ú_÷q÷ı3Ìv×bŻçûŝrs˙'çĉ—ŭĥ¤˙ˆ&}Ħìü`é?ácï/€{O˙y˙ĴœìħW§ŝIäçü˘˙À×@˙şŒÏûY˙ÚßĝF_÷v‰ŝ?§˙†ŭEûôCħWbŻĉs[˙ŽÖŻ˙1·òq³ï'÷0ŝ¨ûŸš3˙y/yûßÓ"ĈވĦTE
    €gÁ’lżKMàWbŻÁŻùËۆş˙œŒüʕÔ)[>JCĤÚĈÒ|ûŝpöwJtÏÏ$Ïé|Úùqvcç²1›sğy·bĊ]Šğv*ìUŭ˙Î1˙ä‚ü­˙ĥ,òqóâ˙o˙{W˙?p}˙ٟĝÍÁŭWğgï]Šğv*ìUüëŝv˙äçüŬ˙À×_˙şŒù÷²ñ˘˙„b˙qç~Û˙Ôgŝèĵ:VìUô÷üáŻŝ´—ċÇŭ?î{ž˙/ùÇ5_òOŝšÁéŭ˙l?縓÷g>?}ĠĜŞWiž`Ñ5üÈ,uğ>ôÄBÈ"ı˘~AñcCLÉÒjgÍ(HH_+‰ħ&Ĵĝc›ħ˔ÜE>:˙Ħü˙–ż4ÜBû%ÏO˙“Ë۟Íŝ˙Ċ<úìîù˙Ĥİßô ߑżò×ĉûˆA˙d¸˙ÉċíÏĉá˙Hâ—ŭöw|˙ÓÔÈüŻ˙8Mù
    ċ­N-R]Pó3Û²ĵzĠ߯lĴĤ ´1$+ =Ö@Ê|3´?àħÛşĵGœq_3ÔżÓ"=ñ£ĉäi}‰ìÜâ13’6>BŻaġŒCk6Ö½½ş,Vöñ(DDAEUQ@€óyÎS‘”“ı'™/YˆŠĞ‘KħWÎó–h_+~@ùŝu—ÓıÖ­cÑ-ğBU†UóÄÈ~C;Żĝvç{N*Ä	™òàCŭ—Î{[Şüżfe=d8GùĈÙoÁ|ûgëWüùĞ˙ZÏùеOû­h˜Ğú^Ċ]Šğv*ìUĜĞ˙ĠûùŠğv*ìUĜĞ
    üĈ$~^ùì†âG—uB}żÑ%ßfS÷óĊ1ĉüt×ĴìEÔà]Úêw×4û-ZîxVi£DiïċşKhPx}˜èCuéĈİ·)óž4™u)nJ]ŜNo=KÍhìٞNrD¨…Ç
    '¤ъò£,­ñg›áŽĉ;ıżFÜĜN’um?ïĦŽ2c{w†2ß•è§S‚,R'ùb;í&ïI²°ıĠuf¸u³ħ³’v–HyI"°J€`|4ĤĜñW$ûÈĴëĤĜj÷’ZȚlvóhĥs[i²Äħ•‚ky·ˆ¤ÄĴëö‰ĝ‚ÎĥL5mJZXŝğ-ĵúċœży7Ĉ)Ċs3+)œŠÓŒœh>1ÇRòHŜ˙Êħĥ”p´şµÔÚ+9µ	->˘“ß:	es8œ£zŽġŬèk‰A§‹y
    }ó›ÎZŸ›ĵùŻäŻ%ĜŬjO£jşĊ‰şÔg†BE‚%ĜàžŠ:.Ĉ¤aĤ;ÚżüᯐuÍ˙ùɝ7Îzżá/)j·^jÖ•ÌPÚ)6‘Gr‚ŞÈP€[pĴìPÖOW?-˙,üĉŬjêV:>zÒ^‹ Ċ(˘$"S
    9Œ8T]Ùş
    Š|GÉùÑ˙>ÔÓ$ĠüÉùŬç!{m#³YÙµœŒ‰xóO$×?0DG^JÊP+ü?´ĵqLċ³ġ'ÎħYjžMó.—n×Kya,–övÒ­½Üì ·ĵ?ĵzQ%äôNĊ„yÛÛòKÊKùŸĉ¨-ċÓüçĦéMm­Ä‹ˆXğÍŜZ34ĦëPòĦ¨o„1#€›{Ŭ?0üÏĉO)ĵ’K;KE[]PÉÊX%gŬLŞJÈĤÉyP¨§%ÂÑ!Oϟ͏<Çĉ
    Mi#Nş….01;rŸÓâµk^&•ÜuĊ‰/w.jE+ŠbĊ_Ó&‰˙]#ŝ`­˙äÚçÀúżï§ŭc÷żKàŝî>á÷&yŽÚìUü˙ÎNäüüÒ˙ĥԟñÏ´=€˙Œ'ü,}ċi˙O?ġžƒ˘v*ô˙É/üœ˙”_ĝè÷Qƒ9˙k?[˙ËŝâNÓħ?Çô˙Ĝşè£>~ˆv*ìUüÎkñÚĠ˙ĉ6ŝN6}ñ¤ŝĉĠsóFï%ï?{ú_‚ha†âçè²Dô"ŞÂ ô9Làa#Ìlŭ-	U2)v*ü!˙œ²kùÈżÌE<Š\s·q.›jĈžÁŞ>ŒûŝFOgtŜ\cċ’_£wÂ}°‡jĉóá?8‡ÌÙß<ËħWbŻÔ[ù÷~ycgv4Żc7PG1AFxóPÔŻÖğW>{Í˙ìĜç(ŝR;>³Óü×Ô1˙Àó˘ŽwÍ­˙DĉÑòêŜ˙Ü&?û*Ê˙äùf˙”H˙Ê˙ÏŝMÖ?ġsŝ”~·Ñ9´_üş·ż÷	ŝÊħ˙“ċ›ŝQ#˙+üJ˙ÉşÇŝҏÖĝŝròzÛòCϐù2×]—Ì1K[ê__–Ü[03É*àŻ ÛÓ­kß=gĜŸiċí€êŒc"f4 
    Ŭ÷‰ö‡ħÇej|./H7UÎüÏsö;ŝq˙$ċoŭħc˙“Ÿ/{˙Úżĝaûƒì^Ì˙Ĉnê½Û8÷zìUĜĞħWbŻç_ó·˙'?ĉïŝş˙ŭÔgϸ=“˙Œmü#ûˆż;ößĝŝ£ŝ?÷Eĉ:·bݧżç
    ġ¤ż.?íñ˙t{Üó˙ĝ)Î9Ş˙’ôÖOìoüka˙;ŭğğ9ñûîĊ]Šğv*ìUĜĞħWbŻËïùĝoŸUċò?ċ¤üŒ§˜µ¸†à3µ²ı#ÀİÏ żà%ĜÄ
    FCcÙ)˙ĵùÌ?à‡Ż³‹LôÏŬ÷ßcó'=ùó'ëWüùĞ˙ZÏùеOû­h˜Ğú^Ċ]Šğv*ìUĜĞ˙ÖûùŠğv*ìUĜĞüÈVËż>˘Nm]ĵıŞı6’ÑÁ`@×pqLyżîµíŝytÍFY½4ÔJÄn%1ËKˆi%c–6WâUGŬƒqbìäĵ“ó3XBÑġ:;K½^}&ÊïRm*ÙZâOG”Œ“C;;‹w%bxófäZĴĝĞÍÖ­§é—Ò_Am<
    с-§*dš[ĊiÙ½W `;ž*ğdRS%ùzÖ÷C·Ġ%/ïì'š×ËÓÇ1›ˆXp–ċ–F*Ħ83JÁùbHİbRÑüƒeĴ۝GÊZ~²//cGšóL–öKwmħG5͐X^HŜ QKÔĦ]öbH”j‘X£{Ĵi2Û£i“ÌŜeÔ!eúƒ#ÛÍĤ£a4mĤŠ;Ûò'‰#PX•öıċŻÊ¨mßÍډ>UÖùqZÇweeqpct+	„ħT@B¤’VDsêÏÊ/ùÂ/ùÇ(Ż4Í{ƒ/ĉe—™u_.Ĝj÷)=ŠúĦÏ8£R„$€@Áiâ+‹DŽû>û·O)ù'Ëpiz-µ–t
    %	¤ZCÛ§İ#׏Ú1b	Ol$°ŜEùc˙9•˙9säM_Èúçċgċ÷™bĠµ-~cĉoŞB—ö?VYĠ˙}?ë½ú_÷q÷ı3Ìv×bŻçûŝrs˙'çĉ—ŭĥ¤˙ˆ&}Ħìü`é?ácï/€{O˙y˙ĴœìħW§ŝIäçü˘˙À×@˙şŒÏûY˙ÚßĝF_÷v‰ŝ?§˙†ŭEûôCħWbŻĉs[˙ŽÖŻ˙1·òq³ï'÷0ŝ¨ûŸš3˙y/yûßÑ÷’ï†İäï)êAƒGF°ı ¨>µş=@;޽óá~Ġàë3cŝnI”ˆ~ŽÑOÄÁŽ]ñĉ%Í{’ìUĝï˙?ò̚gĉĈĉTŒ­§š4ËÙĴ%xċċ÷çÓ˙׌Ŭ•“>ĴYúY€Gû!7ÇżàĤ8ġ°ËÒpûbhŭœ/„3Ĝ^ĜĞħWôɢÇH˙˜+ù6ı>Żûé˙XŭïÒĝ?ğ¸}ɞcĥğ~0˙Î|˙äò´˙À_O˙“÷YġGüż_éŭÑ|gÛïĝÑԏŜ_óŒù ż+í‹üœ|o˙{W˙?p}'ٟĝÍÁŭWğgï]ŠdüŬ˙œ­üğü—ó\~OóNĉ;ŭN[uŸJ·´–Jw‘žîäfż
    =óżögŝ=Ħí”ê´óĊ	Ố°ŝHVŭï3ÚŝĠé{37ƒ–32 } ½÷Èw<ğŝŠù1˙RϝéN˙ĵŽt?òe;gŭWúi˙Ġ7W˙'AüÌż(˙ĊğŝŠù1˙RϝéN˙ĵŽ?òe;gŭWúi˙Ġ5˙“ƒ ŝf_”âߔż˜ža²ówĉžĵ×ĤĊ<w™üİêÖÜŞĴÉ
    íܳĈ²Ş3¨`ÄWĦ9ôgaè§Ħìŭ>›!XħBŽWˆš°
    XÚÀ÷>SÚ:ˆêuYrĈês”…óİE°ìÚ8nĊ_OÎ˙ëI~\Ûŝè÷ıç˙R˙œsU˙$˙éĴŸĜßĝÖŝwû‰?vs÷Ŭ]Šğv*ìUĜĞħWbİfµĴi^ÑġM{XşK'Fµš÷RĵÑb‚/#’ƒ™M.MVhaÄ8§2#ŜI ×›40ÂY&j1“äÎ÷ĉ·ĉĦùùƒĉ=j
    Ñ6ıx^Êэ~Żi[CĥĠH‘A#İİïŸnû9Ĝ¸û³ñháżw?ΑŜRĝȓä6~wí^–żU<òŝ#°î€ĝžfí׿ZżçÍ_úÓŝ{˙Í]ŞŬkDĊ_Òö*ìUĜĞħWbĊ_˙×ûùŠğv*ìUĜĞü×%+2XFe#ÊşÉ+-ŝƒ6ÁB|qLy‡á#j>dˆ‰ÛQµLbytë8ÚKÄHĠë,×rJPB ˆ,lĆŻdArŜù›ç­.^ŠÊ{{}b[YîneMJîo­™nB²€ÎĞ#8œ6 ^MI|Ŭ§\G6—zb·ğĥŭ'4÷mo4Ëġgİ‘´XG)` hAß	Š}ùgĉ{kıMĵŽŜÓ_Óe¸f™•Rá’YTg(DäŬċÔy¤Ŝ­Ìö×Péó­ĵS¨ŽhHç,­nfDòŝċ#y˙Éw:ŻäW›57ÑàÖô{½IµŸ.êĉDkh"”ˆ’ŬO÷qÔ¸RiȸÒ&Äż:|çİÎŭSòò{̞a‡LÔ£}ZÁġèîN~’GÂöÊe†ċI¸‘4Âèz£!ċ„–ƒĉO;ÎUŝz~ay?NòϚ5ıî-d–a&­oÚ.Ĥ‹_Ŭȑ*ÄĉV‹‹\Ċ·ñöi[„Ċ×Ó,ġ‘M%jÛ/˙팎'îü┷•óŒV)ĉ­,é+Ğj—w­ĵÍÌG˘ĉ;ĥ€Áf,‘ÈWáü_
    pûÙSóÍ>sóçĉŻîġÍG–|&™Şí
    ÊI
    Ĵwvw½ÍĴŸZÛÑşdVh˜²´PĈ‰eğí/Èß-iŝOò-İ%ĞYÁ)úÖİnÖĴ³YÍwsE‰ÂŸJ,(*ÊĴÊĊ…hòŬJKù³5Ĉ“mĴÚjVż¤tñ³YiĉRDUB=ĴË@ÑÊşİ$‰AŻ…Ş[ż/5ûÖıĵıŒ7(ŝê˘†€šT(EN-Lov*ìUŭ2hŸñĊÒ?ĉ
    ßŝM|ĞŝúÖ?{ôîîrg˜íĊ_Ï÷üäçŝOÏÍ/ûmI˙LûCĜĝÁÒÂÇŜ_öŸŝ4ó˙Yá9Ĝ:'bŻOü’˙ÉÏùE˙˙u3Ÿö³ŝ1µżŒżî$í;üO˙
    ‡û ŝŠ3á÷è‡bĊ_Ìĉ·˙­_ŝcn?ägßOîaŭQ÷?4gŝò^ó÷żçµq­ŝF~U_ĉcòċ•“·‹XĈ-ğë|cí›òŭıЇûlŝœñ˙}ûÙÜŜ/g`—ô˙KéŭfÎUÜğ|o˙9ğùk/ž?(¤óngÖ/.Реƒ¨ŽùG²¨YO´yê_%íáÙŬŻàLÔ5ƒüñĵ>fâ?ĴñŜÛöiĠh|H‹–#Ċŝoñ~ƒ~(gĠϊ;džOòĥİç4èQÑb3jža†ĈÑiPĤVğx*
    ³À˜=§Ú8ğ;K“S”Ô1ÄÈü:{Ï!ĉäèô³Ġf†}R êIvvËgikhĴ]maHUÏRBÔŭَYĝ“2ï$üߤaÜˆÊÙ;~0˙Î|˙äò´˙À_O˙“÷YġGüż_éŭÑ|gÛïĝÑԏŜ_óŒù ż+í‹üœ|o˙{W˙?p}'ٟĝÍÁŭWğgï]Šżç>òyZà/§˙ÉûĴú£ŝ_ñ‡/ĝtŝè3í÷ühêGï/‰³Ö%ĜĞħWbĊ_OÎ˙ëI~\Ûŝè÷ıç˙R˙œsU˙$˙éĴŸĜßĝÖŝwû‰?vs÷Ŭ]Šğv*ìUĜĞħWbŻÊÏùÍŻùÈĞ}eçü›òUĝ›O³œ=ê°5Riâ`É`Œ
    Ĉ”żċ€ğq`~Š˙?°òÀjjRŭÔO@yä>rGú6z‡Êŭĥöˆe½°>²:‘ü?âóÛĦ~mçğ>nìUúĠ˙>j˙֟óßŝjíSŝëZ&*ŝ—ħWbĊ]Šğv*˙˙ûùŠğv*ìUĜĞÏ˙6]˘üĞü̑dxüİĴ²ĈíÁX‹ˆ· >8Ĥj‡R³ô5Y ŭ7r“D'°ighykrÌŻú@ĞĴ‹ÊöYŠü›§]Ÿ5.´š[Agr$·ÓîÀ·IɌI‘²?ĤœK"Ż~‡eŬ¤
    ŜĴu6·Ól™&›\—O)ma9a
    ÂÒRéšYUŭEdT•jîXƒ$§šĉŝpòIÖìĤ¸´óßċ÷éï&j–QÇ-œ’ÔĵÑ^“Ê ĝ½{TaH·³i?ó—düĵÑż-0üí ,ߕ?›Ĥ}vÂÚĠ.O—µ‹W1ÈÚt}]šŜàÄÓP—Mb•*[k!ög›ż%!żç#4ï,ùÏÌ^U°óµ„~‘òĉık=ĠğOÊCÍÂ회ßnWħßÌ/ò?òĞÈï>ıäIòż”b·›JÓŒWig9<-§ĥġjĞ)f4’˘ğó$àl÷Ç•˙óŒŜmówĉ•Ïĉ×矗<½z$t¸Ò<ż˘kZ‚Ì„G5Íĵ(m¤uT*ġ$Ġù
    B½·ŝr#V†Î×Dti-ïaòÜĥiqċğĠkf‘¤,ëe$İ(ĥX.­YE˜S˜Ü֘³ˆ|M˘ÛÉĦ~`y‡ü1¤[ë^FÔ5/J.àCs­ìL2ÇsIÇK„pxË(ڜ‘äGĠï5•żékŭ
    {{{íCM†6ŽP’é’Ĵë2iw~‹QĞÖóñ	U_ħı÷ ĵBóQ{íUòÜ7–…ż­=ž›|”ÑH–Ş
    ÈħH›aSY(ÜÉÀ×7痚´ˆ­.$·aè‰äXÀ¨˘†Ùw†’ˆĦ#5ŠğLš'üqtù‚·˙“kŸê˙ŸġŜŭ/ƒû¸û‡Ü™ĉ;kħWóŭ˙99˙“óóKŝÛRÄ>öŝ0tŸħ÷—À=§˙<˙ÖxNv‰ĜĞÓ˙$żòsŝQàk ŬFçŭĴ˙Œmoü#/û‰;NÄ˙Ó˙aŝè?˘Œĝ}ú!ĜĞħWó9­˙ÇkW˙˜Ûù8Ù÷Ĉ“û˜T}ÏÍ˙ĵ—ĵŭïÙoùÁ1.ħù’\zžSÖġ
    ?Óá'eV§k–äsċżĝ0h|Ü9zeÇ	|Gî˙ŜÙ=„Ôx½œ!üÉH|ŭ_ïŸf畽›ħU9Ħ†âmî"Ià9à‘C#£
    2²š‚4 ä£#%Dr( HQÜáçüäçüv·ù=ĉ;ísC°žûò×VœËjqİq`ò’~§rEJ;#6̴ߗ!Ÿ[ûíŜŬÓGiê *QċÇ_Çûŝ 9Úİ˙i½›ÉÙıLñ‚pÈì›ÂAê<ß(˘<‘Ĉ$’0XPK3@IÏF$g“ʁ{ëOüáünİä–ÍO?iϧyŽöŬíüĞĦ\)Yì­ĉeıé,Ğ*ĠrŬ¨ż6˙ÁSÛĵ] ?“´râĊy&9NC”bzĈ'rzÊĞażĴûìÜôżáZS"£Î ó'¸žUsç·Ìñ'Šğ~0˙Î|˙äò´˙À_O˙“÷YġGüż_éŭÑ|gÛïĝÑԏŜ_óŒù ż+í‹üœ|o˙{W˙?p}'ٟĝÍÁŭWğgï]Šż˙ç:|·ĉ-[óÖëKuJĜyjÁ
    Ċ­ĴÓGÈMrJòE"˘£lú{ŝ:í>Ċ1ɒ1>,ĥ2òy|Û­6\  Hà=K?Gœ˙êQÖżéçŝİçİ+h˙Ġħ˙§ëxßÈê?Ôċŝ”ŝ§‚<ç˙R޵˙H?ġOċmúĥ?ôñŭkùGúœżÒŸÔïGœ˙êQÖżéçŝİü­£˙VÇŝž?­#¨˙S—úSúŝóŸŭJ:×ŭ \˙Ġ<•´êĜ˙ÓÇġŻäuêr˙JR”ŝOóm´3\Üù_W···F–ââ[ÑU™˜ *IÉC´ô“ŒrÀ“°Q²~h–j˙֟óßŝjíSŝëZ&KĜĞħWbĊ]Šğ˙ÑûùŠğv*ìUĜĞüÍġċ·ĉˆÒSċ­[Ó'ù§-?BcÍĝ5ĴÙIuċCBı´oҚžĦġY¸ÊnRŞÌŞÑ2ñ†…UBǐñ'G)ó›/~Ż‡ê“ŽŸ>”%ĵħŠIomıÇ<³:E$Ż,qáPáxüËb—ùÛÉÚϛô.é^Hhġ95-VCuċ™}‡OŠ8ŠâH‚	ŠJ€ˆÂ‰ĝ€ÁH"ù=yv/yËú]ŒWŜkòìT2L-Ŭİ?Ut$ó’F*ƒˆċş°)ŞOµ¸—MÖb·¸h'kùH…ZħÏ‘î!ì]Ħf^$°t‘²gċÏ3é2Nşo™‚ĈĊcôä˜GıXïÖKWfŒ™#VtU€­Òżl3Rü”Ô4ë‹˙Ék£ŻÍù+ĉîZÏä÷ĉmŬ”w˙ 5[xŒÓÛ_}UŞ"œF¸V²˘1ĉèĠG—GÒ?󌟝~Bògün¤ézíĉ­y{P–Ç]Ñfœ]4’‡33X!ŽáTpô'w\%cċÑ/×<µù­˙9ĉVó€òçċĤ™qe­é^V’äKu<Şy%ÜŠJ4²‡…ÀĠ‡G
    ™+ŝw˙ÎOè~D×ġ+ùZċ_Z Bj!K¨òĝ´˙ñ§ŸúÏ	ÎÁÑ;zä—ŝNÊ/ü
    tû¨Áœ˙µŸñ­˙„e˙q'iĜŸúĝl?ŬôQŸżD;v*ŝg5żĝíj˙óq˙'>ĝÒsêıù£?÷’÷Ÿ½ú˙>ñó€³óOŸ<<€&ı§Ûêö
    Ŭ°Ċ*Żğ“ìŸ<ñ_ĝ6ög‰Óëú$`}Ó>F'ŭ3è?<Öpĉˀ˙ĉìŬ}ĠìùĊġgbĊTĉ†ˆ¤‚â$ž	”¤°ÈĦ‘”ìC)¨ ûä£#M‚…Ò-.´Côĥ‡ä.hşŻ._¤ìtĞKkŽ[ïêĊµwñÍĤ§·ğGSÍ¨Ë86S”£ò&œ<]›.8b„eŜ"ù€ÍsRĉğv*ìUĝ˙9ó˙“ÊÓ˙}?ŝOŬgĠ˙Œ9§÷EñŸożDR?y~”Î1˙ä‚ü­˙ĥ,òqóÁŭż˙í_ü0ŭÁôŸf7ġ^íœ{½v*ìUĜĞħWbĊ^aùÛ˙’ców˙­ŝéÓçAìŸülèżáĝżŬĊÖvßĝ†£ŝ?÷%ĝë˙8k˙­%ùq˙oû£ŜçÔR˙œsU˙$˙éĴö7ŝ5°˙ŝâOŬœĝŭ÷Wbİf·ĞÚyEĠġëŝQÑ,/ï}%äŝ´m+ñZŠž*h+™M4ġYĦ†Tä"/•ÈûÚ³ĉŽrÉ.QŸpݧj:ŸcŞé—QßiڔŬX^ÂyG,3(xŬpÊAĝ'ƒ$ħä2‰ ƒÌħÜËH䈜M‚,Q™S7bĊ]Šğv*ŝg5żĝíj˙óq˙'>ĝÒsêıù£?÷’÷Ÿ½ú­˙>j˙֟óßŝjíSŝëZ&d5?ìUĜĞħWbĊ]Šż˙ÒûùŠğv*ìUĜĞüĜ’X+?2Ĥ†SÑyWYx§
    X£-ŒÄ0U šè
    qeaĝi­NĊî`ĥÖëSRLĥ²FžV…Uäĥ£G(\Ì9p.Tô-‰r€|ÒŝQój÷şŻ;½ËF½¸i­í½'[{’Q%„’G’wi—ÓB€|׎
    ´lM>AĠ/%Óà[mbÒêöêö ¨IzfŜÙcRÊ+,|Ñ„
    ù‚[@òOôŬZ:óWğóĠĊ§—í~ŻkmĴJLÌ#z#âĥ”a½NĝL­I§ĈhuO1jq(ž{íOP™ÜLç“<Ĵğ>ıİ$‘JäXÙ/ż)ż%5Vċ'a.§ê–úeĉ„c"xnKòŞV„ĴĤ•€WÎ!ú%ù[äXî!ò÷˜mô‹{M_P°êö–áLCQ)%µċ˜†TE/§êŞB S쌝e2,‹Í-eoĉ.š.R	l.´ÙZ&’c’Ġe·–4:ĠIDĝœħ/Žoµŭ̞g³Öá·{	5‹	4mwI½+ġˆ/-]‚LfHŜ2İŜĵ[cF XHÓ̘â·×ċKFѕ~ŻF,ĵQH'¨§|ZKÎqWbĊ_Ó&‰˙]#ŝ`­˙äÚçÀúżï§ŭc÷żKàŝî>á÷&yŽÚìUü˙ÎNäüüÒ˙ĥԟñÏ´=€˙Œ'ü,}ċi˙O?ġžƒ˘v*ô˙É/üœ˙”_ĝè÷Qƒ9˙k?[˙ËŝâNÓħ?Çô˙Ĝşè£>~ˆv*ìUüÎkñÚĠ˙ĉ6ŝN6}ñ¤ŝĉĠsóFï%ï?{Ñ?#<û˙*ÓócÉp’S
    †Ÿ¨¤:Ëiġ mî‰íqŠF`<@͵ŬüŻÙYô \ġê‡Î@qv=‡ŻüŽ·cÈ˙Şv—Ĝ_ò²²†RXUXn=9ñ!ŭŜv*ìUĜĞħWbĊ]Šżç>òyZà/§˙ÉûĴú£ŝ_ñ‡/ĝtŝè3í÷ühêGï/ҏùĈ?ü_•żöĊŝN>x?·˙ñ½Ğ˙†¸>“ìÏüfàŝĞŬ³wĊ]Šğv*ìUĜĞÌ?;òL~n˙àŻ˙Ŭ:|è=“˙ü?û¸şÎÛ˙Ô§ŝäżç
    ġ¤ż.?íñ˙t{Üúƒŝ
    _óŽjżäŸŭ5ƒĈ˙ĈĥóżÜIû³ŸêìU‚~iä²üĈ˙À_W˙¨)sqì÷üiéżáĜ˙Ŭ‡µ?Ċ3R_îKáŻùÁÎáİé“~LùŠó–£¤$·žJšVŜ[:óžÌı0’dAıàXlħç˙Á‡Ù/(í\ôΣ–şK”gŝwÒ]dŜÂv߉˘ÈwŽócĉ<Ż ~g…>ŽìUĜĞħWbĊ_Ìĉ·˙­_ŝcn?ägßOîaŭQ÷?4gŝò^ó÷żUżçÍ_úÓŝ{˙Í]ŞŬkD̆§ô½Šğv*ìUĜĞħW˙ÓûùŠğv*ìUĜĞÎ?8Ĥ{Ê?Í9µ7²Aċ
    rD³Vâf+a1†Şµ)Zž,£Ì?
    u?6i>ZK­ŜGĴµÍĵħiV´³kÙĞêÊ.ĦˆI"ĵeYı°Dòĉ:³’O8ŝiùwQÑġĜgÓ4­TÁöĥÍcĞGu*Ïj×M˘Ò …jêkہD…äĝVżçoç5•|†Ż{ŝ$ĠcÓ´i5ıC)Yıv/ĊQkY¤"Ôïĥ<š+;r~ƒŝ|ùcFü²ĵżMyôµÓ4xm59RŜKkIà€GkvÁ$Òú‰Éê•ŭ&´Ä·q
    Qò­˙ġ:Cİ£éżòŻ4­.ÚM̒8’óôĦ…$Œú‚C*:Ż0#ĉ¸)Kä˙ùËÍ\?üŸwš),ín½È1ċSԅ D 	²=YRçVMİġV˙9ç­kò.ÓÉÚ5…³ùúM:=â9ġûoŜ(×½’;ۋb‚ä°<÷Ż:ĥÏÍùñ'äoç2Ü/“/µHZ2cúŒö—¤…˘
    ´ò$ŭ?Ž-\%ïŝWüƒóf­ċ'O>yc]ò‘ĥHeŽóYÒ/ ·ċ%´úk™Q”J­mnÁŽß-€^Ŭ^Ñù˙8ŭċxïµO­\Ùy˘ıF´Ġ#Eƒáĵ	$NΌÊħn@5J)ÓTúÓȟ—k™5eÓ²´ÔlÒaĴÖy.5&Uä$ñ Mİĉ9T˘žá÷&yŽÚìUü˙ÎNäüüÒ˙ĥԟñÏ´=€˙Œ'ü,}ċi˙O?ġžƒ˘v*ô˙É/üœ˙”_ĝè÷Qƒ9˙k?[˙ËŝâNÓħ?Çô˙Ĝşè£>~ˆv*ìUüÎkñÚĠ˙ĉ6ŝN6}ñ¤ŝĉĠsóFï%ï?zW™
    OŬ/ùÄÍ$üÊüŸÑíŻ.DŜcòBĤ‡­Ħ?G
    ÒÎsı'ԄXġu|ùŝ	ÏÉíyÊ"ħgŭä}çëÂW·H˜çì‡j~{C#ëÇé?¤üGÚê\óÇİv*ìUĜĞħWbĊ]Šżç>òyZà/§˙ÉûĴú£ŝ_ñ‡/ĝtŝè3í÷ühêGï/ҏùĈ?ü_•żöĊŝN>x?·˙ñ½Ğ˙†¸>“ìÏüfàŝĞŬ³wĊ]Šğv*ìUĜĞÌ?;òL~n˙àŻ˙Ŭ:|è=“˙ü?û¸şÎÛ˙Ô§ŝäżç
    ġ¤ż.?íñ˙t{Üúƒŝ
    _óŽjżäŸŭ5ƒĈ˙ĈĥóżÜIû³ŸêìU‚~iä²üĈ˙À_W˙¨)sqì÷üiéżáĜ˙Ŭ‡µ?Ċ3R_îKùŜòߘµ(ëúG™´ĈÓġê;Í:í:¤‘šŠŽ…OFb*ÙöîżC‡]‚z|Ñâ„ÁyĈÇĦŬùM¨É§Ë¸ÍJ&Á@ߒ˙šş?ç49i|`ı™~­Żi`ÔÙßÄ­	üw„ġB§Ùñoµ^Îfì|ôı7xKù?Iŭş@ż@v/jí-4sGcÊCş]GéOVÎqÚğv*ìUĜĞùœÖ˙µĞ˙ÌmÇüœlûIŭÌ?Ş>çĉŒ˙ŜKŜ~÷ê·üùĞ˙ZÏùеOû­h™Ôŝ—ħWbĊ]Šğv*˙˙ÔûùŠğv*ìUĜĞË˙;äš/ÉoÍém›Ä~Jó@Ŭ(NœİßßQĉÈ×ĉ˙ĉ?›|ħĉ6Ÿĉëäıóĉm˜t1x’êuÔJIġËĞxâŒğ$'hÍJIñ€Féš|Ċ·ĉéŜVòġûÏ2­bnvú}ü—‘BĈ	Ғ"˜Ê)Ѹ€@˘ÇfŸYŝC˙ÎyÏÍ^\óf­˙9Oċa–×P˘Z4€jşkE$O5Ó´fG6’Á£â@SÍ8ħ
    0ğĜîSĞùÇ£ùħċßùÈ/0ßéŝVµ’µÒïtkIç]nÚB•^ÊKšd†ŜžŽ>Ûp(Ş1¨Ìĵ×òëò7òŜDòö“­ùVÊçÍVä_^CİĜ5äċLrrWhƒ†S2…Ŭı
    1i—GŝVy˞Aòç™ôûGòëhZŬċž•ĉPşÓ.&Ó5hÑí$˜ÙβÖ)X˜Ħ$•ċ·bJ<ş=Ŝo+ßjvÖ:ċŝ²<Ċĉ]óëş{ù‚Ŝ;ûĞk‚èÓ(Ôa[mMB*°`.‹BPÓٓŝ–ÛÌßX†éÑomd†yu$Ô,‹c<Ğ
    ċĵk¨Û*	p´ŒŠ8“hä;İg³ş¸–À~‹ğ½cċÙîĉ‰íĤ€Â=mo!yRâ&hÊü'áĦLNáy½Œİdş{‘ħoNxDPşS‘£}µn” 6äbÀ?˙ç%µ+cĴEihx}QfUâġ?h*TTÓà ú;tÂÄ<•‹;1$“‹Żûé˙XŭïÒĝ?ğ¸}ɞcĥğ?ßó“Ÿù??4żíµ'üA3í`?I˙y|ÚĝÓÏŭg„ç`蝊½?òK˙'?ċŝşŭÔ`ÎÚÏĝĈÖ˙Â2˙¸“´ìOñŭ?ü6îƒú(Ï‡ß˘Šğ3šßüvµù¸˙“Ÿ|i?ı‡ġGÜüџûÉ{ÏŜ•ĉCSéOùĊÎ1ù=ùŸewİÜĵ£ĉu]+Í Ÿ‚(ŬĞ
    ÙñCš“ׁp79Á˙ÁÙċŜ̔q‹Í‹×Ì˙?Ïż¤"ôËvÇòn°ŬÏÓ/.éš~Ë~£¤¨’Fë$r(häR
    ²‘PAAϏ Ñĉû¸7¸]]Šğv*ìUĜĞħWüçÏŝO+Oüô˙ù?uŸTÀkŝ0ċ˙ŸŬĈ}˙ŭHŭċúQ˙8Ç˙’ò·ŝĜħ˙ÉÇÏö˙ŝ7µ÷Ò}™˙ŒÜĠ{ĥqîġĜĞħWbĊ]Šğy‡çoŝIÍßüµ˙û§O²ñ³˘˙‡â˙wYÛâĝT˙ܗŻüáŻŝ´—ċÇŭ?î{ŸPÁKŝqÍWü“˙Ĥ°|wĜßĝÖŝwû‰?vs÷Ŭ]аOÍ/ü–_˜ßĝê˙ġ.n=ž˙=7ü;û°àö§ĝĤoêKŭÉ8y÷Có‹éùĈ_Ï[żÉ?=G=ô²ÍäŸ1í<Ù`µnîï#QÖH	'ü¤,½H#„öûÙ{CĦ1€>;8Ïßċ/²T{ï¤ög·eÙz›—÷sÚCîóu‡îŬ…ŭ–Ğcgİé·Q_iú„ÜĜŜÀÁâšT:HŒ6*ÊAgÇù°Ïċ 1”Iˆ#bı÷\y#’"Q6°GP‹Ê™ğv*ìUüÎkñÚĠ˙ĉ6ŝN6}ñ¤ŝĉĠsóFï%ï?{ġ[ŝ|Ġ˙­?çżüĠÚ§ŭÖ´LÈjKĜĞħWbĊ]Šğ˙ĠûùŠğv*ìUĜĞÈ˙?ġ!˙;"ġSÈ^d_UëĊkÜF”4Ĝ²0ŝ7˙/ż%?1?2?0Ż|‡ceġ}zٞó]ĠŻQ™`RL‰,Íñry‹MAĝÉúpS`‰ş~ĥ~T˙Îù;òÀir–ŝá5­î=[PĠ5KhîDöVÈLÖÑSknLġçF#ÔM3ĜrzçŽżߒl.|µùĠeùSäû¸lŻeóÄv‘ŜÇ6›0nŠ·LğC¸5ĝv8Ġs[ĝ>pÒç
    ,<Ëİ[ùß[ó}ݜtï1Ĝ%Ŭ²ŭdĊ“ŬòV•E­S‚½Jı`żüyeeDÙ}_˘è˙˙‘_{Û­GFaÑa6şıĵ‚Ġ]¸R΋‘òD$µE?”„n}ϟż1˙çà~Pòé~BŽÛÏßÜ­Û[^¤Ie!ÍÔP­ O²ċ„ƒ£½FÉAì#KüÒó‡ç–d×|çêŝWь·’yMµ!ŞÄžœPImXBgŽ0ÁK´Šé!,Ğ$%Žbş1_*kŝWÑ5}òÇÎz½ÖŸiŞÏokcċïÌ($µÖĵ’ÀĊ,w6µ°ÖtİÉWYá’9cŜX“‰<€Q'żh:^ğé~cŝ[M°óƒĤÍeŻ~_ku$	S-ŝ›|ƒ”–W
    #š	_š04)pó
    
    „ò'›í5ŬĉÖìĴ:ĴúbŬÜé—ĴÑ:ŭpVY—áEd.9
    ŠÔwO4AĴIcĤj>OÔŻeHĊâE£oäÏ1Û]ŠżŸïùÉÏüŸŸš_öړŝ ™ö‡°ñƒ¤˙…ĵí?üiçŝ³Âs°tNĊ^Ÿù%˙“Ÿò‹˙]ŝê0g?ígückáÜIÚv'ĝŝŸŝ÷AŭgïÑĊ]Šż™Íoŝ;ZżüĈÜÉĈÏ4ŸÜú£î~hÏŭä½çïJó!İĜĞġŝpŻŝr:kN°üóMsLÒòF1˙{-cRE“·ORğİĝ“áêżÎ?VöéòKµ4‘ŭ܍ċˆŝёúğż#·ĞûíË£Ì}Cè=ùñÓĵmÓ£ᯢğv*ìU
    {{g§YŬj…ÔV61<÷—“şÇQFŬĜ€Ş I;e˜ħO,Ä #@
    É'İ,g8Â&R4䞏Ë0˙Îxêߜħ_hvmùE§+i·_K›ÔgMF6`
    ÈŭÚ1ĤÍĊœ•úE˙ÜsìcÒáÖËÔ%ü0Ûlgĵ:C~.V#G˵ŜJ:ŝ(ӍĞĴż§ïîÜ蝚ygÌşœt/ÌŜ[ÔbĠtMb¸°…ŞĴ­ÔêÊAVSşAÜgkôôç§Ï4Aür<ÁäFáôÍ6§§rtÉ˙Ĉ΋ŝ‹ŭÜ]gm˙ˆj?áS˙r_Žżó†żúÒ_—öĝ˙ş=î}A˙/ùÇ5_òOŝšÁñßc[ùßî$ŭÙϏßuv*Á?4żòY~cà/Ğ˙Ôı¸ö{ŝ4ôßìîƒÚŸâ™żİ/÷%üáçŬÎ.Ċ_˙Î!˙ÎQGäIm˙,ż0ġNĵ–ž[×gj•4ĵ31;[ÈĈµéTŸ‰_˙‚güOiÚ(ŝü\ù@:éŽïâÒ˙Ùj. ŝìŭ2ŝaî?Ñ?aòċġŬdUt`èà2:š‚à‚3ĉr4_]ÛÀĊ]Šż™Íoŝ;ZżüĈÜÉĈÏ4ŸÜú£î~hÏŭä½çï~ĞϚżġ§ü÷˙šğT˙şÖ‰™
    Oé{v*ìUĜĞħWbŻ˙ÖûùŠğv*ìUĜĞÊ=ô+ï4~GŝrùgLıK-KÌ^Fó™§ŜHh‘OwĤ\CŒhvVpNĜĤ<ߔ–žVüşüòuŜ—äß,_kşíù‚âoŻOgħĉ;×"“ÛÍ}"#˳âx³½IŜYǚ?6?1ô0k˙8ŭĉ?1i–Ċoċĉž
    ċÄoÎáR{†àa`UԊòŻ_µŠ8G{çÌ]/ó_Îŝk“òîûòNŜ/ɏacçQwkasÌjn„–Í,D³Ĵaàx˜0SĊ·óe{qò’ç>4]?YòğyŽÓˏk˘<·Ĵ.™J÷½‡VóoüáÏċ·
    ¨Ò…ç™ĤÒ'‡Ëš–“emİYQĊ žï”K4S3üù?ĤìŻĈŠ0$‘µßÏ=Uml|­{%ïä“uf:ßċżċĜn?š•ğ[ĞôgkĦn
    Ÿ‚"e·
    #Âŝ›<vgaó]˙œô;/óOòñ<íİùKI“Ìšĵš5üPy›Nħ*Ğ™ü•ŞĈíoŞéĦZĉÒhhÂ1wâáBȽòdkš§ċ™ĉ]ÌV?˜ß–úLÖÚ_‘µ“ksO/ßLĊŸMÖ-íĤŭ3ċċ¸Väd³¸¸Ó)ÒċD-½żFÖµ.ù²=ÎVġ|ÏvòùkËeKµxníRê+›
    :ù!~°¨³1’Ġ½+ĤçÄÛÊ(pòIŻDĠ^ÏÍ?–ö	ËeĤk:tÌ5î –ßFúÌġĥĵ‚P÷:;–S˚ŭ]KDH1%cĝüÎZ÷œ§ıÖżAk‘\ù\ÔĴgZòŭè.˘ı·d[‹yı”ĵ…ŞäMnÌÂ~<Óµ>Aóϙn4}jí-Tğ‚í`”ˆŭ%ż´‘&Vš6
    ë° W¨Z‹á}gUşĠïĉĵş•ċ‘èsȀ:
    âÀ]XĦĴUĜĞħWëö˙?ü›´Óìm$òלÚK[x˘‘–ÏN*Y)uĥÙó&ĝöÄòJC.
    $ŸŞ}Oü-ġü~ßè#2l;£˙˙˘„~LÔ³ç_úBÓżï#•ɔíŸġ\é§˙TÙ˙ÉÁ3/Ê?ñn˙˘„~LÔ³ç_úBÓżï#ü™NÙ˙UÁŝšġMäàè?™—ċĝ·ċ÷çœtÏÌÌï9ùÓF‚êÛKó˘×vV÷މp¨Ê˘’,o"ƒ·f9ô³——²û3“)xDĈÌoÊÀ?`|żĥ5Ök2f€"36/ŸĈŻïyokħVcùwĉ/(ŝ`yÍz”SϧycÌ:f­
    ²ĞLÙ]Ċ<‹ğ"–*„(,z‘šÜÑO]Ùú62²âœu˙¤-;ŝò8˙ɔíŸġ\é§˙T×ŝNƒù™~Q˙‹wŭ#òcŝŸ:˙ҝ˙yäÊvÏúôÓ˙Şk˙'AüÌż(˙Ċż 5„ğÔ/ħŬ\K,jÔܰ­	ß|úo1Ĉ'˜|ƒä%Ċ"GRƒËX;Vĥı¸³¸‚îÒy-nídY­ab’G"ÈèêAVR*ÜŒá‘1DÁ˜!”dbAˆ~ŝA˙Îrٝ—•:d–9­‘ ²óä1´˘UZ(úüHòñ•Żí(ŬÏŝÙÀŠfrÔöPÎ"jżádí_Ñ5]GÓ{ۘˆŒZŜc”ù˙Ĥ¤|GWèîƒĉ?/ù§O‹VòÖ·cŻé“€bżÓî#¸ˆ×zr˜âùášÍ£EÏŽXĉ:HŸµô|œZˆñ␔OPm9ÌFç›ŝ`ŝo~\ŝWXÉyço5Yi*sƒJĉ%ŸÀCk)Z§jñâ;3}ĜÌölÌGI†SeUï™ôußp.·´;_K yˆù÷GŸè~EÎDÎXy—ó”Íċ½
    |Żùz’Té|ÁşÔJ0(÷ĤœAĴJxƒğ!Hú_Ĝĝiğ³ĉ#.ĤŻá‡x€ïèdw#Ž÷ä~Ñ{Y›´ï?F.î²ŝ·üO/~ϑsÒŜEġGü'üä~§ù%Ż/ViuËÍztŭ9§ÌöR‡ëĥĞżÄÛP>5} ¤yß·ŝÂâö‡Oâb¨êqƒÂž?™//ĉŸá>D½O³>ÑϲòÏ|2;ĉ˙H~‘Ô|üçŻë˙›Ú.µ˘ßÁŞi:§”t۝?Pĥq$SE$×EYXu0żàIĤËĤ쌘²ÄĈqÍ0AĜ‚v.G·Ħ›]ÀƒŽ$×r÷ŸÉßùÍÊżËïË&y/Y<×sŞywO[Kۋ+[·gÍXÚKèĜû¨Î;Úĝv§jvž}^,˜D2JÀ”Ĥ%^u>ÒïğÛ]GáÊ×Âä>çÑB?&?êYóŻŭ!iß÷‘Íü™NÙ˙UÁŝšġMÙ˙ÉÁ3/Ê?ñn˙˘„~LÔ³ç_úBÓżï#ü™NÙ˙UÁŝšġMäàè?™—ċĝ·ÑB?&?êYóŻŭ!iß÷‘ÇŝL§l˙Şà˙M?úĤżòptÌËòü[żèĦ“ġ,ù×ŝ´ïûÈ˙&SĥĠpĤŸŭS_ù8:ĉeùGŝ-ßôPÉú–|ë˙HZwŭäq˙“)Û?ê¸?ÓOŝİŻüœó2ü£˙ïú(GäÇŭK>u˙¤-;ŝò8˙ɔíŸġ\é§˙T×ŝNƒù™~Q˙‹wŭ#òcŝŸ:˙ҝ˙yäÊvÏúôÓ˙Şk˙'AüÌż(˙Ċ°ßÌOùÎÊ_7~_ùëʚo—|Ŭ£ĉ/jzM„×6–
    M{i,´Ĵ—îÁC8,B“N€ĉÓ°˙àCÚÚÓêreÂc‹,&@”îĦ!#WŒĦµ‘ïpğG۝§K—a’ç	DX\ŭO‚ 0´_ÊŻÍż)ù÷Ì6··š>ƒġ˙[iÉ—-ġĞ‹TôÖY!CG˜WWİÛ=“Û>ÄÍÛ]“›G€ÄO'
    #éœfn„(žœŜ°;Cgëħê2cşĞŜ&=Hïï~”ÑB?&?êYóŻŭ!iß÷‘Ï˙“)Û?ê¸?ÓOŝİ•˙'AüÌż(˙ĊğŝŠù1˙RϝéN˙ĵŽ?òe;gŭWúi˙Ġ5˙“ƒ ŝf_”âĜל˙ç;˙(ĵĊä˙6y~Ë˞pŠ÷]ÑŻôëIg³°X–[Ğw‰•Ô……h	§c™ŭ•˙î×Òë0çž\8ç”î£ M~ìo·{­öïC›Lq†K”H#ÔüçäÎ}"ù3ħWbݲ?"żç1ĵçùQgkċ2Z7ü™jvV²Ìc°ŒlÚv5#qA°VAž]í‡üô}µ3¨À|ç™á3ß(íDġ÷‘"ö=…펣³â1d&1ËT}ÇğÈü}‚ŸóŸÉ˘Ş_ÊŝsW sU³Ó˜Üu_ğ<Ä˙ÀSĥ/l¸?ÓOŝݽ€˙‚ƒù™>Q˙Š]˙Eü˜˙İgÎżô…§ŜGü™NÙ˙UÁŝšġM?òptÌËòü[żèĦ“ġ,ù×ŝ´ïûÈ˙&SĥĠpĤŸŭS_ù8:ĉeùGŝ-ù¨Ü%ŜĦ}weŽêâYcV `ċ…hNûçÓx aŽ1<Àä É.):—ê÷üùĞ˙ZÏùеOû­h™kô½Šğv*ìUĜĞħW˙×ûùŠğv*ìUĜĞÄżç%ġKŬŝqÇŝrZÓ.ZËRÒ?-ü×{§Ŝ-9E=u$r
    íUeƒEüÜyŝsŸIÖ};óÉ:~Ħ`˙W™uµ„_YIğ½³ÔÇE"@žKāÔbÁ÷Ÿ’<¤Y6İċO;Üŝbh—†•uXjjZv”‘—’Ŝö8Ÿŭ*ÛĠGÀóZġ×[#ïĵ÷ĉ›M>óÍ“ŝb˙œ Ôô8kò‹Ğ
    N[Ñ´ûY›×KiZ> J
    ·]¨*WÉà~¸Ñ5ż-i^^ğ˙œ—ZÓü§ëŜjUü-oİ2[°h£µğĉD Àê
    בC°­Ñ·+y·—˙ µ/?iÖzGĉ‡˜ĵŬİkħ
    7HÔ<×§IoġM[Ñi­Yî¤z7‹$Ëáĝ‚µù§ş›ùSRş.³ĤĜyCò§ó²òk)§šĠ’oË?Ù·ú\3 @²ÎŞGï,eQV–ĜqKm˜ùGĠ<ïyÏŝqżó&ÉtŸÎËîߗ/GUÖ,">ž…q";5ŬhĴĠ˙~˘‰~6ˈ¤žTĠfòĊçím$ĵşòGœ.~ıċëÍ8ù›Éi³Š'½›DT,]Lĥ†‘Ŭ§$â²Ş:„È~?Óé?%é6ڝ53yzÂÚMKÌ\ÚŻ›ô
    6ĥòö·ĦI/9<Ûċ…Ñž+Fh×--ΓsûĜ•cI˘B@=?Çż£kç”üġċcĉŬWÎCÍ:/šlà‡Ì—˜‘“Kó…€0úšú[Dòiúŝ„ì¨ÚĊšòky"ğh¤·úǵÏÉê.°ş'-Ĵ5ĞŬGTƒÊÖP[ÍĞê[Éĉ/ÚO›K=FéÛ_YÈ[­ìîc -³1PRyHüŸZòŝ­ù€.àÓüÑäk›İèzjzë£6ÉM
    ĵ|Ċϗµ>Q5JzŞÄ¨ž3¸bĝËó7_“WԞÖkĤ{ÙĴÓFת'HÁhÀ[€ĦİÍBŸĉ@N²^zâÁĴUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħTÓJÖġ­ëzŻ{£]‘Cucq%ĵ”ç)üsS¤İhFcş@H|‹n,ù0›„ŒO‘#îfWœ?›wvĉÒïóKÍ×VĴ8µ´şŬûĈE)N-13Wf;&⎓=ùı’ít…ùŝĵż[ϧžk™¤¸ı™î'™‹K4Œ]ُRÌjIÍÔ!Š uò‘‘³ıRÉ!ĜĞħUG–Y$’FtJ@ĴI‹•PzLMrNDD sç÷}É$Ÿ‚žIĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ŭj˙Ÿ5ëOùï˙5vİ˙u­KĜĞħWbĊ]Šğ˙ûùŠğv*ìUĜĞÊ?>ttóäoç?—ċqzï‘|Ċ§É!4
    ·ZeÄD“½(ǘ$oü£Ò<³yċ¨e²ĵHġèu)5=?SG[ǤÀİy-ŸĦ1YO-ÜLI,…9|$"€QÓô-NÏT“Ìş’/“íĵğ›if—VzŬ”JħĞC5ğ,…¨^L ’wĝŞ0Új‹ÔüÁ y‹ÏŜEÒ<Á\AçËf[´ĠµŬsLċĉ+Xí­Ù”¨‰ÉaftF­ÜZ¸M>UóÑ|­Ğ~Rk‘Ċ=ÍĵzZ>żesnĥóKġ^öÒHž.	Ľ´JĤkñWĦi–IJ~fŝYê3ĤŸ“+\]ĜêVŜ]]FщŽ{í-`ŠÊ󂯪Mĉ›§74WW$1Üïl"ßNéL?œ>GóǙĵĜşc˙ˆìm&üÔı“ŭ3†£ey%†—ĉ¸Xç³ş“êZ˜+Wµ™nz’×P´?ĵĦùyċŸ8MĤ]è˙š?’ĥ·^FüÏÒcÔŬŜhZ_$Ñġ6š=K§áhñÚğ(ĔFĠ1î4/7·”˙4üżc6wm ê˙šè΢&Öe’Ġ<ËdëéñYuH-oHfâêJNBC üŞÒ.£ŭ!ċûï0êzsyGÍ3ßyZÓŬÊşĥĴâ[]ZÍ	†d/§lŞRdŠ4‘a<”€ˆóEżùWçMcWò˙–lôŭ'ɢÜ˙Î@~KXÍ[Ĵr<Ñ/™´(gä`ežJĊFŽ•âäÖw;$"éô^… ĜĤĤ/”uCkä+Ż/]_ŝLy­biċÓô[Éĝßi76s‹ƒqmg=mï4ٌŠh²Â97ĈiG˜yŸò#óÏşîğkä‹o+ùSΚ†“żšü™quwy˘ëšKñ–ì%úĵİ}c"D³,.}{gĝ o€…X’ĊïçÑ˙󒺴0ŜÚyżòĉŜŬaF·³“UÖ^HE9*:9,Ĝ<şWÄ­v…óĉÏùÉçżÇ•˙úĤµ_û˘b†˙è_ó“ßġ=ŝWÜSZ˙ĵ&*ïú#Wüä÷ŭO•ß÷Öżï	ŠğŝˆĠ˙9=˙SßċwŭĊ5ŻûÂb˙˘5ÎOÔ÷ù]˙qMkŝ˜Ğżè_ó“ßġ=ŝWÜSZ˙ĵ&*ïú#Wüä÷ŭO•ß÷Öżï	ŠğŝˆĠ˙9=˙SßċwŭĊ5ŻûÂb˙˘5ÎOÔ÷ù]˙qMkŝ˜Ğżè_ó“ßġ=ŝWÜSZ˙ĵ&*ïú#Wüä÷ŭO•ß÷Öżï	ŠğŝˆĠ˙9=˙SßċwŭĊ5ŻûÂb˙˘5ÎOÔ÷ù]˙qMkŝ˜Ğżè_ó“ßġ=ŝWÜSZ˙ĵ&*ïú#Wüä÷ŭO•ß÷Öżï	ŠğŝˆĠ˙9=˙SßċwŭĊ5ŻûÂb˙˘5ÎOÔ÷ù]˙qMkŝ˜Ğżè_ó“ßġ=ŝWÜSZ˙ĵ&*ïú#Wüä÷ŭO•ß÷Öżï	ŠğŝˆĠ˙9=˙SßċwŭĊ5ŻûÂb˙˘5ÎOÔ÷ù]˙qMkŝ˜Ğżè_ó“ßġ=ŝWÜSZ˙ĵ&*ïú#Wüä÷ŭO•ß÷Öżï	ŠğŝˆĠ˙9=˙SßċwŭĊ5ŻûÂb˙˘5ÎOÔ÷ù]˙qMkŝ˜Ğżè_ó“ßġ=ŝWÜSZ˙ĵ&*ïú#Wüä÷ŭO•ß÷Öżï	ŠğŝˆĠ˙9=˙SßċwŭĊ5ŻûÂb˙˘5ÎOÔ÷ù]˙qMkŝ˜Ğżè_ó“ßġ=ŝWÜSZ˙ĵ&*ïú#Wüä÷ŭO•ß÷Öżï	ŠğŝˆĠ˙9=˙SßċwŭĊ5ŻûÂb˙˘5ÎOÔ÷ù]˙qMkŝ˜Ğżè_ó“ßġ=ŝWÜSZ˙ĵ&*ïú#Wüä÷ŭO•ß÷Öżï	ŠğŝˆĠ˙9=˙SßċwŭĊ5ŻûÂb˙˘5ÎOÔ÷ù]˙qMkŝ˜Ğżè_ó“ßġ=ŝWÜSZ˙ĵ&*ïú#Wüä÷ŭO•ß÷Öżï	ŠğŝˆĠ˙9=˙SßċwŭĊ5ŻûÂb˙˘5ÎOÔ÷ù]˙qMkŝ˜Ğżè_ó“ßġ=ŝWÜSZ˙ĵ&*ïú#Wüä÷ŭO•ß÷Öżï	ŠğŝˆĠ˙9=˙SßċwŭĊ5ŻûÂb˙˘5ÎOÔ÷ù]˙qMkŝ˜Ğżè_ó“ßġ=ŝWÜSZ˙ĵ&*ïú#Wüä÷ŭO•ß÷Öżï	ŠğŝˆĠ˙9=˙SßċwŭĊ5ŻûÂbŻĴ˙ç˙ç
    ˙3żç˙ç(‚~dkWÖÏĉċgš[E˙
    ]^Üú_˘5ż,	ŝħġË+><şœ8ò­ĵh*ĞöĞv*ìUĜĞħWbŻ˙ÑûùŠğv*ìUĜĞüÖµߕߙ6MŞ·žVÖ 1’ÊeCJÖ½1Ly‡áûŝNh7ÚF“ċ2J|ÓĤĜ\Z3tĠğúšúï¸=(ÇU<Ÿ`k]Ŝ÷*Ĝǐ?$5M3Wó³ĉ[ûûM
    MĈ“§yCZXLbâRŭıur1ĝ8T‚ÍJœmíÇòÍu—{ŬPÎ-4iO/ŬÙóV…ôÄ-*~îUĜŽ;ìI‹|a˙9où'm£¤~dÑ4ğèt½"ÎMK8ì×VÒâi/î郭Ċn.¤1ʵP*€
    ;£›ç#Km_ò³Z’vışƒJüĵĠtQur-oá–÷H&Ŝz„ħHÂÈE@­~Ё{{ž½ù;ĉ};Éŝc×t‰tğíf_8j…Î…1{iĈ•ĴÇw¤êZ5ÄrFRUÔí-с'ë"ŬÁŞÄ ò	PÓG5”& ·>aĠ/ġ;˄ò·ç‡ä&Ŝú²j'Qmâ–âHÂİo­ÛÇi⌳-̈́ÒĊRĞ5½jĞLXš~†~J]iĥ˙[Ž-,!y§G¸žÖÁbc°ğ(³iè£öĴn„ׅ7£Ó	ê'”ôĠ‚΋¤Y58áK;‹ú|SÇo´lOqBHö8µ3UĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUàc˙Ö§ü›˙ÍUù—˙uÏ"bŻĊ]Šğv*ìUĜĞ˙ÓûùŠğv*ìUĜĞÍ˙95ˆü½ùCùĞŻÊ̑h~O×5	M-ĥŸ<¤ƒFĦ˘ĝR9ż/?1ż85&yŸA²Ò´żŻĜÏœ.2‚’ß_ˆ$^°’kĈ•`Şo#kfŜjüĊÔ|²“Op‰Ĵoíêġ³‰Ŭ%âBĞrUBAâÔ¨#Z÷Ŝ|óyŽ
    *úDŬq¤ZJGġˆÚħ`6•…ĝK
    ĈTÒĵ‹*´·YÑtß5iךÓß\ÙişG>Ħscpö’µÄ²Ç#i‘DvŽùŠĈÈÔ"-&êYJVéĉ7~SÔġo;Oĉß2ÚCqĉRy$ş’Î2áž	!‚ÈĴ|CĊ ‰ˆäĵ6"’(0_ËI£kVñAĠ4ZY.]AH&H̟X‘¨cÉÙjj54İ`ÉTl4kË
    F{‹?/èŜ|K-Aʗ]:Îş8[+ċÁD‡Ylä%€½+‹wf6š—çùÉ6~Qy‚îßÊş_˜$³Ó<²íêƒ^Ö|,fÓĉZݤ/mY=#ñsk˙"J/kxcÛêt‘oµŬAô_0êöúż–˙5í]%³ó“Ĉ÷MĠàv?J˜\‘°ıKUĉ@zż™µ‹ĝ<ġċżÍ½+ğŻÍ‹5­bÊgÊû[Óà:š,îLB‰˘Ñ‡oˆT†PA(r~ı~Gŝ^höŜEÑġ
    )¤ĵÑom-n4G˜’8•½	╍*âĦIBc¨ÂÔKì]%†ÂOħB˽~ÖçñĊŠiŠğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]ŠĵÌúÔ˙“ùŞż2˙îıäLUïĝĞħWbĊ]Šğ˙ÔûùŠğv*ìUĜĞĊç$ĉ˙󎿟—h°~\yŞF @şEÑèA§†)ߜ÷Ÿ”úŽ£ùıċ­[²´èö3ÜDlZHˆ:7!Î6> èF˙H
    ¤ìú˙óòf
    kÊÖݧÀ]ZYÎ
    Ú
    şQ&uP;VV–%€–ùÇÙôż,è—W$ŭrÂĈ(ġߔħÊV9á“Ġĝ\4E¸ÖµhüËü¸Ġ.?3<ĠhÚoĦh.bŽÑíù)XÌ<ĵb$Ğ5nhA+‹8ËmŜ-ù›äûx?/˙2<µ¸›R󞑧ˆà™Ġ)¨ivşĥ£f[>İÄĠ‰ï…wšêŜeĠµO̽OÏꚗ™+µĝ
    ÊĦ’¤Ó´Ğ›)9ÉQ\A°<¨w)HĤĠ§_ÏİfÖt[k-ÎDĈža‚ĈhĠ­ÄRH²InèyĈÚf³Œ¤“EĉŒv˜y>îòŻ’4˙1ŝ_ùKÊ>h£ĵı·›ZH#áYĦĵ{›}Vh£ ĝhĴÌn€J"íË_GꇖüıyE´Ò4ËDĥÓí‘DÈ(Q·ÏN	ü1ĴH#]•6UĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ^ĉ?ŭjÉżüĠ_™÷\ò&*÷üUĜĞħWbĊ]Šż˙ĠûùŠğv*ìUĜĞÀżç+˜§üâßüä£)£/ċ_œJŸq˘^bŻU_-iòjPj[ĞKjŜ´”OyĊ€ßÛ$’(ċFŽDŒ*EF˙YĠטٓrż*œQlóÉúQÓġ
    nJ^"‡vJ’x³HvĦ'›0ĜS‚üf˙œ”‡]}cLğÒá-uŝ2²itĠŝö–³úÄ#Q›à½	Ĉ´-Uk°wuóŭÌ˙½µŽïMĥÑü·§jrY%ĥòV¨š}%%ylÚĜ=OPÍĤ@ôüszCè—~bÖ§ò䞴×Nݘ<‘Ù-l›_ÔĴ5›4PĀc‚Š'ûêCħ$á,dmûùeäH"Óĵı}sŻĞi÷vß]ıqğÜZÚĊo$ l9K	nF›’|qk%ġj
    *‹ĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħW€y˙ZŸòo˙5Wĉ_ŭ×<‰Š½˙v*ìUĜĞħWbŻ˙ÖûùŠğv*ìUĜĞÀ?ç,ġ–?ç%żóUyËŝèw˜ĞßñWb­\UEJñP9šxâĞħT·V·k>êA#*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞÀ<Ç˙­Où7˙šĞó/ŝëžDĊ^˙Šğv*ìUĜĞħW˙×ûùŠğv*ìUĜĞÇ˙ç!|­ùçòóÉ^Vħŭ)ĉo8~_ù›Dòĉ™êĊÖ/ġ
    *ĉÚÚVwŽ$ç,Šĵ•EjÄ
    ñTƒŝW'ĉ/ŝÂwĉŻŭÄż/?ñ²Ċ]˙+“ó˙a;óWŝâ_—ŸĝÙb˙•Éù‹˙°ùĞ˙q/ËÏülħWÊäüĊ˙ĜNüĠ˙¸—ċçŝ6XĞżċr~b˙ì'~j˙ÜKòó˙,UŻù\Ÿ˜żû	ߚż÷üĵ˙ĈËyνç?ÌMOW’ĉßŝqOóBı€úèڗċĝbġ@ç6ŠwVĜĉùßÎ2ĴżóŠ˙šì§ëfżüż?h”§81”ê7ĤŭÛÑô/̏=Ùñ–/ùĊOÍ+–Eàó£ä̃R~?7ĦûU;Ş|qRËGçĉ(§~jí˙kËÏülħCòı?1öż5î%ùy˙–*ïù\Ÿ˜żû	ߚż÷üĵ˙ĈËwüOÌ_ŭ„ïÍ_û‰~^eŠğŝW'ĉ/ŝÂwĉŻŭÄż/?ñ²Ċ]˙+“ó˙a;óWŝâ_—ŸĝÙb˙•Éù‹˙°ùĞ˙q/ËÏülħWÊäüĊ˙ĜNüĠ˙¸—ċçŝ6XĞżċr~b˙ì'~j˙ÜKòó˙,Ußòı?1öż5î%ùy˙–*ïù\Ÿ˜żû	ߚż÷üĵ˙ĈËwüOÌ_ŭ„ïÍ_û‰~^eŠğŝW'ĉ/ŝÂwĉŻŭÄż/?ñ²Ċ]˙+“ó˙a;óWŝâ_—ŸĝÙb˙•Éù‹˙°ùĞ˙q/ËÏülħWÊäüĊ˙ĜNüĠ˙¸—ċçŝ6XĞżċr~b˙ì'~j˙ÜKòó˙,Ußòı?1öż5î%ùy˙–*ïù\Ÿ˜żû	ߚż÷üĵ˙ĈËwüOÌ_ŭ„ïÍ_û‰~^eŠğŝW'ĉ/ŝÂwĉŻŭÄż/?ñ²Ċ]˙+“ó˙a;óWŝâ_—ŸĝÙb˙•Éù‹˙°ùĞ˙q/ËÏülħWÊäüĊ˙ĜNüĠ˙¸—ċçŝ6XĞżċr~b˙ì'~j˙ÜKòó˙,Ußòı?1öż5î%ùy˙–*ïù\Ÿ˜żû	ߚż÷üĵ˙ĈËwüOÌ_ŭ„ïÍ_û‰~^eŠğŝW'ĉ/ŝÂwĉŻŭÄż/?ñ²Ċ]˙+“ó˙a;óWŝâ_—ŸĝÙb˙•Éù‹˙°ùĞ˙q/ËÏülħWÊäüĊ˙ĜNüĠ˙¸—ċçŝ6XĞżċr~b˙ì'~j˙ÜKòó˙,Ußòı?1öż5î%ùy˙–*ïù\Ÿ˜żû	ߚż÷üĵ˙ĈËwüOÌ_ŭ„ïÍ_û‰~^eŠğŝW'ĉ/ŝÂwĉŻŭÄż/?ñ²Ċ]˙+“ó˙a;óWŝâ_—ŸĝÙb˙•Éù‹˙°ùĞ˙q/ËÏülħWÊäüĊ˙ĜNüĠ˙¸—ċçŝ6XĞżċr~b˙ì'~j˙ÜKòó˙,Ußòı?1öż5î%ùy˙–*ïù\Ÿ˜żû	ߚż÷üĵ˙ĈËwüOÌ_ŭ„ïÍ_û‰~^eŠğŝW'ĉ/ŝÂwĉŻŭÄż/?ñ²Ċ]˙+“ó˙a;óWŝâ_—ŸĝÙb˙•Éù‹˙°ùĞ˙q/ËÏülħWÊäüĊ˙ĜNüĠ˙¸—ċçŝ6XĞżċr~b˙ì'~j˙ÜKòó˙,Ußòı?1öż5î%ùy˙–*ïù\Ÿ˜żû	ߚż÷üĵ˙ĈËwüOÌ_ŭ„ïÍ_û‰~^eŠħŭçóÏ?ŸHóŻù1ĉżË?,ù?ò˙Î:%ĉ§ĉ{ï,Ïġ‹ŭwUò½Í¤6ñhZĉ­)¤ZM;H¨˘Š*KS}?Šğv*ìUĜĞħW˙ûùŠğv*ìUĜĞħWbĊ]Šğv*ìUiPX57ĦĊ[ 0 ŠƒħŞĜFĦ@§sî|qUĝĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbŻ˙ÑûùŠğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğ˙ÒûùŠğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğv*ìUĜĞħWbĊ]Šğ˙Ùtiger-3.2.3/tiger_logo_small.jpg0000755000175000017500000003150707650716012015320 0ustar  pacopaco˙Ĝ˙àJFIF,,˙ÛC	!"$"$˙ÛC˙À˘,"˙Ä	
    ˙ĵ}!1AQa"q2‘Ħ#BħÁRÑ$3br‚	
    %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyzƒ„…†‡ˆ‰Š’“”•–—˜™š˘£¤Ĥ§¨İ޲³´µĥ·¸ışÂÄĊĈÇÈÉÊÒÓÔĠÖ×ĜÙÚáâäċĉçèéêñòóôġö÷ĝùú˙Ä	
    ˙ĵw!1AQaq"2B‘ĦħÁ	#3RbrÑ
    $4á%ñ&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz‚ƒ„…†‡ˆ‰Š’“”•–—˜™š˘£¤Ĥ§¨İ޲³´µĥ·¸ışÂÄĊĈÇÈÉÊÒÓÔĠÖ×ĜÙÚâäċĉçèéêòóôġö÷ĝùú˙Ú?û.Š( Š( Š( Š*ĴúŽŸo)Š{ûX¤UĉU#&€-QTżµôŸú
    YàB˙ÚúOŭ,ż!Ĉ€.ÑTżµôŸú
    YàB˙ÚúOŭ,ż!Ĉ€.ÑTżµôŸú
    YàB˙ÚúOŭ,ż!Ĉ€.ÑTżµôŸú
    YàB˙ÚúOŭ,ż!Ĉ€.ÑTżµôŸú
    YàB˙ÚúOŭ,ż!Ĉ€.ÑTżµôŸú
    YàB˙ÚúOŭ,ż!Ĉ€.ÑTżµôŸú
    YàB˙ÚúOŭ,ż!Ĉ€.ÑTżµôŸú
    YàB˙ÚúOŭ,ż!Ĉ€.ÑTżµôŸú
    YàB˙ÚúOŭ,ż!Ĉ€.ÑTżµôŸú
    YàB˙ÚúOŭ,ż!Ĉ€.ÑTżµôŸú
    YàB˙ÚúOŭ,ż!Ĉ€.ÑTżµôŸú
    YàB˙ÚúOŭ,ż!Ĉ€.ÑTżµôŸú
    YàB˙ÚúOŭ,ż!Ĉ€.ÑTżµôŸú
    YàB˙>KNžUŠûYdnŠ“)'€-QEW7â?Ĥ^>ÒĠïŻˆbĦf>€])>‚ĵ’öàİkıˆ2\òœ–éӜ˜ôsŻ>3û37ö†™"/Ukiĵ{‚Öş]>öÖŝĠ.m&YcaÁ½ˆì}yc8XUd„–SħŜ7
    ƒŒò3Ç1ëĊSŽTÒf7öŒüí1ç§ƒĈ}ŭ‡`v=žŠç|9â‹MKKûE¤3 ŭä}3îĴ½sÄ7²ËċÙĊ'p=}èŽĉîÚŬ7Ë2 ÷5Ìh׺úöş³½”“>˘|Ċ‘öX={uJï[žŜéˆé^TD‰eğĵçŽ~^ßOjò?‰ZŸŠ‹\Úkş]’Ä"¸Úşqpü(ç,xn0ñÔn}R,ô’Şßd²}Óċ/?ż÷ċ­Q@³tïùµ˙ż+ŝféßóák˙~Wü*ĠWû7N˙Ÿ_ûòżáGön˙>ż÷ċ­Q@³tïùµ˙ż+ŝféßóák˙~Wü*ĠWû7N˙Ÿ_ûòżáGön˙>ż÷ċ­Q@³tïùµ˙ż+ŝféßóák˙~Wü*ĠWû7N˙Ÿ_ûòżáGön˙>ż÷ċ­Q@³tïùµ˙ż+ŝféßóák˙~Wü*ĠWû7N˙Ÿ_ûòżáYZŭ•œ7z4ÚAEpÉŭ[÷żXŝ$˙_£˙ĜE?ô 
    Š(˘€†TQ^KâȒÖ),ċ-˜ĈÌ)çÛ§LŒW­Ö‹ĵ?oĴZ<v]$d#âû­ê(g‰˙jĝ…nà·°ˆ§—+À_Ì'’Cs×°ġâŻ_6Ħp‰˙ÇKÂ˜ÁÙàè>‡Ê°oluĈ¸CG,O9dtĝcòëŞÑ´û\ĝ‡Q•ggŒsĝ dÚU¤ĥNĦö˜w8WPÁ˜)íÇŸ•jĝ˜x3Oħ[Zâò]˵-|òÀWżSUü/§êú•ÍÎĦzÏ™ĥÛBFvq÷˜N:jÇĠgƒuIíîĵ2ğclL};)üÈ )ŬêÖĥP$ö^‚Ü;†p2 ż|ñ_9üc½×ßÇú‰#kƒsdcòBN<˜ÀXH>,Àġp÷ŻîxâÖr&~Q(r­>[ƒè9JĉüIñĊŜԚ;ᝳi̋,f+F“Ÿ›jö!ş€F{wż˘ßx݈ż°5­ïÂ^6„;Ú]BFf1şœ`œ@Ùëú„6˜–z6İês#@g¸|yĴ[8ğ'ÙpJóí/WÔô}^ŝ´BßSŜ#óŒF]à€1[ċ€1É$rÇŒ4_hÏo3[ßêöäF.•H;H=ñÈ+ÓÖ¤‹ÄÖ_| ñLnôïÛ$‘¤#–`>ë)ûËÛġ¨ hò߈ż58/Ħ›Iğ.°ËċÌöèöŞ$'îËĈxHÁyànĝ7W•µÔġTxĉ™Mş€“·ħÉÈÉ<ç>µçu¸²Ò5Í,ÇĞċž[eIdV!Fòçż·R˘OßŜĝS–Vö––ĈK¨ŒWnÈĊ£`Č8`rH§öçÓŭ˘>ĝWQ²Ġï„ħĴpŻÙí<ĊÈÉnAÇħ˙5˙Yü ˙ŸÍg˙íŝ5ñ‡ŝĝ“ÇzuĈħĤÜië\_ϐĦÜR1†ż˙
    Ĉżó÷£˙ß÷˙â+ÉŻžċĜzŽ•ZÉInŽšyn*ĴTáM´ÏĴ?áĴŝÏĉ³˙‚ö˙?áĴŝÏĉ³˙‚ö˙ù?ŝçïG˙żï˙ÄQ˙
    Ĉżó÷£˙ß÷˙â+ġ“*˙ŸñûËŝÉĈ˙Ïĥ}a˙
    gƒŝ5Ÿü·ĝÑ˙
    gƒŝ5Ÿü·ĝ×Ċ:Ï]Jñž›áK™ĴMö˘ĦĦd‘Œ`“·?Â{WM˙
    Ĉżó÷£˙ß÷˙â+jıî]IFSĴ’’şó]Ìá—bĤڌĥŒúŝÏáüŝk?ĝ/oñ£ŝÏáüŝk?ĝ/oñ݃|eáëï
    ĝŠCԞı·\ÂĊ—ĉPĜŠÇŻJ•XU‚İtĠÓòg$á(IĈJÍĦ_Ö?çóY˙Á{Ö?çóY˙Á{|˙àfµŻYG¨ëwĜöÒÑÄcß3R2ŝ<ûWI­ŝÎÑF}ÄR€>XîáXún^Ÿ‘Ż·ċTk{U×É6ôĴztò\mJ~ÑCO•ŝèŸĝk?„óùĴ˙à½żĈĝk?„óùĴ˙à½żĈñ&‡ŞxwV—KÖ-Úê.ŞŬv`z}EA˘éóêÚ½Ĥ™lQfğ™!Œı†cŸnkŜUİʟµNñµïÒŬÏ5Ӓ—#Zö>˙˙†³ĝA˙?šÏŝÛüh˙†³ĝA˙?šÏŝÛükä˙ĝP5˙Ÿ½ŝ˙ż˙Gü(˙ÏŜ˙ß˙ˆŻ#ŭdÊżçü~óğû'˙>Ùġ‡ü5ŸÂùüÖ^ßGü5ŸÂùüÖ^ß_'˙€ñŻüŭè˙÷ŭ˙ĝŠĞĴ|ñ~—¤^jwZI†Îž@“9b¨Ž>^¸ÄY\¤£ñğóÊħ‰]Óg×_Ö?çóY˙Á{Ö?çóY˙Á{|kàŻ„%ño‡âÖôۍ9-vUJÊÙSƒÀSé[_ Ĝ‘m‰‘<½{§é]ĉ·ĞÚx‡Ä6·
    ,aš[²ċTQœ~'j‰ĤjŜß@n†ĜaċV(ˆGĦÈŜ‚ż‡ħË„-./L­<„çÄ·~zçġ­ORżıiü=áĦ
    †½WÍÉ2s’:Ó/ĵAİñC$ĈÚ;ÙD°]˜Ž
    Àq‘’dO5í>ĠüE%ü6?|%dşħ/cZD³[IÏ0…ñôÔtŻ1ĝâ=/Akqilµo&§gĉ /g|Rċċĵœc½oüMñ&³oá_ş3ÜĊ¨™Á·kvBFN¸ÈvŞíSß{8ÜjìßŭĤb½ĥĝoİkú%ÁĥÔìÔMħı²psòƒ_5ĝOÄZ·ŽäZ¤ŝ,ħˆĵÂ$UŽíKcyô8îrF03^âŸŒĥŝ"6Ħ[ĝ?Vš-9{‰!1Ûùħ²Ÿ(ÀFàägŽsN³´m.ˆ>Ó˘†ê8ŒŞÎҔ‚mĴ<°ÜdeNrz`5t^ħÖü5âëáßYÜZĝ…"ÜĦŬƒÔ~ëž7)ç×­x?ÇĞĞ[‹MÈH˘ÌĤ5\ä…Àú:ïĵ_CâÏ
    é?ħ
    ˘Ogİ}–I£‰C³ò–`2Ê3Ó žZóŻŽI,ŝ!K÷ğµıŜ€n€‚<ç‚zœĜġÙCŝD˙û	żŝ‹Ž½†ĵ{öP˙‘˙ŝÂo˙˘ŻaŻÀĝ›ŝFĠ˙Ä~‘“˙ıSô
    (˘ĵÒŜ³?c˙ù8ï˙×kŭ&–ĝ™£Ĥğà-gLdÒZğGÇñ¨Üż¨ó÷ì˙'áúíq˙¤Ò×뜙πtê;ʛ·Ë§êGq8|OĦnmÚDb>Bŭxú×_ÂŜ‡áÉñާ¤KŻêR^ĵşt—L;;ċ†IÈÈÎ1ġÊĴ%8Ú2ħp”c-UΛÄ<ĝ⏆ştşĉ­£hú>·,–âG@³KŽû¸(ǂGĤqÏ4|_%ŭçìëcħȗU³ğE<’8œ&â—NĥÖüEâ{mKPM:î0
    H
    Ĵi÷`1ˆÇ#ħwÂżÚ$ç4İÎVžê”€QwĈnz„ŒĜ·Ú~Ëé*°CsvÈTıăÌ# ž=G\íµšü;°šk)QĥÌ }ëĴïuOÙ͢‰Q,ß™Lß7LŽżĤsXSé·W_	´‹Y™@XšT
    ĵmÏ úóëA/cˆÄ/ĝON“Oµííä”ÌÊÖèùbÎX
    ġż€ż|[âżËĤkš„wĞe$ĦVŜ4;ƒ *îkçٓ˕“9ÁĈkĠeù)s˙Ĝ6_ŭ:ùŽ$ËpPŻ_ÙGžÍŜÊ÷ġÜġ²œ]ĴÓ§ÎùoµŬêZùkĊŸ<}§ĝ§VħµĠâH-ŻeŠ%6‘*ıdŻ<
    ú–ñïü:÷ŭ„n?ôcWÄ.ŠŻYWĤ¤’[¤úùŸCƊ´iÁӓWogcħ/ŠużüdĠŝğt·7L"FX•0¸cŒ(İ5ġ•|eWŝJ§‡żëèè&ÍİÊ4èâèÓ§˘Ħ˘Z-ĜĝjrİBr›ğrŭó?ôċĠżièlw$—veÇŞĴQ³Èú`WƒDßµ3ċÄ˙%ŝµï5çñ-g*X:}(żżŝêÊ):óï7ĝžcñçâŝÒ­ì´˘ŸÚ÷À”f„1Žı'ž8>•ç	~1ëÑĝšßNñV /4ûÉ~tŠŞ9à6@.x9é×µs?´FĦ%˙ĊmM‰KEŽŜ1èñĉ5çµ÷™7৔Ĉ`œŞFíÛU}UŸK5ÍñÇ9BZEÚŬ4ïêu?ĵJ|WCUW-mżÉµ‘/ùòߍUĝq˙%˙öƒ˙F
    À­˙‡òP0Ö˙µġi5ıò–,A2Şí\‚§žkñĊ`°¸|l9Ħg“×џ˘f”q¨ráċi_½˙…×ñŝƒP˙à?üMWÔŝ/x÷QÓtû½Z'·ş…á•E¤Cr0 Œ…Èàšê~:|2ç‚ü-iİèò_´ó_,'”2í(í(ç*+ĈkġĵŻ
    “ĉV'B6żò¤î‡ĈVÇáj:Uj;ú³ë?ÙĞŝI=‡ŭwŸ˙F³ûC˙É#Ö>°˙èÔŞß³Wü’{úï?ŝŒ5£ñŜÊóQĝ_ŞÙĜZÏupĉ-‘B…Ŭħ*“€9é_˜Ġ’6ööżûqġMċ6_Éú×ĵŝÉ•ÇÛ5½œ›-.QsÂĥvœ}A•y/ü!^0˙Ħ[Z˙À)?„ŭ<İxWL½Ġ5¨~Ï}µR~h£\Ÿ›’zvÀŻxż„yUH9Ĥċk+Ĥït˙ċò,5ĈJ-%{ŭÇĴHĦё†U†
    |Çû& ö›Äc˘Ŭ]/ċo5}/¨\%…Ċ܄†&‘‰ìd˙*ù—öFs'í)áIW¸ıoÎÚZĵ:OŭĦô÷öÒâĤżt½CôžŠ(ŻÓO#¸a`½q\}Ĝhd”ƒ!f<ÈßÒğC\ï‹mO'²5ûÀMG™éÇ˙U..j³‹/ßn„Àš²³amɁ—$ÖW9ÈÙ’Èĝî0êMjlFù˘o.XÉ%äzk„Öµ›È"­[ÊIü¸îc‘r“cħ¨iħX›eıÓĈ!ly\ÀġĊTÔu¨S“&á¸g8Ï·*5³Ëkqs+Ï!i<°AXaÜD`{É hmBƒ ƒŒsÈü¨ħŒqFѕôÎ9üúôŻ3ĝ›¤Y]j×)äĈÎÏ@6ġÇ|~=ĊzĈA@#žkÄ~-ŜÍeŻjÈÒˆŒ’v3r:ŝ‚£ıàŜ5ÄÚÊD#óPL$ƒÏŬÎ:äÖxjiá×µEȇvUŽ6b~£§j5Ğö•îĜ'™hH%pä`ôï]“¨•‘JB²ÎÀ2DÍ·{/ g8Éè	àn縤R%‚ÛÄ÷“ÚZĝvÏQ™Úµ‘Cúĥw€>`qÏĥ+¸Ç…ċĝU£Äz·‰fµ­çŸtb‰÷…v]ħĤâ99Ï#›3Xş.•.Żo}İxR´‹Ä‘ÙGö8ċ’HeH]Îàüž„ƒµàc‹ĝ‡à‰š÷ˆt½?]ñĥħ{*¨+˙.ĠqË*ò<ÁÀêCĠž­şN…û-ÙĊy1‰fÒQ–HÀܲHwŒz͌ġŻ4Ö5)t…şL¨CÂíòċBĴŻê9Èëۂt#ŬOZÒ<$š—ĤXÛ-‘!OïŒj îĈ~SòĥWƒžj§ĊF´ĥ6ŠĞöh“`QŽ8éÇуVGÏ!–VrÉé^Ğû+˙ÉKŸŝÁ²˙èqה8!ŽFyŻWŭ•˙äÏ˙`Ùô8ëÄâOùW˙;rŸ÷Ú~§Ôµçäy׿ì#q˙£݇<{˙#ν˙aŭĠĵVô_™ô|Uü*~ĴÖĝ+˙%Sßġô?ô_f×Ĉ_äŞx{ŝ‡ŝ‚kìÚÄ/÷ê_áŭYŻğÏü_˘<*'	û[Ìñ[…ĝµîµóŸ‰/WOŭĞíîáZâŜ˙m-Ġ?öjú2ĵŽ$ĤÔp“èèı۔Í7^=§#Ż6ïmñg]Wo•$_£FĤ¸ÛVâúŜŬ‰,Ş„Ž {×íMàû™¤ĥñ}„
    "GÙ•ċûrA=ZòŻ…>½ñ_Œìlí³Ċ*Íu0Gœž}N0=Í~Ÿ“f”g“Bğ•”#gäâ­˙
    ê|~?R8ùSKâw_3Û?áž|/˙A_ŝú˙‰CĊ_´ÏüEJi·—w"÷Püòż.É#Ĉ0÷}+^9ñßŝJGŻú˙oŭ
    ~}’gَ/ìkUr‹Œî´ŝI3ê3·B‡=8$ӏŝ”cŞ—zž›i/“u¨ZA&3²I•N=pM[Ż•˙jŬ'eQˆû]ğWe1ÍħW”ùtnöÇĦšcž
    µQĥ;ÏڛRÓï<	§ÇikpSF+ÊÄ*^p
    |ŬNò˙žO˙|šr“îµû>K•Ç*ÂĴ4gÍfŬöÜü˙0ĈÊYQİñËWċÙ|—sóŒëħ˜—(ü+EŝgéUQ_Jy\ç54°ĥV“;G_—9öú×Fk‡ñŬĵ÷7‘Ê×m-ǘñâ#<~?ҁ£’ÖŻ. ˆÜĈ6ħ䌏ÄZäî5½k™&ż·O=\ósÁëžk´–ĥôBÄî=g·ùŝàµ/
    NuV¸‘Ħw,Ê£’z>”wĥWڅĴw\DÍ9iäz‹ž}è}ë6ÚÂ	u6J0àcĉ+ÏŜĤ³ÓntŬ>94ëk}BŬBZLħNHcÏ.ŭ=áNTÒĈ§£N²êzt§tMò™ıYxÚN;ú€7¤£îa°cĉÜ0
    xÏĊòV½’5i,nàäŞäíÈ˙ġW{eâğYbı†Kyíhúm÷ëŸò+Àŝ>ĝŝĝžâÎę&’4;ĵÁĵ&AáHÎ:Ž´
    3—{HbĠíç·&x	‘c†b;‡9Ĉd€­Fû=šA'5´·^šúïTż‘ZëP¸Pĝ;5t
    Ü
    ğâ?jrÛé&½İ¤ĥÖ1Ëc2Ȋ…Fíëáˆ÷ÏÀ˙ô{xìVŜ)ç‚ÎîÁ‹İbAŒöäŝhzÄ÷çTĠ]ċó‡šÉ+À`HeëלŝŸ$IetIÑ$X´}:p¸ûĜúsÚ½ÇLÓ­l’+Ç̂
    Üħ×§N˜í_>ŝёÚZjµıIC ħ<~$Óž‡Hw;S^­û+˙ÉKŸŝÁ²˙èqד×Ĵ~Ê˙òRç˙°lżúuâq'üŠĞ˙…ıOûí?SêZĝsÇżò<ëßö¸˙э_qמ=˙‘ç^˙°ÇŝŒjĝ_?Ŝ+z/Ìú>*ŝ?Vk|˙’İáïúúú	ݳk/‚żòU<=˙_C˙A5ömaâûġ/ŝĴׅżŬçŝ/Ñ$ŝÚ|hÔn m²Âm¤FôadÌWÔŜĠ Öô
    ^Ĝ*ò™FznÇáÓŻ•?hżù+şżûè”ŻHŭ–ĵ`—tŝ½”	­ËMe¸ŭèÉ˨ú~„úWv–ːáq0ZӄoèâŻ÷;~'6Y‹T³:Ô´›ûÓg¸şĞĦGPʐEAa§Ĝéñ´vVֈÇ,°Ä¨	ġ 
    ³E~j$­}­ċW¸WŽ|w˙’‘ëŝżÛ˙FC^Ċ‘ëÖĵw·ü”‡_ġŝßú2÷8oŝF˙˙ô‰vmŝêŭc˙#ĜéNrñ£R ÓèŻ	;“"û<óĈ?ûäVÄ8!ñ	ĈÒîpvùäĠÑVÄOùQ Tsşàô{ ĥ]FÛF†çÌ3Ìòn û…—8Ξİ<
    럕†ÀËÇ:À³¸7˙XĤ[y3÷rƒ'œzaǨóÄßMŻë1ĵO’…A^•ôĤà-[Ĉ˙d²Óï`†W$ò#ƒräà|ËÛñá†Fk&OĜÇĊSÈÒ?4pI˙Ÿi("LùRğ‚ž-Ó<	5}V+İ-ÚÍàŬ6âÈGŽ>SŜ½Çŝ³Ċô:èßĝ
    %Ċž(˙Ħ×F˙Ài+›…§‹Ħ*>+2èV•
    Ф7Eĝh˙ϖı˙€ñ˙ñÊùżÄ÷°ê~$Ôġ+pë
    ĠܳFa‚³’3ïÍ}1˙Yâútoü’ĝbÏë£à4•ĉċ	ÊéÍN*WZîLĝ‡(¸ĥµò8„<3áÛhšĥİ%ÌRHÌBŒ˜f$`—żMñ[…üSà[ŭNµĠRĉàÇħĤ…×V9!Éè=+ħ˙†,ñGŭş7ŝIGü1gŠ?èuÑżJê|+€xÏYóósoïsbUa§-­·M–"‘â‘e‰Ù$FĴ§HèAŻ|ÇĜ-´”´ñm•Ü÷1(QujŞĈQêÊHÁ÷kĞ˙†,ñGŭş7ŝIGü1gŠ?èuÑżJôsLŸ	šSPÄĈöÙì×ÌċÁëàäċIÚ˙q_ŝÁ?óċà<ürĵóöL‘fŭĤĵ/2ä+ÜŬ0Ï\yz_ü1gŠ?èuÑżJê>ŝÍZï_Š~ñe÷‰tëĝ-îŜ30şħ/ŠOfħÊr&Rĉ÷÷­{ğíó4ÇfUñĵÖÚ~§ÖTQE{'žŒ2¤b–ŠÊĠ4¨ïP	:ó{JóĝQ^cycûbħ*qÁ<€HŸ×Ößîš=‚L2{âĤx²Ë…ñ;•0ċ˜‘–%³×žüXúšßÛíi9	Ú6àzp1Û:ìw²âŜ{çžA,euEÎìA•OCıƒy‘­B5	ïŜ;°U.Ì\¨"”şeI'&Ǐ½Ó|hş&Ğ-¤”ˆŒÏ·™d,Á1鴉ĥk°ĝ;átñ¨yi
    ĊğÎ$&ä@ÇMäcĥ(ÏtĝI£=*)n­‚\"a[Ħ ÷#×Ï}MwĠGB€ô-aEPEPEPEPEPEPEPEPEPEPXŝ$˙_£˙ĜE?ô­ŠÇñ'úŭŝÂ)˙ =lQEQEh˘Š@"Š(#ŠĉĴµ(tŬg\Žê×RŭíêIE§O*:ŭšÈdB*ŻPk˘€1ˆ´ÖÛW?÷ş˙tiäcìúÇŝ	îżĝŬlÑ@#ż
    éäZ‘]7U’i	hĜé#'ŭ_ûFş‡v:†,d[ëç`í˙‹£ƒíûż@á^ŠĊsŝ=?ŝ}ġüŬñş?á#Ó˙çßX˙Á=×˙­Š(ŝ=?ŝ}ġüŬñş?á#Ó˙çßX˙Á=×˙­Š(ŝ=?ŝ}ġüŬñş?á#Ó˙çßX˙Á=×˙­Š(ŝ=?ŝ}ġüŬñş?á#Ó˙çßX˙Á=×˙­Š(ŝ=?ŝ}ġüŬñş?á#Ó˙çßX˙Á=×˙­Š(ŝ=?ŝ}ġüŬñş?á#Ó˙çßX˙Á=×˙­Š(ŝ=?ŝ}ġüŬñş?á#Ó˙çßX˙Á=×˙­Š(ŝ=?ŝ}ġüŬñş?á#Ó˙çßX˙Á=×˙­Š(ŝ=?ŝ}ġüŬñş?á#Ó˙çßX˙Á=×˙­Š(ŝ=?ŝ}ġüŬñş?á#Ó˙çßX˙Á=×˙­Š(ŝ=?ŝ}ġüŬñş?á#Ó˙çßX˙Á=×˙­Š(ŝ=?ŝ}ġüŬñş£İjê7ÚL6ĥşĦeYÉĤÜDŞĦ$³ ¨êkĤ˘€
    (˘€
    (˘€
    (˘€
    (˘€
    (˘€
    (˘€
    (˘€
    (˘€
    (˘€
    (˘€
    (˘€
    (˘€
    (˘€
    (˘€
    (˘€
    (˘€
    (˘€
    (˘€
    (˘€
    (˘€?˙Ùtiger-3.2.3/tigercron0000755000175000017500000001733711061320620013203 0ustar  pacopaco#!/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 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.
    #
    # tigercron - 06/13/93
    #
    # 04/12/2008 jfs Include patch from Chris Lamb that fixes bashism in the script
    #                (Debian bug #468700)
    # 08/15/2003 jfs Now uses run_script instead of SCRIPTDIR/LSCRIPTDIR which
    #                permits tigercron to execute the most relevant script given
    #                the $OS/$REL/$ARCH
    #                Safer creation of the temporary file which includes the
    #                scripts' results.
    # 04/23/2003 jfs Sanity check for the existance of ctrfile, use TigerConfigDir
    #               instead of CONFIGDIR
    # 10/28/2002 jfs Added check of non-comments in output (only available if
    #                egrep is installed)
    # 07/25/2002 jfs Changed TigerInstallDir to .
    # 12/26/2001 jfs Modified to provide new ways to compare against previous
    #                runs: per policy (template) or per run.
    # 12/02/2001 jfs Fixed script to properly send out mails with valid
    #                headers and content
    #
    #-----------------------------------------------------------------------------
    # TODO:
    # - Study wether or not GPG can be used to automatically sign messages
    #   sent (using a passwordless key)
    # - Make it work with syslog to send the reports (in much the same way 
    #   that sendtologger is used by Tiger when a '-l @syslogserver' is used)
    #   (Note: This would also help since having it log locally instead of
    #   could help users running logcheck, at least in Debian)
    # - Consider if running checks by absolute filename reference is permitted
    #   or not
    #-----------------------------------------------------------------------------
    #
    TigerInstallDir="."
    
    [ "$1" != "" ] && {
      case "$1" in
        -*);;
        *) ctrlfile=$1; shift;;
      esac
    }
    
    #
    # 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
    TEMPLATEDIR="$TigerConfigDir/templates"
    
    . $BASEDIR/initdefs
    
    #
    # If run in test mode (-t) this will verify that all required
    # elements are set.
    #
    [ "$Tiger_TESTMODE" = 'Y' ] && {
      haveallcmds DATE SED EXPR DIFF MAILER GREP BASENAME || exit 1
      haveallfiles BASEDIR SCRIPTDIR WORKDIR LOGDIR || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    haveallcmds DATE SED EXPR DIFF MAILER GREP BASENAME || exit 1
    haveallfiles BASEDIR SCRIPTDIR WORKDIR LOGDIR || exit 1
    
    umask 077
    
    [ -n "$Tiger_CRON_Output_Width" ] && {
      Tiger_Output_Width="$Tiger_CRON_Output_Width"
    }
    
    [ ! -n "$ctrlfile" ] && ctrlfile=$TigerConfigDir/cronrc
    [ ! -r "$ctrlfile" ]  &&  {
    	    message ERROR tigxxxx "" "Cannot read \`$ctrlfile', tigercron cannot proceed."
    	    exit 1
    }
    
    set X `$DATE`
    dow=$2
    dom=$4
    time=$5
    IFS=:
    set X $time
    IFS=$saveifs
    hour=$2
    min=$3
    
    # now some sanity checks
    # WARN: Since the cronjob does not send err output we proceed but
    # this should really be fixed in order to provide proper err messages
    # (otherwise this might lead to a 'false sense of security' since the
    # same checks are done over and over again, or none at all, depends
    # on cronrc configuration)
    [ -z "$hour" ] && hour=0
    [ -z "$min" ] && min=0
    [ -z "$dow" ] && dow=1
    [ -z "$dom" ] && dom=1
    
    [ $min -gt 50 ] && {
      if [ $hour -eq 23 ]; then
        hour=0
      else
        hour=`$EXPR $hour + 1`
      fi
    }
    
    
    $SED -e 's/#.*$//' -e '/^$/d' $ctrlfile |
    while read times doms days scripts
    do
      
      hourok=0
    
      if [ "$times" != '*' ]; then
        IFS=,
        set X $times
        IFS=$saveifs
        shift
        for t
        do
          [ "$t" -eq "$hour" ] && {
    	hourok=1
    	break;
          }
        done
      else
        hourok=1
      fi
    
      domok=0
      [ $hourok -eq 1 ] && {
        if [ "$doms" != '*' ]; then
          IFS=,
          set X $doms
          IFS=$saveifs
          shift
          
          for d
          do
    	[ "$d" = "$dom" ] && {
    	  domok=1
    	  break
    	}
          done
        else
          domok=1
        fi
      }
    
      [ $hourok -eq 1 -a $domok -eq 1 ] && {
        dayok=0
    
        if [ "$days" != '*' ]; then
          IFS=,
          set X $days
          IFS=$saveifs
          shift
    
          for d
          do
    	[ "$d" = "$dow" ] && {
    	  dayok=1
    	  break;
    	}
          done
        else
          dayok=1
        fi
        
        [ $dayok -eq 1 ] && {
          for script in $scripts
          do
    	outprefix="$LOGDIR/`$BASENAME $script`.out"
    	safe_temp $outprefix.$$.tmp
    	suffix=${TigerCron_Log_Keep_Max:=10}
    	{
    	  run_script $script
    # TODO: Consider if including absolute references is considered
    # validif [ -f $_SCRIPTDIR/$script ]; then
    #	  elif [ -f $script ]; then
    #	    $script
    #	  else
    #	    message ERROR tigxxxx "" "Not found (and cannot run) $script as requested in tigercron file, `$ctrlfile'."
    #	  fi
    	} > $outprefix.$$.tmp
    	if [ -s $outprefix.$$.tmp ]; then
    	  next=`$EXPR $suffix - 1`
    	  while [ "$next" -ge 1 ]
    	  do
    	    [ -f "$outprefix.$next" ] && {
    	      $MV $outprefix.$next $outprefix.$suffix
    	    }
    	    suffix=$next
    	    next=`$EXPR $next - 1`
    	  done
    	  $MV $outprefix.$$.tmp $outprefix.1
    	  echo $outprefix
    	fi
          done
        }
      }
    done |
    while read filename
    do
      newfile=$filename.1
      previousfile=$filename.2
      templatefile=$filename.template
    #  etctemplatefile=`echo $templatefile | $SED 's/\/var\/log\/tiger\///'`
      etctemplatefile=`$BASENAME $templatefile`
    
      if [ "$Tiger_Cron_Template" = "Y" -a -s "$TEMPLATEDIR/$etctemplatefile" ]; then 
        $BASEDIR/util/difflogs $TEMPLATEDIR/$etctemplatefile $newfile
      elif [ "$Tiger_Cron_Template" = "Y" -a -s "$templatefile" ]; then 
        $BASEDIR/util/difflogs $templatefile $newfile
      elif [ "$Tiger_Cron_CheckPrev" = "Y" -a -s "$previousfile" ]; then 
        $BASEDIR/util/difflogs $previousfile $newfile
      else
        $CAT $newfile
      fi
    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
    # this is useful (if egrep is available) to remove cruft
    	length=`$EGREP -v "^\s*$|^\s*#" $WORKDIR/tigcron.diff.$$|$AWK 'END {print NR}'`
    fi
    [ -s "$WORKDIR/tigcron.diff.$$" -a $length -gt 0 ] && {
      send="Y"
      [ "$Tiger_Cron_SendOKReports" = "N" ] &&
      [ -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)\" <$Tiger_Mail_FROM>"
    	echo "To: $Tiger_Mail_RCPT"
    	echo "Subject: Tiger Auditing Report for $(hostname)"
    	echo 
    	cat  $WORKDIR/tigcron.diff.$$ 
        } | $MAILER $Tiger_Mail_RCPT 
        # Note1: This could also be 
        # } | $MAILER -s "TIGER Output" $Tiger_Mail_RCPT < $WORKDIR/tigcron.diff.$$
        # Alas, it's not completely portable (no -s option on some mailers)
        # Note2: It could even be
        # } | $GPG -e -a | $MAILER -s "TIGER Output" $Tiger_Mail_RCPT < $WORKDIR/tigcron.diff.$$
        # But it should then use passwordless keys for GPG
    
    }
    
    delete $WORKDIR/tigcron.diff.$$
    tiger-3.2.3/tigerrc0000644000175000017500000003477411061321642012654 0ustar  pacopaco#
    # '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.
    #
    # 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
    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 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
    Tiger_Check_SIGNATURES=N	# 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=N		# 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=Y		# 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
    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
    # - 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|md5'
    #
    # 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|games|lp|mail|news|operator|sync|sys|uucp|man|proxy|majordom|postgres|www-data|operator|irc|gnats'
    #
    # 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=$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.
    #
    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
    # 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=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=N		# world writable directories
    Tiger_FSScan_Unowned=Y		# files with undefined owners/groups
    #  The following variables change the way the GET_MOUNTS (gen_mounts) script works:
    Tiger_FSScan_WarnUnknown=Y	# Warn about unknown filesystems used
    Tiger_FSScan_Local=''		# Filesystems considered to be local to the system, pipe-separated
    Tiger_FSScan_NonLocal=''	# Filesystems considered to be non-local to the system, pipe-separated
    #
    # 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=999
    #
    # 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. 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_DPKG_Optimize=Y
    # 
    # Other applications:
    # 
    # Arguments used in the command line for chkrootkit. If you are using
    # NFS filesystems you might want to add '-n' here too. '-q' makes the 
    # chkrootkit process work in 'quiet' mode.
    Tiger_CHKROOTKIT_ARGS="-q"
    tiger-3.2.3/tigerrc-TAMU0000644000175000017500000001456110217637536013426 0ustar  pacopaco#
    # 'rc' file for tiger.  This file is preprocessed, and thus
    # can *only* contain variable assignments.
    #
    #
    # TAMU version
    #
    # Note:  This disables many of the checks.  You should not use this.
    #        The checks enabled here are the ones we definitely want done
    #        but all of them should be done.
    #
    #------------------------------------------------------------------------
    #
    # Select checks to perform.  Specify 'N' (uppercase) for checks
    # 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
    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		# 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_PATH=Y		# Fast for just root... varies for all 
    Tiger_Check_EMBEDDED=N		# Several minutes
    #
    # Should messages tagged with INFO be shown?
    #
    Tiger_Show_INFO_Msgs=N
    #
    # In order for this to be effective, you must set 'CRACK' in a
    # 'site' config file.
    #
    Tiger_Run_CRACK=N               # First time, ages; subsequent fairly quick
    #
    # 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
    #
    # 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=1
    #
    # 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'
    #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=
    #
    # 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|sys|daemon'
    #Tiger_ROOT_PATH_OK_Owners='root'
    #
    # 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=
    #
    # Who can own things in other users PATH?
    # List of usernames separated by '|'... no whitespace
    #
    Tiger_PATH_OK_Owners='root|bin|uucp|sys|daemon'
    #
    # 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=N
    #
    # 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=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
    #
    # 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_Devs=Y		# device files
    Tiger_FSScan_SymLinks=N		# strange symbolic links
    Tiger_FSScan_ofNote=Y		# wierd filenames
    Tiger_FSScan_WDIR=N		# world writable directories
    Tiger_FSScan_Unowned=N		# files with undefined owners/group
    #
    # 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=".cshrc .profile .login .mailrc .exrc .emacs .forward .tcshrc .zshenv .zshrc .zlogin .zprofile .rcrc .bashrc .bash_profile .inputrc .xinitrc"
    #
    # 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'
    
    tiger-3.2.3/tigerrc-all0000644000175000017500000003263510217637536013432 0ustar  pacopaco#
    # '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=Y	# 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=Y		# 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|md5'
    #
    # 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|games|lp|mail|news|operator|sync|sys|uucp|man|proxy|majordom|postgres|www-data|operator|irc|gnats'
    #
    # 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=999
    #
    # 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.3/tigerrc-dist0000644000175000017500000002534510217637536013625 0ustar  pacopaco#
    # '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=Y	# 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_OS=Y                # Fast
    Tiger_Check_SINGLE=Y            # Fast
    Tiger_Check_BACKUPS=Y           # Fast
    Tiger_Check_BOOT=Y              # Fast
    Tiger_Check_PATCH=N             # Depends on your network connection
    				# (if no timeout is fixed it might stall)
    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_SENDMAIL=N		# Fast
    Tiger_Check_PRINTCAP=Y		# Fast
    Tiger_Check_EXRC=N		# Depends on the size of the filesystem
    # 
    # 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
    #
    # Should we use canonical fully qualified domain names
    # in the reports?
    #
    Tiger_Output_FQDN=Y
    #
    # Run Tripwire file integrity checker
    #
    # Disabled in Debian since this check is provided by itself when
    # installing either Tripwire or other integrity-checking packages
    # (aide, samhain...)
    Tiger_Run_TRIPW=N		# Slow
    #
    # 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"
    #
    # 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|games|lp|mail|news|operator|sync|sys|uucp|man|proxy|majordom|postgres|www-data|operator|irc|gnats'
    #
    # 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'
    #Tiger_ROOT_PATH_OK_Owners='root'
    #
    # 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=999
    # 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, change it to suit your
    # needs
    #Tiger_Running_Procs='syslogd testing'
    #
    # 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.3/tigerrc-hpux0000644000175000017500000003251310217637536013641 0ustar  pacopaco#
    # '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.3/tigexp0000755000175000017500000001375311113617735012523 0ustar  pacopaco#!/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 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.
    #
    # tigexp  - 06/13/93
    # tigexp  - 05/23/2003 - changed so that it is managed by autoconf
    # tigexp  - 11/27/2008 - Proper handling of errors and existance (or
    #                        lack of) idx file. Also, regenerate the index
    #                        file only if running as root.
    #
    # This program retrieves information explaining what a given message 
    # (INFO, WARN, ALERT, FAIL or ERROR) given out by Tiger means.
    #
    #-----------------------------------------------------------------------------
    TigerInstallDir="."
    
    #
    # Set default base directory.
    # Order or preference:
    #      -B option
    #      TIGERHOMEDIR environment variable
    #      TigerInstallDir installed location
    #
    basedir=${TIGERHOMEDIR:=$TigerInstallDir}
    findbase=1
    
    for parm
    do
       case $parm in
       -B) basedir=$2; findbase=0; break;;
       esac
    done
    
    #
    # Routines for verifying environment
    #
    # haveallcmds - verify command variables
    # haveallfiles - verify files
    # haveallvars - verify variables
    #
    haveallcmds()
    {
      __retval=0
    
      for __file
      do
        eval __cmdstr=\$$__file
        set X $__cmdstr
        __cmd=$2
        if [ ! -n "$__cmdstr" ]; then
          echo "--ERROR-- [init001e] Don't have required command $__file."
          __retval=1
        elif [ ! -f "$__cmd" ]; then
          echo "--ERROR-- [init004e] \`$__cmd' is not executable (command $__file)."
          __retval=1
        fi
      done
      return $__retval
    }
    
    haveallfiles()
    {
      __retval=0
    
      for __var
      do
        eval __file=\$$__var
        if [ ! -n "$__file" ]; then
          echo "--ERROR-- [init005e] Don't have required file $__var."
          __retval=1
        elif [ ! -f "$__file" -a ! -d "$__file" ]; then
          echo "--ERROR-- [init006e] \`$__file' does not exist (file $__var)."
          __retval=1
        fi
      done
    
      return $__retval
    }
    
    haveallvars()
    {
      __retval=0
    
      for __var
      do
        eval __val=\$$__var
        if [ ! -n "$__val" ]; then
          echo "--ERROR-- [init007e] Don't have required variable $__var."
          __retval=1
        fi
      done
    
      return $__retval
    }
    
    
    findcmd()
    {
      cmd=$1
    
      srch=/usr/ucb:/usr/bin:/bin:/etc:/usr/etc
      
      saveifs=$IFS
      IFS=:
      set $srch
      IFS=$saveifs
      for dir
      do
        [ -f $dir/$cmd ] && {
          echo $dir/$cmd
          return
        }
      done
    }
    
    GREP=`findcmd grep`
    SED=`findcmd sed`
    FMT=`findcmd fmt`
    SORT=`findcmd sort`
    LS=`findcmd ls`
    
    [ ! -n "$FMT" ] && FMT=`findcmd cat`
    
    dirname()
    {
      _path="$1"
    
      saveifs=$IFS
      IFS=/
      set X $_path
      IFS=$saveifs
    
      shift
    
      if [ $# -eq 1 ]; then
        _dirname='./'
      else
        _dirname=$1
        shift
        while [ $# -ne 1 ]
        do
          _dirname="$_dirname/$1"
          shift
        done
      fi
      
      echo "$_dirname"
    }
    
    
    [ $findbase -ne 0 ] && {
      if [ ! -d "$basedir/doc" -o ! -d "$basedir/systems" ]; then
        tempdir="`dirname $0`"
        if [ -d "$tempdir/doc" -a -d "$tempdir/systems" ]; then
          basedir="$tempdir"
        elif [ -d ../doc -a -d ../systems ]; then
          basedir=..
        fi
      fi
    }
    
    BASEDIR="$basedir"
    export BASEDIR
    
    params="$*"
    
    haveallcmds GREP FMT SED SORT LS || exit 1
    haveallfiles BASEDIR || exit 1
    
    check_idx()
    {
     [ "$UUID" = "" ] && UNAME=`whoami`
    
    # Check if the index is up to date
     if [ "$UNAME" != "root" ] ; then 
      {
    # Not running as root, just warn if the index file is out of date, do not
    # regenerate it
        cd $BASEDIR/doc
        $LS -t
      } | {
        read file
        [ "$file" != "explain.idx" ] && {
    	echo "Warning: Explain index out of date and unable to rebuild it."
            echo "Warning: Please regenerate it by running, as root, the following command: "
            echo "Warning: cd $BASEDIR && util/genmsgidx doc/*txt"
        }
      }
      else
      {
    # Not running as root, just warn if the index file is out of date, do not
    # regenerate it
        cd $BASEDIR/doc
        $LS -t
      } | {
        read file
        [ "$file" != "explain.idx" ] && {
          echo "Rebuilding explain index file"
          $BASEDIR/util/genmsgidx $BASEDIR/doc/*.txt 
        }
      } 
      fi
    }
    
    explain()
    {
      message="$1"
      if [ ! -e "$BASEDIR/doc/explain.idx" ] ; then
        echo "Error: Explain index file ($BASEDIR/doc/explain.idx) does not exist."
        echo "Error: Please create it by running, as root, the following command: "
        echo "Error: cd $BASEDIR && util/genmsgidx doc/*txt"
        exit 1
      fi
      $GREP "$message" $BASEDIR/doc/explain.idx |
      {
        read msgid file start end
        echo
        if [ -n "$start" -a -n "$end" ]; then
          $SED -e "$start,${end}p" -e '1,$d' $BASEDIR/doc/$file |
          $FMT
        else
          echo "Can not find explanation for message-id $message"
        fi
        echo
      }
    }
    
    explainfile()
    {
      file=$1
      if [ ! -r "$file" ] ; then
        echo "Error: Cannot read file provided as argument: $file"
        exit 1
      fi
      $GREP '^--[A-Z]*-- \[.*\]' $file |
      $SED -e 's/^.*\[\(.*\)\].*$/\1/' |
      $SORT -u |
      while read msgid
      do
        echo "Message ID: $msgid"
        explain "$msgid"
      done
    }
    
    explaininsert()
    {
      file=$1
      msgid=
      [ -f "$file" ] &&  {
      {
        while read line
        do
          case "$line" in
    	--[A-Z]*)
    	[ -n "$msgid" ] && {
    	  explain "$msgid"
    	  msgid=
    	}
    	msgid="`echo \"$line\" | $SED -e 's/^.*\[\(.*\)\].*$/\1/' -e '/\-/d'`"
    	;;
    	\#*)
    	[ -n "$msgid" ] && {
    	  explain "$msgid"
    	  msgid=
    	};;
          esac
          echo "$line"
        done
    
        [ -n "$msgid" ] && {
          explain "$msgid"
        }
      } < $file
      }
    }
    
    set x $params
    
    shift
    
    if [ "$1" = "-f" ]; then
      explainfile $2
    elif [ "$1" = "-F" ]; then
      check_idx
      explaininsert $2
    elif [ $# -eq 1 ]; then
      check_idx
      explain "$1"
    else
      check_idx
      for msg
      do
        echo "[$msg]"
        explain $msg
      done
    fi
    
    tiger-3.2.3/version0000644000175000017500000000000611061674120012661 0ustar  pacopaco3.2.3
    tiger-3.2.3/version.h0000644000175000017500000000003011061674120013104 0ustar  pacopaco3.2.3, 2008.09.10.09.30
    tiger-3.2.3/version.h.src0000644000175000017500000000001407502327223013700 0ustar  pacopacoTOOLVERSION
    tiger-3.2.3/c/0000755000175000017500000000000011306441022011472 5ustar  pacopacotiger-3.2.3/c/Makefile0000644000175000017500000000225510303100201013121 0ustar  pacopaco# Generated automatically from Makefile.in by configure.
    # 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=-Wall
    INSTALL=/usr/bin/install -c
    CC=gcc
    
    all: ${BINLIST}
    
    install:  all
    	$(INSTALL) -m0755 ${BINLIST} ../bin/
    
    
    % : %.c
    	$(CC) $(CFLAGS) ${COPTS} -o $@ $<
    
    clean:
    	-rm -f ${BINLIST}
    
    distclean: clean
    tiger-3.2.3/c/Makefile.in0000644000175000017500000000215310303100201013523 0ustar  pacopaco# 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=-Wall
    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.3/c/getpermit.c0000644000175000017500000001125010272172150013641 0ustar  pacopaco#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
    
       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.
    
       c/getpermit.c 
    */
    #ifdef __STDC__
    void showperms(char *);
    void putusrname(int);
    void putgrpname(int);
    #else
    void showperms();
    void putusrname();
    void putgrpname();
    #endif
    
    #ifndef S_IRUSR
    #define S_IRUSR 00400 
    #endif
    
    #ifndef S_IWUSR
    #define S_IWUSR 00200
    #endif
    
    #ifndef S_IXUSR
    #define S_IXUSR 00100
    #endif
    
    #ifndef S_IRGRP
    #define S_IRGRP 00040
    #endif
    
    #ifndef S_IWGRP
    #define S_IWGRP 00020
    #endif
    
    #ifndef S_IXGRP
    #define S_IXGRP 00010
    #endif
    
    #ifndef S_IROTH
    #define S_IROTH 00004
    #endif
    
    #ifndef S_IWOTH
    #define S_IWOTH 00002
    #endif
    
    #ifndef S_IXOTH
    #define S_IXOTH 00001
    #endif
    
    #ifndef S_ISUID
    #define S_ISUID 04000
    #endif
    
    #ifndef S_ISGID
    #define S_ISGID 02000
    #endif
    
    #ifndef S_ISVTX
    #define S_ISVTX 01000
    #endif
    
    
    #ifdef __STDC__
    int
    main(int argc, char **argv)
    #else
    int main(argc, argv)
    int argc;
    char **argv;
    #endif
    {
         if(argc == 1){
    	  char buf[1025];
    	  
    	  while(fgets(buf, 1024, stdin)){
    	       buf[strlen(buf)-1] = 0;
    	       showperms(buf);
    	  }
         }
         else {
    	  for(argv++;*argv;argv++)
    	       showperms(*argv);
         }
         return(0);
    }
    
    #define outmode(m, b) {if((m)&(b))putchar('1');else putchar('0');putchar(' ');}
    
    #ifdef __STDC__
    void
    showperms(char *fname)
    #else
    void
    showperms(fname)
    char *fname;
    #endif
    {
         struct stat sbuf;
    
         if(stat(fname, &sbuf) != -1){
    	  fputs(fname, stdout);
    	  putchar(' ');
    	  putusrname(sbuf.st_uid);
    	  putchar(' ');
    	  putgrpname(sbuf.st_gid);
    	  putchar(' ');
    
    	  outmode(sbuf.st_mode, S_IRUSR);
    	  outmode(sbuf.st_mode, S_IWUSR);
    	  outmode(sbuf.st_mode, S_IXUSR);
    
    	  outmode(sbuf.st_mode, S_IRGRP);
    	  outmode(sbuf.st_mode, S_IWGRP);
    	  outmode(sbuf.st_mode, S_IXGRP);
    
    	  outmode(sbuf.st_mode, S_IROTH);
    	  outmode(sbuf.st_mode, S_IWOTH);
    	  outmode(sbuf.st_mode, S_IXOTH);
    
    	  outmode(sbuf.st_mode, S_ISUID);
    	  outmode(sbuf.st_mode, S_ISGID);
    #ifdef S_ISVTX	  
    	  outmode(sbuf.st_mode, S_ISVTX);
    #else
    	  putchar('0');
    	  putchar(' ');
    #endif
    	  putchar('\n');
         }
         else {
    	  perror(fname);
         }
    }
    
    struct gidcache {
         char *name;
         gid_t gid;
    };
    
    struct gidcache gcache[8192];
    
    static int gc_init = 0;
    
    #ifdef __STDC__
    char *
    cgetnamgid(int gid)
    #else
    char *
    cgetnamgid(gid)
    int gid;
    #endif
    {
         struct group *grent;
         int hash = gid & 8191;
    
         if(!gc_init){
    	  (void)memset((void *)gcache, 0, sizeof(gcache));
    	  gc_init = 1;
         }
    
         if(gcache[hash].name && gcache[hash].gid == gid){
    	  return gcache[hash].name;
         }
         else if((grent = getgrgid(gid))){
    	  if(!gcache[hash].name)
    	       gcache[hash].name = (char *)malloc(9);
    	  (void)strcpy(gcache[hash].name, grent->gr_name);
    	  gcache[hash].gid = gid;
         }
         else {
    	  if(!gcache[hash].name)
    	       gcache[hash].name = (char *)malloc(9);
    	  (void)sprintf(gcache[hash].name, "%8lu", (unsigned long)gid);
    	  gcache[hash].gid = gid;
         }
         return gcache[hash].name;
    }
    
    struct uidcache {
         char *name;
         uid_t uid;
    };
    
    struct uidcache ucache[8192];
    
    static int uc_init = 0;
    
    #ifdef __STDC__
    char *
    cgetnamuid(int uid)
    #else
    char *
    cgetnamuid(uid)
    int uid;
    #endif
    {
         struct passwd *pwent;
         int hash = uid & 8191;
    
         if(!uc_init){
    	  (void)memset((void *)ucache, 0, sizeof(ucache));
    	  uc_init = 1;
         }
    
         if(ucache[hash].name && ucache[hash].uid == uid){
    	  return ucache[hash].name;
         }
         else if((pwent = getpwuid(uid))){
    	  if(!ucache[hash].name)
    	       ucache[hash].name = (char *)malloc(9);
    	  (void)strcpy(ucache[hash].name, pwent->pw_name);
    	  ucache[hash].uid = uid;
         }
         else {
    	  if(!ucache[hash].name)
    	       ucache[hash].name = (char *)malloc(9);
    	  (void)sprintf(ucache[hash].name, "%8lu", (unsigned long)uid);
    	  ucache[hash].uid = uid;
         }
         return ucache[hash].name;
    }
    
    #ifdef __STDC__
    void
    putusrname(int uid)
    #else
    void
    putusrname(uid)
    int uid;
    #endif
    {
         fputs(cgetnamuid(uid), stdout);
    }
    
    #ifdef __STDC__
    void
    putgrpname(int gid)
    #else
    void
    putgrpname(gid)
    int gid;
    #endif
    {
         fputs(cgetnamgid(gid), stdout);
    }
    tiger-3.2.3/c/md5.c0000644000175000017500000004204410272172150012333 0ustar  pacopaco/* GLOBAL.H - RSAREF types and constants
     */
    
    /* PROTOTYPES should be set to one if and only if the compiler supports
      function argument prototyping.
    The following makes PROTOTYPES default to 0 if it has not already
      been defined with C compiler flags.
     */
    #ifndef PROTOTYPES
    #define PROTOTYPES 0
    #endif
    
    /* POINTER defines a generic pointer type */
    typedef unsigned char *POINTER;
    
    /* UINT2 defines a two byte word */
    typedef unsigned short int UINT2;
    
    /* UINT4 defines a four byte word */
    typedef unsigned long int UINT4;
    
    /* PROTO_LIST is defined depending on how PROTOTYPES is defined above.
    If using PROTOTYPES, then PROTO_LIST returns the list, otherwise it
      returns an empty list.
     */
    #if PROTOTYPES
    #define PROTO_LIST(list) list
    #else
    #define PROTO_LIST(list) ()
    #endif
    
    
    /* MD5.H - header file for MD5C.C
     */
    
    /* Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All
    rights reserved.
    
    License to copy and use this software is granted provided that it
    is identified as the "RSA Data Security, Inc. MD5 Message-Digest
    Algorithm" in all material mentioning or referencing this software
    or this function.
    
    License is also granted to make and use derivative works provided
    that such works are identified as "derived from the RSA Data
    Security, Inc. MD5 Message-Digest Algorithm" in all material
    mentioning or referencing the derived work.
    
    RSA Data Security, Inc. makes no representations concerning either
    the merchantability of this software or the suitability of this
    software for any particular purpose. It is provided "as is"
    without express or implied warranty of any kind.
    
    These notices must be retained in any copies of any part of this
    documentation and/or software.
     */
    
    /* MD5 context. */
    typedef struct {
      UINT4 state[4];                                   /* state (ABCD) */
      UINT4 count[2];        /* number of bits, modulo 2^64 (lsb first) */
      unsigned char buffer[64];                         /* input buffer */
    } MD5_CTX;
    
    void MD5Init PROTO_LIST ((MD5_CTX *));
    void MD5Update PROTO_LIST
      ((MD5_CTX *, unsigned char *, unsigned int));
    void MD5Final PROTO_LIST ((unsigned char [16], MD5_CTX *));
    
    /* MD5C.C - RSA Data Security, Inc., MD5 message-digest algorithm
     */
    
    /* Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All
    rights reserved.
    
    License to copy and use this software is granted provided that it
    is identified as the "RSA Data Security, Inc. MD5 Message-Digest
    Algorithm" in all material mentioning or referencing this software
    or this function.
    
    License is also granted to make and use derivative works provided
    that such works are identified as "derived from the RSA Data
    Security, Inc. MD5 Message-Digest Algorithm" in all material
    mentioning or referencing the derived work.
    
    RSA Data Security, Inc. makes no representations concerning either
    the merchantability of this software or the suitability of this
    software for any particular purpose. It is provided "as is"
    without express or implied warranty of any kind.
    
    These notices must be retained in any copies of any part of this
    documentation and/or software.
     */
    
    /*
    #include "global.h"
    #include "md5.h"
    */
    /* Constants for MD5Transform routine.
     */
    
    #define S11 7
    #define S12 12
    #define S13 17
    #define S14 22
    #define S21 5
    #define S22 9
    #define S23 14
    #define S24 20
    #define S31 4
    #define S32 11
    #define S33 16
    #define S34 23
    #define S41 6
    #define S42 10
    #define S43 15
    #define S44 21
    
    static void MD5Transform PROTO_LIST ((UINT4 [4], unsigned char [64]));
    static void Encode PROTO_LIST
      ((unsigned char *, UINT4 *, unsigned int));
    static void Decode PROTO_LIST
      ((UINT4 *, unsigned char *, unsigned int));
    static void MD5_memcpy PROTO_LIST ((POINTER, POINTER, unsigned int));
    static void MD5_memset PROTO_LIST ((POINTER, int, unsigned int));
    
    static unsigned char PADDING[64] = {
      0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
      0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
      0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
    };
    
    /* F, G, H and I are basic MD5 functions.
     */
    #define F(x, y, z) (((x) & (y)) | ((~x) & (z)))
    #define G(x, y, z) (((x) & (z)) | ((y) & (~z)))
    #define H(x, y, z) ((x) ^ (y) ^ (z))
    #define I(x, y, z) ((y) ^ ((x) | (~z)))
    
    /* ROTATE_LEFT rotates x left n bits.
     */
    #define ROTATE_LEFT(x, n) (((x) << (n)) | ((x) >> (32-(n))))
    
    /* FF, GG, HH, and II transformations for rounds 1, 2, 3, and 4.
    Rotation is separate from addition to prevent recomputation.
     */
    #define FF(a, b, c, d, x, s, ac) { \
     (a) += F ((b), (c), (d)) + (x) + (UINT4)(ac); \
     (a) = ROTATE_LEFT ((a), (s)); \
     (a) += (b); \
      }
    #define GG(a, b, c, d, x, s, ac) { \
     (a) += G ((b), (c), (d)) + (x) + (UINT4)(ac); \
     (a) = ROTATE_LEFT ((a), (s)); \
     (a) += (b); \
      }
    #define HH(a, b, c, d, x, s, ac) { \
     (a) += H ((b), (c), (d)) + (x) + (UINT4)(ac); \
     (a) = ROTATE_LEFT ((a), (s)); \
     (a) += (b); \
      }
    #define II(a, b, c, d, x, s, ac) { \
     (a) += I ((b), (c), (d)) + (x) + (UINT4)(ac); \
     (a) = ROTATE_LEFT ((a), (s)); \
     (a) += (b); \
      }
    
    /* MD5 initialization. Begins an MD5 operation, writing a new context.
     */
    void MD5Init (context)
    MD5_CTX *context;                                        /* context */
    {
      context->count[0] = context->count[1] = 0;
      /* Load magic initialization constants.
    */
      context->state[0] = 0x67452301;
      context->state[1] = 0xefcdab89;
      context->state[2] = 0x98badcfe;
      context->state[3] = 0x10325476;
    }
    
    /* MD5 block update operation. Continues an MD5 message-digest
      operation, processing another message block, and updating the
      context.
     */
    void MD5Update (context, input, inputLen)
    MD5_CTX *context;                                        /* context */
    unsigned char *input;                                /* input block */
    unsigned int inputLen;                     /* length of input block */
    {
      unsigned int i, index, partLen;
    
      /* Compute number of bytes mod 64 */
      index = (unsigned int)((context->count[0] >> 3) & 0x3F);
    
      /* Update number of bits */
      if ((context->count[0] += ((UINT4)inputLen << 3))
       < ((UINT4)inputLen << 3))
     context->count[1]++;
      context->count[1] += ((UINT4)inputLen >> 29);
    
      partLen = 64 - index;
    
      /* Transform as many times as possible.
    */
      if (inputLen >= partLen) {
     MD5_memcpy
       ((POINTER)&context->buffer[index], (POINTER)input, partLen);
     MD5Transform (context->state, context->buffer);
    
     for (i = partLen; i + 63 < inputLen; i += 64)
       MD5Transform (context->state, &input[i]);
    
     index = 0;
      }
      else
     i = 0;
    
      /* Buffer remaining input */
      MD5_memcpy
     ((POINTER)&context->buffer[index], (POINTER)&input[i],
      inputLen-i);
    }
    
    /* MD5 finalization. Ends an MD5 message-digest operation, writing the
      the message digest and zeroizing the context.
     */
    void MD5Final (digest, context)
    unsigned char digest[16];                         /* message digest */
    MD5_CTX *context;                                       /* context */
    {
      unsigned char bits[8];
      unsigned int index, padLen;
    
      /* Save number of bits */
      Encode (bits, context->count, 8);
    
      /* Pad out to 56 mod 64.
    */
      index = (unsigned int)((context->count[0] >> 3) & 0x3f);
      padLen = (index < 56) ? (56 - index) : (120 - index);
      MD5Update (context, PADDING, padLen);
    
      /* Append length (before padding) */
      MD5Update (context, bits, 8);
      /* Store state in digest */
      Encode (digest, context->state, 16);
    
      /* Zeroize sensitive information.
    */
      MD5_memset ((POINTER)context, 0, sizeof (*context));
    }
    
    /* MD5 basic transformation. Transforms state based on block.
     */
    static void MD5Transform (state, block)
    UINT4 state[4];
    unsigned char block[64];
    {
      UINT4 a = state[0], b = state[1], c = state[2], d = state[3], x[16];
    
      Decode (x, block, 64);
    
      /* Round 1 */
      FF (a, b, c, d, x[ 0], S11, 0xd76aa478); /* 1 */
      FF (d, a, b, c, x[ 1], S12, 0xe8c7b756); /* 2 */
      FF (c, d, a, b, x[ 2], S13, 0x242070db); /* 3 */
      FF (b, c, d, a, x[ 3], S14, 0xc1bdceee); /* 4 */
      FF (a, b, c, d, x[ 4], S11, 0xf57c0faf); /* 5 */
      FF (d, a, b, c, x[ 5], S12, 0x4787c62a); /* 6 */
      FF (c, d, a, b, x[ 6], S13, 0xa8304613); /* 7 */
      FF (b, c, d, a, x[ 7], S14, 0xfd469501); /* 8 */
      FF (a, b, c, d, x[ 8], S11, 0x698098d8); /* 9 */
      FF (d, a, b, c, x[ 9], S12, 0x8b44f7af); /* 10 */
      FF (c, d, a, b, x[10], S13, 0xffff5bb1); /* 11 */
      FF (b, c, d, a, x[11], S14, 0x895cd7be); /* 12 */
      FF (a, b, c, d, x[12], S11, 0x6b901122); /* 13 */
      FF (d, a, b, c, x[13], S12, 0xfd987193); /* 14 */
      FF (c, d, a, b, x[14], S13, 0xa679438e); /* 15 */
      FF (b, c, d, a, x[15], S14, 0x49b40821); /* 16 */
    
     /* Round 2 */
      GG (a, b, c, d, x[ 1], S21, 0xf61e2562); /* 17 */
      GG (d, a, b, c, x[ 6], S22, 0xc040b340); /* 18 */
      GG (c, d, a, b, x[11], S23, 0x265e5a51); /* 19 */
      GG (b, c, d, a, x[ 0], S24, 0xe9b6c7aa); /* 20 */
      GG (a, b, c, d, x[ 5], S21, 0xd62f105d); /* 21 */
      GG (d, a, b, c, x[10], S22,  0x2441453); /* 22 */
      GG (c, d, a, b, x[15], S23, 0xd8a1e681); /* 23 */
      GG (b, c, d, a, x[ 4], S24, 0xe7d3fbc8); /* 24 */
      GG (a, b, c, d, x[ 9], S21, 0x21e1cde6); /* 25 */
      GG (d, a, b, c, x[14], S22, 0xc33707d6); /* 26 */
      GG (c, d, a, b, x[ 3], S23, 0xf4d50d87); /* 27 */
      GG (b, c, d, a, x[ 8], S24, 0x455a14ed); /* 28 */
      GG (a, b, c, d, x[13], S21, 0xa9e3e905); /* 29 */
      GG (d, a, b, c, x[ 2], S22, 0xfcefa3f8); /* 30 */
      GG (c, d, a, b, x[ 7], S23, 0x676f02d9); /* 31 */
      GG (b, c, d, a, x[12], S24, 0x8d2a4c8a); /* 32 */
    
      /* Round 3 */
      HH (a, b, c, d, x[ 5], S31, 0xfffa3942); /* 33 */
      HH (d, a, b, c, x[ 8], S32, 0x8771f681); /* 34 */
      HH (c, d, a, b, x[11], S33, 0x6d9d6122); /* 35 */
      HH (b, c, d, a, x[14], S34, 0xfde5380c); /* 36 */
      HH (a, b, c, d, x[ 1], S31, 0xa4beea44); /* 37 */
      HH (d, a, b, c, x[ 4], S32, 0x4bdecfa9); /* 38 */
      HH (c, d, a, b, x[ 7], S33, 0xf6bb4b60); /* 39 */
      HH (b, c, d, a, x[10], S34, 0xbebfbc70); /* 40 */
      HH (a, b, c, d, x[13], S31, 0x289b7ec6); /* 41 */
      HH (d, a, b, c, x[ 0], S32, 0xeaa127fa); /* 42 */
      HH (c, d, a, b, x[ 3], S33, 0xd4ef3085); /* 43 */
      HH (b, c, d, a, x[ 6], S34,  0x4881d05); /* 44 */
      HH (a, b, c, d, x[ 9], S31, 0xd9d4d039); /* 45 */
      HH (d, a, b, c, x[12], S32, 0xe6db99e5); /* 46 */
      HH (c, d, a, b, x[15], S33, 0x1fa27cf8); /* 47 */
      HH (b, c, d, a, x[ 2], S34, 0xc4ac5665); /* 48 */
    
      /* Round 4 */
      II (a, b, c, d, x[ 0], S41, 0xf4292244); /* 49 */
      II (d, a, b, c, x[ 7], S42, 0x432aff97); /* 50 */
      II (c, d, a, b, x[14], S43, 0xab9423a7); /* 51 */
      II (b, c, d, a, x[ 5], S44, 0xfc93a039); /* 52 */
      II (a, b, c, d, x[12], S41, 0x655b59c3); /* 53 */
      II (d, a, b, c, x[ 3], S42, 0x8f0ccc92); /* 54 */
      II (c, d, a, b, x[10], S43, 0xffeff47d); /* 55 */
      II (b, c, d, a, x[ 1], S44, 0x85845dd1); /* 56 */
      II (a, b, c, d, x[ 8], S41, 0x6fa87e4f); /* 57 */
      II (d, a, b, c, x[15], S42, 0xfe2ce6e0); /* 58 */
      II (c, d, a, b, x[ 6], S43, 0xa3014314); /* 59 */
      II (b, c, d, a, x[13], S44, 0x4e0811a1); /* 60 */
      II (a, b, c, d, x[ 4], S41, 0xf7537e82); /* 61 */
      II (d, a, b, c, x[11], S42, 0xbd3af235); /* 62 */
      II (c, d, a, b, x[ 2], S43, 0x2ad7d2bb); /* 63 */
      II (b, c, d, a, x[ 9], S44, 0xeb86d391); /* 64 */
    
      state[0] += a;
      state[1] += b;
      state[2] += c;
      state[3] += d;
    
      /* Zeroize sensitive information.
    */
      MD5_memset ((POINTER)x, 0, sizeof (x));
    }
    
    /* Encodes input (UINT4) into output (unsigned char). Assumes len is
      a multiple of 4.
     */
    static void Encode (output, input, len)
    unsigned char *output;
    UINT4 *input;
    unsigned int len;
    {
      unsigned int i, j;
    
      for (i = 0, j = 0; j < len; i++, j += 4) {
     output[j] = (unsigned char)(input[i] & 0xff);
     output[j+1] = (unsigned char)((input[i] >> 8) & 0xff);
     output[j+2] = (unsigned char)((input[i] >> 16) & 0xff);
     output[j+3] = (unsigned char)((input[i] >> 24) & 0xff);
      }
    }
    
    /* Decodes input (unsigned char) into output (UINT4). Assumes len is
      a multiple of 4.
     */
    static void Decode (output, input, len)
    UINT4 *output;
    unsigned char *input;
    unsigned int len;
    {
      unsigned int i, j;
    
      for (i = 0, j = 0; j < len; i++, j += 4)
     output[i] = ((UINT4)input[j]) | (((UINT4)input[j+1]) << 8) |
       (((UINT4)input[j+2]) << 16) | (((UINT4)input[j+3]) << 24);
    }
    
    /* Note: Replace "for loop" with standard memcpy if possible.
     */
    
    static void MD5_memcpy (output, input, len)
    POINTER output;
    POINTER input;
    unsigned int len;
    {
      unsigned int i;
    
      for (i = 0; i < len; i++)
     output[i] = input[i];
    }
    
    /* Note: Replace "for loop" with standard memset if possible.
     */
    static void MD5_memset (output, value, len)
    POINTER output;
    int value;
    unsigned int len;
    {
      unsigned int i;
    
      for (i = 0; i < len; i++)
     ((char *)output)[i] = (char)value;
    }
    
    /* MDDRIVER.C - test driver for MD2, MD4 and MD5
     */
    
    /* Copyright (C) 1990-2, RSA Data Security, Inc. Created 1990. All
    rights reserved.
    
    RSA Data Security, Inc. makes no representations concerning either
    the merchantability of this software or the suitability of this
    software for any particular purpose. It is provided "as is"
    without express or implied warranty of any kind.
    
    These notices must be retained in any copies of any part of this
    documentation and/or software.
     */
    
    /* The following makes MD default to MD5 if it has not already been
      defined with C compiler flags.
     */
    #define MD5 5
    #ifndef MD
    #define MD MD5
    #endif
    
    #include 
    #include 
    #include 
    /*
    #include "global.h"
    #if MD == 2
    #include "md2.h"
    #endif
    #if MD == 4
    #include "md4.h"
    #endif
    #if MD == 5
    #include "md5.h"
    #endif
    */
    
    /* Length of test block, number of test blocks.
     */
    #define TEST_BLOCK_LEN 1000
    #define TEST_BLOCK_COUNT 1000
    
    static void MDString PROTO_LIST ((char *));
    static void MDTimeTrial PROTO_LIST ((void));
    static void MDTestSuite PROTO_LIST ((void));
    static void MDFile PROTO_LIST ((char *));
    static void MDFilter PROTO_LIST ((void));
    static void MDPrint PROTO_LIST ((unsigned char [16]));
    
    #if MD == 2
    #define MD_CTX MD2_CTX
    #define MDInit MD2Init
    #define MDUpdate MD2Update
    #define MDFinal MD2Final
    #endif
    #if MD == 4
    #define MD_CTX MD4_CTX
    #define MDInit MD4Init
    #define MDUpdate MD4Update
    #define MDFinal MD4Final
    #endif
    #if MD == 5
    #define MD_CTX MD5_CTX
    #define MDInit MD5Init
    #define MDUpdate MD5Update
    #define MDFinal MD5Final
    #endif
    
    /* Main driver.
    
    Arguments (may be any combination):
      -sstring - digests string
      -t       - runs time trial
      -x       - runs test script
      filename - digests file
      (none)   - digests standard input
     */
    int main (argc, argv)
    int argc;
    char *argv[];
    {
      int i;
    
      if (argc > 1)
     for (i = 1; i < argc; i++)
       if (argv[i][0] == '-' && argv[i][1] == 's')
         MDString (argv[i] + 2);
       else if (strcmp (argv[i], "-t") == 0)
         MDTimeTrial ();
       else if (strcmp (argv[i], "-x") == 0)
         MDTestSuite ();
       else
         MDFile (argv[i]);
      else
     MDFilter ();
    
      return (0);
    }
    
    /* Digests a string and prints the result.
     */
    static void MDString (string)
    char *string;
    {
      MD_CTX context;
      unsigned char digest[16];
      unsigned int len = strlen (string);
    
      MDInit (&context);
      MDUpdate (&context, string, len);
      MDFinal (digest, &context);
    
      printf ("MD%d (\"%s\") = ", MD, string);
      MDPrint (digest);
      printf ("\n");
    }
    
    /* Measures the time to digest TEST_BLOCK_COUNT TEST_BLOCK_LEN-byte
      blocks.
     */
    static void MDTimeTrial ()
    {
      MD_CTX context;
      time_t endTime, startTime;
      unsigned char block[TEST_BLOCK_LEN], digest[16];
      unsigned int i;
      printf
     ("MD%d time trial. Digesting %d %d-byte blocks ...", MD,
      TEST_BLOCK_LEN, TEST_BLOCK_COUNT);
    
      /* Initialize block */
      for (i = 0; i < TEST_BLOCK_LEN; i++)
     block[i] = (unsigned char)(i & 0xff);
    
      /* Start timer */
      time (&startTime);
    
      /* Digest blocks */
      MDInit (&context);
      for (i = 0; i < TEST_BLOCK_COUNT; i++)
     MDUpdate (&context, block, TEST_BLOCK_LEN);
      MDFinal (digest, &context);
    
      /* Stop timer */
      time (&endTime);
    
      printf (" done\n");
      printf ("Digest = ");
      MDPrint (digest);
      printf ("\nTime = %ld seconds\n", (long)(endTime-startTime));
      printf
     ("Speed = %ld bytes/second\n",
      (long)TEST_BLOCK_LEN * (long)TEST_BLOCK_COUNT/(endTime-startTime));
    }
    
    /* Digests a reference suite of strings and prints the results.
     */
    static void MDTestSuite ()
    {
      printf ("MD%d test suite:\n", MD);
    
      MDString ("");
      MDString ("a");
      MDString ("abc");
      MDString ("message digest");
      MDString ("abcdefghijklmnopqrstuvwxyz");
      MDString
     ("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789");
      MDString
     ("1234567890123456789012345678901234567890\
    1234567890123456789012345678901234567890");
    }
    
    /* Digests a file and prints the result.
     */
    static void MDFile (filename)
    char *filename;
    {
      FILE *file;
      MD_CTX context;
      int len;
      unsigned char buffer[1024], digest[16];
    
      if ((file = fopen (filename, "rb")) == NULL)
     printf ("%s can't be opened\n", filename);
    
      else {
     MDInit (&context);
     while ((len = fread (buffer, 1, 1024, file)))
       MDUpdate (&context, buffer, len);
     MDFinal (digest, &context);
    
     fclose (file);
    
     printf ("MD%d (%s) = ", MD, filename);
     MDPrint (digest);
     printf ("\n");
      }
    }
    
    /* Digests the standard input and prints the result.
     */
    static void MDFilter ()
    {
      MD_CTX context;
      int len;
      unsigned char buffer[16], digest[16];
    
      MDInit (&context);
      while ((len = fread (buffer, 1, 16, stdin)))
     MDUpdate (&context, buffer, len);
      MDFinal (digest, &context);
    
      MDPrint (digest);
      printf ("\n");
    }
    
    /* Prints a message digest in hexadecimal.
     */
    static void MDPrint (digest)
    unsigned char digest[16];
    {
      unsigned int i;
    
      for (i = 0; i < 16; i++)
     printf ("%02x", digest[i]);
    }
    
    tiger-3.2.3/c/realpath.c0000644000175000017500000001457010303100201013430 0ustar  pacopaco/*
    
         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.
    
     c/realpath.c - 06/14/93
     c/realpath.c - 04/22/2003 - jfs 
     	applied patch from Steve Grub changing realpath
     	to my_realpath and adding upper bounds for buffers
    	(libc already implements realpath, maybe it should be used if 
    	available)
    
    */
    
    #include 
    #include 
    #include 
    #include 
    #include 
    #include 
    #include 
    #ifndef MAXPATHLEN
    #  ifdef        PATH_MAX
    #    define MAXPATHLEN PATH_MAX
    #  else /* PATH_MAX */
    #    define MAXPATHLEN 1024
    #  endif        /* PATH_MAX */
    #endif  /* MAXPATHLEN */
    
    
    /*
      Texas A&M University Supercomputer Center
      Douglas Lee Schales  4 November 1991
    
      realpath()
    
      This module returns a resolved pathname with all symbolic links
      and references to '..', '.' and extra '/' characters resolved.
    
      With '-d' flag, it decomposes a pathname into its "real" pieces.
    
    */
    #ifdef NEEDGETWD
    #define getwd getcwd
    #endif
    
    #ifdef __STDC__
    #ifndef _UNISTD_H
    extern char *getwd(char * const);
    extern char *getcwd(char * const, const size_t);
    extern int readlink(char * const, char * const, const size_t);
    #endif
    extern char *my_realpath(const char *, char [], int);
    extern char *_realpath(char [], int);
    #else
    extern char *getwd();
    extern int readlink();
    extern char *my_realpath();
    extern char *_realpath();
    #endif
    
    #define ISDOT(x) ((*(x) == '.') && (*((x)+1) == '\0'))
    #define ISDOTDOT(x) ((*(x) == '.') && (*((x)+1) == '.') && (*((x)+2) == '\0'))
    
    
    /*
      Resolve 'path1', storing result in 'path2'.
    */
    
    #ifdef __STDC__
    char *
    my_realpath(const char *path1, char path2[], int decomp)
    #else
    char *my_realpath(path1, path2, decomp)
    char *path1, *path2;
    int decomp;
    #endif
    {
         strcpy(path2, path1);
         return _realpath(path2, decomp);
    }
    
    /*
      Resolve 'path' in place.
    */
    
    #ifdef __STDC__
    char *
    _realpath(char path[], int decomp)
    #else
    char *_realpath(path, decomp)
    char *path;
    int decomp;
    #endif
    {
         char *prevslash, *nextslash, *component;
         char buffer[MAXPATHLEN+1];
         char tmpbuf[MAXPATHLEN+1];
         int n, errcond, separator;
         char *bufp, *tbufp;
         char *rove, *scan;
         int linkcount = 0;
    
         if(path[0] != '/'){
    #if defined __STDC__
    	  getcwd(buffer, sizeof(buffer));
    #else
    	  getwd(buffer);
    #endif
    	  prevslash = buffer+strlen(buffer);
    	  strcpy(prevslash,"/");
    	  strcpy(prevslash+1,path);
    	  bufp = buffer;
    	  tbufp = path;
         }
         else {
    	  bufp = path;
    	  tbufp = buffer;
    	  prevslash = bufp;
         }
         
         errcond = 0;
         
         while(!errcond && *prevslash){
    
    	  while(*prevslash == '/' && *(prevslash+1) == '/'){
    	       for(rove=prevslash+1;*rove;rove++)
    		    *rove = *(rove+1);
    	  }
    	  component = prevslash+1;
    	  for(rove = component;*rove && *rove != '/';rove++)
    	       ;
    	  nextslash = rove;
    	  separator = *nextslash;
    	  *nextslash = '\0';
    
    	  if(ISDOT(component)){  /* Scrunch out "." */
    	       *nextslash = separator;
    	       for(scan=nextslash;*scan == '/';scan++)
    		    ;
    	       if(separator){
    		    for(rove=component;*scan;)
    			 *rove++ = *scan++;
    		    *rove = '\0';
    	       }
    	       else
    		    *component = '\0';
    	  }
    	  else if(ISDOTDOT(component)){ /* Handle ".." */
    	       for(rove=prevslash-1;rove > bufp && *rove != '/';rove--)
    		    ;
    	       if(rove < bufp)
    		    rove = bufp;
    	       prevslash = rove++;
    	       *nextslash = separator;
    	       for(scan=nextslash;*scan == '/';scan++)
    		    ;
    	       while(*scan)
    		    *rove++ = *scan++;
    	       *rove = '\0';
    	  }
    	  else if((n = readlink(bufp, tbufp, MAXPATHLEN)) >= 0){
    	       if(n > 0){
    		    if(decomp){
    			 char *cp;
    			 if(prevslash != bufp){
    			      for(cp=bufp;cp!=prevslash;cp++)
    				   fputc(*cp, stdout);
    			      fputc(' ', stdout);
    			 }
    		    }
    		    linkcount++;
    		    if(linkcount > 32)
    			 errcond = 1;
    		    else {
    			 tbufp[n] = 0;
    			 if(tbufp[0] == '/'){ /* Absolute link */
    			      *nextslash = separator;
    			      strcpy(tbufp+n, nextslash);
    			      bufp = tbufp;
    			      tbufp = (bufp == buffer) ? path : buffer;
    			      prevslash = bufp;
    			 }
    			 else {  /* Relative link */
    			      tbufp[n] = '\0';
    			      *nextslash = separator;
    			      if(separator){
    				   strcpy(tmpbuf, nextslash);
    				   for(rove=component, scan = tbufp;*scan;)
    					*rove++ = *scan++;
    				   for(scan=tmpbuf;*scan;)
    					*rove++ = *scan++;
    				   *rove = '\0';
    			      }
    			      else
    				   strcpy(component, tbufp);
    			 }
    		    }
    	       }
    	  }
    	  else { /* readlink() failed */
    	       *nextslash = separator;
    	       switch(errno){
    	       case EINVAL:  /* Not a symbolic link */
    		    prevslash = nextslash;
    		    break;
    	       case ENOENT:  /* No such file; ok if last component */
    		    if(!separator){
    			 prevslash = nextslash;
    			 break;
    		    }
    		    /* Falls through if not last component */
    	       default:      /* Error */
    		    errcond = errno;
    	       }
    	  }
         }
    
         /* Get rid of trailing slash */
         n = strlen(bufp);
         if(n > 1 && bufp[n-1] == '/')
    	  bufp[n-1] = '\0';
    
         /* Make sure final output is in 'path' */
         if(!errcond && bufp == buffer)
    	  strcpy(path, buffer);
         else if(errcond)
    	  path[0] = '\0';
    	  
         return errcond ? (char *) 0 : path;
    }
    
    int
    main(argc, argv)
    int argc;
    char **argv;
    {
         char path[MAXPATHLEN+1];
         char rpath[MAXPATHLEN+1];
         int decomp = 0;
    
         char **argp = argv;
    
         if(argc > 1){
    	  if(strcmp(argp[1], "-d") == 0){
    	       decomp++;
    	       argp++;
    	       argc--;
    	  }
         }
    
         if(argc == 1){
    	  while(fgets(path, MAXPATHLEN, stdin)){
    	       char *cp = strchr(path, '\n');
    	       *cp = '\0';
    	       my_realpath(path, rpath, decomp);
    	       if(rpath[0])
    		    fprintf(stdout, "%s %s\n", path, rpath);
    	  }
         }
         else {
    	  int i;
    	  for(i=1;i
    #include 
    #define INPUT_BLOCK_SIZE  16	/* size in 32-bit words of an input block to
    				 * the hash routine  */
    /*
     * OUTPUT_BLOCK_SIZE may be set to either 4 or 8.  8 should provide
     * a higher level of security (if we presume Snefru can only be broken
     * by a brute force attack, than an output size of 8 words or 256 bits
     * would require some 2**128 operations to break).  The default is 4.
     * This parameter can be changed with the -DOUTPUT_BLOCK_SIZE=8
     * command line option to the C compiler.
     */
    #ifndef OUTPUT_BLOCK_SIZE
    #define OUTPUT_BLOCK_SIZE  4	/* size in 32-bit words of an output block
    				 * from the hash routine */
    #endif
    #define	CHUNK_SIZE (INPUT_BLOCK_SIZE - OUTPUT_BLOCK_SIZE)
    /* generate a mask with log-to-the-base-2(INPUT_BLOCK_SIZE) "1" bits  */
    #define MASK (INPUT_BLOCK_SIZE - 1)
    
    #define round(L,C,N,SB)	SBE=SB[C&0xffL];L^=SBE;N^=SBE
    #define rotate(B)	B=(B>>shift) | (B< command
     * line option to the C compiler. 
     */
    #ifndef SECURITY_LEVEL
    #define SECURITY_LEVEL 8
    #endif
    #define MAX_SBOX_COUNT 16
    
    /*  Identify this version for the "what" command */
    char ident[] ="@(#) Snefru Version 2.5a November 29, 1990";
    
    typedef unsigned long int word32;
    /* The standard S-Box  */
    word32 standardSBoxes[MAX_SBOX_COUNT][256]= {
    
     {  /* Start of S Box 0  */
    
    /*   0*/ 0x64f9001bL,0xfeddcdf6L,0x7c8ff1e2L,0x11d71514L,0x8b8c18d3L,
    /*   5*/ 0xdddf881eL,0x6eab5056L,0x88ced8e1L,0x49148959L,0x69c56fd5L,
    /*  10*/ 0xb7994f03L,0x0fbcee3eL,0x3c264940L,0x21557e58L,0xe14b3fc2L,
    /*  15*/ 0x2e5cf591L,0xdceff8ceL,0x092a1648L,0xbe812936L,0xff7b0c6aL,
    /*  20*/ 0xd5251037L,0xafa448f1L,0x7dafc95aL,0x1ea69c3fL,0xa417abe7L,
    /*  25*/ 0x5890e423L,0xb0cb70c0L,0xc85025f7L,0x244d97e3L,0x1ff3595fL,
    /*  30*/ 0xc4ec6396L,0x59181e17L,0xe635b477L,0x354e7dbfL,0x796f7753L,
    /*  35*/ 0x66eb52ccL,0x77c3f995L,0x32e3a927L,0x80ccaed6L,0x4e2be89dL,
    /*  40*/ 0x375bbd28L,0xad1a3d05L,0x2b1b42b3L,0x16c44c71L,0x4d54bfa8L,
    /*  45*/ 0xe57ddc7aL,0xec6d8144L,0x5a71046bL,0xd8229650L,0x87fc8f24L,
    /*  50*/ 0xcbc60e09L,0xb6390366L,0xd9f76092L,0xd393a70bL,0x1d31a08aL,
    /*  55*/ 0x9cd971c9L,0x5c1ef445L,0x86fab694L,0xfdb44165L,0x8eaafcbeL,
    /*  60*/ 0x4bcac6ebL,0xfb7a94e5L,0x5789d04eL,0xfa13cf35L,0x236b8da9L,
    /*  65*/ 0x4133f000L,0x6224261cL,0xf412f23bL,0xe75e56a4L,0x30022116L,
    /*  70*/ 0xbaf17f1fL,0xd09872f9L,0xc1a3699cL,0xf1e802aaL,0x0dd145dcL,
    /*  75*/ 0x4fdce093L,0x8d8412f0L,0x6cd0f376L,0x3de6b73dL,0x84ba737fL,
    /*  80*/ 0xb43a30f2L,0x44569f69L,0x00e4eacaL,0xb58de3b0L,0x959113c8L,
    /*  85*/ 0xd62efee9L,0x90861f83L,0xced69874L,0x2f793ceeL,0xe8571c30L,
    /*  90*/ 0x483665d1L,0xab07b031L,0x914c844fL,0x15bf3be8L,0x2c3f2a9aL,
    /*  95*/ 0x9eb95fd4L,0x92e7472dL,0x2297cc5bL,0xee5f2782L,0x5377b562L,
    /* 100*/ 0xdb8ebbcfL,0xf961deddL,0xc59b5c60L,0x1bd3910dL,0x26d206adL,
    /* 105*/ 0xb28514d8L,0x5ecf6b52L,0x7fea78bbL,0x504879acL,0xed34a884L,
    /* 110*/ 0x36e51d3cL,0x1753741dL,0x8c47caedL,0x9d0a40efL,0x3145e221L,
    /* 115*/ 0xda27eb70L,0xdf730ba3L,0x183c8789L,0x739ac0a6L,0x9a58dfc6L,
    /* 120*/ 0x54b134c1L,0xac3e242eL,0xcc493902L,0x7b2dda99L,0x8f15bc01L,
    /* 125*/ 0x29fd38c7L,0x27d5318fL,0x604aaff5L,0xf29c6818L,0xc38aa2ecL,
    /* 130*/ 0x1019d4c3L,0xa8fb936eL,0x20ed7b39L,0x0b686119L,0x89a0906fL,
    /* 135*/ 0x1cc7829eL,0x9952ef4bL,0x850e9e8cL,0xcd063a90L,0x67002f8eL,
    /* 140*/ 0xcfac8cb7L,0xeaa24b11L,0x988b4e6cL,0x46f066dfL,0xca7eec08L,
    /* 145*/ 0xc7bba664L,0x831d17bdL,0x63f575e6L,0x9764350eL,0x47870d42L,
    /* 150*/ 0x026ca4a2L,0x8167d587L,0x61b6adabL,0xaa6564d2L,0x70da237bL,
    /* 155*/ 0x25e1c74aL,0xa1c901a0L,0x0eb0a5daL,0x7670f741L,0x51c05aeaL,
    /* 160*/ 0x933dfa32L,0x0759ff1aL,0x56010ab8L,0x5fdecb78L,0x3f32edf8L,
    /* 165*/ 0xaebedbb9L,0x39f8326dL,0xd20858c5L,0x9b638be4L,0xa572c80aL,
    /* 170*/ 0x28e0a19fL,0x432099fcL,0x3a37c3cdL,0xbf95c585L,0xb392c12aL,
    /* 175*/ 0x6aa707d7L,0x52f66a61L,0x12d483b1L,0x96435b5eL,0x3e75802bL,
    /* 180*/ 0x3ba52b33L,0xa99f51a5L,0xbda1e157L,0x78c2e70cL,0xfcae7ce0L,
    /* 185*/ 0xd1602267L,0x2affac4dL,0x4a510947L,0x0ab2b83aL,0x7a04e579L,
    /* 190*/ 0x340dfd80L,0xb916e922L,0xe29d5e9bL,0xf5624af4L,0x4ca9d9afL,
    /* 195*/ 0x6bbd2cfeL,0xe3b7f620L,0xc2746e07L,0x5b42b9b6L,0xa06919bcL,
    /* 200*/ 0xf0f2c40fL,0x72217ab5L,0x14c19df3L,0xf3802daeL,0xe094beb4L,
    /* 205*/ 0xa2101affL,0x0529575dL,0x55cdb27cL,0xa33bddb2L,0x6528b37dL,
    /* 210*/ 0x740c05dbL,0xe96a62c4L,0x40782846L,0x6d30d706L,0xbbf48e2cL,
    /* 215*/ 0xbce2d3deL,0x049e37faL,0x01b5e634L,0x2d886d8dL,0x7e5a2e7eL,
    /* 220*/ 0xd7412013L,0x06e90f97L,0xe45d3ebaL,0xb8ad3386L,0x13051b25L,
    /* 225*/ 0x0c035354L,0x71c89b75L,0xc638fbd0L,0x197f11a1L,0xef0f08fbL,
    /* 230*/ 0xf8448651L,0x38409563L,0x452f4443L,0x5d464d55L,0x03d8764cL,
    /* 235*/ 0xb1b8d638L,0xa70bba2fL,0x94b3d210L,0xeb6692a7L,0xd409c2d9L,
    /* 240*/ 0x68838526L,0xa6db8a15L,0x751f6c98L,0xde769a88L,0xc9ee4668L,
    /* 245*/ 0x1a82a373L,0x0896aa49L,0x42233681L,0xf62c55cbL,0x9f1c5404L,
    /* 250*/ 0xf74fb15cL,0xc06e4312L,0x6ffe5d72L,0x8aa8678bL,0x337cd129L,
    /* 255*/ 0x8211cefdL
        /* End   of S Box 0  */  },
    
    
     {  /* Start of S Box 1  */
    
    /*   0*/ 0x074a1d09L,0x52a10e5aL,0x9275a3f8L,0x4b82506cL,0x37df7e1bL,
    /*   5*/ 0x4c78b3c5L,0xcefab1daL,0xf472267eL,0xb63045f6L,0xd66a1fc0L,
    /*  10*/ 0x400298e3L,0x27e60c94L,0x87d2f1b8L,0xdf9e56ccL,0x45cd1803L,
    /*  15*/ 0x1d35e098L,0xcce7c736L,0x03483bf1L,0x1f7307d7L,0xc6e8f948L,
    /*  20*/ 0xe613c111L,0x3955c6ffL,0x1170ed7cL,0x8e95da41L,0x99c31bf4L,
    /*  25*/ 0xa4da8021L,0x7b5f94fbL,0xdd0da51fL,0x6562aa77L,0x556bcb23L,
    /*  30*/ 0xdb1bacc6L,0x798040b9L,0xbfe5378fL,0x731d55e6L,0xdaa5bfeeL,
    /*  35*/ 0x389bbc60L,0x1b33fba4L,0x9c567204L,0x36c26c68L,0x77ee9d69L,
    /*  40*/ 0x8aeb3e88L,0x2d50b5ceL,0x9579e790L,0x42b13cfcL,0x33fbd32bL,
    /*  45*/ 0xee0503a7L,0xb5862824L,0x15e41eadL,0xc8412ef7L,0x9d441275L,
    /*  50*/ 0x2fcec582L,0x5ff483b7L,0x8f3931dfL,0x2e5d2a7bL,0x49467bf9L,
    /*  55*/ 0x0653dea9L,0x2684ce35L,0x7e655e5cL,0xf12771d8L,0xbb15cc67L,
    /*  60*/ 0xab097ca1L,0x983dcf52L,0x10ddf026L,0x21267f57L,0x2c58f6b4L,
    /*  65*/ 0x31043265L,0x0bab8c01L,0xd5492099L,0xacaae619L,0x944ce54aL,
    /*  70*/ 0xf2d13d39L,0xadd3fc32L,0xcda08a40L,0xe2b0d451L,0x9efe08aeL,
    /*  75*/ 0xb9d50fd2L,0xea5cd7fdL,0xc9a749ddL,0x13ea2253L,0x832debaaL,
    /*  80*/ 0x24be640fL,0xe03e926aL,0x29e01cdeL,0x8bf59f18L,0x0f9d00b6L,
    /*  85*/ 0xe1238b46L,0x1e7d8e34L,0x93619adbL,0x76b32f9fL,0xbd972cecL,
    /*  90*/ 0xe31fa976L,0xa68fbb10L,0xfb3ba49dL,0x8587c41dL,0xa5add1d0L,
    /*  95*/ 0xf3cf84bfL,0xd4e11150L,0xd9ffa6bcL,0xc3f6018cL,0xaef10572L,
    /* 100*/ 0x74a64b2fL,0xe7dc9559L,0x2aae35d5L,0x5b6f587fL,0xa9e353feL,
    /* 105*/ 0xca4fb674L,0x04ba24a8L,0xe5c6875fL,0xdcbc6266L,0x6bc5c03fL,
    /* 110*/ 0x661eef02L,0xed740babL,0x058e34e4L,0xb7e946cfL,0x88698125L,
    /* 115*/ 0x72ec48edL,0xb11073a3L,0xa13485ebL,0xa2a2429cL,0xfa407547L,
    /* 120*/ 0x50b76713L,0x5418c37dL,0x96192da5L,0x170bb04bL,0x518a021eL,
    /* 125*/ 0xb0ac13d1L,0x0963fa2aL,0x4a6e10e1L,0x58472bdcL,0xf7f8d962L,
    /* 130*/ 0x979139eaL,0x8d856538L,0xc0997042L,0x48324d7aL,0x447623cbL,
    /* 135*/ 0x8cbbe364L,0x6e0c6b0eL,0xd36d63b0L,0x3f244c84L,0x3542c971L,
    /* 140*/ 0x2b228dc1L,0xcb0325bbL,0xf8c0d6e9L,0xde11066bL,0xa8649327L,
    /* 145*/ 0xfc31f83eL,0x7dd80406L,0xf916dd61L,0xd89f79d3L,0x615144c2L,
    /* 150*/ 0xebb45d31L,0x28002958L,0x56890a37L,0xf05b3808L,0x123ae844L,
    /* 155*/ 0x86839e16L,0x914b0d83L,0xc506b43cL,0xcf3cba5eL,0x7c60f5c9L,
    /* 160*/ 0x22deb2a0L,0x5d9c2715L,0xc77ba0efL,0x4f45360bL,0xc1017d8bL,
    /* 165*/ 0xe45adc29L,0xa759909bL,0x412cd293L,0xd7d796b1L,0x00c8ff30L,
    /* 170*/ 0x23a34a80L,0x4ec15c91L,0x714e78b5L,0x47b9e42eL,0x78f3ea4dL,
    /* 175*/ 0x7f078f5bL,0x346c593aL,0xa3a87a1aL,0x9bcbfe12L,0x3d439963L,
    /* 180*/ 0xb2ef6d8eL,0xb8d46028L,0x6c2fd5caL,0x62675256L,0x01f2a2f3L,
    /* 185*/ 0xbc96ae0aL,0x709a8920L,0xb4146e87L,0x6308b9e2L,0x64bda7baL,
    /* 190*/ 0xafed6892L,0x6037f2a2L,0xf52969e0L,0x0adb43a6L,0x82811400L,
    /* 195*/ 0x90d0bdf0L,0x19c9549eL,0x203f6a73L,0x1accaf4fL,0x89714e6dL,
    /* 200*/ 0x164d4705L,0x67665f07L,0xec206170L,0x0c2182b2L,0xa02b9c81L,
    /* 205*/ 0x53289722L,0xf6a97686L,0x140e4179L,0x9f778849L,0x9a88e15dL,
    /* 210*/ 0x25cadb54L,0xd157f36fL,0x32a421c3L,0xb368e98aL,0x5a92cd0dL,
    /* 215*/ 0x757aa8d4L,0xc20ac278L,0x08b551c7L,0x849491e8L,0x4dc75ad6L,
    /* 220*/ 0x697c33beL,0xbaf0ca33L,0x46125b4eL,0x59d677b3L,0x30d9c8f2L,
    /* 225*/ 0xd0af860cL,0x1c7fd0faL,0xfe0ff72cL,0x5c8d6f43L,0x57fdec3bL,
    /* 230*/ 0x6ab6ad97L,0xd22adf89L,0x18171785L,0x02bfe22dL,0x6db80917L,
    /* 235*/ 0x80b216afL,0xe85e4f9aL,0x7a1c306eL,0x6fc49bf5L,0x3af7a11cL,
    /* 240*/ 0x81e215e7L,0x68363fcdL,0x3e9357c8L,0xef52fd55L,0x3b8bab4cL,
    /* 245*/ 0x3c8cf495L,0xbefceebdL,0xfd25b714L,0xc498d83dL,0x0d2e1a8dL,
    /* 250*/ 0xe9f966acL,0x0e387445L,0x435419e5L,0x5e7ebec4L,0xaa90b8d9L,
    /* 255*/ 0xff1a3a96L
        /* End   of S Box 1  */  },
    
    
     {  /* Start of S Box 2  */
    
    /*   0*/ 0x4a8fe4e3L,0xf27d99cdL,0xd04a40caL,0xcb5ff194L,0x3668275aL,
    /*   5*/ 0xff4816beL,0xa78b394cL,0x4c6be9dbL,0x4eec38d2L,0x4296ec80L,
    /*  10*/ 0xcdce96f8L,0x888c2f38L,0xe75508f5L,0x7b916414L,0x060aa14aL,
    /*  15*/ 0xa214f327L,0xbe608dafL,0x1ebbdec2L,0x61f98ce9L,0xe92156feL,
    /*  20*/ 0x4f22d7a3L,0x3f76a8d9L,0x559a4b33L,0x38ad2959L,0xf3f17e9eL,
    /*  25*/ 0x85e1ba91L,0xe5eba6fbL,0x73dcd48cL,0xf5c3ff78L,0x481b6058L,
    /*  30*/ 0x8a3297f7L,0x8f1f3bf4L,0x93785ab2L,0x477a4a5bL,0x6334eb5dL,
    /*  35*/ 0x6d251b2eL,0x74a9102dL,0x07e38ffaL,0x915c9c62L,0xccc275eaL,
    /*  40*/ 0x6be273ecL,0x3ebddd70L,0xd895796cL,0xdc54a91bL,0xc9afdf81L,
    /*  45*/ 0x23633f73L,0x275119b4L,0xb19f6b67L,0x50756e22L,0x2bb152e2L,
    /*  50*/ 0x76ea46a2L,0xa353e232L,0x2f596ad6L,0x0b1edb0bL,0x02d3d9a4L,
    /*  55*/ 0x78b47843L,0x64893e90L,0x40f0caadL,0xf68d3ad7L,0x46fd1707L,
    /*  60*/ 0x1c9c67efL,0xb5e086deL,0x96ee6ca6L,0x9aa34774L,0x1ba4f48aL,
    /*  65*/ 0x8d01abfdL,0x183ee1f6L,0x5ff8aa7aL,0x17e4faaeL,0x303983b0L,
    /*  70*/ 0x6c08668bL,0xd4ac4382L,0xe6c5849fL,0x92fefb53L,0xc1cac4ceL,
    /*  75*/ 0x43501388L,0x441118cfL,0xec4fb308L,0x53a08e86L,0x9e0fe0c5L,
    /*  80*/ 0xf91c1525L,0xac45be05L,0xd7987cb5L,0x49ba1487L,0x57938940L,
    /*  85*/ 0xd5877648L,0xa958727fL,0x58dfe3c3L,0xf436cf77L,0x399e4d11L,
    /*  90*/ 0xf0a5bfa9L,0xef61a33bL,0xa64cac60L,0x04a8d0baL,0x030dd572L,
    /*  95*/ 0xb83d320fL,0xcab23045L,0xe366f2f0L,0x815d008dL,0xc897a43aL,
    /* 100*/ 0x1d352df3L,0xb9cc571dL,0x8bf38744L,0x72209092L,0xeba124ebL,
    /* 105*/ 0xfb99ce5eL,0x3bb94293L,0x28da549cL,0xaab8a228L,0xa4197785L,
    /* 110*/ 0x33c70296L,0x25f6259bL,0x5c85da21L,0xdf15bdeeL,0x15b7c7e8L,
    /* 115*/ 0xe2abef75L,0xfcc19bc1L,0x417ff868L,0x14884434L,0x62825179L,
    /* 120*/ 0xc6d5c11cL,0x0e4705dcL,0x22700de0L,0xd3d2af18L,0x9be822a0L,
    /* 125*/ 0x35b669f1L,0xc42bb55cL,0x0a801252L,0x115bf0fcL,0x3cd7d856L,
    /* 130*/ 0xb43f5f9dL,0xc2306516L,0xa1231c47L,0xf149207eL,0x5209a795L,
    /* 135*/ 0x34b3ccd8L,0x67aefe54L,0x2c83924eL,0x6662cbacL,0x5eedd161L,
    /* 140*/ 0x84e681aaL,0x5d57d26bL,0xfa465cc4L,0x7e3ac3a8L,0xbf7c0cc6L,
    /* 145*/ 0xe18a9aa1L,0xc32f0a6fL,0xb22cc00dL,0x3d280369L,0x994e554fL,
    /* 150*/ 0x68f480d3L,0xadcff5e6L,0x3a8eb265L,0x83269831L,0xbd568a09L,
    /* 155*/ 0x4bc8ae6aL,0x69f56d2bL,0x0f17eac8L,0x772eb6c7L,0x9f41343cL,
    /* 160*/ 0xab1d0742L,0x826a6f50L,0xfea2097cL,0x1912c283L,0xce185899L,
    /* 165*/ 0xe4444839L,0x2d8635d5L,0x65d0b1ffL,0x865a7f17L,0x326d9fb1L,
    /* 170*/ 0x59e52820L,0x0090ade1L,0x753c7149L,0x9ddd8b98L,0xa5a691daL,
    /* 175*/ 0x0d0382bbL,0x8904c930L,0x086cb000L,0x6e69d3bdL,0x24d4e7a7L,
    /* 180*/ 0x05244fd0L,0x101a5e0cL,0x6a947dcbL,0xe840f77bL,0x7d0c5003L,
    /* 185*/ 0x7c370f1fL,0x805245edL,0xe05e3d3fL,0x7906880eL,0xbabfcd35L,
    /* 190*/ 0x1a7ec697L,0x8c052324L,0x0c6ec8dfL,0xd129a589L,0xc7a75b02L,
    /* 195*/ 0x12d81de7L,0xd9be2a66L,0x1f4263abL,0xde73fdb6L,0x2a00680aL,
    /* 200*/ 0x56649e36L,0x3133ed55L,0x90fa0bf2L,0x2910a02aL,0x949d9d46L,
    /* 205*/ 0xa0d1dcddL,0xcfc9b7d4L,0xd2677be5L,0x95cb36b3L,0x13cd9410L,
    /* 210*/ 0xdbf73313L,0xb7c6e8c0L,0xf781414bL,0x510b016dL,0xb0de1157L,
    /* 215*/ 0xd6b0f62cL,0xbb074eccL,0x7f1395b7L,0xee792cf9L,0xea6fd63eL,
    /* 220*/ 0x5bd6938eL,0xaf02fc64L,0xdab57ab8L,0x8edb3784L,0x8716318fL,
    /* 225*/ 0x164d1a01L,0x26f26141L,0xb372e6b9L,0xf8fc2b06L,0x7ac00e04L,
    /* 230*/ 0x3727b89aL,0x97e9bca5L,0x9c2a742fL,0xbc3b1f7dL,0x7165b471L,
    /* 235*/ 0x609b4c29L,0x20925351L,0x5ae72112L,0x454be5d1L,0xc0ffb95fL,
    /* 240*/ 0xdd0ef919L,0x6f2d70c9L,0x0974c5bfL,0x98aa6263L,0x01d91e4dL,
    /* 245*/ 0x2184bb6eL,0x70c43c1eL,0x4d435915L,0xae7b8523L,0xb6fb06bcL,
    /* 250*/ 0x5431ee76L,0xfdbc5d26L,0xed77493dL,0xc5712ee4L,0xa8380437L,
    /* 255*/ 0x2eef261aL
        /* End   of S Box 2  */  },
    
    
     {  /* Start of S Box 3  */
    
    /*   0*/ 0x5a79392bL,0xb8af32c2L,0x41f7720aL,0x833a61ecL,0x13dfedacL,
    /*   5*/ 0xc4990bc4L,0xdc0f54bcL,0xfedd5e88L,0x80da1881L,0x4dea1afdL,
    /*  10*/ 0xfd402cc6L,0xae67cc7aL,0xc5238525L,0x8ea01254L,0xb56b9bd5L,
    /*  15*/ 0x862fbd6dL,0xac8575d3L,0x6fba3714L,0xda7ebf46L,0x59cd5238L,
    /*  20*/ 0x8ac9dbfeL,0x353729fcL,0xe497d7f2L,0xc3ab84e0L,0xf05a114bL,
    /*  25*/ 0x7b887a75L,0xedc603ddL,0x5e6fe680L,0x2c84b399L,0x884eb1daL,
    /*  30*/ 0x1cb8c8bfL,0xaa51098aL,0xc862231cL,0x8bac2221L,0x21b387e5L,
    /*  35*/ 0x208a430dL,0x2a3f0f8bL,0xa5ff9cd2L,0x6012a2eaL,0x147a9ee7L,
    /*  40*/ 0xf62a501dL,0xb4b2e51aL,0x3ef3484cL,0xc0253c59L,0x2b82b536L,
    /*  45*/ 0x0aa9696bL,0xbe0c109bL,0xc70b7929L,0xce3e8a19L,0x2f66950eL,
    /*  50*/ 0x459f1c2cL,0xe68fb93dL,0xa3c3ff3eL,0x62b45c62L,0x300991cbL,
    /*  55*/ 0x01914c57L,0x7f7bc06aL,0x182831f5L,0xe7b74bcaL,0xfa50f6d0L,
    /*  60*/ 0x523caa61L,0xe3a7cf05L,0xe9e41311L,0x280a21d1L,0x6a4297e1L,
    /*  65*/ 0xf24dc67eL,0xfc3189e6L,0xb72bf34fL,0x4b1e67afL,0x543402ceL,
    /*  70*/ 0x79a59867L,0x0648e02aL,0x00a3ac17L,0xc6208d35L,0x6e7f5f76L,
    /*  75*/ 0xa45bb4beL,0xf168fa63L,0x3f4125f3L,0xf311406fL,0x02706565L,
    /*  80*/ 0xbfe58022L,0x0cfcfdd9L,0x0735a7f7L,0x8f049092L,0xd98edc27L,
    /*  85*/ 0xf5c5d55cL,0xe0f201dbL,0x0dcafc9aL,0x7727fb79L,0xaf43abf4L,
    /*  90*/ 0x26e938c1L,0x401b26a6L,0x900720faL,0x2752d97bL,0xcff1d1b3L,
    /*  95*/ 0xa9d9e424L,0x42db99abL,0x6cf8be5fL,0xe82cebe3L,0x3afb733bL,
    /* 100*/ 0x6b734eb6L,0x1036414aL,0x975f667cL,0x049d6377L,0xba587c60L,
    /* 105*/ 0xb1d10483L,0xde1aefccL,0x1129d055L,0x72051e91L,0x6946d623L,
    /* 110*/ 0xf9e86ea7L,0x48768c00L,0xb0166c93L,0x9956bbf0L,0x1f1f6d84L,
    /* 115*/ 0xfb15e18eL,0x033b495dL,0x56e3362eL,0x4f44c53cL,0x747cba51L,
    /* 120*/ 0x89d37872L,0x5d9c331bL,0xd2ef9fa8L,0x254917f8L,0x1b106f47L,
    /* 125*/ 0x37d75553L,0xb3f053b0L,0x7dccd8efL,0xd30eb802L,0x5889f42dL,
    /* 130*/ 0x610206d7L,0x1a7d34a1L,0x92d87dd8L,0xe5f4a315L,0xd1cf0e71L,
    /* 135*/ 0xb22dfe45L,0xb901e8ebL,0x0fc0ce5eL,0x2efa60c9L,0x2de74290L,
    /* 140*/ 0x36d0c906L,0x381c70e4L,0x4c6da5b5L,0x3d81a682L,0x7e381f34L,
    /* 145*/ 0x396c4f52L,0x95ad5901L,0x1db50c5aL,0x29982e9eL,0x1557689fL,
    /* 150*/ 0x3471ee42L,0xd7e2f7c0L,0x8795a1e2L,0xbc324d8dL,0xe224c3c8L,
    /* 155*/ 0x12837e39L,0xcdee3d74L,0x7ad2143fL,0x0e13d40cL,0x78bd4a68L,
    /* 160*/ 0xa2eb194dL,0xdb9451f9L,0x859b71dcL,0x5c4f5b89L,0xca14a8a4L,
    /* 165*/ 0xef92f003L,0x16741d98L,0x33aa4444L,0x9e967fbbL,0x092e3020L,
    /* 170*/ 0xd86a35b8L,0x8cc17b10L,0xe1bf08aeL,0x55693fc5L,0x7680ad13L,
    /* 175*/ 0x1e6546e8L,0x23b6e7b9L,0xee77a4b2L,0x08ed0533L,0x44fd2895L,
    /* 180*/ 0xb6393b69L,0x05d6cacfL,0x9819b209L,0xecbbb72fL,0x9a75779cL,
    /* 185*/ 0xeaec0749L,0x94a65aeeL,0xbdf52dc3L,0xd6a25d04L,0x82008e4eL,
    /* 190*/ 0xa6de160fL,0x9b036afbL,0x228b3a66L,0x5fb10a70L,0xcc338b58L,
    /* 195*/ 0x5378a9dfL,0xc908bca9L,0x4959e25bL,0x46909a97L,0x66ae8f6eL,
    /* 200*/ 0xdd0683e9L,0x65f994b4L,0x6426cda5L,0xc24b8840L,0x32539da0L,
    /* 205*/ 0x63175650L,0xd0c815ffL,0x50cbc41eL,0xf7c774a3L,0x31b0c231L,
    /* 210*/ 0x8d0d8116L,0x24bef16cL,0xd555d256L,0xdf47ea8cL,0x6d21eccdL,
    /* 215*/ 0xa887a012L,0x84542aedL,0xa7b9c1bdL,0x914c1bb1L,0xa0d5b67dL,
    /* 220*/ 0x438ce937L,0x7030f873L,0x71f6b0c7L,0x574576baL,0xf8bc4541L,
    /* 225*/ 0x9c61d348L,0x1960579dL,0x17c4daadL,0x96a4cb0bL,0xc193f2f6L,
    /* 230*/ 0x756eafa2L,0x7c1d2f94L,0xf4fe2b43L,0xcb86e33aL,0xebd4c728L,
    /* 235*/ 0x9d18ae64L,0x9fe13e30L,0x3ce0f5deL,0xaba1f985L,0xaddc2718L,
    /* 240*/ 0x68ce6278L,0xd45e241fL,0xa15c82b7L,0x3b2293d4L,0x739edd32L,
    /* 245*/ 0x674a6bf1L,0x5b5d587fL,0x4772deaaL,0x4a63968fL,0x0be68686L,
    /* 250*/ 0x513d6426L,0x939a4787L,0xbba89296L,0x4ec20007L,0x818d0d08L,
    /* 255*/ 0xff64dfd6L
        /* End   of S Box 3  */  },
    
    
     {  /* Start of S Box 4  */
    
    /*   0*/ 0xcb2297cbL,0xdb48a144L,0xa16cbe4bL,0xbbea1d6cL,0x5af6b6b7L,
    /*   5*/ 0x8a8110b6L,0xf9236ef9L,0xc98f83e6L,0x0f9c65b8L,0x252d4a89L,
    /*  10*/ 0xa497f068L,0xa5d7ed2dL,0x94c22845L,0x9da1c8c4L,0xe27c2e2eL,
    /*  15*/ 0x6e8ba2b4L,0xc3dd17fbL,0x498cd482L,0x0dfe6a9fL,0xb0705829L,
    /*  20*/ 0x9a1e6dc1L,0xf829717cL,0x07bb8e3aL,0xda3c0b02L,0x1af82fc7L,
    /*  25*/ 0x73b70955L,0x7a04379cL,0x5ee20a28L,0x83712ae5L,0xf4c47c6dL,
    /*  30*/ 0xdf72ba56L,0xd794858dL,0x8c0cf709L,0x18f0f390L,0xb6c69b35L,
    /*  35*/ 0xbf2f01dbL,0x2fa74dcaL,0xd0cd9127L,0xbde66cecL,0x3deebd46L,
    /*  40*/ 0x57c88fc3L,0xcee1406fL,0x0066385aL,0xf3c3444fL,0x3a79d5d5L,
    /*  45*/ 0x75751eb9L,0x3e7f8185L,0x521c2605L,0xe1aaab6eL,0x38ebb80fL,
    /*  50*/ 0xbee7e904L,0x61cb9647L,0xea54904eL,0x05ae00e4L,0x2d7ac65fL,
    /*  55*/ 0x087751a1L,0xdcd82915L,0x0921ee16L,0xdd86d33bL,0xd6bd491aL,
    /*  60*/ 0x40fbadf0L,0x4232cbd2L,0x33808d10L,0x39098c42L,0x193f3199L,
    /*  65*/ 0x0bc1e47aL,0x4a82b149L,0x02b65a8aL,0x104cdc8eL,0x24a8f52cL,
    /*  70*/ 0x685c6077L,0xc79f95c9L,0x1d11fe50L,0xc08dafcdL,0x7b1a9a03L,
    /*  75*/ 0x1c1f11d8L,0x84250e7fL,0x979db248L,0xebdc0501L,0xb9553395L,
    /*  80*/ 0xe3c05ea8L,0xb1e51c4cL,0x13b0e681L,0x3b407766L,0x36db3087L,
    /*  85*/ 0xee17c9fcL,0x6c53ecf2L,0xadccc58fL,0xc427660bL,0xefd5867dL,
    /*  90*/ 0x9b6d54a5L,0x6ff1aeffL,0x8e787952L,0x9e2bffe0L,0x8761d034L,
    /*  95*/ 0xe00bdbadL,0xae99a8d3L,0xcc03f6e2L,0xfd0ed807L,0x0e508ae3L,
    /* 100*/ 0xb74182abL,0x4349245dL,0xd120a465L,0xb246a641L,0xaf3b7ab0L,
    /* 105*/ 0x2a6488bbL,0x4b3a0d1fL,0xe7c7e58cL,0x3faff2ebL,0x90445ffdL,
    /* 110*/ 0xcf38c393L,0x995d07e7L,0xf24f1b36L,0x356f6891L,0x6d6ebcbeL,
    /* 115*/ 0x8da9e262L,0x50fd520eL,0x5bca9e1eL,0x37472cf3L,0x69075057L,
    /* 120*/ 0x7ec5fdedL,0x0cab892aL,0xfb2412baL,0x1728debfL,0xa000a988L,
    /* 125*/ 0xd843ce79L,0x042e20ddL,0x4fe8f853L,0x56659c3cL,0x2739d119L,
    /* 130*/ 0xa78a6120L,0x80960375L,0x70420611L,0x85e09f78L,0xabd17e96L,
    /* 135*/ 0x1b513eafL,0x1e01eb63L,0x26ad2133L,0xa890c094L,0x7613cf60L,
    /* 140*/ 0x817e781bL,0xa39113d7L,0xe957fa58L,0x4131b99eL,0x28b1efdaL,
    /* 145*/ 0x66acfba7L,0xff68944aL,0x77a44fd1L,0x7f331522L,0x59ffb3faL,
    /* 150*/ 0xa6df935bL,0xfa12d9dfL,0xc6bf6f3fL,0x89520cf6L,0x659edd6aL,
    /* 155*/ 0x544da739L,0x8b052538L,0x7c30ea21L,0xc2345525L,0x15927fb2L,
    /* 160*/ 0x144a436bL,0xba107b8bL,0x1219ac97L,0x06730432L,0x31831ab3L,
    /* 165*/ 0xc55a5c24L,0xaa0fcd3eL,0xe5606be8L,0x5c88f19bL,0x4c0841eeL,
    /* 170*/ 0x1fe37267L,0x11f9c4f4L,0x9f1b9daeL,0x864e76d0L,0xe637c731L,
    /* 175*/ 0xd97d23a6L,0x32f53d5cL,0xb8161980L,0x93fa0f84L,0xcaef0870L,
    /* 180*/ 0x8874487eL,0x98f2cc73L,0x645fb5c6L,0xcd853659L,0x2062470dL,
    /* 185*/ 0x16ede8e9L,0x6b06dab5L,0x78b43900L,0xfc95b786L,0x5d8e7de1L,
    /* 190*/ 0x465b5954L,0xfe7ba014L,0xf7d23f7bL,0x92bc8b18L,0x03593592L,
    /* 195*/ 0x55cef4f7L,0x74b27317L,0x79de1fc2L,0xc8a0bfbdL,0x229398ccL,
    /* 200*/ 0x62a602ceL,0xbcb94661L,0x5336d206L,0xd2a375feL,0x6a6ab483L,
    /* 205*/ 0x4702a5a4L,0xa2e9d73dL,0x23a2e0f1L,0x9189140aL,0x581d18dcL,
    /* 210*/ 0xb39a922bL,0x82356212L,0xd5f432a9L,0xd356c2a3L,0x5f765b4dL,
    /* 215*/ 0x450afcc8L,0x4415e137L,0xe8ecdfbcL,0xed0de3eaL,0x60d42b13L,
    /* 220*/ 0xf13df971L,0x71fc5da2L,0xc1455340L,0xf087742fL,0xf55e5751L,
    /* 225*/ 0x67b3c1f8L,0xac6b8774L,0x7dcfaaacL,0x95983bc0L,0x489bb0b1L,
    /* 230*/ 0x2c184223L,0x964b6726L,0x2bd3271cL,0x72266472L,0xded64530L,
    /* 235*/ 0x0a2aa343L,0xd4f716a0L,0xb4dad6d9L,0x2184345eL,0x512c990cL,
    /* 240*/ 0x29d92d08L,0x2ebe709aL,0x01144c69L,0x34584b9dL,0xe4634ed6L,
    /* 245*/ 0xecc963cfL,0x3c6984aaL,0x4ed056efL,0x9ca56976L,0x8f3e80d4L,
    /* 250*/ 0xb5bae7c5L,0x30b5caf5L,0x63f33a64L,0xa9e4bbdeL,0xf6b82298L,
    /* 255*/ 0x4d673c1dL
        /* End   of S Box 4  */  },
    
    
     {  /* Start of S Box 5  */
    
    /*   0*/ 0x4b4f1121L,0xba183081L,0xc784f41fL,0xd17d0bacL,0x083d2267L,
    /*   5*/ 0x37b1361eL,0x3581ad05L,0xfda2f6bcL,0x1e892cddL,0xb56d3c3aL,
    /*  10*/ 0x32140e46L,0x138d8aabL,0xe14773d4L,0x5b0e71dfL,0x5d1fe055L,
    /*  15*/ 0x3fb991d3L,0xf1f46c71L,0xa325988cL,0x10f66e80L,0xb1006348L,
    /*  20*/ 0x726a9f60L,0x3b67f8baL,0x4e114ef4L,0x05c52115L,0x4c5ca11cL,
    /*  25*/ 0x99e1efd8L,0x471b83b3L,0xcbf7e524L,0x43ad82f5L,0x690ca93bL,
    /*  30*/ 0xfaa61bb2L,0x12a832b5L,0xb734f943L,0xbd22aea7L,0x88fec626L,
    /*  35*/ 0x5e80c3e7L,0xbe3eaf5eL,0x44617652L,0xa5724475L,0xbb3b9695L,
    /*  40*/ 0x7f3fee8fL,0x964e7debL,0x518c052dL,0x2a0bbc2bL,0xc2175f5cL,
    /*  45*/ 0x9a7b3889L,0xa70d8d0cL,0xeaccdd29L,0xcccd6658L,0x34bb25e6L,
    /*  50*/ 0xb8391090L,0xf651356fL,0x52987c9eL,0x0c16c1cdL,0x8e372d3cL,
    /*  55*/ 0x2fc6ebbdL,0x6e5da3e3L,0xb0e27239L,0x5f685738L,0x45411786L,
    /*  60*/ 0x067f65f8L,0x61778b40L,0x81ab2e65L,0x14c8f0f9L,0xa6b7b4ceL,
    /*  65*/ 0x4036eaecL,0xbf62b00aL,0xecfd5e02L,0x045449a6L,0xb20afd28L,
    /*  70*/ 0x2166d273L,0x0d13a863L,0x89508756L,0xd51a7530L,0x2d653f7aL,
    /*  75*/ 0x3cdbdbc3L,0x80c9df4fL,0x3d5812d9L,0x53fbb1f3L,0xc0f185c0L,
    /*  80*/ 0x7a3c3d7eL,0x68646410L,0x857607a0L,0x1d12622eL,0x97f33466L,
    /*  85*/ 0xdb4c9917L,0x6469607cL,0x566e043dL,0x79ef1edbL,0x2c05898dL,
    /*  90*/ 0xc9578e25L,0xcd380101L,0x46e04377L,0x7d1cc7a9L,0x6552b837L,
    /*  95*/ 0x20192608L,0xb97500c5L,0xed296b44L,0x368648b4L,0x62995cd5L,
    /* 100*/ 0x82731400L,0xf9aebd8bL,0x3844c0c7L,0x7c2de794L,0x33a1a770L,
    /* 105*/ 0x8ae528c2L,0x5a2be812L,0x1f8f4a07L,0x2b5ed7caL,0x937eb564L,
    /* 110*/ 0x6fda7e11L,0xe49b5d6cL,0xb4b3244eL,0x18aa53a4L,0x3a061334L,
    /* 115*/ 0x4d6067a3L,0x83ba5868L,0x9bdf4dfeL,0x7449f261L,0x709f8450L,
    /* 120*/ 0xcad133cbL,0xde941c3fL,0xf52ae484L,0x781d77edL,0x7e4395f0L,
    /* 125*/ 0xae103b59L,0x922331bbL,0x42ce50c8L,0xe6f08153L,0xe7d941d0L,
    /* 130*/ 0x5028ed6bL,0xb3d2c49bL,0xad4d9c3eL,0xd201fb6eL,0xa45bd5beL,
    /* 135*/ 0xffcb7f4bL,0x579d7806L,0xf821bb5bL,0x59d592adL,0xd0be0c31L,
    /* 140*/ 0xd4e3b676L,0x0107165aL,0x0fe939d2L,0x49bcaafdL,0x55ffcfe5L,
    /* 145*/ 0x2ec1f783L,0xf39a09a5L,0x3eb42772L,0x19b55a5dL,0x024a0679L,
    /* 150*/ 0x8c83b3f7L,0x8642ba1dL,0xacacd9eaL,0x87d352c4L,0x60931f45L,
    /* 155*/ 0xa05f97d7L,0x1cecd42cL,0xe2fcc87bL,0xb60f94e2L,0x67a34b0bL,
    /* 160*/ 0xfcdd40c9L,0x0b150a27L,0xd3ee9e04L,0x582e29e9L,0x4ac22b41L,
    /* 165*/ 0x6ac4e1b8L,0xbccaa51aL,0x237af30eL,0xebc3b709L,0xc4a59d19L,
    /* 170*/ 0x284bc98aL,0xe9d41a93L,0x6bfa2018L,0x73b2d651L,0x11f9a2faL,
    /* 175*/ 0xce09bff1L,0x41a470aaL,0x25888f22L,0x77e754e8L,0xf7330d8eL,
    /* 180*/ 0x158eab16L,0xc5d68842L,0xc685a6f6L,0xe5b82fdeL,0x09ea3a96L,
    /* 185*/ 0x6dde1536L,0x4fa919daL,0x26c0be9fL,0x9eed6f69L,0xf05555f2L,
    /* 190*/ 0xe06fc285L,0x9cd76d23L,0xaf452a92L,0xefc74cb7L,0x9d6b4732L,
    /* 195*/ 0x8be408eeL,0x22401d0dL,0xee6c459dL,0x7587cb82L,0xe8746862L,
    /* 200*/ 0x5cbdde87L,0x98794278L,0x31afb94dL,0xc11e0f2fL,0x30e8fc2aL,
    /* 205*/ 0xcf3261efL,0x1a3023e1L,0xaa2f86cfL,0xf202e24aL,0x8d08dcffL,
    /* 210*/ 0x764837c6L,0xa26374ccL,0x9f7c3e88L,0x949cc57dL,0xdd26a07fL,
    /* 215*/ 0xc39efab0L,0xc8f879a1L,0xdce67bb9L,0xf4b0a435L,0x912c9ae0L,
    /* 220*/ 0xd85603e4L,0x953a9bbfL,0xfb8290d6L,0x0aebcd5fL,0x16206a9aL,
    /* 225*/ 0x6c787a14L,0xd9a0f16aL,0x29bf4f74L,0x8f8bce91L,0x0e5a9354L,
    /* 230*/ 0xab038cb1L,0x1b8ad11bL,0xe327ff49L,0x0053da20L,0x90cf51dcL,
    /* 235*/ 0xda92fe6dL,0x0390ca47L,0xa8958097L,0xa9dc5bafL,0x3931e3c1L,
    /* 240*/ 0x840446b6L,0x63d069fbL,0xd7460299L,0x7124ecd1L,0x0791e613L,
    /* 245*/ 0x485918fcL,0xd635d04cL,0xdf96ac33L,0x66f2d303L,0x247056aeL,
    /* 250*/ 0xa1a7b2a8L,0x27d8cc9cL,0x17b6e998L,0x7bf5590fL,0xfe97f557L,
    /* 255*/ 0x5471d8a2L
        /* End   of S Box 5  */  },
    
    
     {  /* Start of S Box 6  */
    
    /*   0*/ 0x83a327a1L,0x9f379f51L,0x40a7d007L,0x11307423L,0x224587c1L,
    /*   5*/ 0xac27d63bL,0x3b7e64eaL,0x2e1cbfa6L,0x09996000L,0x03bc0e2cL,
    /*  10*/ 0xd4c4478aL,0x4542e0abL,0xfeda26d4L,0xc1d10fcbL,0x8252f596L,
    /*  15*/ 0x4494eb5cL,0xa362f314L,0xf5ba81fdL,0x75c3a376L,0x4ca214caL,
    /*  20*/ 0xe164deddL,0x5088fa97L,0x4b0930e0L,0x2fcfb7e8L,0x33a6f4b2L,
    /*  25*/ 0xc7e94211L,0x2d66c774L,0x43be8baeL,0xc663d445L,0x908eb130L,
    /*  30*/ 0xf4e3be15L,0x63b9d566L,0x529396b5L,0x1e1be743L,0x4d5ff63fL,
    /*  35*/ 0x985e4a83L,0x71ab9df7L,0xc516c6f5L,0x85c19ab4L,0x1f4daee4L,
    /*  40*/ 0xf2973431L,0xb713dc5eL,0x3f2e159aL,0xc824da16L,0x06bf376aL,
    /*  45*/ 0xb2fe23ecL,0xe39b1c22L,0xf1eecb5fL,0x08e82d52L,0x565686c2L,
    /*  50*/ 0xab0aea93L,0xfd47219fL,0xebdbabd7L,0x2404a185L,0x8c7312b9L,
    /*  55*/ 0xa8f2d828L,0x0c8902daL,0x65b42b63L,0xc0bbef62L,0x4e3e4cefL,
    /*  60*/ 0x788f8018L,0xee1ebab7L,0x93928f9dL,0x683d2903L,0xd3b60689L,
    /*  65*/ 0xafcb0ddcL,0x88a4c47aL,0xf6dd9c3dL,0x7ea5fca0L,0x8a6d7244L,
    /*  70*/ 0xbe11f120L,0x04ff91b8L,0x8d2dc8c0L,0x27f97fdbL,0x7f9e1f47L,
    /*  75*/ 0x1734f0c7L,0x26f3ed8eL,0x0df8f2bfL,0xb0833d9eL,0xe420a4e5L,
    /*  80*/ 0xa423cae6L,0x95616772L,0x9ae6c049L,0x075941f2L,0xd8e12812L,
    /*  85*/ 0x000f6f4fL,0x3c0d6b05L,0x6cef921cL,0xb82bc264L,0x396cb008L,
    /*  90*/ 0x5d608a6fL,0x6d7782c8L,0x186550aaL,0x6b6fec09L,0x28e70b13L,
    /*  95*/ 0x57ce5688L,0xecd3af84L,0x23335a95L,0x91f40cd2L,0x7b6a3b26L,
    /* 100*/ 0xbd32b3b6L,0x3754a6fbL,0x8ed088f0L,0xf867e87cL,0x20851746L,
    /* 105*/ 0x6410f9c6L,0x35380442L,0xc2ca10a7L,0x1adea27fL,0x76bddd79L,
    /* 110*/ 0x92742cf4L,0x0e98f7eeL,0x164e931dL,0xb9c835b3L,0x69060a99L,
    /* 115*/ 0xb44c531eL,0xfa7b66feL,0xc98a5b53L,0x7d95aae9L,0x302f467bL,
    /* 120*/ 0x74b811deL,0xf3866abdL,0xb5b3d32dL,0xfc3157a4L,0xd251fe19L,
    /* 125*/ 0x0b5d8eacL,0xda71ffd5L,0x47ea05a3L,0x05c6a9e1L,0xca0ee958L,
    /* 130*/ 0x9939034dL,0x25dc5edfL,0x79083cb1L,0x86768450L,0xcf757d6dL,
    /* 135*/ 0x5972b6bcL,0xa78d59c9L,0xc4ad8d41L,0x2a362ad3L,0xd1179991L,
    /* 140*/ 0x601407ffL,0xdcf50917L,0x587069d0L,0xe0821ed6L,0xdbb59427L,
    /* 145*/ 0x73911a4bL,0x7c904fc3L,0x844afb92L,0x6f8c955dL,0xe8c0c5bbL,
    /* 150*/ 0xb67ab987L,0xa529d96cL,0xf91f7181L,0x618b1b06L,0xe718bb0cL,
    /* 155*/ 0x8bd7615bL,0xd5a93a59L,0x54aef81bL,0x772136e3L,0xce44fd9cL,
    /* 160*/ 0x10cda57eL,0x87d66e0bL,0x3d798967L,0x1b2c1804L,0x3edfbd68L,
    /* 165*/ 0x15f6e62bL,0xef68b854L,0x3896db35L,0x12b7b5e2L,0xcb489029L,
    /* 170*/ 0x9e4f98a5L,0x62eb77a8L,0x217c24a2L,0x964152f6L,0x49b2080aL,
    /* 175*/ 0x53d23ee7L,0x48fb6d69L,0x1903d190L,0x9449e494L,0xbf6e7886L,
    /* 180*/ 0xfb356cfaL,0x3a261365L,0x424bc1ebL,0xa1192570L,0x019ca782L,
    /* 185*/ 0x9d3f7e0eL,0x9c127575L,0xedf02039L,0xad57bcceL,0x5c153277L,
    /* 190*/ 0x81a84540L,0xbcaa7356L,0xccd59b60L,0xa62a629bL,0xa25ccd10L,
    /* 195*/ 0x2b5b65cfL,0x1c535832L,0x55fd4e3aL,0x31d9790dL,0xf06bc37dL,
    /* 200*/ 0x4afc1d71L,0xaeed5533L,0xba461634L,0xbb694b78L,0x5f3a5c73L,
    /* 205*/ 0x6a3c764aL,0x8fb0cca9L,0xf725684cL,0x4fe5382fL,0x1d0163afL,
    /* 210*/ 0x5aa07a8fL,0xe205a8edL,0xc30bad38L,0xff22cf1fL,0x72432e2eL,
    /* 215*/ 0x32c2518bL,0x3487ce4eL,0x7ae0ac02L,0x709fa098L,0x0a3b395aL,
    /* 220*/ 0x5b4043f8L,0xa9e48c36L,0x149a8521L,0xd07dee6bL,0x46acd2f3L,
    /* 225*/ 0x8958dffcL,0xb3a1223cL,0xb11d31c4L,0xcd7f4d3eL,0x0f28e3adL,
    /* 230*/ 0xe5b100beL,0xaac54824L,0xe9c9d7baL,0x9bd47001L,0x80f149b0L,
    /* 235*/ 0x66022f0fL,0x020c4048L,0x6efa192aL,0x67073f8dL,0x13ec7bf9L,
    /* 240*/ 0x3655011aL,0xe6afe157L,0xd9845f6eL,0xdecc4425L,0x511ae2ccL,
    /* 245*/ 0xdf81b4d8L,0xd7809e55L,0xd6d883d9L,0x2cc7978cL,0x5e787cc5L,
    /* 250*/ 0xdd0033d1L,0xa050c937L,0x97f75dcdL,0x299de580L,0x41e2b261L,
    /* 255*/ 0xea5a54f1L
        /* End   of S Box 6  */  },
    
    
     {  /* Start of S Box 7  */
    
    /*   0*/ 0x7e672590L,0xbea513bbL,0x2c906fe6L,0x86029c2bL,0x55dc4f74L,
    /*   5*/ 0x0553398eL,0x63e09647L,0xcafd0babL,0x264c37dfL,0x8272210fL,
    /*  10*/ 0x67afa669L,0x12d98a5fL,0x8cab23c4L,0x75c68bd1L,0xc3370470L,
    /*  15*/ 0x33f37f4eL,0x283992ffL,0xe73a3a67L,0x1032f283L,0xf5ad9fc2L,
    /*  20*/ 0x963f0c5dL,0x664fbc45L,0x202ba41cL,0xc7c02d80L,0x54731e84L,
    /*  25*/ 0x8a1085f5L,0x601d80fbL,0x2f968e55L,0x35e96812L,0xe45a8f78L,
    /*  30*/ 0xbd7de662L,0x3b6e6eadL,0x8097c5efL,0x070b6781L,0xb1e508f3L,
    /*  35*/ 0x24e4fae3L,0xb81a7805L,0xec0fc918L,0x43c8774bL,0x9b2512a9L,
    /*  40*/ 0x2b05ad04L,0x32c2536fL,0xedf236e0L,0x8bc4b0cfL,0xbaceb837L,
    /*  45*/ 0x4535b289L,0x0d0e94c3L,0xa5a371d0L,0xad695a58L,0x39e3437dL,
    /*  50*/ 0x9186bffcL,0x21038c3bL,0x0aa9dff9L,0x5d1f06ceL,0x62def8a4L,
    /*  55*/ 0xf740a2b4L,0xa2575868L,0x682683c1L,0xdbb30facL,0x61fe1928L,
    /*  60*/ 0x468a6511L,0xc61cd5f4L,0xe54d9800L,0x6b98d7f7L,0x8418b6a5L,
    /*  65*/ 0x5f09a5d2L,0x90b4e80bL,0x49b2c852L,0x69f11c77L,0x17412b7eL,
    /*  70*/ 0x7f6fc0edL,0x56838dccL,0x6e9546a2L,0xd0758619L,0x087b9b9aL,
    /*  75*/ 0xd231a01dL,0xaf46d415L,0x097060fdL,0xd920f657L,0x882d3f9fL,
    /*  80*/ 0x3ae7c3c9L,0xe8a00d9bL,0x4fe67ebeL,0x2ef80eb2L,0xc1916b0cL,
    /*  85*/ 0xf4dffea0L,0xb97eb3ebL,0xfdff84ddL,0xff8b14f1L,0xe96b0572L,
    /*  90*/ 0xf64b508cL,0xae220a6eL,0x4423ae5aL,0xc2bece5eL,0xde27567cL,
    /*  95*/ 0xfc935c63L,0x47075573L,0xe65b27f0L,0xe121fd22L,0xf2668753L,
    /* 100*/ 0x2debf5d7L,0x8347e08dL,0xac5eda03L,0x2a7cebe9L,0x3fe8d92eL,
    /* 105*/ 0x23542fe4L,0x1fa7bd50L,0xcf9b4102L,0x9d0dba39L,0x9cb8902aL,
    /* 110*/ 0xa7249d8bL,0x0f6d667aL,0x5ebfa9ecL,0x6a594df2L,0x79600938L,
    /* 115*/ 0x023b7591L,0xea2c79c8L,0xc99d07eaL,0x64cb5ee1L,0x1a9cab3dL,
    /* 120*/ 0x76db9527L,0xc08e012fL,0x3dfb481aL,0x872f22e7L,0x2948d15cL,
    /* 125*/ 0xa4782c79L,0x6f50d232L,0x78f0728aL,0x5a87aab1L,0xc4e2c19cL,
    /* 130*/ 0xee767387L,0x1b2a1864L,0x7b8d10d3L,0xd1713161L,0x0eeac456L,
    /* 135*/ 0xd8799e06L,0xb645b548L,0x4043cb65L,0xa874fb29L,0x4b12d030L,
    /* 140*/ 0x7d687413L,0x18ef9a1fL,0xd7631d4cL,0x5829c7daL,0xcdfa30faL,
    /* 145*/ 0xc5084bb0L,0x92cd20e2L,0xd4c16940L,0x03283ec0L,0xa917813fL,
    /* 150*/ 0x9a587d01L,0x70041f8fL,0xdc6ab1dcL,0xddaee3d5L,0x31829742L,
    /* 155*/ 0x198c022dL,0x1c9eafcbL,0x5bbc6c49L,0xd3d3293aL,0x16d50007L,
    /* 160*/ 0x04bb8820L,0x3c5c2a41L,0x37ee7af8L,0x8eb04025L,0x9313ecbaL,
    /* 165*/ 0xbffc4799L,0x8955a744L,0xef85d633L,0x504499a7L,0xa6ca6a86L,
    /* 170*/ 0xbb3d3297L,0xb34a8236L,0x6dccbe4fL,0x06143394L,0xce19fc7bL,
    /* 175*/ 0xccc3c6c6L,0xe36254aeL,0x77b7eda1L,0xa133dd9eL,0xebf9356aL,
    /* 180*/ 0x513ccf88L,0xe2a1b417L,0x972ee5bdL,0x853824cdL,0x5752f4eeL,
    /* 185*/ 0x6c1142e8L,0x3ea4f309L,0xb2b5934aL,0xdfd628aaL,0x59acea3eL,
    /* 190*/ 0xa01eb92cL,0x389964bcL,0xda305dd4L,0x019a59b7L,0x11d2ca93L,
    /* 195*/ 0xfaa6d3b9L,0x4e772ecaL,0x72651776L,0xfb4e5b0eL,0xa38f91a8L,
    /* 200*/ 0x1d0663b5L,0x30f4f192L,0xb50051b6L,0xb716ccb3L,0x4abd1b59L,
    /* 205*/ 0x146c5f26L,0xf134e2deL,0x00f67c6cL,0xb0e1b795L,0x98aa4ec7L,
    /* 210*/ 0x0cc73b34L,0x654276a3L,0x8d1ba871L,0x740a5216L,0xe0d01a23L,
    /* 215*/ 0x9ed161d6L,0x9f36a324L,0x993ebb7fL,0xfeb9491bL,0x365ddcdbL,
    /* 220*/ 0x810cffc5L,0x71ec0382L,0x2249e7bfL,0x48817046L,0xf3a24a5bL,
    /* 225*/ 0x4288e4d9L,0x0bf5c243L,0x257fe151L,0x95b64c0dL,0x4164f066L,
    /* 230*/ 0xaaf7db08L,0x73b1119dL,0x8f9f7bb8L,0xd6844596L,0xf07a34a6L,
    /* 235*/ 0x53943d0aL,0xf9dd166dL,0x7a8957afL,0xf8ba3ce5L,0x27c9621eL,
    /* 240*/ 0x5cdae910L,0xc8518998L,0x941538feL,0x136115d8L,0xaba8443cL,
    /* 245*/ 0x4d01f931L,0x34edf760L,0xb45f266bL,0xd5d4de14L,0x52d8ac35L,
    /* 250*/ 0x15cfd885L,0xcbc5cd21L,0x4cd76d4dL,0x7c80ef54L,0xbc92ee75L,
    /* 255*/ 0x1e56a1f6L
        /* End   of S Box 7  */  },
    
    
     {  /* Start of S Box 8  */
    
    /*   0*/ 0xbaa20b6cL,0x9ffbad26L,0xe1f7d738L,0x794aec8dL,0xc9e9cf3cL,
    /*   5*/ 0x8a9a7846L,0xc57c4685L,0xb9a92fedL,0x29cb141fL,0x52f9ddb7L,
    /*  10*/ 0xf68ba6bcL,0x19ccc020L,0x4f584aaaL,0x3bf6a596L,0x003b7cf7L,
    /*  15*/ 0x54f0ce9aL,0xa7ec4303L,0x46cf0077L,0x78d33aa1L,0x215247d9L,
    /*  20*/ 0x74bcdf91L,0x08381d30L,0xdac43e40L,0x64872531L,0x0beffe5fL,
    /*  25*/ 0xb317f457L,0xaebb12daL,0xd5d0d67bL,0x7d75c6b4L,0x42a6d241L,
    /*  30*/ 0x1502d0a9L,0x3fd97fffL,0xc6c3ed28L,0x81868d0aL,0x92628bc5L,
    /*  35*/ 0x86679544L,0xfd1867afL,0x5ca3ea61L,0x568d5578L,0x4a2d71f4L,
    /*  40*/ 0x43c9d549L,0x8d95de2bL,0x6e5c74a0L,0x9120ffc7L,0x0d05d14aL,
    /*  45*/ 0xa93049d3L,0xbfa80e17L,0xf4096810L,0x043f5ef5L,0xa673b4f1L,
    /*  50*/ 0x6d780298L,0xa4847783L,0x5ee726fbL,0x9934c281L,0x220a588cL,
    /*  55*/ 0x384e240fL,0x933d5c69L,0x39e5ef47L,0x26e8b8f3L,0x4c1c6212L,
    /*  60*/ 0x8040f75dL,0x074b7093L,0x6625a8d7L,0x36298945L,0x76285088L,
    /*  65*/ 0x651d37c3L,0x24f5274dL,0xdbca3dabL,0x186b7ee1L,0xd80f8182L,
    /*  70*/ 0x14210c89L,0x943a3075L,0x4e6e11c4L,0x4d7e6badL,0xf05064c8L,
    /*  75*/ 0x025dcd97L,0x4bc10302L,0x7cede572L,0x8f90a970L,0xab88eebaL,
    /*  80*/ 0xb5998029L,0x5124d839L,0xb0eeb6a3L,0x89ddabdcL,0xe8074d76L,
    /*  85*/ 0xa1465223L,0x32518cf2L,0x9d39d4ebL,0xc0d84524L,0xe35e6ea8L,
    /*  90*/ 0x7abf3804L,0x113e2348L,0x9ae6069dL,0xb4dfdabbL,0xa8c5313fL,
    /*  95*/ 0x23ea3f79L,0x530e36a2L,0xa5fd228bL,0x95d1d350L,0x2b14cc09L,
    /* 100*/ 0x40042956L,0x879d05ccL,0x2064b9caL,0xacaca40eL,0xb29c846eL,
    /* 105*/ 0x9676c9e3L,0x752b7b8aL,0x7be2bcc2L,0x6bd58f5eL,0xd48f4c32L,
    /* 110*/ 0x606835e4L,0x9cd7c364L,0x2c269b7aL,0x3a0d079cL,0x73b683feL,
    /* 115*/ 0x45374f1eL,0x10afa242L,0x577f8666L,0xddaa10f6L,0xf34f561cL,
    /* 120*/ 0x3d355d6bL,0xe47048aeL,0xaa13c492L,0x050344fdL,0x2aab5151L,
    /* 125*/ 0xf5b26ae5L,0xed919a59L,0x5ac67900L,0xf1cde380L,0x0c79a11bL,
    /* 130*/ 0x351533fcL,0xcd4d8e36L,0x1f856005L,0x690b9fddL,0xe736dccfL,
    /* 135*/ 0x1d47bf6aL,0x7f66c72aL,0x85f21b7fL,0x983cbdb6L,0x01ebbebfL,
    /* 140*/ 0x035f3b99L,0xeb111f34L,0x28cefdc6L,0x5bfc9ecdL,0xf22eacb0L,
    /* 145*/ 0x9e41cbb2L,0xe0f8327cL,0x82e3e26fL,0xfc43fc86L,0xd0ba66dfL,
    /* 150*/ 0x489ef2a7L,0xd9e0c81dL,0x68690d52L,0xcc451367L,0xc2232e16L,
    /* 155*/ 0xe95a7335L,0x0fdae19bL,0xff5b962cL,0x97596527L,0xc46db333L,
    /* 160*/ 0x3ed4c562L,0xc14c9d9eL,0x5d6faa21L,0x638e940dL,0xf9316d58L,
    /* 165*/ 0x47b3b0eaL,0x30ffcad2L,0xce1bba7dL,0x1e6108e6L,0x2e1ea33dL,
    /* 170*/ 0x507bf05bL,0xfafef94bL,0xd17de8e2L,0x5598b214L,0x1663f813L,
    /* 175*/ 0x17d25a2dL,0xeefa5ff9L,0x582f4e37L,0x12128773L,0xfef17ab8L,
    /* 180*/ 0x06005322L,0xbb32bbc9L,0x8c898508L,0x592c15f0L,0xd38a4054L,
    /* 185*/ 0x4957b7d6L,0xd2b891dbL,0x37bd2d3eL,0x34ad20cbL,0x622288e9L,
    /* 190*/ 0x2dc7345aL,0xafb416c0L,0x1cf459b1L,0xdc7739faL,0x0a711a25L,
    /* 195*/ 0x13e18a0cL,0x5f72af4cL,0x6ac8db11L,0xbe53c18eL,0x1aa569b9L,
    /* 200*/ 0xef551ea4L,0xa02a429fL,0xbd16e790L,0x7eb9171aL,0x77d693d8L,
    /* 205*/ 0x8e06993aL,0x9bde7560L,0xe5801987L,0xc37a09beL,0xb8db76acL,
    /* 210*/ 0xe2087294L,0x6c81616dL,0xb7f30fe7L,0xbc9b82bdL,0xfba4e4d4L,
    /* 215*/ 0xc7b1012fL,0xa20c043bL,0xde9febd0L,0x2f9297ceL,0xe610aef8L,
    /* 220*/ 0x70b06f19L,0xc86ae00bL,0x0e01988fL,0x41192ae0L,0x448c1cb5L,
    /* 225*/ 0xadbe92eeL,0x7293a007L,0x1b54b5b3L,0xd61f63d1L,0xeae40a74L,
    /* 230*/ 0x61a72b55L,0xec83a7d5L,0x88942806L,0x90a07da5L,0xd7424b95L,
    /* 235*/ 0x67745b4eL,0xa31a1853L,0xca6021efL,0xdfb56c4fL,0xcbc2d915L,
    /* 240*/ 0x3c48e918L,0x8bae3c63L,0x6f659c71L,0xf8b754c1L,0x2782f3deL,
    /* 245*/ 0xf796f168L,0x71492c84L,0x33c0f5a6L,0x3144f6ecL,0x25dc412eL,
    /* 250*/ 0xb16c5743L,0x83a1fa7eL,0x0997b101L,0xb627e6e8L,0xcf33905cL,
    /* 255*/ 0x8456fb65L
        /* End   of S Box 8  */  },
    
    
     {  /* Start of S Box 9  */
    
    /*   0*/ 0xb29bea74L,0xc35da605L,0x305c1ca3L,0xd2e9f5bcL,0x6fd5bff4L,
    /*   5*/ 0xff347703L,0xfc45b163L,0xf498e068L,0xb71229fcL,0x81acc3fbL,
    /*  10*/ 0x78538a8bL,0x984ecf81L,0xa5da47a4L,0x8f259eefL,0x6475dc65L,
    /*  15*/ 0x081865b9L,0x49e14a3cL,0x19e66079L,0xd382e91bL,0x5b109794L,
    /*  20*/ 0x3f9f81e1L,0x4470a388L,0x41601abeL,0xaaf9f407L,0x8e175ef6L,
    /*  25*/ 0xed842297L,0x893a4271L,0x1790839aL,0xd566a99eL,0x6b417deeL,
    /*  30*/ 0x75c90d23L,0x715edb31L,0x723553f7L,0x9afb50c9L,0xfbc5f600L,
    /*  35*/ 0xcd3b6a4eL,0x97ed0fbaL,0x29689aecL,0x63135c8eL,0xf0e26c7eL,
    /*  40*/ 0x0692ae7fL,0xdbb208ffL,0x2ede3e9bL,0x6a65bebdL,0xd40867e9L,
    /*  45*/ 0xc954afc5L,0x73b08201L,0x7ffdf809L,0x1195c24fL,0x1ca5adcaL,
    /*  50*/ 0x74bd6d1fL,0xb393c455L,0xcadfd3faL,0x99f13011L,0x0ebca813L,
    /*  55*/ 0x60e791b8L,0x6597ac7aL,0x18a7e46bL,0x09cb49d3L,0x0b27df6dL,
    /*  60*/ 0xcfe52f87L,0xcef66837L,0xe6328035L,0xfa87c592L,0x37baff93L,
    /*  65*/ 0xd71fcc99L,0xdcab205cL,0x4d7a5638L,0x48012510L,0x62797558L,
    /*  70*/ 0xb6cf1fe5L,0xbc311834L,0x9c2373acL,0x14ec6175L,0xa439cbdfL,
    /*  75*/ 0x54afb0eaL,0xd686960bL,0xfdd0d47bL,0x7b063902L,0x8b78bac3L,
    /*  80*/ 0x26c6a4d5L,0x5c0055b6L,0x2376102eL,0x0411783eL,0x2aa3f1cdL,
    /*  85*/ 0x51fc6ea8L,0x701ce243L,0x9b2a0abbL,0x0ad93733L,0x6e80d03dL,
    /*  90*/ 0xaf6295d1L,0xf629896fL,0xa30b0648L,0x463d8dd4L,0x963f84cbL,
    /*  95*/ 0x01ff94f8L,0x8d7fefdcL,0x553611c0L,0xa97c1719L,0xb96af759L,
    /* 100*/ 0xe0e3c95eL,0x0528335bL,0x21fe5925L,0x821a5245L,0x807238b1L,
    /* 105*/ 0x67f23db5L,0xea6b4eabL,0x0da6f985L,0xab1bc85aL,0xef8c90e4L,
    /* 110*/ 0x4526230eL,0x38eb8b1cL,0x1b91cd91L,0x9fce5f0cL,0xf72cc72bL,
    /* 115*/ 0xc64f2617L,0xdaf7857dL,0x7d373cf1L,0x28eaedd7L,0x203887d0L,
    /* 120*/ 0xc49a155fL,0xa251b3b0L,0xf2d47ae3L,0x3d9ef267L,0x4a94ab2fL,
    /* 125*/ 0x7755a222L,0x0205e329L,0xc28fa7a7L,0xaec1fe51L,0x270f164cL,
    /* 130*/ 0x8c6d01bfL,0x53b5bc98L,0xc09d3febL,0x834986ccL,0x4309a12cL,
    /* 135*/ 0x578b2a96L,0x3bb74b86L,0x69561b4aL,0x037e32f3L,0xde335b08L,
    /* 140*/ 0xc5156be0L,0xe7ef09adL,0x93b834c7L,0xa7719352L,0x59302821L,
    /* 145*/ 0xe3529d26L,0xf961da76L,0xcb142c44L,0xa0f3b98dL,0x76502457L,
    /* 150*/ 0x945a414bL,0x078eeb12L,0xdff8de69L,0xeb6c8c2dL,0xbda90c4dL,
    /* 155*/ 0xe9c44d16L,0x168dfd66L,0xad64763bL,0xa65fd764L,0x95a29c06L,
    /* 160*/ 0x32d7713fL,0x40f0b277L,0x224af08fL,0x004cb5e8L,0x92574814L,
    /* 165*/ 0x8877d827L,0x3e5b2d04L,0x68c2d5f2L,0x86966273L,0x1d433adaL,
    /* 170*/ 0x8774988aL,0x3c0e0bfeL,0xddad581dL,0x2fd654edL,0x0f4769fdL,
    /* 175*/ 0xc181ee9dL,0x5fd88f61L,0x341dbb3aL,0x528543f9L,0xd92235cfL,
    /* 180*/ 0x1ea82eb4L,0xb5cd790fL,0x91d24f1eL,0xa869e6c2L,0x61f474d2L,
    /* 185*/ 0xcc205addL,0x0c7bfba9L,0xbf2b0489L,0xb02d72d8L,0x2b46ece6L,
    /* 190*/ 0xe4dcd90aL,0xb8a11440L,0xee8a63b7L,0x854dd1a1L,0xd1e00583L,
    /* 195*/ 0x42b40e24L,0x9e8964deL,0xb4b35d78L,0xbec76f6eL,0x24b9c620L,
    /* 200*/ 0xd8d399a6L,0x5adb2190L,0x2db12730L,0x3a5866afL,0x58c8fadbL,
    /* 205*/ 0x5d8844e7L,0x8a4bf380L,0x15a01d70L,0x79f5c028L,0x66be3b8cL,
    /* 210*/ 0xf3e42b53L,0x56990039L,0x2c0c3182L,0x5e16407cL,0xecc04515L,
    /* 215*/ 0x6c440284L,0x4cb6701aL,0x13bfc142L,0x9d039f6aL,0x4f6e92c8L,
    /* 220*/ 0xa1407c62L,0x8483a095L,0xc70ae1c4L,0xe20213a2L,0xbacafc41L,
    /* 225*/ 0x4ecc12b3L,0x4bee3646L,0x1fe807aeL,0x25217f9cL,0x35dde5f5L,
    /* 230*/ 0x7a7dd6ceL,0xf89cce50L,0xac07b718L,0x7e73d2c6L,0xe563e76cL,
    /* 235*/ 0x123ca536L,0x3948ca56L,0x9019dd49L,0x10aa88d9L,0xc82451e2L,
    /* 240*/ 0x473eb6d6L,0x506fe854L,0xe8bb03a5L,0x332f4c32L,0xfe1e1e72L,
    /* 245*/ 0xb1ae572aL,0x7c0d7bc1L,0xe1c37eb2L,0xf542aa60L,0xf1a48ea0L,
    /* 250*/ 0xd067b89fL,0xbbfa195dL,0x1a049b0dL,0x315946aaL,0x36d1b447L,
    /* 255*/ 0x6d2ebdf0L
        /* End   of S Box 9  */  },
    
    
     {  /* Start of S Box 10  */
    
    /*   0*/ 0x0d188a6dL,0x12cea0dbL,0x7e63740eL,0x6a444821L,0x253d234fL,
    /*   5*/ 0x6ffc6597L,0x94a6bdefL,0x33ee1b2fL,0x0a6c00c0L,0x3aa336b1L,
    /*  10*/ 0x5af55d17L,0x265fb3dcL,0x0e89cf4dL,0x0786b008L,0xc80055b8L,
    /*  15*/ 0x6b17c3ceL,0x72b05a74L,0xd21a8d78L,0xa6b70840L,0xfe8eae77L,
    /*  20*/ 0xed69565cL,0x55e1bcf4L,0x585c2f60L,0xe06f1a62L,0xad67c0cdL,
    /*  25*/ 0x7712af88L,0x9cc26acaL,0x1888053dL,0x37eb853eL,0x9215abd7L,
    /*  30*/ 0xde30adfcL,0x1f1038e6L,0x70c51c8aL,0x8d586c26L,0xf72bdd90L,
    /*  35*/ 0x4dc3ce15L,0x68eaeefaL,0xd0e9c8b9L,0x200f9c44L,0xddd141baL,
    /*  40*/ 0x024bf1d3L,0x0f64c9d4L,0xc421e9e9L,0x9d11c14cL,0x9a0dd9e4L,
    /*  45*/ 0x5f92ec19L,0x1b980df0L,0x1dcc4542L,0xb8fe8c56L,0x0c9c9167L,
    /*  50*/ 0x4e81eb49L,0xca368f27L,0xe3603b37L,0xea08acccL,0xac516992L,
    /*  55*/ 0xc34f513bL,0x804d100dL,0x6edca4c4L,0xfc912939L,0x29d219b0L,
    /*  60*/ 0x278aaa3cL,0x4868da7dL,0x54e890b7L,0xb46d735aL,0x514589aaL,
    /*  65*/ 0xd6c630afL,0x4980dfe8L,0xbe3ccc55L,0x59d41202L,0x650c078bL,
    /*  70*/ 0xaf3a9e7bL,0x3ed9827aL,0x9e79fc6eL,0xaadbfbaeL,0xc5f7d803L,
    /*  75*/ 0x3daf7f50L,0x67b4f465L,0x73406e11L,0x39313f8cL,0x8a6e6686L,
    /*  80*/ 0xd8075f1fL,0xd3cbfed1L,0x69c7e49cL,0x930581e0L,0xe4b1a5a8L,
    /*  85*/ 0xbbc45472L,0x09ddbf58L,0xc91d687eL,0xbdbffda5L,0x88c08735L,
    /*  90*/ 0xe9e36bf9L,0xdb5ea9b6L,0x95559404L,0x08f432fbL,0xe24ea281L,
    /*  95*/ 0x64663579L,0x000b8010L,0x7914e7d5L,0x32fd0473L,0xd1a7f0a4L,
    /* 100*/ 0x445ab98eL,0xec72993fL,0xa29a4d32L,0xb77306d8L,0xc7c97cf6L,
    /* 105*/ 0x7b6ab645L,0xf5ef7adfL,0xfb2e15f7L,0xe747f757L,0x5e944354L,
    /* 110*/ 0x234a2669L,0x47e46359L,0x9b9d11a9L,0x40762cedL,0x56f1de98L,
    /* 115*/ 0x11334668L,0x890a9a70L,0x1a296113L,0xb3bd4af5L,0x163b7548L,
    /* 120*/ 0xd51b4f84L,0xb99b2abcL,0x3cc1dc30L,0xa9f0b56cL,0x812272b2L,
    /* 125*/ 0x0b233a5fL,0xb650dbf2L,0xf1a0771bL,0x36562b76L,0xdc037b0fL,
    /* 130*/ 0x104c97ffL,0xc2ec98d2L,0x90596f22L,0x28b6620bL,0xdf42b212L,
    /* 135*/ 0xfdbc4243L,0xf3fb175eL,0x4a2d8b00L,0xe8f3869bL,0x30d69bc3L,
    /* 140*/ 0x853714c8L,0xa7751d2eL,0x31e56deaL,0xd4840b0cL,0x9685d783L,
    /* 145*/ 0x068c9333L,0x8fba032cL,0x76d7bb47L,0x6d0ee22bL,0xb546794bL,
    /* 150*/ 0xd971b894L,0x8b09d253L,0xa0ad5761L,0xee77ba06L,0x46359f31L,
    /* 155*/ 0x577cc7ecL,0x52825efdL,0xa4beed95L,0x9825c52aL,0xeb48029aL,
    /* 160*/ 0xbaae59f8L,0xcf490ee1L,0xbc990164L,0x8ca49dfeL,0x4f38a6e7L,
    /* 165*/ 0x2ba98389L,0x8228f538L,0x199f64acL,0x01a1cac5L,0xa8b51641L,
    /* 170*/ 0x5ce72d01L,0x8e5df26bL,0x60f28e1eL,0xcd5be125L,0xe5b376bfL,
    /* 175*/ 0x1c8d3116L,0x7132cbb3L,0xcb7ae320L,0xc0fa5366L,0xd7653e34L,
    /* 180*/ 0x971c88c2L,0xc62c7dd0L,0x34d0a3daL,0x868f6709L,0x7ae6fa8fL,
    /* 185*/ 0x22bbd523L,0x66cd3d5bL,0x1ef9288dL,0xf9cf58c1L,0x5b784e80L,
    /* 190*/ 0x7439a191L,0xae134c36L,0x9116c463L,0x2e9e1396L,0xf8611f3aL,
    /* 195*/ 0x2d2f3307L,0x247f37ddL,0xc1e2ff9dL,0x43c821e5L,0x05ed5cabL,
    /* 200*/ 0xef74e80aL,0x4cca6028L,0xf0ac3cbdL,0x5d874b29L,0x6c62f6a6L,
    /* 205*/ 0x4b2a2ef3L,0xb1aa2087L,0x62a5d0a3L,0x0327221cL,0xb096b4c6L,
    /* 210*/ 0x417ec693L,0xaba840d6L,0x789725ebL,0xf4b9e02dL,0xe6e00975L,
    /* 215*/ 0xcc04961aL,0x63f624bbL,0x7fa21ecbL,0x2c01ea7fL,0xb2415005L,
    /* 220*/ 0x2a8bbeb5L,0x83b2b14eL,0xa383d1a7L,0x5352f96aL,0x043ecdadL,
    /* 225*/ 0xce1918a1L,0xfa6be6c9L,0x50def36fL,0xf6b80ce2L,0x4543ef7cL,
    /* 230*/ 0x9953d651L,0xf257955dL,0x87244914L,0xda1e0a24L,0xffda4785L,
    /* 235*/ 0x14d327a2L,0x3b93c29fL,0x840684b4L,0x61ab71a0L,0x9f7b784aL,
    /* 240*/ 0x2fd570cfL,0x15955bdeL,0x38f8d471L,0x3534a718L,0x133fb71dL,
    /* 245*/ 0x3fd80f52L,0x4290a8beL,0x75ff44c7L,0xa554e546L,0xe1023499L,
    /* 250*/ 0xbf2652e3L,0x7d20399eL,0xa1df7e82L,0x177092eeL,0x217dd3f1L,
    /* 255*/ 0x7c1ff8d9L
        /* End   of S Box 10  */  },
    
    
     {  /* Start of S Box 11  */
    
    /*   0*/ 0x12113f2eL,0xbfbd0785L,0xf11793fbL,0xa5bff566L,0x83c7b0e5L,
    /*   5*/ 0x72fb316bL,0x75526a9aL,0x41e0e612L,0x7156ba09L,0x53ce7deeL,
    /*  10*/ 0x0aa26881L,0xa43e0d7dL,0x3da73ca3L,0x182761edL,0xbd5077ffL,
    /*  15*/ 0x56db4aa0L,0xe792711cL,0xf0a4eb1dL,0x7f878237L,0xec65c4e8L,
    /*  20*/ 0x08dc8d43L,0x0f8ce142L,0x8258abdaL,0xf4154e16L,0x49dec2fdL,
    /*  25*/ 0xcd8d5705L,0x6c2c3a0fL,0x5c12bb88L,0xeff3cdb6L,0x2c89ed8cL,
    /*  30*/ 0x7beba967L,0x2a142157L,0xc6d0836fL,0xb4f97e96L,0x6931e969L,
    /*  35*/ 0x514e6c7cL,0xa7792600L,0x0bbbf780L,0x59671bbdL,0x0707b676L,
    /*  40*/ 0x37482d93L,0x80af1479L,0x3805a60dL,0xe1f4cac1L,0x580b3074L,
    /*  45*/ 0x30b8d6ceL,0x05a304beL,0xd176626dL,0xebca97f3L,0xbb201f11L,
    /*  50*/ 0x6a1afe23L,0xffaa86e4L,0x62b4da49L,0x1b6629f5L,0xf5d9e092L,
    /*  55*/ 0xf37f3dd1L,0x619bd45bL,0xa6ec8e4fL,0x29c80939L,0x0c7c0c34L,
    /*  60*/ 0x9cfe6e48L,0xe65fd3acL,0x73613b65L,0xb3c669f9L,0xbe2e8a9eL,
    /*  65*/ 0x286f9678L,0x5797fd13L,0x99805d75L,0xcfb641c5L,0xa91074baL,
    /*  70*/ 0x6343af47L,0x6403cb46L,0x8894c8dbL,0x2663034cL,0x3c40dc5eL,
    /*  75*/ 0x00995231L,0x96789aa2L,0x2efde4b9L,0x7dc195e1L,0x547dadd5L,
    /*  80*/ 0x06a8ea04L,0xf2347a63L,0x5e0dc6f7L,0x8462dfc2L,0x1e6b2c3cL,
    /*  85*/ 0x9bd275b3L,0x91d419e2L,0xbcefd17eL,0xb9003924L,0xd07e7320L,
    /*  90*/ 0xdef0495cL,0xc36ad00eL,0x1785b1abL,0x92e20bcfL,0xb139f0e9L,
    /*  95*/ 0x675bb9a1L,0xaecfa4afL,0x132376cbL,0xe84589d3L,0x79a05456L,
    /* 100*/ 0xa2f860bcL,0x1ae4f8b5L,0x20df4db4L,0xa1e1428bL,0x3bf60a1aL,
    /* 105*/ 0x27ff7bf1L,0xcb44c0e7L,0xf7f587c4L,0x1f3b9b21L,0x94368f01L,
    /* 110*/ 0x856e23a4L,0x6f93de3fL,0x773f5bbfL,0x8b22056eL,0xdf41f654L,
    /* 115*/ 0xb8246ff4L,0x8d57bff2L,0xd57167eaL,0xc5699f22L,0x40734ba7L,
    /* 120*/ 0x5d5c2772L,0x033020a8L,0xe30a7c4dL,0xadc40fd6L,0x76353441L,
    /* 125*/ 0x5aa5229bL,0x81516590L,0xda49f14eL,0x4fa672a5L,0x4d9fac5fL,
    /* 130*/ 0x154be230L,0x8a7a5cc0L,0xce3d2f84L,0xcca15514L,0x5221360cL,
    /* 135*/ 0xaf0fb81eL,0x5bdd5873L,0xf6825f8fL,0x1113d228L,0x70ad996cL,
    /* 140*/ 0x93320051L,0x60471c53L,0xe9ba567bL,0x3a462ae3L,0x5f55e72dL,
    /* 145*/ 0x1d3c5ad7L,0xdcfc45ecL,0x34d812efL,0xfa96ee1bL,0x369d1ef8L,
    /* 150*/ 0xc9b1a189L,0x7c1d3555L,0x50845edcL,0x4bb31877L,0x8764a060L,
    /* 155*/ 0x8c9a9415L,0x230e1a3aL,0xb05e9133L,0x242b9e03L,0xa3b99db7L,
    /* 160*/ 0xc2d7fb0aL,0x3333849dL,0xd27278d4L,0xb5d3efa6L,0x78ac28adL,
    /* 165*/ 0xc7b2c135L,0x0926ecf0L,0xc1374c91L,0x74f16d98L,0x2274084aL,
    /* 170*/ 0x3f6d9cfaL,0x7ac0a383L,0xb73aff1fL,0x3909a23dL,0x9f1653aeL,
    /* 175*/ 0x4e2f3e71L,0xca5ab22aL,0xe01e3858L,0x90c5a7ebL,0x3e4a17dfL,
    /* 180*/ 0xaa987fb0L,0x488bbd62L,0xb625062bL,0x2d776bb8L,0x43b5fc08L,
    /* 185*/ 0x1490d532L,0xd6d12495L,0x44e89845L,0x2fe60118L,0x9d9ef950L,
    /* 190*/ 0xac38133eL,0xd3864329L,0x017b255aL,0xfdc2dd26L,0x256851e6L,
    /* 195*/ 0x318e7086L,0x2bfa4861L,0x89eac706L,0xee5940c6L,0x68c3bc2fL,
    /* 200*/ 0xe260334bL,0x98da90bbL,0xf818f270L,0x4706d897L,0x212d3799L,
    /* 205*/ 0x4cf7e5d0L,0xd9c9649fL,0xa85db5cdL,0x35e90e82L,0x6b881152L,
    /* 210*/ 0xab1c02c7L,0x46752b02L,0x664f598eL,0x45ab2e64L,0xc4cdb4b2L,
    /* 215*/ 0xba42107fL,0xea2a808aL,0x971bf3deL,0x4a54a836L,0x4253aeccL,
    /* 220*/ 0x1029be68L,0x6dcc9225L,0xe4bca56aL,0xc0ae50b1L,0x7e011d94L,
    /* 225*/ 0xe59c162cL,0xd8e5c340L,0xd470fa0bL,0xb2be79ddL,0xd783889cL,
    /* 230*/ 0x1cede8f6L,0x8f4c817aL,0xddb785c9L,0x860232d8L,0x198aaad9L,
    /* 235*/ 0xa0814738L,0x3219cffcL,0x169546d2L,0xfc0cb759L,0x55911510L,
    /* 240*/ 0x04d5cec3L,0xed08cc3bL,0x0d6cf427L,0xc8e38ccaL,0x0eeee3feL,
    /* 245*/ 0x9ee7d7c8L,0xf9f24fa9L,0xdb04b35dL,0x9ab0c9e0L,0x651f4417L,
    /* 250*/ 0x028f8b07L,0x6e28d9aaL,0xfba96319L,0x8ed66687L,0xfecbc58dL,
    /* 255*/ 0x954ddb44L
        /* End   of S Box 11  */  },
    
    
     {  /* Start of S Box 12  */
    
    /*   0*/ 0x7b0bdffeL,0x865d16b1L,0x49a058c0L,0x97abaa3fL,0xcaacc75dL,
    /*   5*/ 0xaba6c17dL,0xf8746f92L,0x6f48aeedL,0x8841d4b5L,0xf36a146aL,
    /*  10*/ 0x73c390abL,0xe6fb558fL,0x87b1019eL,0x26970252L,0x246377b2L,
    /*  15*/ 0xcbf676aeL,0xf923db06L,0xf7389116L,0x14c81a90L,0x83114eb4L,
    /*  20*/ 0x8b137559L,0x95a86a7aL,0xd5b8da8cL,0xc4df780eL,0x5a9cb3e2L,
    /*  25*/ 0xe44d4062L,0xe8dc8ef6L,0x9d180845L,0x817ad18bL,0xc286c85bL,
    /*  30*/ 0x251f20deL,0xee6d5933L,0xf6edef81L,0xd4d16c1eL,0xc94a0c32L,
    /*  35*/ 0x8437fd22L,0x3271ee43L,0x42572aeeL,0x5f91962aL,0x1c522d98L,
    /*  40*/ 0x59b23f0cL,0xd86b8804L,0x08c63531L,0x2c0d7a40L,0xb97c4729L,
    /*  45*/ 0x04964df9L,0x13c74a17L,0x5878362fL,0x4c808cd6L,0x092cb1e0L,
    /*  50*/ 0x6df02885L,0xa0c2105eL,0x8aba9e68L,0x64e03057L,0xe5d61325L,
    /*  55*/ 0x0e43a628L,0x16dbd62bL,0x2733d90bL,0x3ae57283L,0xc0c1052cL,
    /*  60*/ 0x4b6fb620L,0x37513953L,0xfc898bb3L,0x471b179fL,0xdf6e66b8L,
    /*  65*/ 0xd32142f5L,0x9b30fafcL,0x4ed92549L,0x105c6d99L,0x4acd69ffL,
    /*  70*/ 0x2b1a27d3L,0x6bfcc067L,0x6301a278L,0xad36e6f2L,0xef3ff64eL,
    /*  75*/ 0x56b3cadbL,0x0184bb61L,0x17beb9fdL,0xfaec6109L,0xa2e1ffa1L,
    /*  80*/ 0x2fd224f8L,0x238f5be6L,0x8f8570cfL,0xaeb5f25aL,0x4f1d3e64L,
    /*  85*/ 0x4377eb24L,0x1fa45346L,0xb2056386L,0x52095e76L,0xbb7b5adcL,
    /*  90*/ 0x3514e472L,0xdde81e6eL,0x7acea9c4L,0xac15cc48L,0x71c97d93L,
    /*  95*/ 0x767f941cL,0x911052a2L,0xffea09bfL,0xfe3ddcf0L,0x15ebf3aaL,
    /* 100*/ 0x9235b8bcL,0x75408615L,0x9a723437L,0xe1a1bd38L,0x33541b7eL,
    /* 105*/ 0x1bdd6856L,0xb307e13eL,0x90814bb0L,0x51d7217bL,0x0bb92219L,
    /* 110*/ 0x689f4500L,0xc568b01fL,0x5df3d2d7L,0x3c0ecd0dL,0x2a0244c8L,
    /* 115*/ 0x852574e8L,0xe72f23a9L,0x8e26ed02L,0x2d92cbddL,0xdabc0458L,
    /* 120*/ 0xcdf5feb6L,0x9e4e8dccL,0xf4f1e344L,0x0d8c436dL,0x4427603bL,
    /* 125*/ 0xbdd37fdaL,0x80505f26L,0x8c7d2b8eL,0xb73273c5L,0x397362eaL,
    /* 130*/ 0x618a3811L,0x608bfb88L,0x06f7d714L,0x212e4677L,0x28efceadL,
    /* 135*/ 0x076c0371L,0x36a3a4d9L,0x5487b455L,0x3429a365L,0x65d467acL,
    /* 140*/ 0x78ee7eebL,0x99bf12b7L,0x4d129896L,0x772a5601L,0xcce284c7L,
    /* 145*/ 0x2ed85c21L,0xd099e8a4L,0xa179158aL,0x6ac0ab1aL,0x299a4807L,
    /* 150*/ 0xbe67a58dL,0xdc19544aL,0xb8949b54L,0x8d315779L,0xb6f849c1L,
    /* 155*/ 0x53c5ac34L,0x66de92a5L,0xf195dd13L,0x318d3a73L,0x301ec542L,
    /* 160*/ 0x0cc40da6L,0xf253ade4L,0x467ee566L,0xea5585ecL,0x3baf19bbL,
    /* 165*/ 0x7de9f480L,0x79006e7cL,0xa9b7a197L,0xa44bd8f1L,0xfb2ba739L,
    /* 170*/ 0xec342fd4L,0xed4fd32dL,0x3d1789baL,0x400f5d7fL,0xc798f594L,
    /* 175*/ 0x4506a847L,0x034c0a95L,0xe2162c9dL,0x55a9cfd0L,0x692d832eL,
    /* 180*/ 0xcf9db2caL,0x5e2287e9L,0xd2610ef3L,0x1ae7ecc2L,0x48399ca0L,
    /* 185*/ 0xa7e4269bL,0x6ee3a0afL,0x7065bfe1L,0xa6ffe708L,0x2256804cL,
    /* 190*/ 0x7476e21bL,0x41b0796cL,0x7c243b05L,0x000a950fL,0x1858416bL,
    /* 195*/ 0xf5a53c89L,0xe9fef823L,0x3f443275L,0xe0cbf091L,0x0af27b84L,
    /* 200*/ 0x3ebb0f27L,0x1de6f7f4L,0xc31c29f7L,0xb166de3dL,0x12932ec3L,
    /* 205*/ 0x9c0c0674L,0x5cda81b9L,0xd1bd9d12L,0xaffd7c82L,0x8962bca7L,
    /* 210*/ 0xa342c4a8L,0x62457151L,0x82089f03L,0xeb49c670L,0x5b5f6530L,
    /* 215*/ 0x7e28bad2L,0x20880ba3L,0xf0faafcdL,0xce82b56fL,0x0275335cL,
    /* 220*/ 0xc18e8afbL,0xde601d69L,0xba9b820aL,0xc8a2be4fL,0xd7cac335L,
    /* 225*/ 0xd9a73741L,0x115e974dL,0x7f5ac21dL,0x383bf9c6L,0xbcaeb75fL,
    /* 230*/ 0xfd0350ceL,0xb5d06b87L,0x9820e03cL,0x72d5f163L,0xe3644fc9L,
    /* 235*/ 0xa5464c4bL,0x57048fcbL,0x9690c9dfL,0xdbf9eafaL,0xbff4649aL,
    /* 240*/ 0x053c00e3L,0xb4b61136L,0x67593dd1L,0x503ee960L,0x9fb4993aL,
    /* 245*/ 0x19831810L,0xc670d518L,0xb05b51d8L,0x0f3a1ce5L,0x6caa1f9cL,
    /* 250*/ 0xaacc31beL,0x949ed050L,0x1ead07e7L,0xa8479abdL,0xd6cffcd5L,
    /* 255*/ 0x936993efL
        /* End   of S Box 12  */  },
    
    
     {  /* Start of S Box 13  */
    
    /*   0*/ 0x472e91cbL,0x5444b5b6L,0x62be5861L,0x1be102c7L,0x63e4b31eL,
    /*   5*/ 0xe81f71b7L,0x9e2317c9L,0x39a408aeL,0x518024f4L,0x1731c66fL,
    /*  10*/ 0x68cbc918L,0x71fb0c9eL,0xd03b7fddL,0x7d6222ebL,0x9057eda3L,
    /*  15*/ 0x1a34a407L,0x8cc2253dL,0xb6f6979dL,0x835675dcL,0xf319be9fL,
    /*  20*/ 0xbe1cd743L,0x4d32fee4L,0x77e7d887L,0x37e9ebfdL,0x15f851e8L,
    /*  25*/ 0x23dc3706L,0x19d78385L,0xbd506933L,0xa13ad4a6L,0x913f1a0eL,
    /*  30*/ 0xdde560b9L,0x9a5f0996L,0xa65a0435L,0x48d34c4dL,0xe90839a7L,
    /*  35*/ 0x8abba54eL,0x6fd13ce1L,0xc7eebd3cL,0x0e297602L,0x58b9bbb4L,
    /*  40*/ 0xef7901e6L,0x64a28a62L,0xa509875aL,0xf8834442L,0x2702c709L,
    /*  45*/ 0x07353f31L,0x3b39f665L,0xf5b18b49L,0x4010ae37L,0x784de00bL,
    /*  50*/ 0x7a1121e9L,0xde918ed3L,0xc8529dcdL,0x816a5d05L,0x02ed8298L,
    /*  55*/ 0x04e3dd84L,0xfd2bc3e2L,0xaf167089L,0x96af367eL,0xa4da6232L,
    /*  60*/ 0x18ff7325L,0x05f9a9f1L,0x4fefb9f9L,0xcd94eaa5L,0xbfaa5069L,
    /*  65*/ 0xa0b8c077L,0x60d86f57L,0xfe71c813L,0x29ebd2c8L,0x4ca86538L,
    /*  70*/ 0x6bf1a030L,0xa237b88aL,0xaa8af41dL,0xe1f7b6ecL,0xe214d953L,
    /*  75*/ 0x33057879L,0x49caa736L,0xfa45cff3L,0xc063b411L,0xba7e27d0L,
    /*  80*/ 0x31533819L,0x2a004ac1L,0x210efc3fL,0x2646885eL,0x66727dcfL,
    /*  85*/ 0x9d7fbf54L,0xa8dd0ea8L,0x3447caceL,0x3f0c14dbL,0xb8382aacL,
    /*  90*/ 0x4ace3539L,0x0a518d51L,0x95178981L,0x35aee2caL,0x73f0f7e3L,
    /*  95*/ 0x94281140L,0x59d0e523L,0xd292cb88L,0x565d1b27L,0x7ec8fbafL,
    /* 100*/ 0x069af08dL,0xc127fd24L,0x0bc77b10L,0x5f03e7efL,0x453e99baL,
    /* 105*/ 0xeed9ff7fL,0x87b55215L,0x7915ab4cL,0xd389a358L,0x5e75ce6dL,
    /* 110*/ 0x28d655c0L,0xdad26c73L,0x2e2510ffL,0x9fa7eeccL,0x1d0629c3L,
    /* 115*/ 0xdc9c9c46L,0x2d67ecd7L,0xe75e94bdL,0x3d649e2aL,0x6c413a2bL,
    /* 120*/ 0x706f0d7cL,0xdfb0127bL,0x4e366b55L,0x2c825650L,0x24205720L,
    /* 125*/ 0xb5c998f7L,0x3e95462cL,0x756e5c72L,0x3259488fL,0x11e8771aL,
    /* 130*/ 0xa7c0a617L,0x577663e5L,0x089b6401L,0x8eab1941L,0xae55ef8cL,
    /* 135*/ 0x3aac5460L,0xd4e6262fL,0x5d979a47L,0xb19823b0L,0x7f8d6a0cL,
    /* 140*/ 0xffa08683L,0x0170cd0fL,0x858cd5d8L,0x53961c90L,0xc4c61556L,
    /* 145*/ 0x41f2f226L,0xcfcd062dL,0xf24c03b8L,0xea81df5bL,0x7be2fa52L,
    /* 150*/ 0xb361f98bL,0xc2901316L,0x55ba4bbcL,0x93b234a9L,0x0fbc6603L,
    /* 155*/ 0x80a96822L,0x6d60491fL,0x22bd00f8L,0xbcad5aadL,0x52f3f13bL,
    /* 160*/ 0x42fd2b28L,0xb41dd01cL,0xc52c93bfL,0xfc663094L,0x8f58d100L,
    /* 165*/ 0x43fecc08L,0xc6331e5dL,0xe6480f66L,0xca847204L,0x4bdf1da0L,
    /* 170*/ 0x30cc2efbL,0x13e02deaL,0xfb49ac45L,0xf9d4434fL,0xf47c5b9cL,
    /* 175*/ 0x148879c2L,0x039fc234L,0xa3db9bfcL,0xd1a1dc5cL,0x763d7cd4L,
    /* 180*/ 0xed6d2f93L,0xab13af6eL,0x1e8e054aL,0xd68f4f9aL,0xc30484b3L,
    /* 185*/ 0xd7d50afaL,0x6930855fL,0xcc07db95L,0xce746db1L,0x744e967dL,
    /* 190*/ 0xf16cf575L,0x8643e8b5L,0xf0eae38eL,0xe52de1d1L,0x6587dae0L,
    /* 195*/ 0x0c4b8121L,0x1c7ac567L,0xac0db20aL,0x36c3a812L,0x5b1a4514L,
    /* 200*/ 0xa9a3f868L,0xb9263baaL,0xcb3ce9d2L,0xe44fb1a4L,0x9221bc82L,
    /* 205*/ 0xb29390feL,0x6ab41863L,0x974a3e2eL,0x89f531c5L,0x255ca13eL,
    /* 210*/ 0x8b65d348L,0xec248f78L,0xd8fc16f0L,0x50ecdeeeL,0x09010792L,
    /* 215*/ 0x3c7d1fb2L,0xeba5426bL,0x847b417aL,0x468b40d9L,0x8dc4e680L,
    /* 220*/ 0x7cc1f391L,0x2f1eb086L,0x6e5baa6aL,0xe0b395daL,0xe31b2cf6L,
    /* 225*/ 0xd9690b0dL,0x729ec464L,0x38403ddeL,0x610b80a2L,0x5cf433abL,
    /* 230*/ 0xb0785fc4L,0xd512e4c6L,0xbbb7d699L,0x5a86591bL,0x10cf5376L,
    /* 235*/ 0x12bf9f4bL,0x980fbaa1L,0x992a4e70L,0x20fa7ae7L,0xf7996ebbL,
    /* 240*/ 0xc918a2beL,0x82de74f2L,0xad54209bL,0xf66b4d74L,0x1fc5b771L,
    /* 245*/ 0x169d9229L,0x887761dfL,0x00b667d5L,0xdb425e59L,0xb72f2844L,
    /* 250*/ 0x9b0ac1f5L,0x9c737e3aL,0x2b85476cL,0x6722add6L,0x44a63297L,
    /* 255*/ 0x0d688cedL
        /* End   of S Box 13  */  },
    
    
     {  /* Start of S Box 14  */
    
    /*   0*/ 0xabc59484L,0x4107778aL,0x8ad94c6fL,0xfe83df90L,0x0f64053fL,
    /*   5*/ 0xd1292e9dL,0xc5744356L,0x8dd1abb4L,0x4c4e7667L,0xfb4a7fc1L,
    /*  10*/ 0x74f402cbL,0x70f06afdL,0xa82286f2L,0x918dd076L,0x7a97c5ceL,
    /*  15*/ 0x48f7bde3L,0x6a04d11dL,0xac243ef7L,0x33ac10caL,0x2f7a341eL,
    /*  20*/ 0x5f75157aL,0xf4773381L,0x591c870eL,0x78df8cc8L,0x22f3adb0L,
    /*  25*/ 0x251a5993L,0x09fbef66L,0x796942a8L,0x97541d2eL,0x2373daa9L,
    /*  30*/ 0x1bd2f142L,0xb57e8eb2L,0xe1a5bfdbL,0x7d0efa92L,0xb3442c94L,
    /*  35*/ 0xd2cb6447L,0x386ac97eL,0x66d61805L,0xbdada15eL,0x11bc1aa7L,
    /*  40*/ 0x14e9f6eaL,0xe533a0c0L,0xf935ee0aL,0x8fee8a04L,0x810d6d85L,
    /*  45*/ 0x7c68b6d6L,0x4edc9aa2L,0x956e897dL,0xed87581aL,0x264be9d7L,
    /*  50*/ 0xff4ddb29L,0x823857c2L,0xe005a9a0L,0xf1cc2450L,0x6f9951e1L,
    /*  55*/ 0xaade2310L,0xe70c75f5L,0x83e1a31fL,0x4f7dde8eL,0xf723b563L,
    /*  60*/ 0x368e0928L,0x86362b71L,0x21e8982dL,0xdfb3f92bL,0x44676352L,
    /*  65*/ 0x99efba31L,0x2eab4e1cL,0xfc6ca5e7L,0x0ebe5d4eL,0xa0717d0cL,
    /*  70*/ 0xb64f8199L,0x946b31a1L,0x5656cbc6L,0xcffec3efL,0x622766c9L,
    /*  75*/ 0xfa211e35L,0x52f98b89L,0x6d01674bL,0x4978a802L,0xf651f701L,
    /*  80*/ 0x15b0d43dL,0xd6ff4683L,0x3463855fL,0x672ba29cL,0xbc128312L,
    /*  85*/ 0x4626a70dL,0xc8927a5aL,0xb8481cf9L,0x1c962262L,0xa21196baL,
    /*  90*/ 0xbaba5ee9L,0x5bb162d0L,0x69943bd1L,0x0c47e35cL,0x8cc9619aL,
    /*  95*/ 0xe284d948L,0x271bf264L,0xc27fb398L,0x4bc70897L,0x60cf202cL,
    /* 100*/ 0x7f42d6aaL,0xa5a13506L,0x5d3e8860L,0xcea63d3cL,0x63bf0a8fL,
    /* 105*/ 0xf02e9efaL,0xb17b0674L,0xb072b1d3L,0x06e5723bL,0x3737e436L,
    /* 110*/ 0x24aa49c7L,0x0ded0d18L,0xdb256b14L,0x58b27877L,0xecb49f54L,
    /* 115*/ 0x6c40256aL,0x6ea92ffbL,0x3906aa4cL,0xc9866fd5L,0x4549323eL,
    /* 120*/ 0xa7b85fabL,0x1918cc27L,0x7308d7b5L,0x1e16c7adL,0x71850b37L,
    /* 125*/ 0x3095fd78L,0xa63b70e6L,0xd880e2aeL,0x3e282769L,0xa39ba6bcL,
    /* 130*/ 0x98700fa3L,0xf34c53e8L,0x288af426L,0xb99d930fL,0xf5b99df1L,
    /* 135*/ 0xe9d0c8cfL,0x5ac8405dL,0x50e7217bL,0x511fbbbeL,0x2ca2e639L,
    /* 140*/ 0xc020301bL,0x356dbc00L,0x8e43ddb9L,0x4d327b4aL,0xf20ff3edL,
    /* 145*/ 0x1dbb29bdL,0x43d44779L,0xa1b68f70L,0x6114455bL,0xe63d280bL,
    /* 150*/ 0x6bf6ff65L,0x10fc39e5L,0x3dae126eL,0xc1d7cf11L,0xcb60b795L,
    /* 155*/ 0x1789d5b3L,0x9bca36b7L,0x08306075L,0x84615608L,0x8b3a0186L,
    /* 160*/ 0xe88fbecdL,0x7ba47c4dL,0x2de44dacL,0x653fe58dL,0xcca0b968L,
    /* 165*/ 0xd7fa0e72L,0x93901780L,0x1f2c26ccL,0xae595b6bL,0xa9ecea9bL,
    /* 170*/ 0xe3dbf8c4L,0x319cc130L,0x12981196L,0x01a3a4deL,0x32c454b6L,
    /* 175*/ 0x755bd817L,0x3cd871e4L,0xa48bb8daL,0x02fdec09L,0xfd2dc2e2L,
    /* 180*/ 0x9e578088L,0x9a9f916dL,0x4065fe6cL,0x1853999eL,0xc7793f23L,
    /* 185*/ 0xdc1016bbL,0x969355ffL,0x7ef292f6L,0xcdce4adcL,0x05e24416L,
    /* 190*/ 0x85c16c46L,0xd441d37fL,0x57bd6855L,0x8746f54fL,0x9ca773dfL,
    /* 195*/ 0x770bae22L,0x54828413L,0xb75e4b19L,0x04c35c03L,0xbf7cca07L,
    /* 200*/ 0x2955c4ddL,0x721db041L,0xb2394f33L,0x03f51387L,0x89b73c9fL,
    /* 205*/ 0x0b1737f3L,0x07e69024L,0x9231d245L,0x76193861L,0x88159c15L,
    /* 210*/ 0xdeb552d9L,0xd9767e40L,0x20c6c0c3L,0x4281977cL,0xf8afe1e0L,
    /* 215*/ 0xd32a0751L,0x3fc27432L,0xddf1dcc5L,0x68581f34L,0x3bcd5025L,
    /* 220*/ 0x0091b2eeL,0x4aeb6944L,0x1602e743L,0xea09eb58L,0xef0a2a8bL,
    /* 225*/ 0x641e03a5L,0xeb50e021L,0x5c8ccef8L,0x802ff0b8L,0xd5e3edfeL,
    /* 230*/ 0xc4dd1b49L,0x5334cd2aL,0x13f82d2fL,0x47450c20L,0x55dafbd2L,
    /* 235*/ 0xbec0c6f4L,0xb45d7959L,0x3ad36e8cL,0x0aa8ac57L,0x1a3c8d73L,
    /* 240*/ 0xe45aafb1L,0x9f664838L,0xc6880053L,0xd0039bbfL,0xee5f19ebL,
    /* 245*/ 0xca0041d8L,0xbbea3aafL,0xda628291L,0x9d5c95d4L,0xadd504a6L,
    /* 250*/ 0xc39ab482L,0x5e9e14a4L,0x2be065f0L,0x2a13fc3aL,0x9052e8ecL,
    /* 255*/ 0xaf6f5afcL
        /* End   of S Box 14  */  },
    
    
     {  /* Start of S Box 15  */
    
    /*   0*/ 0x519aa8b5L,0xbb303da9L,0xe00e2b10L,0xdfa6c1dbL,0x2e6b952eL,
    /*   5*/ 0xee10dc23L,0x37936d09L,0x1fc42e92L,0x39b25a9fL,0x13ff89f4L,
    /*  10*/ 0xc8f53feaL,0x18500bc7L,0x95a0379dL,0x98f751c2L,0x2289c42fL,
    /*  15*/ 0xa21e4098L,0x6f391f41L,0xf27e7e58L,0x0d0df887L,0x4b79d540L,
    /*  20*/ 0x8e8409aaL,0x71fe46f8L,0x688a9b29L,0x3f08b548L,0x84abe03aL,
    /*  25*/ 0x5e91b6c1L,0xfde4c2aeL,0x251d0e72L,0x92d4fee5L,0xf9371967L,
    /*  30*/ 0x9175108fL,0xe6e81835L,0x8c8cb8eeL,0xb55a67b3L,0xcef138ccL,
    /*  35*/ 0x8b256268L,0x00d815f5L,0xe8810812L,0x77826189L,0xea73267dL,
    /*  40*/ 0x19b90f8dL,0x45c33bb4L,0x82477056L,0xe1770075L,0x09467aa6L,
    /*  45*/ 0xa7c6f54aL,0x79768742L,0x61b86bcaL,0xd6644a44L,0xe33f0171L,
    /*  50*/ 0xc229fbcdL,0x41b08febL,0xd1903e30L,0x65ec9080L,0x563d6fbdL,
    /*  55*/ 0xf56da488L,0xebf64cd8L,0x4934426bL,0x7c8592fcL,0x6aca8cf2L,
    /*  60*/ 0x1cea111bL,0x3a57ee7aL,0xace11c0dL,0x9942d85eL,0xc4613407L,
    /*  65*/ 0xfa8e643bL,0x327fc701L,0x4ca9be82L,0x3352526dL,0x2c047f63L,
    /*  70*/ 0xf3a8f7ddL,0x1a4a98a8L,0x762ed4d1L,0x27c75008L,0xbdf497c0L,
    /*  75*/ 0x7a7b84dfL,0x315c28abL,0x801f93e3L,0xf19b0ca1L,0x8f14e46aL,
    /*  80*/ 0xe48ba333L,0x9605e625L,0xf03ecb60L,0x60385f2dL,0x902845baL,
    /*  85*/ 0x7f96d66fL,0x24bff05cL,0x2820730bL,0x947133cbL,0xd444828aL,
    /*  90*/ 0xb343f6f1L,0x0bef4705L,0x8da574f9L,0x01e25d6cL,0x1732793eL,
    /*  95*/ 0x4f0f7b27L,0x364b7117L,0xb2d1da77L,0xa6c5f1e9L,0x574ca5b1L,
    /* 100*/ 0x386a3076L,0xad6894d6L,0x1156d7faL,0xa48d1d9aL,0x4794c0afL,
    /* 105*/ 0x150c0aa0L,0x26d348acL,0x29fdeabeL,0xa5dede53L,0x81671e8eL,
    /* 110*/ 0x594ee3bfL,0xa96c56e6L,0x3426a726L,0xc5976579L,0xbc22e5e4L,
    /* 115*/ 0xc1006319L,0xdaafdd2aL,0xa1a1aa83L,0x3badd0e7L,0xc3b14981L,
    /* 120*/ 0xd770b155L,0xccd7c693L,0x42e944c5L,0x03e0064fL,0xca95b4efL,
    /* 125*/ 0x3dee81c3L,0xfbbcd98cL,0x1e07e15bL,0x667ce949L,0xe7d6773fL,
    /* 130*/ 0x21b6124bL,0x6b2a6ef7L,0xd3278a9cL,0x9a988304L,0x75d2ae9bL,
    /* 135*/ 0xfe49e2ffL,0x9bc24f46L,0x74cc2cf6L,0xa3139f36L,0x6c9ef35aL,
    /* 140*/ 0x9fc1dffeL,0x9e5facdcL,0xaadc8bbbL,0x5abdbc5fL,0x44b3b390L,
    /* 145*/ 0xf754efa7L,0x5fe3bdb7L,0x4e59c886L,0x06a4c984L,0xa0338878L,
    /* 150*/ 0xcd513cd7L,0x63ebd27eL,0x8aba80adL,0x50da144eL,0x5d9f4e97L,
    /* 155*/ 0x025b751cL,0x2d580200L,0xb6c05837L,0x580aa15dL,0x54022a6eL,
    /* 160*/ 0xb41a5415L,0x4863fab6L,0xb0b79957L,0x46d0d159L,0xdc2b8650L,
    /* 165*/ 0x20a7bb0cL,0x4a032974L,0xec8636a2L,0x8548f24cL,0xf6a2bf16L,
    /* 170*/ 0x1088f4b0L,0x0c2f3a94L,0x525dc396L,0x14065785L,0x2b4dca52L,
    /* 175*/ 0x08aeed39L,0xabedfc99L,0xb1dbcf18L,0x87f85bbcL,0xae3aff61L,
    /* 180*/ 0x433ccd70L,0x5b23cc64L,0x7b453213L,0x5355c545L,0x9318ec0aL,
    /* 185*/ 0x78692d31L,0x0a21693dL,0xd5666814L,0x05fb59d9L,0xc71985b2L,
    /* 190*/ 0x2abb8e0eL,0xcf6e6c91L,0xd9cfe7c6L,0xefe7132cL,0x9711ab28L,
    /* 195*/ 0x3ce52732L,0x12d516d2L,0x7209a0d0L,0xd278d306L,0x70fa4b7bL,
    /* 200*/ 0x1d407dd3L,0xdb0beba4L,0xbfd97621L,0xa8be21e1L,0x1b6f1b66L,
    /* 205*/ 0x30650ddaL,0xba7ddbb9L,0x7df953fbL,0x9d1c3902L,0xedf0e8d5L,
    /* 210*/ 0xb8741ae0L,0x0f240565L,0x62cd438bL,0xc616a924L,0xaf7a96a3L,
    /* 215*/ 0x35365538L,0xe583af4dL,0x73415eb8L,0x23176a47L,0xfc9ccee8L,
    /* 220*/ 0x7efc9de2L,0x695e03cfL,0xf8ce66d4L,0x88b4781dL,0x67dd9c03L,
    /* 225*/ 0x3e8f9e73L,0xc0c95c51L,0xbe314d22L,0x55aa0795L,0xcb1bb011L,
    /* 230*/ 0xe980fdc8L,0x9c62b7ceL,0xde2d239eL,0x042cadf3L,0xffdf04deL,
    /* 235*/ 0x5ce6a60fL,0xd8c831edL,0xb7b5b9ecL,0xb9cbf962L,0xe253b254L,
    /* 240*/ 0x0735ba1fL,0x16ac917fL,0xdd607c2bL,0x64a335c4L,0x40159a7cL,
    /* 245*/ 0x869222f0L,0x6ef21769L,0x839d20a5L,0xd03b24c9L,0xf412601eL,
    /* 250*/ 0x6d72a243L,0x0e018dfdL,0x89f3721aL,0xc94f4134L,0x2f992f20L,
    /* 255*/ 0x4d87253cL
        /* End   of S Box 15  */  }
    };
    
    /*
     * The following routine is a simple error exit routine  -- it prints a
     * message and aborts
     */
    void
    ErrAbort (s)
    	char   *s;
    {
    	fprintf (stderr, "%s\n", s);
    	exit (1);
    }
    
    
    /*
     * The following routine converts a byte array to an array of word32
     * int.  It is primarily intended to eliminate the byte-ordering problem.
     * VAXes order the bytes in a character array differently than SUN's do. This
     * routine should be portable across different computer architectures.
     * However, it is not very efficient.
     */
    void
    ConvertChunkOfBytes (charBuffer, wordBuffer)
    	/* an input buffer of characters */
    	char    charBuffer[CHUNK_SIZE*4];
    	/* an output buffer of word32's */
    	word32 wordBuffer[CHUNK_SIZE];
    {
    	int     i;
    	word32 t0, t1, t2, t3;
    
    	for (i = 0; i < CHUNK_SIZE; i++) {
    		t0 = charBuffer[4*i];
    		t1 = charBuffer[4*i + 1];
    		t2 = charBuffer[4*i + 2];
    		t3 = charBuffer[4*i + 3];
    		t0 &= 0xffL;
    		t1 &= 0xffL;
    		t2 &= 0xffL;
    		t3 &= 0xffL;
    		wordBuffer[i] = (t0 << 24) | (t1 << 16) | (t2 << 8) | t3;
    	};
    }
    
    /*
     * The following routine trys to read 4*"CHUNK_SIZE" bytes from the input
     * file. It will only return a non-full buffer if an EOF is encountered.
     * 
     * It returns the number of bytes actually read.  If there are any errors, it
     * aborts.  If this routine cannot read all the bytes it's supposed to, it
     * pads the output array, "buf", with trailing 0 bytes.
     */
    int
    ReadChunk (buf)
    	word32 buf[CHUNK_SIZE];
    {
    	char    charBuf[CHUNK_SIZE*4];
    	int     byteCount;
    	int     i;
    
    	byteCount = fread (charBuf, 1, CHUNK_SIZE*4, stdin);
    	if (byteCount < 0)
    			ErrAbort ("error on read");
    	/* Zero out rest of buffer  */
    	for (i = byteCount; i < CHUNK_SIZE*4; i++)
    		charBuf[i] = 0;
    	/*
    	 * The following conversion is required for machines with
    	 * byte-ordering unlike the SUN's (68000's or SPARC)
    	 */
    	ConvertChunkOfBytes (charBuf, buf);
    	return (byteCount);
    }
    
    
    /*
     * HashN is a conceptually simpler and more general version of Hash512.
     * It accepts an input of
     * INPUT_BLOCK_SIZE 32-bit words and produces an output of
     * OUTPUT_BLOCK_SIZE 32-bit words.  The INPUT_BLOCK_SIZE must be at
     * least two words larger than the output, or a serious degradation
     * in security will occur.  In addition, the use of outputs less
     * than 128 bits will often significantly reduce security.  While
     * possible, it requires great caution.
     */
    void
    HashN (output, input)
    	word32 output[OUTPUT_BLOCK_SIZE];
    	word32 input[INPUT_BLOCK_SIZE];
    {
    	static int shiftTable[4] = {16, 8, 16, 24};
    	/* the array of data being hashed  */
    	word32 block[INPUT_BLOCK_SIZE];
    	word32 SBoxEntry;	/* just a temporary */
    	int     shift;
    	int     i;
    	int     index;
    	int     next, last;
    	int     byteInWord;
    
    	/* initialize the block to be encrypted from the input  */
    	for (i = 0; i < INPUT_BLOCK_SIZE; i++)
    		block[i] = input[i];
    
    	for (index = 0; index < SECURITY_LEVEL; index++) {
    		for (byteInWord = 0; byteInWord < 4; byteInWord++) {
    			for (i = 0; i < INPUT_BLOCK_SIZE; i++) {
    				/* compute i+1 and i-1 mod INPUT_BLOCK_SIZE */
    				next = (i + 1) & MASK;
    				last = (i + MASK) & MASK;
    				/* Load an entry from the S-box  */
    				SBoxEntry = standardSBoxes
    					[2*index + ((i / 2) & 1)]
    					[block[i] & 0xffL];
    				/*
    				 * and XOR that entry with the preceding and
    				 * following words
    				 */
    				block[next] ^= SBoxEntry;
    				block[last] ^= SBoxEntry;
    			};
    			/*
    			 * Rotate right all 32-bit words in the entire block
    			 * at once.
    			 */
    			shift = shiftTable[byteInWord];
    			for (i = 0; i < INPUT_BLOCK_SIZE; i++)
    				block[i] = (block[i] >> shift) |
    					(block[i] << (32 - shift));
    
    		};		/* end of byteInWord going from 0 to 3 */
    	};			/* end of index going from 0 to
    				 * SECURITY_LEVEL-1 */
    
    	for (i = 0; i < OUTPUT_BLOCK_SIZE; i++)
    		output[i] = input[i] ^ block[MASK - i];
    }
    
    
    /*
     * Hash512 is a more efficient and specialized version of HashN.
     * It accepts an input of INPUT_BLOCK_SIZE 32-bit words and
     * produces an output of
     * OUTPUT_BLOCK_SIZE 32-bit words.  The INPUT_BLOCK_SIZE must be at
     * least two words larger than the output, or a serious degradation
     * in security will occur.  In addition, the use of outputs less
     * than 128 bits will often significantly reduce security.  While
     * possible, it requires great caution.
     */
    void
    Hash512 (output, input)
    	word32 output[OUTPUT_BLOCK_SIZE];
    	word32 input[INPUT_BLOCK_SIZE];
    {
    	static int shiftTable[4] = {16, 8, 16, 24};
    	/* the array of data being hashed  */
    	word32	SBE;	/* just a temporary */
    	int     shift, leftShift;
    	int     index;
    	int     byteInWord;
    	word32	*SBox0;
    	word32	*SBox1;
    	word32	B00,B01,B02,B03,B04,B05,B06,B07,B08,B09,B10,B11,B12,B13,B14,B15;
    
    	/* initialize the block to be encrypted from the input  */
    	B00 = input[0];
    	B01 = input[1];
    	B02 = input[2];
    	B03 = input[3];
    	B04 = input[4];
    	B05 = input[5];
    	B06 = input[6];
    	B07 = input[7];
    	B08 = input[8];
    	B09 = input[9];
    	B10 = input[10];
    	B11 = input[11];
    	B12 = input[12];
    	B13 = input[13];
    	B14 = input[14];
    	B15 = input[15];
    
    
    	for (index = 0; index < SECURITY_LEVEL; index++) {
    		SBox0 = standardSBoxes[2*index+0];
    		SBox1 = standardSBoxes[2*index+1];
    		for (byteInWord = 0; byteInWord < 4; byteInWord++) {
    			round(B15,B00,B01,SBox0);
    			round(B00,B01,B02,SBox0);
    			round(B01,B02,B03,SBox1);
    			round(B02,B03,B04,SBox1);
    			round(B03,B04,B05,SBox0);
    			round(B04,B05,B06,SBox0);
    			round(B05,B06,B07,SBox1);
    			round(B06,B07,B08,SBox1);
    			round(B07,B08,B09,SBox0);
    			round(B08,B09,B10,SBox0);
    			round(B09,B10,B11,SBox1);
    			round(B10,B11,B12,SBox1);
    			round(B11,B12,B13,SBox0);
    			round(B12,B13,B14,SBox0);
    			round(B13,B14,B15,SBox1);
    			round(B14,B15,B00,SBox1);
    			/*
    			 * Rotate right all 32-bit words in the entire block
    			 * at once.
    			 */
    			shift = shiftTable[byteInWord];
    			leftShift = 32-shift;
    			rotate(B00);
    			rotate(B01);
    			rotate(B02);
    			rotate(B03);
    			rotate(B04);
    			rotate(B05);
    			rotate(B06);
    			rotate(B07);
    			rotate(B08);
    			rotate(B09);
    			rotate(B10);
    			rotate(B11);
    			rotate(B12);
    			rotate(B13);
    			rotate(B14);
    			rotate(B15);
    		};		/* end of byteInWord going from 0 to 3 */
    	};			/* end of index going from 0 to
    				 * SECURITY_LEVEL-1 */
    	output[0] = input[0] ^ B15;
    	output[1] = input[1] ^ B14;
    	output[2] = input[2] ^ B13;
    	output[3] = input[3] ^ B12;
    	if(OUTPUT_BLOCK_SIZE == 4) return;
    	output[4] = input[4] ^ B11;
    	output[5] = input[5] ^ B10;
    	output[6] = input[6] ^ B09;
    	output[7] = input[7] ^ B08;
    	if(OUTPUT_BLOCK_SIZE == 8) return;
    
    	ErrAbort("Bad value for OUTPUT_BLOCK_SIZE");
    }
    
    /*
     * This routine increments a 64-bit counter by the given increment.
     */
    void
    Increment64BitCounter (counter, increment)
    	word32 counter[2];
    	long int increment;
    {
    	word32 maxInt = 0xffffffffL;
    
    	if ( (maxInt-counter[1]) < increment) {
    		/*  Overflow from the lower 32 bits  */
    		if (counter[0] == maxInt)
    			ErrAbort("64-bit counter overflowed");
    		/* bump the upper 32 bits  */
    		counter[0]++;
    		/* and then increment the lower 32 bits */
    		/* without ever overflowing! */
    		counter[1] = maxInt-counter[1];
    		counter[1] = increment - counter[1];
    	}
    	else
    	/* increment the total number of bits read */
    	counter[1] += increment;
    }
    
    
    /*
     * The main program reads the input, hashes it, and prints the result.
     * 
     * The basic idea is simple.  As an example, if H is the hash function that
     * produces 128-bit outputs, and if we pick an input string that is 3
     * "chunks" long then we are computing:
     * 
     * output = H( H(  H(  H( 0 || chunk[0])  || chunk[1])
     *                          || chunk[2])  || bit-length)
     * 
     * "bit-length" is a "chunk" sized field into which has been put the length of
     * the input, in bits, right justified.  Note that the size of a "chunk" is
     * just the input size minus the output size (typically 48 bytes or 12
     * words).
     * 
     * "0" is a vector of 0 bits of the same size (in bits) as the output of H
     * (i.e., typically 128 bits).
     * 
     * "||" is the concatenation operator, and is used to concatenate the output
     * field of the preceding computation of H with the next "chunk" of bits from
     * the input.
     * 
     * "chunk" is an array which holds the input in words.  The final element of the
     * array is left justified and zero-filled on the right.
     * 
     */
    int
    main ()
    {
    	int     i;
    	word32 hash[INPUT_BLOCK_SIZE];
    	word32 bitCount[2];	/* the 64-bit count of the number of
    					 * bits in the input */
    	long int byteCount;	/* the count of the number of bytes we just
    				 * read */
    
    	/* Test for various error conditions and logic problems  */
    	if (SECURITY_LEVEL*2 > MAX_SBOX_COUNT)
    		ErrAbort ("Too few S-boxes for specified SECURITY_LEVEL");
    	if (OUTPUT_BLOCK_SIZE < 4)
    		ErrAbort ("OUTPUT_BLOCK_SIZE too small");
    	if ((INPUT_BLOCK_SIZE & MASK) != 0)
    		ErrAbort ("logic error, INPUT_BLOCK_SIZE not a power of 2");
    	if ((INPUT_BLOCK_SIZE % 4) != 0)
    		ErrAbort ("logic error, INPUT_BLOCK_SIZE not a multiple of 4");
    	if (OUTPUT_BLOCK_SIZE > INPUT_BLOCK_SIZE - 2)
    		ErrAbort ("logic error, OUTPUT_BLOCK_SIZE is too big");
    	if (CHUNK_SIZE < 2)
    		ErrAbort ("logic error, CHUNK_SIZE is too small");
    
    	/*
    	 * The error condtions have now been checked -- everything should
    	 * work smoothly
    	 */
    	bitCount[0] = 0;
    	bitCount[1] = 0;
    	for (i = 0; i < INPUT_BLOCK_SIZE; i++)
    		hash[i] = 0;	/* initialize hash  */
    	/*
    	 * Hash each chunk in the input (either 48 byte chunks or 32 byte
    	 * chunks)  -- and keep the result in hash.  Note that the first 16
    	 * (32) bytes of hash holds the output of the previous hash
    	 * computation done during the previous iteration of the loop
    	 */
    	do {
    		/* Get the next chunk */
    		byteCount = ReadChunk (&hash[OUTPUT_BLOCK_SIZE]);
    		Increment64BitCounter (bitCount, 8*byteCount);
    		/* hash in the block we just read  */
    		if (byteCount > 0)
    			Hash512 (hash, hash);
    	} while (byteCount > 0);  /* end of while */
    
    	/*
    	 * Put the 64-bit bit-count into the final 64-bits of the block about
    	 * to be hashed
    	 */
    	hash[INPUT_BLOCK_SIZE - 2] = bitCount[0];	/* upper 32 bits of
    							 * count */
    	hash[INPUT_BLOCK_SIZE - 1] = bitCount[1];	/* lower 32 bits of
    							 * count */
    	/* Final hash down.  */
    	Hash512 (hash, hash);
    
    	/*
    	 * the first OUTPUT_BLOCK_SIZE words of "hash" now hold the hashed
    	 * result, which is printed on standard output
    	 */
    	for (i = 0; i < OUTPUT_BLOCK_SIZE; i++)
    		printf (" %08lx", hash[i]);
    	/*
    	 * Note that if the user wishes to view the output as a sequence
    	 * of bytes, then the byte order is the same as the order
    	 * in which the bytes are printed by "printf" above.  The
    	 * first byte (designated byte 0) is the left-most byte
    	 * printed by "printf" above.  The last byte (designated
    	 * byte 15) is the right-most byte printed.
    	 * This can also be viewed as:
    	 *
    	 * the first byte is the most significant byte of hash[0],
    	 * the second byte is the second most significant byte of hash[0],
    	 * the third byte is the third most significant byte of hash[0],
    	 * the fourth byte is the least significant byte of hash[0],
    	 * the fifth byte is the most significant byte of hash[1],
    	 * etc.  This process continues until the last byte is reached.
    	 * The last byte is the least significant byte of hash[3].
             *
    	 * This is basically "big-endian" or network byte order.
             *
    	 * Although the use of the full 128 bits of output is recommended,
    	 * in some applications it will be both useful and safe to use
    	 * a smaller output.  From a purely technical point of view, which
    	 * bytes are retained and which are discarded is not an issue
    	 * of any great significance.  If there is any issue of standardization
    	 * in the particular application, then the bytes that should be
    	 * retained are the left-most bytes printed out by "printf" above, and
    	 * the bytes that are to be discarded are the right-most bytes
    	 * printed out by "printf" above.  That is, the most significant
    	 * (left most, lower numbered) bytes are retained, while the
    	 * least significant (right most, higher numbered) bytes are discarded.
             *
    	 * When the output size is other than 128 bits, the above comments
    	 * should be extended in the obvious fashion.
    	 */
    	printf ("\n");
    	exit (0);
    }
    
    tiger-3.2.3/c/testsuid.c0000644000175000017500000000163710272172150013515 0ustar  pacopaco/*
    
     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.
        
        c/testsuid.c 
     */
    
    #include 
    #include 
    #include 
    
    int
    main()
    {
         int status = 0;
         setuid(1);
         if(
    #ifdef HAVESETEUID
            seteuid(0) != -1 ||
    #endif
    #ifdef HAVESETRUID
            setruid(0) != -1 ||
    #endif
    	setuid(0) != -1)
            status = 1;
         exit(status);
    }
    
    tiger-3.2.3/check.d/0000755000175000017500000000000011306441022012547 5ustar  pacopacotiger-3.2.3/check.d/README0000644000175000017500000000174610007561277013453 0ustar  pacopaco#
    #     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.3/contrib/0000755000175000017500000000000011306441022012710 5ustar  pacopacotiger-3.2.3/contrib/fix_tiger_GROUPS.sh0000644000175000017500000000213107502327223016331 0ustar  pacopaco#!/bin/sh
    
    # Script to recursively change "GROUPS" to "TIGER_GROUPS" in
    # the tiger source files.  Only run it once (or you'll end up
    # with "TIGER_TIGER_GROUPS") and you only need to run it if you 
    # are getting an error about "readonly variable GROUPS".  
    
    # Edit this script to reflect the location of your tiger source files.
    # ellenm@net.tamu.edu  07/10/2000
    
    PATH_TO_TIGER=/tmp/TIGER
    
    WDIR=/tmp/TIGER-CHGRP
    
    [ ! -d "$PATH_TO_TIGER" ] && {
      echo " "
      echo "Run this script if you are getting a 'readonly variable GROUPS' error."
      echo "If you are not getting this error, you do not need to run the script."
      echo " "
      echo "Edit this script to reflect the location of your tiger files:"
      echo "Change the variable 'PATH_TO_TIGER' and try again."
      echo " "
      exit 1
    }
    
    [ ! -d "$WDIR" ] && mkdir "$WDIR"
    
    echo "Processing..."
    
    /bin/find $PATH_TO_TIGER -type f | 
    while read file
    do
      echo $file
      BASENAME=`basename $file`
      /bin/cp $file $WDIR/$BASENAME.$$
      sed -e 's/GROUPS/TIGER_GROUPS/g' < $WDIR/$BASENAME.$$ > $file
      /bin/rm $WDIR/$BASENAME.$$
    done
    
    echo " "
    echo "You may want to rmdir $WDIR."
    
    tiger-3.2.3/doc/0000755000175000017500000000000011306441023012016 5ustar  pacopacotiger-3.2.3/doc/Makefile.in0000644000175000017500000000225611113621304014066 0ustar  pacopaco#!/usr/bin/make -f
    # Makefile for tiger HTML documentation
    # 
    #
    #     Makefile for tiger binaries - A UN*X security checking system
    #     Copyright (C) 2008 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.
    
    
    # Installation program
    INSTALL=@INSTALL@
    
    TXTFILES = $(wildcard *.txt)
    HTMLFILES = $(patsubst %.txt,%.html,$(TXTFILES))
    
    all: $(HTMLFILES) explain.idx
    
    install:
    	$(INSTALL) -m 0644 *.html ../html/
    
    %.html : %.txt ../util/doc2html
    	sh ../util/doc2html 
    
    explain.idx: $(TXTFILES) ../util/genmsgidx
    	BASEDIR=../ ../util/genmsgidx
    
    clean:
    	-rm -f ../html/*.html
    
    distclean: clean
    	-rm -f Makefile *.html explain.idx
    tiger-3.2.3/doc/accounts.txt0000644000175000017500000001542010217661040014403 0ustar  pacopaco%acc001w
    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.
    %acc002i
    The listed login ID is disabled, but has a potentially valid shell.
    These can usually be safely ignored.
    %acc003w
    The listed login ID is disabled in some manner ('*' in passwd field, etc),
    but the .forward file is setup to execute programs.  This can allow the
    login ID to continue to be used despite the fact that it is disabled.
    The .forward file should be checked and probably removed.
    %acc004w
    The listed login ID is disabled in some manner ('*' in passwd field, etc),
    but a non-zero length .rhosts file.  This can allow the login ID to continue
    to be used.  Unless this has been specifically set up to provide some
    service, it should be removed.
    %acc005w
    The listed login ID is disabled in some manner ('*' in passwd field, etc),
    but has a 'cron' file or 'cron' entries.  This allows commands to be executed
    on behalf of the login ID, potentially allowing access to the login ID.
    These should be removed unless specifically set up to provide a service.
    %acc006w
    The home directory of the listed login ID has group write permission,
    world write permission or both enabled.  This allows new files to be added
    (and existing files potentially removed) by others.  The write permissions
    should be removed.
    %acc007a
    The listed login ID has a '.hushlogin' file which is not zero-length.
    This file is normally a zero length file.  This file is frequently used
    by intruders as a place to store captured passwords.  This file should
    be looked at.  If it appears to be such a log file, then the system should
    be regarded as being compromised.  The system should be thoroughly checked
    and cleaned.
    %acc008w
    The listed login ID has a configuration file which has group write permission,
    word write permission, or both enabled.  This allows others to change this
    file, compromising the login ID.
    %acc009a
    The login ID 'sync' has no password and the shell is not /bin/sync, which
    is what it normally is.  This could indicate an intrusion has occurred.
    If the shell is one of the normal shells (/bin/sh, /bin/csh, etc), then
    this is very likely the situation.  The login ID should be disabled, or
    the shell reset to '/bin/sync'.
    %acc010a
    The listed login ID has a user ID of zero (0) and does not have a password.
    This could indicate an intrusion has occurred.  This should be disabled
    immediately and the machine checked and cleaned.
    %acc010aw
    The listed login ID has a user ID of zero (0) and does not have a password.
    This could indicate an intrusion has occurred.  This should be disabled
    immediately and the machine checked and cleaned.
    
    On this system, comments are not allowed in the password file.  An attempt
    to comment out an entry simply results in a login ID which begins with a
    '#'.  See message ID 'acc013w' for more information.
    %acc011w
    The listed login ID does not have a password.  Anyone can use this account,
    allowing them to explore the system for other security problems.  Unless
    this is a secure captured account, this should be corrected.
    %acc011wc
    The listed login ID does not have a password.  Anyone can use this account,
    allowing them to explore the system for other security problems.  Unless
    this is a secure captured account, this should be corrected.
    
    On this system, comments are not allowed in the password file.  An attempt
    to comment out an entry simply results in a login ID which begins with a
    '#'.  See message ID 'acc013w' for more information.
    %acc012w
    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')
    %acc012wc
    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')
    
    On this system, comments are not allowed in the password file.  An attempt
    to comment out an entry simply results in a login ID which begins with a
    '#'.  See message ID 'acc013w' for more information.
    %acc013w
    On this system, comments are not allowed in the password file.  An attempt
    to comment out an entry simply results in a login ID which begins with a
    '#'.  For example:
    
    #joeuser:zqa4324x2423x:234:23:Joe User:/home/joeuser:/bin/csh
    
    indicates a user with the username '#joeuser'.  The account has not
    been disabled, it has simply been renamed.  Such entries should be
    deleted from the system.
    %acc014f
    The root user (UID 0) should not be having "/" (system root directory)
    as its home drive. This is a possible security hole. 
    %acc015w
    The listed login ID has a duplicate home directory with another login
    ID.  This should be remedied to prevent permission problems.
    %acc017w
    The listed login ID does not have corresponding entries in both the
    /etc/passwd and /etc/shadow databases.  This may indicate tampering
    with either file.
    %acc018w
    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.
    %acc019w
    The listed login ID may be missing a login program initialization
    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.
    Usually these are defined in /etc/shells.
    %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
    be disabled.
    %acc022w
    The listed login ID has a home directory which is not accessible.
    This should be checked to see if this is due to networking problem
    for remote home directories.  Without a valid home directory,
    the user will end up with / as the home directory.
    %acc023w
    The user's parent directory does not have the correct administrative
    permissions. It generally should not have write access for groups &
    others.
    %acc024f
    There is a user in the system (which might or might not have a valid
    password) that has not logged into the system since he/she was created.
    If the user is not disabled (can log in to the system), the user's 
    password is the default which might be vulnerable to brute-force attacks
    (or might even be empty).
    This check is based on the 'lastlog' file, see lastlog(8), if this
    file has been reset then these checks might send false positives.
    tiger-3.2.3/doc/aide.txt0000644000175000017500000000315710217661040013472 0ustar  pacopaco%aide001i
    Aide detected no changes. Good.
    %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.
    %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,
    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.
    %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.
    %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.3/doc/aliases.txt0000644000175000017500000000304707502327223014214 0ustar  pacopaco%ali001i
    The indicated alias is a program alias, but the indicated program doesn't
    appear to exist.  This indicates either a configuration error or an old
    entry which should be removed.  This is just an informatory message.
    %ali002f
    The 'uudecode' alias is a known security problem and should be disabled.
    It allows files to be created/overwritten on the machine.
    %ali003
    The indicated alias is a program alias, but the executable is not owned
    by root.  This may allow the owner of the executable (or anyone gaining
    access to that login ID) to gain unauthorized privileges.
    %ali004
    The indicated alias is a program alias, but the executable has group
    write permission, world write permission or both.  This allows others
    to replace/modify the executable, possibly allowing them to gain
    unauthorized privileges.
    %ali005w
    The indicated alias is a program alias.  Program aliases should be
    used with care, as they can provide unauthorized entry into the
    system.
    %ali006i
    The indicated alias attempts to include a file, but the file does
    not exist.  This is indicates either a misconfiguration, or an
    old entry which should be removed.  This is just an informatory message.
    %ali007
    The indicated alias includes a file which is not owned by root.
    This may allow the owner of the included file (or anyone gaining
    access to that login ID) to gain unauthorized privileges.
    %ali008
    The indicated alias includes a file which has group write permission,
    world write permission or both.  This allows others to add or modify
    entries in the file, possibly gaining unauthorized privileges.
    tiger-3.2.3/doc/anonftp.txt0000644000175000017500000001046710217661040014237 0ustar  pacopaco%ftp001i
    There doesn't appear to be an anonymous ftp setup on this machine,
    and hence there is nothing to check.
    %ftp002a
    There is a .rhosts file in the top level of the anonymous ftp
    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 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 directory
    should simply have a '*' in the password field, and should only
    include entries for the 'ftp' and 'root' accounts.
    
    See CERT advisory CA-93:10 for information on setting up an anonymous
    FTP server.
    %ftp004w
    Anonymous ftp appears to be setup on this machine, but the directory
    field in the password field is empty.  This exposes the entire machine
    to anonymous users, allowing them to browse looking for security
    problems.  A specific (not /) directory should be specified.
    
    See CERT advisory CA-93:10 for information on setting up an anonymous
    FTP server.
    %ftp005f
    The anonymous ftp directory is set to the root directory (/).  This
    exposes the entire machine to anonymous users, allowing them to browse
    looking for security problems.  The directory should be set to a
    hierarchy that doesn't allow access to system or user files.
    
    See CERT advisory CA-93:10 for information on setting up an anonymous
    FTP server.
    %ftp006w
    Anonymous ftp appears to be setup, but the directory indicated as
    the ftp directory does not exist.  This indicates either a misconfiguration
    or an old setup.  This should be corrected by either correcting the
    directory name, or deleting the ftp account.
    
    See CERT advisory CA-93:10 for information on setting up an anonymous
    FTP server.
    %ftp007f
    The indicated file is owned by the 'ftp' account and is writable.  This
    may allow unauthorized access to the machine.  The indicated file should
    be owned by 'root' and not writable by group or world.
    
    See CERT advisory CA-93:10 for information on setting up an anonymous
    FTP server.
    %ftp007w
    The indicated file is owned by the 'ftp' account and is writable.  This
    allows anonymous ftp users to modify this file, possibly compromising
    the system.  The indicated file should be owned by 'root' and not writable
    by group or world.
    
    See CERT advisory CA-93:10 for information on setting up an anonymous
    FTP server.
    %ftp008f
    The indicated file is owned by the 'ftp' account, but is not currently
    writable.  Since it is often possible to change the permissions through
    ftp, it may still be possible to modify the file, possibly allowing
    an intruder to gain unauthorized access.  The indicated file should
    be owned by 'root' and not writable by group or world.
    
    See CERT advisory CA-93:10 for information on setting up an anonymous
    FTP server.
    %ftp008w
    The indicated file is owned by the 'ftp' account, but is not currently
    writable.  Since it is often possible to change the permissions through
    ftp, it may still be possible to modify the file, possibly compromising
    the system.  The indicated file should be owned by 'root' and not writable
    by group or world.
    
    See CERT advisory CA-93:10 for information on setting up an anonymous
    FTP server.
    %ftp009w
    The indicated file is not owned by root.  This may allow unauthorized
    access to the system.  The owner of the file should be root and the
    group and write permissions removed.
    
    See CERT advisory CA-93:10 for information on setting up an anonymous
    FTP server.
    %ftp010f
    The indicated file is writable by the 'ftp' account.  This may allow
    an intruder to gain unauthorized access.  The group and write permissions
    should be removed.
    
    See CERT advisory CA-93:10 for information on setting up an anonymous
    FTP server.
    %ftp010w
    The indicated file is writable by the 'ftp' account.  This may allow
    the system to be compromised.  The group and write permissions should be
    removed.
    
    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.3/doc/background.txt0000644000175000017500000000355207502327223014713 0ustar  pacopaco%rationale
    
    The primary rationale behind many of the checks performed by `Tiger'
    is to protect the super-user account.  The assumption made is that any
    other account or any group can be accessed.  The goal is to protect
    `root' from all accounts, even system accounts.
    
    The reasons for these assumptions are varied, but they all fall back
    to one thing.  The `root' (uid=0) account is the only account that is
    normally given special protection by services.  Examples:
    
    (In the following discussion, a network is considered to be a set of
    machines, networked together, with trusted host facilities such as
    /etc/hosts.equiv or NFS.)
    
    o The Berkeley r-cmds (rlogin, rsh) will not honor /etc/hosts.equiv
    for the super-user account.  This protects a network of trusted
    machines should one of them be compromised.
    
    o NFS (Network File System, SMI) translates requests from super-user
    accounts to requests from `nobody' (although this can be overridden).
    As before, this attempts to protect a network of NFS'd machines should
    one of them be compromised.
    
    Other accounts are not protected in this way, including system
    accounts such as `bin' and `daemon'.  Once one of the accounts is
    compromised on one machine on a network, the account is compromised on
    all of the machines in the network.  Often these system accounts are
    considered safe and are trusted to own system executables, directories
    and files.  This is not true in a networked environment.  Note that
    simply disabling the account, or even deleting the account will not
    remove the problem.
    
    Hence, `Tiger' will report anything not owned by `root' which root
    accesses, especially executables.  One of the problems with this is
    setuid executables which are setuid to a userid other than root.  The
    ownership can not be changed (if it is, it will no doubt create worse
    security problems).  A solution to this problem will be provided in
    the future.
    tiger-3.2.3/doc/config.txt0000644000175000017500000001312011061327511014024 0ustar  pacopaco%con001c
    The configuration file listed was not read because it was
    a directory.
    %con002c
    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 because it was
    writable by non-root users.  This is to prevent someone from
    modifying the configuration file.
    %con004c
    Informational message describing which configuration files are
    being used during the checks.
    %con005c
    Configuration files, specific to the type of system that `tiger' is being
    run on, do not exist.  It may not be possible to perform all of the checks
    due to the lack of certain files.  Some checks that are performed may
    also generate incorrect or incomplete information.
    %con006e
    The indicated option was not recognized.  The valid options are:
    
       -B tiger_home     Specify tiger home directory
    
       -d directory      Specify directory to create security logs in
    
       -w directory      Specify directory to use for scratch files
    
       -e                Insert explanations into output
    
       -E                Generate separate explanation report
    
       -S                Perform partial checks of disk-less client
    
                         configuration files on server.
    %con007c
    Generic configuration files for this system do not exist.  The
    checking system will continue on, attempting to locate items it
    needs, and using default configuration files.  Many checks will
    not be performed, and many that are attempted may function
    incorrectly, generating incorrect output.
    %con008e
    Generic configuration files for this system do not exist.  The
    checking system attempted to continue on, but could not locate
    the default configuration files either.  This is an installation
    problem.  It may be necessary to indicate the location of the
    tiger files using the '-B' option.
    %con009e
    There doesn't exist a configuration variable or it is not properly
    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 valid filesystem 
    for this operating system and will not be analysed. If this is a local
    filesystem then the configuration script for this operating system 
    needs to be modified. You should report this as a bug in the software. 
    
    You can use the following tigerrc variables to adjust this message
    or adapt it to your system locally:
    
     - Tiger_FSScan_Local: if set, filesystems defined in it will be considered
       local and will always be analysed.
     - Tiger_FSScan_NonLocal: ff set, filesystems defined in it will be considered
       non-local and will not be analysed.
     - Tiger_FSScan_WarnUnknown : If set to 'N' this message will not be presented
       (this prevents it from being emailed when some of the Tiger scripts are run
        through cron)
    %init001e
    The indicated variable, which should specifies the pathname to a command,
    does not have a value. This message should not appear on platforms
    for which support is listed.  If it does appear, then for the missing
    commands, if you know the name of the command, then simply place it
    into the environment and rerun the checking system.
    
    setenv AWK /usr/bin/awk
    
    ./tiger
    
    Or alternately, create a 'site' configuration file and insert an
    assignment statement in there of the form:
    
    AWK=/usr/bin/awk
    
    %init002e
    The required configuration script was not found in the listed directory.
    The programs can not run without this script.  The '-B' switch can
    be used to specify the directory containing the configuration script.
    
    ./tiger -B path_to_tiger_home
    
    %init003c
    Output when run in `self-test' mode indicating that everything appears
    to be OK as far as having all commands and files.
    %init004e
    The indicated command does not exist or is not executable.  This
    indicates a configuration error.
    %init005e
    The indicated variable, which should contain the pathname to an
    input file or work directory does not have a value.  This indicates
    that either full support is not available for this platform,
    or that there is a configuration error.
    %init006e
    An input file required for performing a test is not available.  This
    indicates that there is a configuration error.
    %init007e
    A required variable does not have a value.  This indicates either
    incomplete support this platform or a configuration error.
    %init008e
    An attempt was made to run one of the support scripts directly.
    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 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
    The attempt to compile the signature checking program (SNEFRU) failed.
    This will prevent the tests of the integrity of system binaries from
    being performed.
    %util002e
    The attempt to compile the program for resolving symbolic links failed.
    This will prevent the checks of symbolic links from being performed.
    %post001e
    The listed file was not deleted because it was not in the scratch
    directory.  This indicates an internal error.
    %read001i
    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 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.3/doc/cron.txt0000644000175000017500000000422010217661040013521 0ustar  pacopaco%cron001w
    The listed cron entry does not use a full pathname for the listed command
    (or if a shell is specified, the name of the shell script).  Full pathnames
    should be used for cron entries.
    %cron002
    The listed cron entry uses an executable or file which is not owned
    by the owner of the cron entry, and is also not owned by a system
    account (root or bin, etc).  For root cron entries, these are especially
    dangerous.  Note that the actual problem may be with a directory in
    the path to the file, not the file itself.
    %cron003
    The listed cron entry uses a file or executable which has group write
    permissions, world write permissions or both.  This can allow the
    system to be compromised.  For root cron entries, this is especially
    dangerous.  Note that the actual problem may be with a directory in
    the path to the file, not the file itself.
    %cron004w
    There is no crontab for the superuser account this is not in itself
    an error since many systems might ship without one and use other 
    methods (/etc/cron* files) to run programs as root. However, if there
    is no method for root to run scripts some system checking scripts
    (like tiger) might not get executed at all.
    %cron005w
    Cron allows users to submit jobs for the system to do at a
    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
    (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.3/doc/debian.txt0000644000175000017500000000050607502327223014012 0ustar  pacopaco%deb001e
    The package installed in this systems suffers from a security problem
    which has been notified in a Debian Security Advisory. Update your
    system against the latest available version from security.debian.org
    Read http://www.debian.org/security/ on how to automatically upgrade
    your system to the latest security fixes.
    tiger-3.2.3/doc/embed.txt0000644000175000017500000000630610217661040013643 0ustar  pacopaco%embed
    The embedded references are formatted as
    
    pathname_1->pathname_2->pathname_3...
    
    which indicates that pathname_1 is a string embedded in the
    binary pointed to by pathname_2, which in turn is a string
    embedded in pathname_3.  Or, to read it the other way around,
    pathname_3 refers to pathname_2 which refers to pathname_1.
    %embed001w
    See the 'embed' explanation for an explanation of the format of the
    embedded references.
    
    The indicated pathname to an executable contains a component which is not
    owned by root.  This can enable an intruder to gain unauthorized privileges
    if they are able to replace the binary.  See the 'rationale' explanation
    for a discussion of the reasons that executables run by root should be
    owned by root.
    %embed001i
    See the 'embed' explanation for an explanation of the format of the
    embedded references.
    
    The indicated pathname to a file or directory contains a component which
    is not owned by root.  This may indicate a vulnerability in the system.
    It will be necessary to study the programs in which the pathname was
    found to determine whether there is a problem.
    %embed002w
    See the 'embed' explanation for an explanation of the format of the
    embedded references.
    
    The indicated executable is not owned by owned by root.  This can
    enable an intruder to gain unauthorized privileges if they are able to
    overwrite the executable.  See the 'rationale' explanation for a
    discussion of the reasons that executables run by root should be owned
    by root.
    
    Note that if the executable is setuid to a non-root ID, then the
    ownershop should *NOT* be changed to root unless the setuid bit
    is also removed.
    %embed002i
    See the 'embed' explanation for an explanation of the format of the
    embedded references.
    
    The indicated file or directory is not owned by root.  This may
    indicate a vulnerability in the system.  It will be necessary to study
    the programs in which the pathname was found to determine whether
    there is a problem.
    %embed003w
    See the 'embed' explanation for an explanation of the format of the
    embedded references.
    
    The indicated pathname to an executable contains a component which
    is group writable, world writable or both.  This can enable an intruder
    to gain unauthorized privileges if they are able to replace the
    executable.
    %embed003i
    See the 'embed' explanation for an explanation of the format of the
    embedded references.
    
    The indicated pathname to a file or directory contains a component
    which 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 is a problem.
    %embed004w
    See the 'embed' explanation for an explanation of the format of the
    embedded references.
    
    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.
    %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 is a problem.
    tiger-3.2.3/doc/filesys.txt0000644000175000017500000000660710217644452014261 0ustar  pacopaco%fsys001f
    The listed file is a setuid script.  On most UNIX machines, it is not
    possible to write a secure setuid script, due to a race condition in
    the Operating System.  Even on systems where this is corrected, the
    difficulties in writing a truly secure setuid script make them very
    undesirable.  The setuid bits should be turned off of this file.
    
    If you must run a script under another id, then perhaps the best
    solution is to write a wrapper program in C which creates a safe
    environment for the script, then exec()'s it.
    %fsys002w
    The listed program is a setuid executable, and it appears to contain
    relative pathnames (do not start with a '/').  This often represents
    a security hole in the program.  These relative pathnames can be caused
    by system()* or popen()* calls which do not use full pathnames to the
    executable, or, on systems which support dynamic linking, relative
    pathnames indicating the directories containing the libraries.  In any
    case, these need to be checked.
    
    *Note:  system() and popen() should *never* be used from a program
            which is executing with privileges.
    %fsys003c
    The database of setuid programs for this platform does not exist, thus
    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.
    %fsys004a
    The listed programs are setuid, but are not in the database of
    setuid programs which appear in the OS distribution.
    %fsys005a
    The listed file has an unusual filenames.  These include files with
    multiple leading '.', filenames with spaces, etc.  The variable
    FS_FILES can be set in the 'tigerrc' file to specify the filename
    patterns which are reported.
    %fsys006a
    The listed files are device files that are located in non-standard
    locations.  These should be checked.  The variable FS_DEVDIRS can
    be set in the 'tigerrc' file to specify other directories which can
    contain device files.
    %fsys007i
    The indicated file is a symbolic link to a system file which is
    related to system security.  In itself, the link is not dangerous,
    but you should be aware of its presence, as it can cause unexpected
    results with the 'chown' and 'chmod' commands.  On many systems, the
    'chown' command does not change the owner of the link itself, but
    instead, changes the ownership of the file the link resolves to.
    The same type of problem exists for 'chmod' on most systems.  Thus,
    the simple act of performing a
    
        chown -R joeuser /home/joeuser
    
    could potentially change the owner of a system file to 'joeuser'.
    %fsys008f
    The listed directories are world writable.  These provide a location
    for intruders to store files.  They should be checked for unusual
    files.
    %fsys009w
    An FSP server control file has been located.  This indicates that
    an FSP server may be running, or have been running, using the
    directory containing the listed file as its base.
    %fsys010w
    The listed file is a setgid script.  On most UNIX machines, it is not
    possible to write a secure setgid script, due to a race condition in
    the Operating System.  Even on systems where this is corrected, the
    difficulties in writing a truly secure setgid script make them very
    undesirable.
    %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.3/doc/group.txt0000644000175000017500000000162110217661040013716 0ustar  pacopaco%grp001w
    The indicated group name exists multiple times in the same group file.
    This indicates a configuration problem which should be corrected.
    %grp002w
    The indicated group id (gid) exists multiple times in the same group file.
    This indicates a configuration problem which should be corrected.  Failure
    to do so could allow unexpected access to resources.
    %grp003w
    The listed entry does not have the correct number of fields (4).
    %grp004w
    The indicated group name exists in separate group files, but the group
    id's are different.  This can lead to unexpected access to resources.
    %grp005w
    The indicated group id (gid) exists in separate group files, but the
    group names are different.  This can lead to unexpected access to
    resources.
    %grp006w
    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.3/doc/hpux.txt0000644000175000017500000000164710217661040013556 0ustar  pacopaco%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
    %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.3/doc/inetd.txt0000644000175000017500000002536010217661040013673 0ustar  pacopaco%inet001e
    One or the other of the two listed files are unavailable.  These
    files are required for the checks to proceed.  This either indicates
    an incorrect configuration, or that a port to this machine has not
    been completed.
    %inet002f
    The indicated service is assigned to the wrong port.  This indicates
    either a misconfiguration in the services database, or a possible
    sign of an intrusion.  This should be checked and corrected.  If it
    is not apparent why it is like this, the system should be checked
    for other signs of intrusion.
    %inet003w
    The indicated port number is assigned to another service.  This
    indicates either a misconfiguration in the services database, or a
    possible sign of an intrusion. This should be checked and corrected.
    If it is not apparent why it is like this, the system should be
    checked for other signs of intrusion.
    %inet004i
    The indicated service has been added to the services database
    as distributed.  These are normal output, but you should be
    familiar with what is there, and note any changes.
    %inet005w
    'inetd' is using the indicated binary for the listed service instead
    of what is normally expected there.  Unexpected differences should
    be checked, and if anything unusual is found, the system should
    be checked for other signs of intrusion.
    %inet006f
    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.
    %inet007w
    'inetd' is using the indicated executable for a port other than
    what would normally be expected for this port.  This may indicate
    a backdoor into the system and should be checked.  If anything
    unusual is found, the system should be checked for other signs
    of intrusion.
    %inet008
    The owner of the indicated executable is not 'root'.  The owner
    of the executable should be root in order to reduce the possibility
    of it being altered or replaced.
    %inet009
    The indicated executable is group writable, world writable or both.
    The executable should be owned by root and writable only by the
    owner.  This reduces the possibility of it being altered  or replaced.
    %inet010i
    The program listed in the `inetd' configuration file does not
    exist or is not executable.
    %inet011i
    The listed entry is a local addition to the `inetd.conf' file.
    This should be checked to see if it is a valid addition.  If it
    is not, it should be removed.
    %inet012w
    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.
    %inet013w
    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.
    %inet014i
    The listed entry was protected by tcp wrappers by the default installation
    and is currently protected this way too. This is a good thing!
    %inet015i
    The listed entry has been modified in order for it to be protected 
    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 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.
    %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.
    %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.
    %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.
    %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.
    %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/
    %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.
    %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.
    %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.
    %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.
    %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 cryptography.
    
    You can use the freely-available OpenSSH implementation at 
    http://www.openssh.org
    %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!
    %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.3/doc/integrit.txt0000644000175000017500000000322610217661040014412 0ustar  pacopaco%integ001i
    Integrit detected no changes. Good.
    %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.
    %integ003wsum
    Integrit detected changes in filesystem integrity. This line is only the 
    summary.
    %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.
    %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.
    %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.3/doc/issue.txt0000644000175000017500000000060607502327223013721 0ustar  pacopaco%issue001w
    The /etc/issue file does not have the designated content.  This file
    is often used as a local login banner and should contain appropriate
    content, often an unwelcome message.
    %issue002w
    The /etc/issue.net file does not have the designated content.  This file
    is often used as a network login banner by programs and should contain
    appropriate content, often an unwelcome message.
    tiger-3.2.3/doc/known.txt0000644000175000017500000001306610217661040013724 0ustar  pacopaco%kis001a
    The indicated file is a directory.  The file is a known location used
    by intruders.  This should be considered a sign that this system
    has been compromised.  The system should be checked for other signs
    of intrusion and cleaned up.
    %kis002a
    The indicated file is a known location used by intruders.  This should
    be considered a sign that this system has been compromised.  The system
    should be checked for other signs of intrusion and cleaned up.
    %kis003a
    The indicated window server directory contains files other than UNIX
    data-gram sockets.  This should be considered a sign that this system
    has been compromised.  The system should be checked for other signs
    of intrusion and cleaned up.
    %kis004w
    The 'lost+found' directory (one exists for each file system) is used
    by the `fsck' program as a directory for re-linking "dangling" files
    during the file system check.  These directories should be checked when
    a file system check is not clean and files recovered from here.  This
    directory is also used by intruders to store files, as it is often
    ignored.  The files found here should be checked.  If any unusual files
    are found, the system should be checked for other signs of intrusion.
    In any event, the 'lost+found' directories should be kept clean.
    %kis005a
    The /bin/login program appears to have a back-door installed.  The
    program should be compared against distribution media and replaced
    if it has been altered.  The system should be checked for other
    signs of intrusion and cleaned.
    %kis006e
    The attempt to compile the program to check the setuid() system
    call failed for some reason.  This will prevent the test from
    occurring.
    %kis007a
    The setuid() system call succeeded even though the user was not
    root.  This most likely indicates that the system has been compromised
    and the OS altered.  A new kernel should be installed and the machine
    rebooted.
    %kis008w
    The indicated file in the system mail spool does not have a name which
    matches the owner.  This indicates either an attempt to create a mailbox
    for another user (allowing someone else to read that persons mail),
    or that the mail spool is being used to store files.  These files should
    be checked, and if unusual, the system should be examined for other signs
    of intrusion.
    %kis009w
    There is an .exrc file outside of any user's home directory. This file can
    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
    the current directory (using 'set exrc').
    If you are using an old version of vi or users have this option enabled,
    however, commands in .exrc might compromise the security of your system.
    %kis010w
    The indicated file in the system mail spool does not belong to any user
    in the system. This might indicate that a user has been removed but not his
    mailbox or that this mailbox has been created wrongly. These files should
    be checked and, if belonging to former users, removed.
    (Note: this warning will be given too if, for some reason, the user running
    Tiger cannot access the user database)
    %kis011f
    A server in the system (that is, a process with a listening socket towards
    the Internet) or its parent process has an open file which has been removed
    from the system. This might be a usual behaviour in the process or it might
    be an indication of an intruder that has executed a backdoor in the system
    (which opens a connection to accept requests from the Internet) and has
    later removed the program from the system so that it cannot be traced back
    to him.
    This also can happen if a local service is using shared libraries which have
    been upgraded but the service itself has not been restarted in order to
    use the new libraries. Notice that if there was a vulnerability in the
    library and the server is not restarted the system is still vulnerable.
    %kis012w
    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 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.  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.
    For related information, see CERT advisory CA-94:01 available in
    http://www.cert.org/advisories/CA-94.01.ongoing.network.monitoring.attacks.html
    %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.3/doc/linux.txt0000644000175000017500000001473410230310122013715 0ustar  pacopaco%lin001w
    A program installed in your system has probably been not installed
    by a package of your Linux packaging system. If this binary has
    been installed by the administrator note that /usr/local/ is the
    place for this files.
    %lin002i
    Installed processes listening on Internet interfaces must be
    tightly controlled since they are the "open doors" to the 
    outside.
    %lin003w
    Processes that have not been run by root are listening on
    interfaces open to the outside. This processes might have been
    run by root and changed uids or might be rogue processes.
    Confirm if their presence is necessary.
    Notice that sometimes services open sporadic UDP listeners to 
    receive DNS requests, if you receive reports on open UDP services
    that later on are closed this might be a false positive.
    %lin004i
    Netstat can be used instead of lsof in order to provide information
    on listening processes, however it will provide less info since it
    cannot determine the process (or PID) associated with the open socket
    or the user that runs it.
    %lin005f
    In Debian systems, checksums are stored in /var/lib/dpkg/info/
    if the md5sum of a file differs from the checksum of installed packages
    it might be due to changes made by the system administrator (for
    example, files in /etc) by everyday use of by a possible intruder
    (who might have placed a trojan instead of the checked file)
    Be forewarned, an attacker might have modified this info files
    (they are not protected against this)
    %lin006w
    A file installed by a package no longer exists in the system and
    cannot be checked for. An administrator should not remove files from
    the system, they should be removed uninstalling the packages that
    provided them. This is an unusual behavior.
    %lin007w
    In the default configuration of many GNU/Linux distributions users can
    reboot the machine pressing Ctrl+Alt+Delete while in console mode. This can
    be considered a security risk if an attacker can easily taken down the
    server from console.
    %lin008e
    The /proc pseudo-filesystem is needed to check the network configuration
    settings in the kernel and determine insecure setups. /proc is available
    when the kernel is compiled with the CONFIG_PROC_FS=Y option (if you want
    to modify them you also need to add the CONFIG_SYSCTL=Y option). You also
    need to have it mounted, if it's not try: 'mount -t proc proc /proc'.
    This is usually done in most distributions per default.
    %lin009i
    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 
    Note, however, that this violates RFCs.
    %lin010f
    The system will answer to ICMP broadcast echo messages. This is considered
    a problem since ICMP broadcasts can cause network denial of service as
    the same time as giving away the location of the hosts. To remove this do:
     # sysctl -w net.ipv4.icmp_echo_ignore_broadcasts = 1
    %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
    %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 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:
      # 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 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
    and thus resend packets from one network interface to another. If your
    system is not acting as such this option should be disabled:
     # sysctl -w net.ipv4.ip_forward = 0
    %lin016f
    Source routing might permit an attacker to send packets through your
    host (if routing is enabled) to other hosts without following your 
    network topology setup. It should be enabled only under very special
    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 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
    to receive packets for a network interface from another network interface.
    This, as a matter of fact, removes the benefit of configuring services
    and binding them to a single IP address (not to all IP addresses). 
    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 (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.3/doc/logfiles.txt0000644000175000017500000000416110217661040014370 0ustar  pacopaco%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.
    %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.
    %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.
    %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.
    %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
    There are no umask entries in the configuration file. It is recommended
    that there are umask entries set in the configuration file.
    %logf006f
    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.
    %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.3/doc/misc.txt0000644000175000017500000002544310217661040013525 0ustar  pacopaco%ca9122f
    CERT Advisory CA-91:22
    
    The `loadmodule' executable from OpenWindows 3.0 contains a security
    vulnerability that can allow a local user to gain root access.
    
    Sun Patch 100448-01 provides a fix for this.
    %ca9122w
    CERT Advisory CA-91:22
    
    The `loadmodule' executable installed on this machine may contain a
    security vulnerability that can allow a local user to gain root
    access.  This applies to OpenWindows 3.0.
    
    Sun Patch 100448-01 provides a fix for this.
    %ca9122i
    The OpenWindows binary `loadmodule' could not be located in order
    to check it for vulnerabilities.  If you have OpenWindows 3.0 installed,
    then you should set the environment variable OPENWINHOME to point to
    the OpenWindows installation directory and rerun the security checking
    system.  For example:
    
    setenv OPENWINHOME /usr/local/openwin
    
    ./tiger
    
    Other versions of OpenWindows do not exhibit this vulnerability.
    
    See message-id ca9122f for information on the vulnerability.
    %misc001w
    If the console on a Sun workstation is marked as secured, then it is
    possible for someone with physical access to the console to
    reboot the machine in single-user mode, thus giving them root
    access to the machine.  This can be corrected by editing the
    file /etc/ttytab and removing the word 'secure' from the
    entry for the console.  By doing this, the root password must
    be entered when booting in single-user mode.  Thus, if you forget
    the root password, you will have to boot from some other media
    in order to get back in.  This will *also* prevent root logins
    on the console.  It will be necessary to login as a normal user,
    then 'su' to the root account (this is a preferred method as it
    provides accountability).
    
    If your system's console is in a physically secure location, then
    it is fairly safe to leave this as it is.
    %misc002w
    If the tty's and pseudo-tty's on a Sun workstation are marked
    as secured, then it is possible to login as 'root' on any of
    these tty's.  This does not provide any accountability as
    to who is using the 'root' account.  This can be corrected by
    editing the file /etc/ttytab and removing the word 'secure' from
    the tty and pseudo-tty lines.  By doing this, it will not be
    possible to login directly as 'root' via telnet, rlogin, or on
    a hardwired terminal.  It will be necessary to login as a normal
    user, then 'su' to the root account, thereby providing accountability.
    %misc003f
    Without the /var/yp/securenets file, an NIS server will hand out
    its map files to any client that asks.  Since the password file
    is one of the maps maintained by the NIS server, anyone on the
    Internet is capable of retrieving your password file.  The `securenets'
    file allows you to specify networks and hosts which are allowed to
    retrieve information from the server.
    
    This requires that Sun Patch ID 100482 be installed.
    %misc004w
    If the PROM monitor is not in secure mode, then someone with
    physical access to the console can enter the PROM monitor and
    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.
    %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.
    This means that any user on an authorized client can obtain
    a file handle for an exported file-system.  If port checking
    is also disabled in the kernel, this file handle can be used
    to gain unauthorized access to files, and possibly to gain
    unauthorized privileges.  On SunOS 4.x machines, the '-n'
    switch is used to disable port checking.  This is the default
    when C2 security is not enabled.  Port checking can be enabled
    by editing the /etc/rc.local file and removing the '-n' switch
    from the rpc.mountd command.
    
    NOTE:  Doing this may break certain older NFS implementations which
    do not use a privileged port.  You should verify that any clients
    do not have this problem.
    %misc007w
    The `ypbind' on this machine is running with a `ypset' option (either
    -ypset or -ypsetme).  These options can allow an intruder to redirect
    NIS lookups to a server set up by them, allowing them to gain privileged
    access.  These options should not be used.
    %misc008w
    The running kernel is not checking to see if the source
    port for NFS requests is a privileged port.  If the machine
    is not doing NFS serving, this is not a problem.  If it is,
    this means that any user on an authorized client that can obtain
    a file handle for an exported file-system can gain unauthorized
    access to files, and possibly gain unauthorized privileges.
    If port checking is also disabled for the NFS mount daemon [misc006w],
    this becomes very easy to do.  To enable port checking, the
    kernel variable 'nfs_portmon' should be set to a non-zero value.
    
    On SunOS 4.x systems, an 'adb' command exists in the /etc/rc.local
    script to set this variable during boot up.  This command is normally
    only executed for systems which have enabled Sun's C2 security.
    Removing the command from the surrounding 'if' block will enable it
    for non-C2 systems.
    
    For SunOS 5.x systems, add the line
    
    set nfs:nfs_portmon = 1
    
    to the /etc/system file and reboot.
    
    NOTE: Enabling NFS port checking may break certain older NFS
    implementations which do not use a privileged port.  You should verify
    that any clients do not have this problem.
    %misc009w
    The -hosts option is being used with the automounter.  This may
    allow unauthorized access or privileges to be gained.  The -hosts
    option allows filesystems to be automounted from any host on
    the network.  If the machine is attached to the Internet, any
    host on the Internet is a candidate.
    %ca9302a
    CERT Advisory CA-93:02a
    
    A vulnerability exists in the distributed printing facility of all
    releases of NeXTSTEP software though NeXTSTEP 3.0.  The "_writers"
    property on the "/printers" and "/fax_modems" should be removed.
    
    See the CERT advisory for more details.
    %misc010w
    CERT Advisory CA-93:15
    
    CERT Advisory CA-93:16
    
    A serious vulnerability exists in most versions of sendmail
    distributed prior to late October, or early November 1993.  This
    vulnerability allows remote users to execute arbitrary programs.
    The vulnerability affects the final destination host, therefore
    firewalled machines are vulnerable.  The CERT advisory CA-93:16
    provides three approaches for the problem.  If feasible, the
    best approach is to disable the program mailer (Mprog) in the
    `sendmail.cf' file.  If not feasible, then a version of sendmail
    (such as sendmail 8.6.4 or later from ftp.cs.berkeley.edu) should
    be installed.  Vendor provided fixes are
    
    HP-UX 8.x, series 300/400     PHNE_3369
    
    HP-UX 9.x, series 300/400     PHNE_3370
    
    HP-UX 8.x, series 700/800     PHNE_3371
    
    HP-UX 9.x, series 700/800     PHNE_3372 
    
    %misc011w
    The local sendmail.cf is using the sendmail restricted shell (smrsh)
    for program delivery, but it appears to use a program which allows
    the vulnerabilities discussed in `misc010w' to be exploited.
    %misc012e
    The indicated file could not be read.  This generally indicates that
    the check was attempted from a userid with insufficient privileges.
    %misc013w
    CERT Advisory CA-93:17
    
    The xterm utility contains a vulnerability which allows any file to
    be overwritten, or the ownership of the file changed.  Consult vendors
    for patches for supported versions of xterm.  MIT Patch 26 for X11R5
    contains a patch for the MIT distribution.
    %misc014w
    
    The file `/etc/rcS' is executed during the switch to single user
    mode (part of booting and shutting down).  If file system checks
    fail, then this script will start a root shell on the console.
    To force a password to be entered, locate the line that reads
    
    /sbin/sh < /dev/console
    
    and change this to
    
    /sbin/sulogin
    
    This will force the root password to be entered should the
    file system checks fail.
    %misc015w
    
    The `xload' utility, when built with the standard (unpatched) MIT
    X11R5 distribution on systems with dynamic linking, contains a
    security vulnerability.  The link step links against libraries
    using relative pathnames (../../..).  To correct the problem,
    the `xload' utility should be relinked without these pathnames
    (the absolute pathname to your X11 libraries should be used).
    
    Another alternative is to disable the `xload' utility by turning
    off the setuid and/or setgid bits.
    %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
    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
    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
    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
    file and can be edited with any editor.
    %misc017f
    The umask settings used in the boot scripts is insecure. 
    This means that probably the boot scripts will create files
    (if any) with permissions that make them subject to attack. Recommended
    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 appropriate file to
    fix this issue.
    %misc019w
    Tiger was unable to found any umask settings to be used in the boot
    scripts. This means that probably the boot scripts will create files
    (if any) with vulnerable permissions.
    Tiger was unable
    %misc020f
    Tiger checked the process table and was not able to find a process
    which it was configured to look for.
    %misc021w
    There are no umask entries in the configuration file. It is recommended
    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 (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).
    %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.
    %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.3/doc/ndd.txt0000644000175000017500000000656010217661040013336 0ustar  pacopaco%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
    %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
    %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
    %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]
    %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
    %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
    %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
    %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
    %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
    %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
    %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.3/doc/netrc.txt0000644000175000017500000000242007720454637013714 0ustar  pacopaco%nrc001f
    The indicated .netrc file is readable by others and contains entries
    for login ID's that are not anonymous FTP, and these entries contain
    passwords.  This provides login information to intruders, allowing
    them to compromise the remote site.  The read permissions should be
    removed immediately.  It is also not a good idea to have the passwords
    in the file.  Unless absolutely necessary, these entries should
    be deleted.
    %nrc002w
    The indicated .netrc file contains entries for login ID's that are not
    anonymous FTP, and these entries contain passwords.  The .netrc file
    is not readable, but it is still not a good idea to have the passwords
    in the file.  Unless absolutely necessary, these entries should be
    deleted.
    %nrc003w
    The indicated .netrc file is a symbolic link.  This is an unusual
    condition and should be checked out.
    %nrc004a
    The indicated .netrc file is a directory.  This possibly indicates
    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.
    %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.3/doc/network.txt0000644000175000017500000000603110664613655014272 0ustar  pacopaco%netw001f
    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 login enabled.  If xinetd
    based, add the 'filelog' or 'syslog' options in /etc/sysconfig/xinetd
    configuration file.
    %netw004f
    The syslogd daemon should be executing to log system events.  Please
    add the appropriate start link to /etc/rc.d/rc[RUNLEVEL].d to the
    /etc/rc.d/init.d/syslog script, or install syslog if it isn't.
    %netw005f
    Omniback is installed, but there is no cell server specified.  Please
    put the IP address of your cell server in /usr/omni/config/cell/cell_server
    %netw006f
    Please specify the cell server by IP address in /usr/omni/config/cell/cell_server
    to prevent DNS spoofing.
    %netw006f
    Disable fingerd in inetd's config file and restart inetd.  If you're
    running fingerd as a standalone daemon, please disable.
    %netw007f
    Disable identd in inetd's config file and restart inetd.  If you're
    running identd as a standalone daemon, please disable.
    %netw008f
    The listed service should be disabled in inetd's config file.
    %netw009f
    The listed routing daemon should be disabled.
    %netw010f
    /etc/securetty does not exist.   Please create it!  
    %netw011f
    /etc/securetty contains an invalid entry.
    %netw012f
    /etc/securetty is not OWNED by an admin user.
    %netw013f
    /etc/securetty is not OWNED by an admin group.
    %netw014f
    /etc/securetty has world write permissions.
    %netw015f
    IP Forwarding is not permitted.  Please disable ip forwarding.
    %netw016f
    Your version of BIND is old, update to a more secure version.
    %netw017f
    Your version of wu-ftpd is old, update to a more secure version.
    %netw018f
    There is an administrative user (low UID) which can access the
    local FTP server. If the local FTP server is enabled and a user
    with administrative rights can access it remotely this might lead
    to a security compromise of the system. It is recommended for 
    administrative users to be added into /etc/ftpusers
    if you have a FTP server installed.
    %netw019w
    The sendmail configuration file (sendmail.cf) has the default
    sendmail banner. This means that when the mail server is active
    it publishes the version you are currently running. Attackers can use this 
    information to determine if you are running a vulnerable version.
    %netw020f
    There is no ftpusers configuration file. In some systems this might
    enable all administrative users (low UID) to access the local FTP 
    server if it is enabled (some other systems might deprecate its use). 
    It is recommended that administrative users are added into /etc/ftpusers
    if you have a FTP server installed.
    %netw021w
    There is a restricted user (uses a restricted shell) which can access the
    local FTP server. If the local FTP server is enabled and a restricted user
    can access it remotely this might lead to a security compromise of the
    system. It is recommended for restricted users to be added into
    /etc/ftpusers if you have a FTP server installed.
    tiger-3.2.3/doc/nfs.txt0000644000175000017500000001076507502327223013366 0ustar  pacopaco%nfs001f
    The anonymous ID defines the 'uid' to be used for authenticating
    NFS requests which have no credentials.  Setting this to 0 is
    very dangerous.  It allows the system to be compromised from client
    machines.
    %nfs002w
    The anonymous ID defines the 'uid' to be used for authenticating
    NFS requests which have no credentials.  Setting this to 0 is
    very dangerous.  It allows all files to be searched, possibly
    revealing security problems.
    %nfs003w
    Exporting the root file-system allows remote machines to
    access critical files such as /etc/passwd, possibly allowing
    the machine to be compromised.
    %nfs004f
    Exporting the root file system allows remote machines to
    access critical file such as /etc/passwd.  Exporting this
    R/W to everyone means that on the Internet can modify system
    files, allowing them to gain further access to the machine.
    %nfs005f
    Exporting the root file system allows remote machines to
    access critical file such as /etc/passwd.  Exporting this
    to everyone means that anyone on the Internet can browse system
    files, allowing them to find other security problems.
    %nfs006f
    Exporting a file-system R/W to everyone means that anyone can
    modify the data on your system, possibly making changes that
    allow them to login to the system and access or destroy other
    files.
    
    See `nfs013i'
    %nfs007w
    Exporting a directory to everyone means that anyone can
    look at your files.  The information gained can possibly
    be used to gain further access to the machine.
    
    See `nfs013i'
    %nfs008f
    Exporting the root file system read only and with root access
    will allow the remote machine to view system files,
    possibly allowing them to gain further access to the
    machine.
    %nfs009f
    Exporting the root file system with R/W and root access
    will allow the remote machine to edit system files,
    such as /etc/passwd, allowing them to gain access to the
    machine.
    %nfs010i
    Exporting a file-system with root access can allow the
    a user on the remote host to gain further access on
    the local machine.  Removing root exports is a means
    of limiting the number of affected machines in the
    event that a machine(s) is compromised.  In this case,
    the directory is protected on the server because the
    permissions are '700'.  Note on some platforms, if this
    is not the root directory of a file-system, then the
    server may still be vulnerable.
    %nfs011w
    The listed directory is exported with root access to a
    machine, and the directory is accessible on the server.
    By setting the permissions to 'rwx------', if the client is
    compromised, the server can not be compromised by any files
    which are placed underneath this directory, since they will	
    be unreachable by a non-privileged user on the server.
    Note on some platforms, if this is not the root directory
    of a file-system, then the server may still be vulnerable.
    
    %nfs012w
    The directory for a disk-less client is exported with
    root access, but the directory is not protected on the
    server because the permissions are not '700'.  By setting
    the permissions of the directory to `700', any files created
    from the client machine will not be accessible on the server.
    Note on some platforms, if this is not the root directory
    of a file-system, then the server may still be vulnerable.
    
    NOTE:  For the disk-less clients '/' (root) directory, the
    permissions can *not* be `700' as non-root processes on the
    client will not be able to access any files.  The permissions
    on the parent directory on the server should be set to `700'
    (or if feasible, the root directory of the file-system on which
    the directory resides should be set to `700').
    %nfs013i
    A common problem with setting up NFS exports is the inability
    to get the client access to work.  Often, in frustration,
    the administrator of the machine removes the export restrictions
    and exports the file systems to everyone.  This problem is
    usually caused by host name mismatches.  On most implementations
    of NFS, the name matching is case sensitive.  The name specified
    in the exports file (or equivalent) must match exactly.  One
    way of determining the correct name is to login to the client,
    then use `telnet' to login to the server.  The `who' or `finger'
    command can then be used to determine the client host name (it
    may be truncated, but enough information should be listed to
    determine the correct name).  This host name should be used in
    the access list in the exports file.
    %nfs014w
    Exporting the `/usr' partition with read/write access can allow
    the server to be compromised if the client is compromised.  An
    intruder can replace system binaries.  By exporting it read/only,
    they will be unable to do this.
    tiger-3.2.3/doc/passwd.txt0000644000175000017500000000731310217661040014067 0ustar  pacopaco%pass001w
    The listed username occurs more than once in the same file.  This
    indicates a configuration problem and should be corrected.
    %pass002w
    The listed userid (uid) occurs more than once in the same file.  This
    usually indicates a configuration problem and should be corrected.  On
    many systems, uid 0 (zero) and uid 1 (one) are often used for multiple
    usernames.  It is usually to completely disable all of the usernames
    except for `root' for uid zero and all of the usernames for uid one.
    %pass003w
    The listed entry does not have the correct number of fields.  This
    indicates a configuration problem that should be corrected.
    %pass004w
    The listed username occurs in separate password sources, but the userid
    (uid) is different in them.  This can lead to unexpected access to
    resources if not corrected.
    %pass005w
    The listed userid (uid) occurs in separate password sources, but the
    usernames are different.  This can lead to unexpected access to resources
    if not corrected.
    %pass006w
    The password files have integrity issues as found by 'pwck -r'.  This
    can lead to looping of password manipulation programs and to authentication
    or login issues if not corrected.
    %pass007w
    Some password controls or constraints are missing.  These should be be
    applied to all users via their /etc/login.defs configuration values.
    %pass008e
    The password file was not generated and cannot be analysed. This might
    probably happen due to Tiger not running with full administrative access.
    %pass009f
    The format of a given configuration file used for user (or group) 
    authentication has some inconsistency that might be a security vulnerability.
    %pass010w
    The listed groupname occurs more than once in the same file.  This
    indicates a configuration problem and should be corrected.
    %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.
    %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.
    %pass013w
    The listed username is not using an acceptable, cryptographic method for the
    password hash. 
    %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.
    %pass015w
    The listed login ID does not have a valid login program or shell.
    Usually these are defined in /etc/shells.
    %pass016w
    The listed login ID should not have "/" (system root directory)
    as its home drive. This is a possible security hole.
    %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')
    %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.3/doc/paths.txt0000644000175000017500000000617210217661040013707 0ustar  pacopaco%path001w
    The indicated file is in root's PATH, and is group writable, world
    writable or both.  This can allow Trojan horse programs or viruses to be
    planted into these executables and spread by `root'.  The group
    and world write permissions should be removed.
    %path002w
    The indicated file is in root's PATH, but is not owned by root.  This
    can allow Trojan horse programs or viruses to be planted into these
    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 decision
    to install most /usr/sbin/* and /usr/bin/* 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.
    %path003i
    No PATH variable could be extracted from the indicated file.  This either
    indicates that the PATH is not set in the file, or that the file is too
    complex to be able to extract it.
    %path004w
    The PATH variable from the indicated initialization file for `root' puts `.'
    (dot) in the PATH.  Having dot in `root's path can allow Trojan horse
    programs to be unknowingly executed by root.
    
    References: curry/33-34
                garfinkel/151-153
    %path005w
    The PATH variable from the indicated user and initialization file
    contains the `.' (dot) directory, but it is not the last component.
    This can cause Trojan horse programs to be executed.  It is recommended
    that `.' not be in the PATH (especially for `root'), but if it is included,
    it should be the last directory listed in the PATH variable.
    
    References: curry/33-34
                garfinkel/151-153
    %path006w
    The indicated directory from a user's PATH variable is writable.  This can
    allow commands in this directory to be replaced with Trojan horse programs.
    Note that this can be reported even if the directory itself does not have
    group or world write permissions.  This message is generated if any directory
    component of the pathname is writable (the directory itself can be replaced
    with a new, writable one if a directory higher up is writable).
    
    References: curry/33-34
                garfinkel/151-153
    %path007w
    The indicated directory is in `root's PATH, but is not owned by 'root'.
    This can allow Trojan horse programs to be placed into any executables
    in this directory.  The ownership of the directory should be changed
    to `root'.
    %path008i
    The indicated setuid program is in root's PATH, but is not owned by
    root.  Since it is setuid to a user other than root, there usually is
    no solution for this.  You should be aware of these though, as they
    can allow Trojan horse programs or viruses to be planted into these
    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.
    %path009w
    An initial setting of the PATH variable should be setup in the default
    locations for shell login programs (/etc/profile, /etc/csh.login, etc.).
    tiger-3.2.3/doc/pcap.txt0000644000175000017500000000160610217661040013510 0ustar  pacopaco%pcap001i
    The file indicated for a printer control does not exist.  This is just
    an informational message, though it probably means something in the
    print system isn't configured correctly.
    %pcap002i
    The indicated file or directory associated with a printer control does not
    have secure ownership.  This may represent a security vulnerability.
    %pcap002w
    The indicated executable associated with a printer control does not have
    secure ownership.  This may represent a security vulnerability, as it
    may be possible to replace the executable.
    %pcap003i
    The indicated file or directory associated with a printer control has
    group or world write permissions.  This may represent a security
    vulnerability.
    %pcap003w
    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.3/doc/permissions.txt0000644000175000017500000002370310217661040015142 0ustar  pacopaco%perm001a
    The owner of the indicated file is not correct.  This is a serious security
    problem and may indicate that an intrusion has occurred.  The system should
    be checked and cleaned.  The owner of the file should be corrected.
    %perm001f
    The owner of the indicated file is not correct.  With the incorrect ownership,
    a vulnerability may exist.  The owner of the file should be corrected.
    %perm001w
    The owner of the indicated file is not what is considered best for security
    reasons.  Unless you have a specific reason for not changing the ownership,
    this should be corrected.
    %perm002a
    The group owner of the indicated file is not correct.  This is a serious
    security problem and may indicate that an intrusion has occurred.  The
    system should be checked and cleaned.  The group owner of the file should be
    corrected.
    %perm002f
    The group owner of the indicated file is not correct.  With the incorrect
    group ownership, a vulnerability may exist.  The group owner of the file
    should be corrected.
    %perm002w
    The group owner of the indicated file is not what is considered best for
    security reasons.  Unless you have a specific reason for not changing the
    ownership, this should be corrected.
    %perm003a
    The access permissions of the indicated file are incorrect.  This may
    indicate an intrusion has occurred.  In any event, it is a serious security
    problem and should be corrected immediately.  The system should also be
    checked for signs of intrusion.
    %perm003f
    The access permissions of the indicated file are incorrect.  This may
    create a vulnerability in the system.  This should be corrected immediately.
    %perm003w
    The access permissions of the indicated file are not what is considered
    best for security.  Unless you have a reason for not doing so, the permissions
    should be corrected.
    %perm004c
    No file permissions database can be found.  This will prevent the
    checks of file ownerships to be performed.  This likely indicates
    that a complete port has not been done for this platform.
    %perm005a
    The /etc/security directory contains security information that should
    not be accessible by non-root users.  The owner should be root, and group
    and world should have only search access (mode 711).  The directory
    unfortunately must be search-able because of some library routines which
    check for the existence of the security.adjunct file.  The files in the
    directory should be mode 600.
    %perm006w
    The configuration files (.login, .profile, etc) should be not be writable
    by non-root users.  In addition, the .rhosts file should not be readable
    or writable by non-root users.
    %perm007f
    The /etc/aliases, /etc/aliases.dir and /etc/aliases.pag files should not
    be writable by non-root users.  On SunOS 4 systems, these files are
    shipped world writable.  The permissions should be 644 on all three
    files.  If left writable, program aliases can be added which can
    allow unauthorized access.
    %perm008w
    The /etc/exports (or equivalent) file should not be writable by anyone
    other than root.  If a non-root user can modify the file, unauthorized
    privileges can be obtained.  There is also no reason for this file
    to be readable by anyone other than root.  Making it unreadable, reduces
    the information available to an intruder attempting to gain privileged
    access.
    %perm009f
    The /etc/group file should not be writable by anyone other than root.
    If a non-root user can modify the file, unauthorized privileges can
    be obtained.
    %perm010w
    The /etc/hosts.allow and /etc/hosts.deny files (from Wietse Venema's
    tcp_wrapper package) should not be writable by non-root users.  If
    they are writable, the protection provided by the package can be
    bypassed.  In addition, if all of the daemons protected by tcp_wrapper
    run as `root', then the file does not need to be readable by non-root
    users.  Making the permissions 600, reduces the information available
    to an intruder attempting to gain privileges.  If any daemons are
    run as non-root users though, this is not possible.
    %perm011w
    The /etc/hosts.equiv and /etc/hosts.lpd files define trusted hosts.
    The hosts.equiv file defines the trusted hosts for the Berkeley 'R'
    commands (rsh, rlogin), while the hosts.lpd file defines trusted hosts
    for the print system.  If the hosts.equiv or hosts.lpd file is writable
    by users other than root, then unauthorized privileges or access may
    be gained.  In addition, there is no reason for non-root users to be
    able to read these files.  Making them unreadable reduces the information
    available to an intruder attempting to gain privileges.
    %perm012w
    The /etc/inetd.conf file defines the network daemons controlled by
    `inetd'.  If this file is writable by non-root users, then unauthorized
    access can be obtained.  In addition, it is not necessary that this file
    be readable by non-root users.  Making the file unreadable reduces the
    information available to an intruder attempting to gain privileges.
    %perm013f
    The /etc/netgroup file defines network groups which consist of machines
    and users.  Allowing write access can allow unauthorized access or
    privileges.
    %perm014a
    If /etc/passwd is writable by non-root users, then new login id's
    can be added to the system.  Unauthorized access or privileges can
    easily be obtained.  If the file is world writable, this is a possible
    indication that the system has been compromised.  The system should
    be checked for other signs of intrusion.
    %perm015f
    The 'rc.*' scripts are executed during system startup.  If they are
    writable by non-root users, then unauthorized access or privileges can
    be obtained.  In addition, there is no need for these files to be world
    readable.  Making them unreadable reduces the information available to
    an intruder attempting to gain privileges.
    %perm016w
    The /etc/resolv.conf file is used to designate where Domain Name
    Service is to be obtained.  If this file is writable by non-root
    users, then unauthorized access or privileges may be obtained.
    This file does need to be world readable however.
    %perm017w
    The /etc/utmp file should not be writable by non-root users.  This
    is a security vulnerability.  Unfortunately, on SunOS 4 systems, the
    SunView and OpenWindows 'cmdtool' and 'shelltool' programs do not
    function correctly if it is not.  If you are not using these tools,
    then you should set the permissions to 644.
    %perm018a
    The root directory should be protected from changes by non-root users.
    If the directory is writable by non-root users, unauthorized access
    or privileges can be obtained.
    %perm019a
    The /etc directory should be owned by root and should not be writable
    by group or world.  As shipped, SunOS 4 systems have the /etc directory
    owned by the user `bin'.  This is *incorrect*.
    %perm020w
    The indicated disk device file is world readable, writable or both.  This
    allows the file access controls to be bypassed.  The world permissions
    should be removed.
    %perm021w
    The indicated disk device file is group readable, writable or both by the
    indicated group.  This allows users in this group to bypass the file
    access controls.  Many systems allow a group such as `operator' to have
    read access so that backups can be performed.  Group write access is
    *not* needed and should be removed.  If backups are performed by the
    `root' account, then group read permissions are not needed and should
    be removed.
    %perm022w
    The indicated disk device file is not owned by `root'.  This allows the
    owner of the disk device to bypass the systems file access controls.
    The owner should be changed to `root'.
    %perm023a
    The indicated file has the setuid bit set, but it should not have it.
    This should be changed by using 'chmod u-s file' where 'file' is the
    indicated file.  The system should be checked for signs of intrusion.
    %perm024a
    The indicated file has the setgid (group) bit set, but it should not
    have it.  This should be changed by using 'chmod g-s file' where 'file'
    is the indicated file.  The system should be checked for signs of
    intrusion.
    %perm025w
    If the 'arp' program is 'setgid', it can be used to read files that a user
    normally should not be able to read.  On many systems, this includes
    /dev/kmem and /dev/mem.  Turning the 'setgid' bit off will result in the
    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.
    %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.
    %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.
    %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.
    %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/
    %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.3/doc/pxt.txt0000644000175000017500000000657610217661040013413 0ustar  pacopaco%dev001f
    Tape devices used for backups should not have world permissions.
    %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
    properly set device access (using group configuration to provide
    access to a device to multiple users, for example).
    %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.
    %boot01
    The lilo configuration file (/etc/lilo.conf) should have permissions
    limiting access to only the owner (usually root).
    %boot02
    The grub configuration file (/boot/grub/grub.conf) should have
    permissions limiting access to only the owner (usually root).
    %boot03w
    A boot loader configuration file could not be found.  That means
    that neither /etc/lilo.conf nor /boot/grub/grub.conf exists.
    %ptch01f
    AutoRPM has determined that there are updated packages waiting
    to be installed.
    %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.
    %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
    are available for your system.  This message indicates that
    neither program was found on your system. 
    %ptch05e
    If the Tiger tool is not running as root it will probably not be
    able to update the package database from the latest sources available.
    Some errors might be printed on the output and the security check
    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.
    %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.
    %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.
    %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.
    %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 wise (support is only provided for the latest
    release). That is, "run at your own risk".
    %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 immediately before
    the line containing "rc 0".
    %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 legitimate
    please refresh the tripwire database by running "tripwire --update"
    tiger-3.2.3/doc/references.txt0000644000175000017500000000040107502327223014703 0ustar  pacopaco%curry
    David A. Curry,
    UNIX System Security - A Guide for Users and System Administrators,
    Addison-Wesley, 1992, ISBN 0-201-56327-4
    %garfinkel
    Simson Garfinkel and Gene Spafford,
    Practical UNIX Security
    O'Reilly & Associates, Inc., 1991, ISBN 0-937175-72-2
    tiger-3.2.3/doc/rhosts.txt0000644000175000017500000001316410223066745014121 0ustar  pacopaco%rcmd001f
    An entry of the form '+ +' in a .rhosts file means that any one on the
    the Internet can login as the indicated user without a password.  This
    should be removed *immediately* and the system checked for signs of an
    intrusion.
    %rcmd002f
    A plus sign (+) in the host field of a .rhosts file means that anyone
    with the same login ID as the indicated login ID, anywhere on the Internet,
    can login as that user, without a password.  Note that all an intruder
    has to do is create that login ID on a remote machine that they have
    privileged access to.  This should be removed *immediately* and the
    system checked for signs of an intrusion.
    %rcmd003w
    The .rhosts file for the indicated user contains an entry for a
    host which does not match any of the hosts listed in the RHOST_SITES
    variable, defined in the 'tigerrc' file.
    %rcmd004w
    The .rhosts file for the indicated user contains a '+' in the user
    field.  This allows any user on the indicated machine to access the
    indicated login ID without providing a password.  If this is not
    a captured account, this should be removed immediately and the
    system checked for signs of an intrusion.
    %rcmd005i
    The .rhosts file for the indicated user contains an entry which contains
    a host name, but no username.  The user name will default to the login ID
    of the owner of the .rhosts file.  The problem with this is that people
    often carry around a .rhosts file from host to host, and entries in it
    become out dated.  By allowing the username to default, access to the
    account can be granted which is not obvious.  Entries should be complete
    with host name and username.  They should also be checked and cleaned out
    regularly.
    %rcmd006w
    The indicated .rhosts file has permissions other than read and write
    for the owner of the file.  Allowing others to read the .rhosts file
    provides information about other "trusted" hosts which may allow them
    to compromise this host, the trusted hosts, or both.  The permissions
    should be at most read and write for the owner of the file.  Note that
    on some systems, because of network file systems, it is necessary to
    have world read access to the .rhosts file so that client machines can
    access the .rhosts file.  Most systems correctly handle this situation
    without the need for the world read access.  If yours does not, you
    should bring it to the attention of your vendor.
    %rcmd007w
    The indicated .rhosts file is a symbolic link.  This is not normal
    and should be looked at to see why it is like this.
    %rcmd008a
    The indicated .rhosts file is a directory.  This may indicate that
    an intrusion has occurred and the .rhosts directory is being used
    as a place to store files.  This should be examined.  The system
    should also be checked for signs of intrusion if the contents
    of the directory are unusual.  The directory should be removed.
    %rcmd009f
    The /etc/hosts.equiv file contains a '+' entry.  This is a major
    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.
    %rcmd010w
    The contents of the /etc/hosts.equiv file is listed.  The hosts
    listed here should be examined for correctness.
    %rcmd011f
    CERT Advisory CA-91:12
    
    A vulnerability exists in the trusted host facility such that
    the presence of a '-' as the first character of the /etc/hosts.equiv,
    /etc/hosts.lpd or .rhosts file may allow unauthorized access to the
    system.
    
    Rearranging the entries such that the entry with the leading '-'
    is not the first line, or deleting it if it is the only line
    will solve this problem.
    %rcmd012f
    The /etc/hosts.equiv file provides access using a netgroup which
    includes a member of the form (,,).  This is a wild card entry
    which matches any host.  This should be corrected immediately.
    %rcmd013w
    The /etc/hosts.equiv file and $HOME/.rhosts files do not support
    comments.  A commented entry is still valid.  It simply indicates
    a host with the character '#' as the first letter.  Since an attempt
    to comment out an entry indicates that it is no longer needed, it
    could simply be deleted. Note that comments might (potentially) 
    permit unauthorised access.
    %rcmd015w
    The indicated .rhosts file contains invalid characters, not expected
    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.
    %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)
    %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)
    %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.3/doc/root.txt0000644000175000017500000000103710217661040013546 0ustar  pacopaco%root001w
    The indicated file allows remote (i.e., other than system console).
    root logins for telnet and other services.  For /etc/default/login,
    be sure that the line "CONSOLE=/dev/console" exists.  For /etc/securetty,
    be sure that there are no ttyp entries.
    %root002w
    The indicated /etc/ftpusers file allows remote root ftp logins.  The entry
    "root" should be added to this file.
    %root003w
    The root user should not have the message capability turned on.  This
    could lead to inadvertent modification of files with the root user is
    logged in.
    tiger-3.2.3/doc/rootdir.txt0000644000175000017500000000051307756521611014260 0ustar  pacopaco%rootdir001f
    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.3/doc/rootkit.txt0000644000175000017500000000342310217661040014257 0ustar  pacopaco%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
    %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.
    %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. 
    %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. 
    %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.
    %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.3/doc/signature.txt0000644000175000017500000001653610217661040014576 0ustar  pacopaco%sig001e
    No signature database was found.  This likely indicates that a complete
    port of the security checking system has not been done for this system.
    It may also indicate an incorrect configuration of the security checking
    system.
    
    Because the signature database does not exist, it will not be possible
    to perform the checks for altered binaries and installed security
    patches.
    %sig002a
    The signature for the indicated file matches a signature obtained
    from a binary known to have been altered.  This indicates that the
    system has been compromised.  The system should be checked for other
    signs of intrusion and cleaned up.  The indicated binary should be
    replaced from distribution media.
    %sig003w
    The signature for the indicated file is recognized as the signature
    from a binary for which either a security patch exists, or a newer
    version of the security patch exists.  The file is out of date and
    should be replaced with one from the indicated patch.
    %sig004w
    No match was found for the signature of the indicated file.  This
    indicates either a local modification has been performed, replacing
    the binary, or that the file has been altered by an intruder.  If
    you are not aware of any local modifications, you should check this
    carefully.
    %sig005e
    Something prevented the system from reading the indicated file.  This
    should not occur if the security system is run from the root account
    on a non-MLS system.
    %sig006w
    CERT Advisory CA-92:11
    
    A vulnerability exists with regard to certain environment variables
    used in SunOS 4.x systems.  These vulnerabilities can occur in other
    setuid executables than the ones checked here (including third party
    software).   The following patches are available to fix Sun supplied
    software.
    
    Sun Patch ID 100630 /bin/login, /bin/su, /usr/5bin/su (international)
    
    Sun Patch ID 100631 /bin/login, /bin/su, /usr/5bin/su (domestic)
    
    Sun Patch ID 100633 /bin/login, /bin/su, /usr/5bin/su (ARM)
    %sig007a
    The signature for the indicated file matches a signature obtained
    from a binary known to have been altered.  This indicates that the
    system has been compromised.  The system should be checked for other
    signs of intrusion and cleaned up.  The indicated binary should be
    replaced from distribution media.
    %sig008w
    CERT Advisory CA-92:13
    
    A vulnerability exists in the NIS system for SunOS 4.x systems which
    may allow NIS maps, including the passwd maps, to be obtained by any
    host.  Sun Patch ID 100482 provides a fix for this.
    %sig009w
    CERT Advisory CA-92:11
    
    A vulnerability exists with regard to certain environment variables
    used in SunOS 4.x systems.  These vulnerabilities can occur in other
    setuid executables than the ones checked here (including third party
    software).  The following patch is available to fix Sun supplied
    software.
    
    Sun Patch ID 100377  /usr/lib/sendmail, /usr/lib/sendmail.mx
    %sig010w
    CERT Advisory CA-91:20
    
    A vulnerability exists in the 'rdist' command which can be exploited
    to gain unauthorized privileges.  This vulnerability exists in most
    versions of 'rdist' distributed before 1992.  Sun Patch ID 100383
    provides a fix for this.
    
    %sig011w
    CERT Advisory CA-91:10a
    
    A vulnerability exists in the print system (lpr, lpc, lpd, etc) on
    SunOS 4.x systems which can allow a user to delete files they do
    not own.  A fix for this vulnerability is provided in Sun Patch ID
    100305.
    %sig012w
    CERT Advisory CA-91:09
    
    A vulnerability exists in the rpc.mountd program which can allow
    any host to access NFS exported file systems.  This occurs when the
    length of the host access list for an entry exceeds 256 characters.
    Sun Patch ID 100296 provides a fix for this.
    %sig013w
    A vulnerability exists in the expreserve utility for SunOS 4.1.1
    systems which can be used to gain unauthorized privileges.  Expreserve
    is used by the 'ex' and 'vi' editors for preserving files when the
    editors terminate abnormally.  Sun Patch ID 100251 provides a fix
    for this.  (obsoleted by by Sun Patch ID 101080, [sig014w])
    %sig014w
    CERT Advisory CA-93:09a
    
    CIAC Advisory D-16
    
    A vulnerability exists in the expreserve utility for SunOS 4.1.1,
    4.1.2, 4.1.3, 5.0, 5.1, and 5.2 systems which can be used to gain
    unauthorized privileges.  Expreserve is used by the 'ex' and 'vi'
    editors for preserving files when the editors terminate abnormally.
    Fixes for this for SunOS 4.x and 5.x are:
    
    Sun Patch ID 101080 -- SunOS 4.x
    
    Sun Patch ID 101119 -- SunOS 5.0
    
    Sun Patch ID 101089 -- SunOS 5.1
    
    Sun Patch ID 101090 -- SunOS 5.2
    %sig015w
    CERT Advisory CA-91:01a
    
    A vulnerability exists in the /bin/mail and /bin/rmail utility for
    SunOS 4.x systems which can be used to gain unauthorized privileges.
    These programs are responsible for performing local mail delivery.
    Sun Patch ID 100224 provides a fix for this.
    %sig016w
    CERT Advisory CA-93:15
    
    A vulnerability exists in /usr/lib/sendmail which allows a remote
    user to gain access to the system.
    
    Sun Patch ID 100377-07 provides a fix for SunOS 4.x.
    
    Sun Patch ID 100840-03 provides a fix for Solaris 2.1.
    
    Sun Patch ID 101077-03 provides a fix for Solaris 2.2.
    
    (you should obtain the latest revision of the patch).
    %sig017w
    CERT Advisory CA-93:15
    
    A vulnerability exists in the 'tar' utility which causes it to
    place information from the passwd file in the archive set.  Archives
    created with this version of 'tar' should not be distributed.
    
    Sun Patch ID 100975-02 provides a fix for Solaris 2.1.
    
    Sun Patch ID 101301-01 provides a fix for Solaris 2.2.
    
    (you should obtain the latest revision of the patch)
    %sig018w
    The /usr/kvm/modload program can be used to gain super-user
    privileges.  Sun Patch ID 101200 provides a fix for this.  The
    documentation for the patch indicates that it is for SunOS 4.1.3, but
    examination of the SunOS 4.1.2 /usr/kvm/modload indicates it suffers
    from the same problem.  I do not know whether the modload binary in
    101200 will work with SunOS 4.1.2.
    %sig019w
    This is an additional fix to /usr/5bin/su.  See 'sig006w' for
    information on the initial fixes.
    
    /usr/5bin/su sets the default path with '.' as the first search
    directory.  This opens the system up to trojan programs.  Sun
    Patch Id 100630-02 provides a fix for this, in addition to those
    discussed in 'sig006w'.  Refer to the README provided with the
    patch for additional information concerning international sites.
    
    Sun Patch ID 100630 /usr/5bin/su
    %sig020w
    On SunOS 5.2, the FTP daemon does not correctly verify that the user's
    shell is valid.  As a result restricted accounts can login via FTP.
    
    Sun Patch ID 101037 provides a fix for this.
    %sig021w
    The remote shell daemon on Linux 0.99.12 from TAMU (and other distributions)
    does not understand shadow passwords.  If an entry in /etc/passwd (not
    /etc/shadow) has a null password field, a remote shell will succeed from
    any where to that account.  The 'passwd' command does *not* sanity check this
    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.
    %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.3/doc/ssh.txt0000644000175000017500000000150510217661040013360 0ustar  pacopaco%ssh001w
    The Protocol directive in the sshd_config file is not in the
    allowed protocol list.
    %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.
    %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.
    %ssh004w
    The PasswordAuthentication directive determines if passwords
    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
    files. You should setup that variable in your site-`hostname`
    configuration file.
    tiger-3.2.3/man/0000755000175000017500000000000011306441023012024 5ustar  pacopacotiger-3.2.3/man/tiger.8.in0000644000175000017500000003445410232556351013656 0ustar  pacopaco.TH TIGER 8 "12 August 2003" "Security" "Administrator Commands"
    .SH NAME
    tiger \- UNIX Security Checker
    .SH SYNOPSIS
    .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
    Tiger is a package consisting of Bourne Shell scripts, C code and
    data files which is used for checking for security problems on a
    UNIX system.  It scans system configuration files, file systems,
    and user configuration files for possible security problems and
    reports them.  The command
    .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
    The following arguments can be used when calling the program:
    .TP
    .BI "\-B " tigerdir
    Specify the directory where
    .B tiger
    is installed.  If not specified, @tigerhomedir@ is used.
    .TP
    .BI "\-l " logdir\fR|\fI@logserver
    Specify the name of the directory where
    .B tiger
    will write the security report.  This defaults to @tigerlogdir@.
    The filename of the report will
    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
    .BI "\-w " workdir
    Specify a directory to use for creating scratch files.  This defaults
    to \fI@tigerworkdir@\fR.
    .TP
    .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
    .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 \fIbindir\fR.
    .TP
    .BI "\-c " tigerrc
    Specify an alternate name for the
    .I tigerrc
    control file.  The default is '@tigerconfigdir@/tigerrc'.
    .TP
    .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
    .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 'explain.report.\fIhostname.date.time\fR'.
    .TP
    .B "\-G"
    Generate the signatures (MD5 hashes and file permissions)
    for system binary files.
    .TP
    .B "\-H"
    This option will format the report into HTML creating local links
    to the problem descriptions.
    .TP
    .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
    .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
    .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
    .B check_accounts
    Checks the accounts provided in the system, looking for disabled accounts
    with cron, rhosts, .forward, and valid shells.
    .TP
    .B check_aliases
    Performs a check for mail aliases and improper configuration.
    .TP
    .B check_anonftp
    Determines if the anonymous FTP service is properly configured.
    .TP
    .B check_cron
    Validates the cron entries in the system.
    .TP
    .B check_embedded
    Determines if embedded pathnames are configured properly.
    .TP
    .B check_exports
    Analyses configuration files for NFS exported filesystems to see if 
    access is properly restricted.
    .TP
    .B check_group
    Checks the UNIX groups available in the system, looking for conflicts
    and improper entries.
    .TP
    .B check_inetd
    Checks the inetd configuration file: compares against services 
    definition, valid directory paths, non-existent binaries and active
    services.
    .TP
    .B check_known
    Looks for known intrusion signs including backdoors and mail spools.
    .TP
    .B check_netrc
    Checks if users's netrc files are insecurely configured.
    .TP
    .B check_nisplus
    Looks for wrong configuration in the NIS+ entries.
    .TP
    .B check_passwd
    Checks the UNIX users available in the system, looking for conflicts
    and improper entries.
    .TP
    .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
    .B check_perms
    Check filepermissions and inconsistencies.
    .TP
    .B check_printcap
    Analyses the configuration for the printer control file.
    .TP
    .B check_rhosts
    Checks rhosts files in order to see if user's configuration leaves the
    system open to attack.
    .TP
    .B check_sendmail
    Checks sendmail configuration files.
    .B check_signatures
    Compares binary files signatures against those stored in the local database
    (provided with the program).
    .TP
    .B check_system
    This module calls the operating system's specific modules available at
    \fB/usr/lib/tiger/systems/\fR.
    .TP
    .B check_apache
    Checks the
    .B Apache
    configuration file and reports on generic issues which might introduce
    exposures or vulnerabilities in the system.
    .TP
    .B check_devices
    Checks for devices's permissions, warning about devices that have world
    permissions.
    .TP
    .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 inadvertently perform commands that can
    compromise your system's security when starting \fBvi\fR or \fBex\fR.
    .TP
    .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).
    .TP
    .B check_ftpusers
    Analyses the system's /etc/ftpusers and determines if the administrative
    users are in that file.
    .TP
    .B check_issue
    Checks the /etc/issue and /etc/issue.net file to determine if they
    contain the appropriate content (this is defined in the ISSUEFILE and
    ISSUENETFILE).
    .TP
    .B check_logfiles
    Checks for the existence of log files (wtmp, btmp, lastlog and utmp).  It
    will also check for proper umask settings.
    .TP
    .B check_lilo
    Analyses configuration files for lilo and grub boot loaders (Linux-specific).
    .TP
    .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
    .B check_passwdformat
    Checks the format of the /etc/passwd file in order to
    determine inconsistencies which indicate an intrusion or misconfiguration.
    .TP
    .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
    properly configured). This check is specific to Linux (RedHat or Debian).
    .TP
    .B check_root
    Checks if remote root login is allowed to the local system.
    .TP
    .B check_rootdir
    Checks the permissions for the root directory.
    .TP
    .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
    .B check_single
    Checks if the system is properly configured to disallow single-user
    access. This check is specific to Linux.
    .TP
    .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
    .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,
    .B Tiger
    will warn the administrator (this acts as a lightweight software watchdog)
    .TP
    .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
    .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
    .B check_umask
    Check for umask setting in configuration files.
    .TP
    .B check_xinetd
    Checks which xinetd services are enabled or disabled.
    .TP
    .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
    \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 (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
    .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
    .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
    .B deb_nopackfiles
    Looks for files installed in the system's directories that are not provided
    by any installed Debian packages (Debian-specific).
    .LP
    .SH FILES
    .TP
    .I @tigerconfigdir@/tigerrc
    Configuration file for the 
    .B Tiger
    tool.
    .TP
    .I @tigerconfigdir@/cronrc
    Configuration file for the
    .B Tigercron
    tool.
    .TP
    .I @tigerlogdir@
    Location of the log messages generated by 
    .B Tiger 
    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
    .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 intrusion detection
    system. These can be found in the top directory of the sources or
    in 
    .B @tigerhomedir@ 
    once it is installed (in Debian the location of the full documentation 
    set is \fB/usr/share/doc/tiger/\fR)
    .LP
    .SH BUGS
    There are a lot more things to check.
    .LP
    Some places in the package are not shell meta-character or white-space
    safe.
    .LP
    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 
    .I /usr/share/doc/tiger/README.Debian
    document or the
    .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,
    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).
    .PP
    A
    .B lot
    of changes were introduced by the ARSC team (a.k.a. the TARA team)
    Liam Forbes , Nathan Bills  and
    Mike Kienenberger , including support for quite a number 
    of operating systems.
    .PP
    Current upstream maintenance of
    .B Tiger 
    is being done by Javier Fernandez-Sanguino Peña and coordinated at
    \fIhttp://savannah.nongnu.org/projects/tiger\fR.
    .PP
    The adaptation for the GNU/Linux operating system was made by
    Robert L. Ziegler 
    .PP
    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
    .RB ( check_listeningprocs )
    and some specific for Debian
    .RB ( deb_checkadvisories ,
    .B deb_checkmd5sums
    and
    .BR deb_nopackfiles ).
    tiger-3.2.3/man/tigercron.8.in0000644000175000017500000000623510225013740014524 0ustar  pacopaco.TH TIGERCRON 8 "19 September 2003" "Security" "Administrator Commands"
    .SH NAME
    tigercron \- Cron utility for Tiger UNIX Security Checker 
    .SH SYNOPSIS
    .B tigercron
    .RI [ controlfile ]
    .RB [ -B
    .IR basedir ]
    .RI [ tigeroptions ...]
    .LP
    .SH DESCRIPTION
    .LP
    \fBTigercron\fR is used to run periodically checks from the Tiger
    UNIX Security Checker. \fBTigercron\fR reads a control file
    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 '@tigerconfigdir@/tigerrc' 
    (\fITiger_Mail_RCPT\fR) the results.
    
    When a module is run, \fBtigercron\fR 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.
    .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
    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 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.
    .SH OPTIONS
    \fBTigercron\fR uses the same options as \fBTiger\fR. A controlfile
    can be defined also to override the default.
    .SH FILES
    .TP
    .I @tigerconfigdir@/tigerrc
    Configuration file for the
    .B Tiger
    tool.
    .TP
    .I @tigerconfigdir@/cronrc
    Configuration file for the
    .I Tigercron
    tool.
    .TP
    .I @tigerlogdir@
    Location of the log messages generated by
    .B Tiger
    when run through
    .I cron
    .TP
    .I @tigerworkdir@
    Working directory used by
    .B Tiger
    scripts to create temporary files.
    .SH SEE ALSO
    .BR tigexp (8), tiger (8), cron (8), crontab (5)
    
    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 \fBcron\fR is not working.
    .SH AUTHOR
    This manpage was written by Javier Fernandez-Sanguino.
    tiger-3.2.3/man/tigexp.80000644000175000017500000000570310217661040013425 0ustar  pacopaco.TH TIGEXP 8 "12 August 2003" "Security" "Administrator Commands"
    .SH NAME
    tigexp \- UNIX Security Checker Explanation Generator
    .SH SYNOPSIS
    .B tigexp
    .IR msgid " [" msgid [ msgid ...]]
    .LP
    .B tigexp
    .RB [ -f | -F ]
    .RI [ security_report ]
    .LP
    .SH DESCRIPTION
    .LP
    \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
    .B "\-f"
    option will generate one explanation for each unique message id
    in the security report, whereas the
    .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 \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 \fBTiger\fR has detected a
    possible intrusion attempt or troublesome misconfiguration which can
    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. Appropriate action should be taken to fix this
    security issue.
    .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
    .B Tiger
    messages appear in this category.
    .TP
    .I INFO
    These includes information messages which are not necessarily a security
    violation but might be useful for the administrator. Note that the
    .I tigerrc
    configuration file through the
    .I Tiger_Show_INFO_Msgs
    option determines whether or not
    .B Tiger
    shows these items. The default behaviour is to
    .I not
    show them.
    .TP
    .I ERROR
    These messages are errors in the execution of
    .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
    .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
    .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.
    .LP
    .SH FILES
    $TIGERHOMEDIR/doc/explain.idx
    .LP
    .SH SEE ALSO
    .BR tiger (8)
    .LP
    .SH BUGS
    If the explanation index is out of date, it doesn't recognize it
    and generates junk.
    tiger-3.2.3/other/0000755000175000017500000000000011306441024012373 5ustar  pacopacotiger-3.2.3/other/cert-usc20.txt0000755000175000017500000044717007732462076015065 0ustar  pacopaco
                            UNIX Security Checklist v2.0
    *****
    ***** This is an annotated version of CERT's checklist which
    ***** specificies which of the checks are implemented automatically
    ***** by the Tiger security tool
    *****
         _________________________________________________________________
    
    Introduction
    
       This document has been published jointly by The Australian Computer
       Emergency Response Team (AusCERT) and the CERT Coordination Center
       (CERT/CC) and details steps to improve the security of Unix Operating
       Systems. We encourage system administrators to review all sections of
       this document and if appropriate modify their systems accordingly to
       fix potential weaknesses.
    
       The most current version of this document is available from:
    
         http://www.auscert.org.au/Information/Auscert_info/papers.html
    
       While this document details security procedures for UNIX based
       systems, it should not be used as a tool for recovering from a system
       compromise. For information regarding recovering from a system we
       encourage you to review the "Steps for Recovering from a UNIX or NT
       System Compromise" document, available from:
    
         http://www.auscert.org.au/Information/Auscert_info/Papers/win-UNIX-
         system_compromise.html
    
       It is our intention to continue to update this checklist. Any comments
       should be directed via email to auscert@auscert.org.au and
       cert@cert.org. Before using this document, ensure you have the latest
       version. New versions of this checklist will be placed in the same
       area and should be checked for periodically.
    
       If possible, apply this checklist to a system before attaching it to a
       network. In addition, we recommend that you use the checklist on a
       regular basis as well as after you install any patches or new versions
       of the operating system, with consideration given to the
       appropriateness of each action to your particular situation.
         _________________________________________________________________
    
                                     Disclaimer
    
       AusCERT and CERT/CC advise that this information is provided without
       warranty - sites should ensure that actions and procedures taken from
       information in this document are verified and in accordance with
       security policies that are in place within their organisation. Listing
       of an application program or tool within this document does not
       constitute endorsement by AusCERT, The University of Queensland, or
       CERT/CC.
         _________________________________________________________________
    
    Table of Contents:
    
    Section I. The First Step
    
         * 1.0 Patches
    
    Section II. The Basic Operating System
    
         * 2.0 Network Services
         * 3.0 Network Administration
         * 4.0 File System Security
         * 5.0 Account Security
         * 6.0 System Monitoring
    
    Section III. Major Services
    
         * 7.0 Name Service
         * 8.0 Electronic Mail
         * 9.0 Web Security
         * 10.0 FTP: ftpd and anonymous ftp
         * 11.0 File Services
         * 12.0 X Window System
    
    Section IV. Specific Operating Systems
    
         * 13.0 BSD-derived Operating Systems
         * 14.0 Linux Distributions
         * 15.0 Solaris
         * 16.0 IRIX
         * 17.0 HP-UX
         * 18.0 Digital/Compaq Tru64 Unix
         * 19.0 AIX
    
    Section V. Appendixes
    
         * A. Useful Security Tools
         * B. References
         * C. List of Commands by UNIX Flavour
         * D. Abbreviated Checklist
         * E. Unix Security Checklist - The Essentials
         _________________________________________________________________
    
    Section I. The First Step
    
    1.0 Patches
                ____________________________________________________
    
         * Retrieve the latest patch list for your specific operating system,
           as well as any applications (i.e. web server, DNS, etc...) from
           the appropriate vendors. Install any security patches not yet
           installed that are recommended for your system. Be aware that some
           patches may re-enable default configurations. For this reason, it
           is important to go through this checklist AFTER installing ANY new
           patches or software packages.
         * Details on obtaining patches for particular operating systems may
           be found in Section IV.
         * Verify the digital signature of any signed files. Encryption tools
           like PGP and GnuPG may be used to sign files and to verify those
           signatures. Refer to A.2.10 for PGP and GnuPG access information.
         * If a digital signature is not supplied but an MD5 checksum is,
           then verify the checksum information to confirm that you have
           retrieved a valid copy. Refer to A.2.6 for information on
           obtaining MD5 tools.
         * If only a generic sum(1) checksum is provided, then check that. Be
           aware that the sum(1) checksum will only detect modifications
           during transfer (e.g. download) and won't detect malicious changes
           prior to download. For this reason, it is always preferable to
           verify files with either PGP/GnuPG or MD5.
         * Keep your software and patches up to date. Notifications of patch
           releases are generally done via mailing lists.
              + Subscribe to the vendor's security update mailing list for
                your particular operating system. Refer to Section IV for
                individual operating system vendors.
              + Subscribe to security advisory mailing lists from your local
                incident response team (if you have one). These mailing lists
                are typically low volume and provide invaluable information
                for system and security administrators. Refer to B.2.3 for
                information on subscribing to related mailing lists.
    
    ***** This is not yet thoroughly checked by Tiger for all OS supported.
    ***** There is a check_patches script for both Linux and SunOS (5.8) which
    ***** have the issue of were to download the patch information from 
    ***** (in the Linux script it is provided with Tiger and in the SunOS
    ***** script it needs to be downloaded by the administrator from sunsolve.com)
         _________________________________________________________________
    
    Section II. The Basic Operating System
    
    2.0 Network Services
    
         * 2.1 /etc/inetd.conf
         * 2.2 tcp_wrapper
         * 2.3 fingerd
         * 2.4 "r" Commands
         * 2.5 /etc/hosts.equiv
         * 2.6 $HOME/.rhosts
         * 2.7 /etc/netgroup
         * 2.8 /etc/services
         * 2.9 /etc/hosts.lpd
         * 2.10 /etc/login.access
         * 2.11 /etc/login.conf
         * 2.12 /etc/login.defs
         * 2.13 PAM
         * 2.14 cron
         * 2.15 Secure Terminals
         * 2.16 RPC
              + 2.16.1 portmapper/rpcbind
         * 2.17 Trivial FTP (tftp)
         * 2.18 Majordomo
         * 2.19 UUCP
         * 2.20 REXD
                ____________________________________________________
    
       2.1 /etc/inetd.conf
         * ENSURE that the permissions on this file are set to 600.
    **** Done in the check_inetd script and also by check_perms
         * ENSURE that the owner is root.
    **** Done in the check_inetd script and also by check_perms
         * DO disable any services which you do not require.
    **** Done in the check_inetd script
              + To do this we suggest that you comment out ALL services by
                placing a "#" at the beginning of each line. Even seemingly
                innocuous services such as echo and chargen may be used in a
                DoS attack.
              + Enable the ones you NEED by removing the "#" from the
                beginning of the line. In particular, it is best to avoid "r"
                commands (e.g. rsh, rlogin) and tftp, as they have been major
                sources of insecurities.
              + For changes to take effect, you need to restart the inetd
                process. Do this by issuing the commands in C.1. For some
                systems (including AIX), these commands are not sufficient.
                Refer to vendor documentation for more information.
              + Verify that you have disabled any unnecessary startup
                scripts. This may be done by removing the executable bit, or
                renaming the files so they do not start with K or S under
                /etc/init.d or startup script directory for your system. See
                your vendor's documentation for specific details.
    **** Listening servers are checked for by the check_listeningprocs script.
    **** TODO: This is not checked for directly (i.e. rc.d scripts are not 
    **** checked to determine if there are systems enabled that should not be there)
         * DO use tcp_wrappers to provide greater access and logging on any
           enabled network services (see 2.2).
    **** check_tcpd determines which inetd services are run through tcp wrappers
         * DO enable access controls and logging for inetd if your version
           supports it.
    **** TODO: not done, preliminary version in check_network
    **** (Note: Linux's inetd does not have logging nor access control)
         * CONSIDER alternatives to inetd. Xinetd is claimed to have enhanced
           access control and logging capabilities as well as resistance to
           DoS attacks. It is included in the Red Hat Linux 7 distribution
           and the source code is available for other systems from:
         http://www.xinetd.org/
    **** There are some checks in the check_xinetd script (which should be 
    **** improved)
    
       2.2 tcp_wrapper
         * ENSURE that you are using this package as it allows you to monitor
           and filter incoming requests for common network services.
    **** Checked by check_tcpd, notice it also checks the file permissions of
    **** hosts.allow and hosts.deny which are not included in the checklist.
         * See A.1.13 for instructions to obtain tcp_wrapper.
         * Customise and install it for your system.
         * Enable PARANOID mode.
    **** TODO: not done yet. This could be done in hosts.allow/deny 
         * CONSIDER running with the RFC931 (ident) option.
    **** TODO: not done yet
         * Explicitly list trusted hosts which are allowed access to services
           on your machine in /etc/hosts.allow.
    **** TODO: not done yet
         * Deny all other hosts by putting all:all:deny in /etc/hosts.allow.
           Please note that the rules in this file work on a "First match
           wins" basis, so be sure to allow any required hosts/services
           before you deny all other connections.
    **** TODO: not done yet
         * Put all:all in /etc/hosts.deny to protect services that still use
           this file.
    **** TODO: not done yet
         * DO wrap all TCP services that you have enabled in /etc/inetd.conf.
    **** Checked by check_tcpd
    **** Note: but compares against the default system configuration
         * CONSIDER wrapping any UDP services you have enabled. If you wrap
           them, then you will need to enable the nowait option in the
           /etc/inetd.conf file.
    **** Checked by check_tcpd
    **** Note: but compares against the default system configuration
    
       2.3 fingerd
    **** Done in check_inetd
         * CONSIDER disabling the finger service if it is not considered
           essential.
         * ENSURE that you have an up-to-date version of fingerd. Do not use
           a version of fingerd that is older than 16 October, 2000. Refer to
           the AusCERT ESB:
    
         ftp://ftp.auscert.org.au/pub/auscert/ESB/ESB-2000.286
         * Fingerd can provide a would-be intruder with a lot of information
           about your host. CONSIDER the finger information you provide and
           think about reducing the content by disabling finger or by
           replacing it with a version that only offers restricted
           information. [NOTE: Other services such as rusers and netstat may
           give out similar information.]
         * DO NOT enable reverse finger as this can create a 'finger war' DoS
           loop with other systems also configured for reverse finger.
         * ENSURE that you configure fingerd to deny indirect finger
           requests. (i.e. finger user@some_host@your_host)
    
       2.4 "r" Commands
         * If you don't NEED to use the "r" commands (e.g. rlogin, rsh,
           rcp)...
    **** Done in check_inetd (for inetd servers)
              + DO disable all "r" commands unless specifically required, as
                they may increase your risk of password exposure in network
                sniffer attacks. Also, "r" commands have been a regular
                source of insecurities and attacks. Disabling them is by far
                the lesser of the two evils (Refer to 2.1).
         * If you must run the "r" commands...
    **** Done in check_inetd (for inetd servers)
              + CONSIDER replacing the "r" command functionality with more
                secure utilities, for example ssh and scp. Ssh is a vastly
                superior program over rsh, telnet, etc... because it encrypts
                your password as well as all data transmitted in the session.
                Refer to A.2.13 for information on where you can obtain ssh.
              + DO NOT allow the use of $HOME/.rhosts (See 2.6).
    **** Done in check_rhosts
              + DO use more secure versions of the "r" commands for cases
                where there is a specific need. Wietse Venema's logdaemon
                package contains a more secure version of the "r" command
                daemons. These versions can be configured to consult only
                /etc/hosts.equiv and not $HOME/.rhosts. There is also an
                option to disable the use of wildcards ('+'). Refer to A.2.4
                for access information for the logdaemon package.
    **** TODO: not done, but check_rhosts analyses for wildcards
              + DO filter ports 512, 513, and 514 (TCP) at your network
                border router to prevent access to them by people outside of
                your network. To limit access by people inside your network,
                these commands must either be disabled completely or
                restricted to certain hosts only by the configuration of the
                hosts.allow and hosts.deny files.
    **** TODO: not done, but could be done in hosts.allow and hosts.deny.
    
       2.5 /etc/hosts.equiv
         * It is recommended that the following actions be taken whether or
           not the "r" commands are in use on your system.
              + CHECK if the file /etc/hosts.equiv is required. If you are
                running "r" commands, this file allows other hosts to be
                trusted by your system. Programs such as rlogin can then be
                used to log on to the same account name on your machine from
                a trusted machine without supplying a password. If you are
                not running "r" commands or you do not wish to explicitly
                trust other systems, you should have no use for this file and
                it should be removed or emptied. Creating /etc/hosts.equiv as
                a zero-length file enables it to be monitored by utilities
                such as Tripwire (A.1.15) for modification. If it does not
                exist or is empty, it cannot cause you any problems if any of
                the "r" commands are accidentally re-enabled.
         * If you must use a /etc/hosts.equiv file
              + ENSURE that you keep only a small number of TRUSTED hosts
                listed.
              + DO use netgroups for easier management if you run NIS (also
                known as YP) or NIS+.
              + DO only trust hosts within your domain or under your
                management.
              + ENSURE that your /etc/host.conf (or equivalent) is set to the
                order hosts, bind. Specify in /etc/hosts.equiv the hosts for
                which you wish to allow "r" commands.
              + ENSURE that you use fully qualified hostnames (i.e.
                hostname.domainname.au).
              + DO specify usernames in /etc/hosts.equiv if access is only
                required for specific users.
              + ENSURE that you do NOT have a '+' entry by itself anywhere in
                the file as this may allow users access to the system.
    **** TODO: This is done by check_perms, but needs to be revised for 
    **** every configuration.
              + ENSURE that the permissions are set to 600.
              + ENSURE that the owner is set to root.
              + CHECK it again after each patch or operating system
                installation.
    
       2.6 $HOME/.rhosts
         * It is recommended that the following action be taken whether or
           not the "r" commands are in use on your system.
              + ENSURE that no user has a .rhosts file in their home
                directory. These files pose a greater security risk than
                /etc/hosts.equiv, as one can be created by each user. There
                are some genuine needs for these files, (e.g. running
                unattended backups over a network) so consider each one on a
                case-by-case basis.
    **** Done in check_rhosts
              + DO use cron to periodically check for, report the contents of
                and delete (or clear) $HOME/.rhosts files. Users should be
                made aware that you regularly perform this type of audit, as
                directed by your internal policy.
    **** Done by Tiger in it's cron.d configuration
         * If you must have such a file:
              + ENSURE that you do NOT have the symbol "-" as the first
                character in this file, or the symbol "+" on any line, as
                these may allow users access to the system.
    **** Done in check_rhosts
              + ENSURE that the permissions are set to 600.
    **** Done in check_rhosts
              + ENSURE that you use fully qualified hostnames (i.e.
                hostname.domainname.au).
    **** TODO: not done.
              + ENSURE that your /etc/host.conf (or equivalent) is set to the
                order hosts, bind and specify in it the hosts for which you
                wish to allow "r" commands.
    **** TODO: not done.
              + ENSURE that the owner of the file is the account's owner.
    **** Done in check_rhosts
              + ENSURE that usernames are specified.
    **** TODO: check if it's done.
              + ENSURE that usage of netgroups within .rhosts does not allow
                unintended access to this account. This is best achieved by
                specifying individual users and hosts you want to have
                access.
    **** TODO: check if it's done.
              + REMEMBER that you can also use logdaemon to restrict the use
                of $HOME/.rhosts (Refer to A.2.4).
    
       2.7 /etc/netgroup
    **** TODO: not done.
         * If you require the functionality of NIS, CONSIDER using NIS+ due
           to the inherent insecurity of NIS (YP).
         * If you are using NIS (YP) or NIS+, DO define each netgroup to
           contain only usernames or only hostnames. All utilities parse
           /etc/netgroup for either hosts or usernames, but never both. Using
           separate netgroups makes it easier to remember the function of
           each netgroup. The added time required to administer these extra
           netgroups is a small cost to ensure that strange permission
           combinations have not left your machine in an insecure state.
           Refer to the manual pages for more information.
    **** TODO: This is done by check_perms, but needs to be revised for 
    **** every configuration.
         * ENSURE that the permissions on this file are set to 600.
         * ENSURE that the owner is set to root.
    
       2.8 /etc/services
    **** TODO: This is done by check_perms, but needs to be revised for 
    **** every configuration.
         * ENSURE that the permissions on this file are set to 644.
         * ENSURE that the owner is root.
    
       2.9 /etc/hosts.lpd
    **** TODO: This is done by check_perms, but needs to be revised for 
    **** every configuration.
         * ENSURE that the owner is set to root.
         * ENSURE that the permissions on this file are set to 600.
    **** TODO: not done.
         * ENSURE that you use fully qualified hostnames (i.e.
           hostname.domainname.au).
         * CONSIDER preventing lpd from listening to the network unless
           necessary. It may be possible to accomplish this with command-line
           arguments - refer to your vendor documentation or man pages.
         * DO filter the printer port (515/tcp) on your routers. Many of the
           recent worms exploit buffer overflows in lpd.
    
       2.10 /etc/login.access
    **** TODO: not done yet
    **** Note: Does not apply to Linux but Linux supports Pam configuration.
         * CONSIDER using this file as it provides finer control over user
           access. Please refer to your vendor documentation for more
           details. [NOTE: This file may not exist on all versions of Unix.]
         * CONSIDER modifying this file to disallow remote access to
           privileged accounts. An example to disallow non-local logins to
           privileged accounts (group wheel):
    
         -:wheel:ALL EXCEPT LOCAL
    **** TODO: not done yet, could be done in check_perms, implemented 
    **** in the mklst script
         * ENSURE that the owner is set to root.
         * ENSURE that the permissions on this file are set to 600.
         * ENSURE that you use fully qualified hostnames or domains (i.e.
           hostname.domainname.au or .domainname.au)
    
       2.11 /etc/login.conf
    **** TODO: not done yet. 
    **** Note: Does not apply to Linux.
         * This file is used by default on some BSD systems, users that are
           not created with a specified class are in the 'default' class.
         * DO use this file to set up user environment and to set policy and
           accounting restrictions.
    **** TODO: not done yet, could be done in check_perms, implemented 
    **** in the mklst script
         * ENSURE that the owner is set to root.
         * ENSURE that the permissions on this file are set to 600.
         * CONSIDER creating specific user classes to enable finer control of
           users.
    
       2.12 /etc/login.defs
    **** TODO: not done yet. 
         * This file is used by some Linux systems.
         * DO use this file to provide centralised control over user
           environment settings.
    **** TODO: not done yet, could be done in check_perms, implemented 
    **** in the mklst script
         * ENSURE that the owner is set to root.
         * ENSURE that the permissions on this file are set to 600.
    
       2.13 PAM (Pluggable Authentication Modules)
    **** TODO: not done yet. 
         * Be aware that PAM may be operational by default on your system.
         * To find out if a given executable uses PAM, execute the command
           ldd [path to executable file]. For example, the resulting output
           for /usr/bin/login on a FreeBSD 4.x system:
        /usr/bin/login:
        libutil.so.3 => /usr/lib/libutil.so.3 (0x28068000)
        libcrypt.so.2 => /usr/lib/libcrypt.so.2 (0x28072000)
        libpam.so.1 => /usr/lib/libpam.so.1 (0x28074000)
        libc.so.4 => /usr/lib/libc.so.4 (0x2807d000)
                   Note the libpam.so.1, this is a PAM module.
         * Depending on the system, PAM may be configured with the file
           /etc/pam.conf or with individual configuration files in
           /etc/pam.d/.
         * ENSURE that PAM is configured to be secure by default - a
           misconfigured service may result in an attempt to authenticate
           using a less secure mechanism, which should be always denied.
         * CONSIDER disabling unneeded services under PAM, either by
           renaming/deleting the individual files or by editing
           /etc/pam.conf.
         * More information about PAM is available from:
    
         http://www.kernel.org/pub/linux/libs/pam/
         http://www.sun.com/solaris/pam/
    
       2.14 cron
    **** Done by check_cron
         * ENSURE that the permissions for root's crontab are set to 600.
         * ENSURE that the owner is set to root.
         * CONSIDER disallowing cron for regular users.
    
       2.15 Secure terminals
    **** TODO: not done yet. 
         * This file may be called /etc/ttys, /etc/default/login,
           /etc/security or /etc/securetty depending on the operating system.
           See the manual pages for file format and usage information.
    **** TODO: not done yet, could be done in check_perms, implemented 
    **** in the mklst script
         * ENSURE that this file is owned by root.
         * ENSURE that the permissions on this file are 600.
    **** TODO: not done yet. 
         * DO NOT allow remote root access.
         * ENSURE that the secure option is removed from all local entries
           that don't need root login capabilities. The secure option should
           be removed from console if you do not want users to be able to
           reboot in single user mode. [NOTE: This does not affect usability
           of the su(1) command.]
    
       2.16 RPC
    **** TODO: not done yet. 
         * ENSURE that your system is not running a vulnerable rpc.statd.
           Refer to the AusCERT ESB:
    
         ftp://ftp.auscert.org.au/pub/auscert/ESB/ESB-2000.222
         * DO use secure RPC for the running services where possible.
         * DO filter port 111 (tcp) on your router to disable access to RPC
           services from outside your network.
         * 2.16.1 portmapper/rpcbind
              + DON'T enable the portmap service unless necessary. A machine
                that doesn't use the sunrpc services (i.e. NFS or NIS)
                doesn't need portmap.
              + DO disable any non-required services that are registered with
                the portmapper on start up. See C.2 for a command to help
                check for registered services.
              + CONSIDER replacing portmapper/rpcbind with a more secure
                version which can restrict local forwarding of rpc calls
                (indirect calls) and provides enhanced logging. See A.2.11
                for more info.
    
       2.17 Trivial FTP (tftp)
    **** Done by check_inetd
         * DO disable tftp if not needed, comment it out from the file
           /etc/inetd.conf and restart the inetd process. (Refer to C.1)
         * If required, DO 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.
         * ENSURE that the files in the tftp area are not writable.
    
       2.18 Majordomo
    **** TODO: not done yet. 
         * ENSURE that you are using the latest version of Majordomo. It is
           available via anonymous FTP from:
    
         ftp://ftp.greatcircle.com/pub/majordomo/
           or via HTTP from:
    
         http://www.greatcircle.com/mojordomo/
    
       2.19 UUCP
    **** TODO: not done yet. 
         * DO disable the uucp account, including it's login shell, if it is
           not used at your site. Remember, uucp may be shipped in a
           dangerous state.
    **** Done in check_rhosts
         * REMOVE any .rhosts file at the uucp home directory.
    **** TODO: not done yet. 
         * ENSURE that the file L.cmds is owned by root.
    **** Done by find_files (but not specific to uucp)
         * ENSURE that no uucp owned files or directories are world writable.
         * ENSURE that you have assigned a different uucp login for each site
           that needs uucp access to your machine.
         * ENSURE that you have limited the number of commands that each uucp
           login can execute to a bare minimum.
         * CONSIDER deleting the whole uucp subsystem if it is not required.
         * ENSURE there are no vendor-supplied uucp or root crontab entries.
    
       2.20 REXD
    **** Done by check_inetd
         * DO disable this service. Comment this out in the inetd.conf file.
           Refer to 2.1 for details on how to do this. rexd servers have
           little or no security in their design or implementation. Intruders
           can exploit this service to execute commands as any user.
    
    **** TODO: it does not recommend removing udp versions of echo/chargen
    **** (maybe even TCP?) since they could be spoofed and used for DoS attacks
         _________________________________________________________________
    
    3.0 Networking Administration
    
         * 3.1 Packet Filtering
         * 3.2 Denial of Service Attacks
         * 3.3 Encryption and Strong Authentication
                ____________________________________________________
    
       3.1 Packet Filtering
    **** TODO: not done yet. 
         * DO use packet filtering at network or administrative borders to
           enforce security policies by restricting network traffic entering
           and leaving your domain.
         * DO use multi-layer firewalls, such as a host-based firewall in
           addition to network packet filtering.
         * DO use protocol type, destination address, and destination port
           information to construct packet filters to enforce security
           policies for inbound traffic.
         * ENSURE that ONLY packets for those services which require access
           across your network or administrative border are allowed to enter
           and leave your domain.
         * In particular, if external traffic to and from the following
           services is not required at your site, use packet filters to block
           traffic to and from the following services. Inbound filters should
           block based on protocol type and destination port. Outbound
           filters should block based on protocol type and source port.
        NAME       PORT/PROTOCOL    NAME              PORT/PROTOCOL
    
        tcpmux        1/tcp         netbios-ns         137/udp
        echo          7/tcp         netbios-dgm        138/tcp
        echo          7/udp         netbios-dgm        138/udp
        discard       9/tcp         netbios-ssn        139/tcp
        discard       9/udp         netbios-ssn        139/udp
        systat       11/tcp         imap               143/tcp
        daytime      13/tcp         snmp               161/udp
        daytime      13/udp         snmp-trap          162/udp
        netstat      15/tcp         xdmcp              177/udp
        chargen      19/tcp         exec               512/tcp
        chargen      19/udp         biff               512/udp
        ftp          21/tcp         login              513/tcp
        ssh          22/tcp         who                513/udp
        telnet       23/tcp         shell              514/tcp
        smtp         25/tcp         syslog             514/udp
        domain (DNS) 53/tcp         printer            515/tcp
        domain (DNS) 53/udp         talk               517/udp
        bootps       67/tcp         ntalk              518/udp
        bootps       67/udp         route              520/udp
        bootpc       68/tcp         klogind            543/tcp
        bootpc       68/udp         socks             1080/tcp
        tftp         69/udp         nfs               2049/tcp
        finger       79/tcp         nfs               2049/udp
        http         80/tcp         X11     6000 to 6000+n/tcp
        pop2        109/tcp
        pop3        110/tcp         (n = maximum number of X servers)
        sunrpc      111/tcp
        netbios-ns  137/tcp
    
                 * ENSURE that ONLY hosts in your domain exchanging
           legitimate traffic with external hosts are allowed to send and
           receive packets for required services.
         * For inbound filters, use protocol type, destination address, and
           destination port. For outbound filters, use protocol type, source
           address, and source port.
         * Hosts not required to route TCP/IP packets should have this
           facility disabled. An example of disabling this for a Linux
           system:
    
         echo 0 > /proc/sys/net/ipv4/ip_forward
         * Filtering can be difficult to implement correctly. For more
           information on packet filtering and firewalls, please see:
    
         Firewalls and Internet Security B.1.6
         Building Internet Firewalls B.1.7
         Deploying Firewalls
    
         http://www.cert.org/security-improvement/modules/m08.html
    
       3.2 Denial of Service Attacks
    **** TODO: not done yet. 
         * DO take steps to prevent your site being used to launch denial of
           service attacks against other Internet sites.
         * DO disable IP directed broadcasts for subnetworks within your
           domain to prevent your network from being an intermediary in
           certain types of denial of service attacks.
         * For more information about IP directed broadcast and associated
           denial of service attacks, see:
    
         AusCERT Alert AL-98.01 - multiscan ('mscan') Tool
         ftp://ftp.auscert.org.au/pub/auscert/advisory/AL-98.01.mscan
         CERT/CC Advisory CA-1998-01 - Smurf IP Denial-of-Service Attacks
         http://www.cert.org/advisories/CA-1998-01.html
         AusCERT Alert AL-1999.001 - "sscan" scanning tool
         ftp://ftp.auscert.org.au/pub/auscert/advisory/AL-1999.001.sscan
         RFC2644/BCP34 - Changing the Default for Directed Broadcasts in
         Routers
         http://rfc.net/rfc2644.html
         UNIX IP Stack Tuning Guide v2.7 (Rob Thomas)
         http://www.cymru.com/~robt/Docs/Articles/ip-stack-tuning.html
         * DO use packet filters to allow ONLY packets with a legitimate
           source IP address to originate (or transit) your network. Many
           denial of service attacks depend on the ability for an intruder to
           generate false, or spoofed, source IP addresses in packets. For
           more information on anti-spoofing filters, see:
    
         CERT/CC Advisory CA-1998-01 - Smurf IP Denial of Service Attacks
         http://www.cert.org/advisories/CA-1998-01.html
    
         RFC2827/BCP38 - Network Ingress Filtering: Defeating Denial of
         Service Attacks which employ IP Source Address Spoofing
         http://rfc.net/rfc2827.html
         * DO use packet filters to block incoming packets with source IP
           addresses that are in well-known reserved address space. The
           authoritative list of assigned and reserved address space can be
           found at:
    
         http://www.iana.org/assignments/ipv4-address-space
           More information about address space allocated to private use can
           be found at:
    
         RFC1918 - Address Allocation for Private Internets
         http://rfc.net/rfc1918.html
         * DO take steps to prepare for responding to network-based denial of
           service attacks, particularly attacks based on distributed
           intruder tools.
    
         Results of the Distributed-Systems Intruder Tools Workshop:
         http://www.cert.org/reports/dsit_workshop-final.html
    
       3.3 Encryption and Strong Authentication
    **** TODO: not done yet. 
         * DO use encryption technologies when administrating hosts and
           network equipment in your domain to prevent administrator
           passwords and other sensitive information from crossing your
           network in clear-text. Information on various methods is available
           from:
    
         http://www.sans.org/infosecFAQ/encryption/encryption_list.htm
         * DO use strong authentication when accessing hosts in your domain
           to reduce the risk of a security breach due to false credentials.
         * The SSH protocol employs public key cryptography and provides both
           encryption and strong authentication. Refer to A.2.13 for
           information on where you can obtain ssh.
         _________________________________________________________________
    
    4.0 File system security
    
         * 4.1 General
         * 4.2 Startup and Shutdown Scripts
         * 4.3 External File Dystems/Devices
         * 4.4 File Permissions 
         * 4.5 Files Run by root
         * 4.6 Bin Ownership
         * 4.7 Tiger
         * 4.8 Tripwire
         * 4.9 The Coroner's Toolkit
                ____________________________________________________
    
       4.1 General
         * DO consider using the EXINIT environment variable to disable .exrc
           file functionality. These files may inadvertently perform commands
           that may compromise the security of your system if you happen to
           start either vi(1) or ex(1) in a directory which contains such a
           file. See C.11 for example commands to find .exrc files.
    **** This is done by check_exrc 
         * ENSURE that there are no .exrc files on your system that have no
           legitimate purpose.
    **** TODO: Partially done by check_accounts
         * ENSURE that any .forward files in user home directories do not
           execute an unauthorised command or program. The mailer may be
           fooled into allowing a normal user privileged access. Authorised
           programs may be restricted through use of smrsh (8.1 Sendmail).
           See C.12 for example commands to find .forward files.
    ***** Partially done by check_path
         * ENSURE user or directories shared amongst users are not specified
           before system directories in executable search paths (allows
           installation of Trojan programs).
    **** TODO: not done yet. 
         * DO consider using mount options, such as nosuid, nodev and noexec
           for user home partitions, /var and /tmp in your /etc/fstab or
           vfstab file. (please refer to your specific operating system's
           documentation for the exact file and location)
         * DO consider setting filesystem limits. For example, by enabling
           quota support for individual users or by using the resource-limits
           PAM module.
    
       4.2 Startup and Shutdown Scripts
    **** Done by check_umask
         * ENSURE that the default umask for all programs is 022.
    
       4.3 External File Systems/Devices
    **** TODO: not done yet. 
         * DO mount external file systems non-setuid and read-only where
           practical. For more information, refer to 11.1.
    
       4.4 File Permissions 
    **** Done by check_logfiles
         * ENSURE that the permissions of /etc/utmp and /var/adm/wtmp are set
           to 644.
    **** Done by check_perms
         * ENSURE that the permissions of /etc/motd and /etc/mtab are set to
           644.
    **** Done by check_perms
         * ENSURE that the permissions of /etc/syslog.pid
           (/var/run/syslog.pid on some systems) are set to 644. [NOTE: This
           may be reset each time you restart syslog.]
    **** Partially done in some checks
         * CONSIDER removing read access to system configuration files that
           users do not need to access, for example rc.* startup files and
           authentication files like /etc/hosts.allow.
    **** TODO: not done yet. 
         * ENSURE that logfiles (usually in /var/log/) are only writable by
           root.
         * CONSIDER using filesystem security features if your operating
           system supports them - system binaries may be made immutable, log
           files append-only.
    **** Done by check_perms
         * ENSURE that the kernel (e.g., /vmunix) is owned by root, has group
           set to 0 (wheel on SunOS) and permissions set to 644.
    **** Done by check_perms (but not strict)
         * ENSURE that /etc, /usr/etc, /bin, /usr/bin, /sbin, /usr/sbin, /tmp
           and /var/tmp are owned by root and that the sticky-bit is set on
           /tmp and on /var/tmp (see C.14) Refer to the AusCERT Advisory:
    
         ftp://ftp.auscert.org.au/pub/auscert/advisory/AA-95.07.Incorrect.Pe
         rmissions.on.tmp.may.allow.root.access
    **** Done by find_files
         * ENSURE that there are no unexpected world writable files or
           directories on your system. See C.15 for example commands to find
           group and world writable files and directories.
    **** Done by check_perms and also by find_files
         * ENSURE that files which have the SUID or SGID bit set, need to
           have it that way (see C.16). Remove this bit from programs that do
           not require elevated privileges to function successfully.
    **** Done by check_umask
         * ENSURE the umask value for each user is set to something sensible
           like 027 or 077. (Refer to C.4 for a shell script to check this).
    **** Done by check_devices
         * ENSURE all files in /dev are special files. Special files are
           identified with a letter (usually c for 'character' or b for
           'block') in the first position of the permissions bits. See C.17
           for a command to find files in /dev which are not special files or
           directories. [NOTE: Some systems have directories and a shell
           script in /dev which may be legitimate.] Please check the manual
           pages for more information.
    **** TODO: not done yet. 
         * ENSURE that there are no unexpected special files outside /dev.
           See C.18 for a command to find any block special or character
           special files.
    
       4.5 Files Run by root
    
    *** TODO: Note: this could be generically done by the find_files script
       We recommend that any script or binary to be executed by root should
       be owned by root and should not be world or group writable.
       Additionally, this file should only be located in a directory for
       which every parent directory is owned by root and is not group or
       world writable.
    **** Partially done by check_embed
         * CHECK the contents of the following files for the root account.
           Any programs or scripts referenced in these files should meet the
           above requirements:
              + ~/.login, ~/.profile and similar login initialisation files
              + ~/.exrc and similar program initialisation files
              + ~/.logout and similar session cleanup files
              + crontab and at entries
              + files on NFS partitions
              + /etc/rc* and similar system startup and shutdown files
         * If any programs or scripts referenced in these files source
           further programs or scripts they also need to be verified.
    
       4.6 Bin Ownership
    
       Many systems ship files and directories owned by bin (or sys). This
       varies from system to system and may have serious security
       implications.
    **** NOT done (does not make any changes)
         * CHANGE all non-setuid files and all non-setgid files and
           directories that are world readable but not world or group
           writable and that are owned by bin to ownership of root, with
           group id 0. - Please note that under Solaris 2.x changing
           ownership of system files can cause warning messages during
           installation of patches and system packages. One utility available
           to help Solaris administrators avoid this problem is fix-modes
           (A.2.3). Anything else should be verified with the vendor.
    
       4.7 Tiger
    **** Obviously this is ok
    **** TODO: should notify the people at CERT to update this info
         * DO run Tiger or a similar program that can automatically parse log
           files or check for vulnerable files. Many of the checks in this
           section can be automated by using this type of program.
         * To obtain this program, see A.1.14
    
       4.8 Tripwire
    **** Done, tiger runs tripwire and could be configured for the notes below
         * Tripwire is a file integrity checker, it is used for intrusion
           detection by monitoring for file-system changes.
         * DO run the statically linked binary.
         * DO store the binary, the database and the configuration file on
           hardware write-protected media.
         * To obtain this program, see A.1.15
    
       4.9 The Coroner's Toolkit
    **** Not done, but check_finddeleted does some of this
         * A forensic analysis tool, written by Wietse Venema and Dan Farmer.
           It may be used to statically examine storage devices from a
           compromised system, or to monitor a running system for unusual
           files or processes.
         * DO run this tool for compromise recovery and analysis on a
           non-networked machine.
         * To obtain this program, see A.1.8
         _________________________________________________________________
    
    5.0 Account Security
    
         * 5.1 Policy
         * 5.2 Administration
         * 5.3 Special Accounts
         * 5.4 root Account
         * 5.5 .netrc Files
         * 5.6 GCOS Field
         * 5.7 Authentication
              + 5.7.1 NIS, NIS+ and /etc/passwd Entries
              + 5.7.2 Password Shadowing 
              + 5.7.3 One-Time-Passwords
              + 5.7.4 LDAP
                ____________________________________________________
    
       5.1 Policy
    **** Note: this is done by the system but some could be automated
         * ENSURE that you have a password policy for your site. See the
           AusCERT Advisory:
    
         ftp://ftp.auscert.org.au/pub/auscert/advisory/AA-93.04.Password.Pol
         icy.Guidelines
           for guidelines on developing password policies.
         * ENSURE you have a User Registration Form for each user on each
           system. Make sure that this form includes a section that the
           intending applicant signs, stating that they have read your
           account usage policy and what the consequences are if they misuse
           their account.
         * DO use anlpasswd or a similar utility to proactively screen
           passwords as they are entered. This program runs a series of
           checks on passwords when they are set, which assists in avoiding
           poor passwords. It works with normal, shadow and NIS (or yp)
           password systems. (Refer to A.1.2 for how to obtain it)
    **** TODO: Not done
         * DO apply and enforce password aging.
         * It is possible to implement both proactive password screening and
           aging with Pluggable Authentication Modules (PAM). This facility
           provides for other forms of access control - consult the
           documentation if it is available for your system. Similar
           functionality is available in the /etc/login.defs file on some
           Linux systems.
    **** Done through crack_run
         * CONSIDER checking passwords periodically with Crack or "John the
           Ripper" or other password cracking program. (Refer to A.2.2 for
           how to obtain these programs). Organisations may wish to
           incorporate this procedure into a published security policy.
    **** TODO: Not done
         * DO implement the use of sudo in installations where multiple users
           require the ability to run processes as root. sudo allows for
           greater security by providing configurable limitations on the use
           of the root account. sudo will also log all attempts to use it via
           syslog or to a specified file. sudo is available from:
    
         http://www.courtesan.com/sudo/
         http://www.stikman.com/sudo/
         * CONSIDER implementing a Role Based Access Control mechanism such
           as RBAC which was developed by the National Institute of Standards
           and Technology (NIST). (Refer to A.2.12 for additional
           information)
    
       5.2 Administration
    **** Done by check_accounts
         * ENSURE that you regularly audit your system for dormant accounts
           and disable any that have not been used for a specified period of
           time, in accordance with your site's security policy. Send out
           account renewal notices by post and delete any accounts of users
           that do not respond. [NOTE: Do not email renewal notices because
           any accounts being used illegitimately will reply as expected and
           hence will not be discovered.]
    **** Done by check_passwd
         * ENSURE that all accounts have passwords. Check shadow, NIS, and
           NIS+ passwords too, if you have them. (i.e. the password field is
           not empty)
         * ENSURE that any user area is adequately backed up and archived.
    **** TODO: not done, logcheck should do this
         * DO regularly monitor logs for successful and unsuccessful su(1)
           attempts.
    **** TODO: not done, logcheck should do this
         * DO regularly check for repeated login failures.
    **** TODO: not done, logcheck should do this
         * DO regularly check for LOGIN REFUSED messages.
         * Consider quotas on user accounts if you do not have them.
         * Consider requiring that users physically identify themselves
           before granting any requests regarding accounts (e.g., before
           creating a user account).
    
       5.3 Special Accounts
    **** TODO: not done, this is not easy to automatically detect
         * ENSURE that there are no shared accounts other than root in
           accordance with site security policy. (i.e. more than one person
           should not know the password to an account)
         * Disable guest accounts. Better yet, do not create guest accounts!
           [NOTE: Some systems come preconfigured with guest accounts.]
         * DO use special groups (such as the "wheel" group under FreeBSD) to
           restrict which users can use su to become root.
    **** TODO: This is not done, but vendor accounts could be checked for
    **** based on a default username list.
         * DISABLE ALL default vendor accounts shipped with the Operating
           System. This should be checked after each upgrade or installation.
    **** TODO: not done.
         * DO disable accounts that have no password which execute a command,
           for example "sync". Delete or change ownership of any files owned
           by these accounts. Ensure that these accounts do not have any cron
           or at jobs. It is best to remove these accounts entirely.
    **** TODO: Done?
         * DO assign non-functional shells (such as /bin/false) to system
           accounts such as bin and daemon and to the sync account if it is
           not needed.
    **** Done by check_ftpusers
         * DO put system accounts in the /etc/ftpusers file so they cannot
           use ftp. This should include, as a MINIMUM, the entries: root,
           bin, uucp, ingres, daemon, news, nobody and ALL vendor supplied
           accounts.
    
       5.4 root Account
    **** TODO: This could not be easily done automatically (?)
         * DO restrict the number of people who know the root password. These
           should be the same users registered with groupid 0. Typically this
           is limited to at most 3 or 4 people.
    **** TODO: this could be done by checking log files or using lastlog
         * DO NOT log in as root over the network, in accordance with site
           security policy.
         * DO su from user accounts rather than logging in as root. This
           provides greater accountability.
    **** Done by check_rhosts
         * ENSURE root does not have a ~/.rhosts file.
    **** Done in check_path
         * ENSURE "." is not in root's search path.
    **** Done in check_path and check_embed
         * ENSURE root's login files do not source any other files not owned
           by root or which are group or world writable.
    **** Done in check_path and check_embed
         * ENSURE root cron job files do not source any other files not owned
           by root or which are group or world writable.
    **** Note: this is usage, cannot be monitored so easily
         * DO use absolute path names when root. (e.g. /bin/su, /bin/find,
           /bin/passwd.) This is to stop the possibility of root accidentally
           executing a trojan horse. To execute commands in the current
           directory, root should prefix the command with "./" (e.g.
           ./command)
    
       5.5 .netrc Files
    **** Done in check_netrc together with more checks
         * DO NOT use .netrc files unless it is absolutely necessary.
         * If .netrc files must be used, DO NOT store password information in
           them.
    
       5.6 GCOS Field
    **** TODO: not done
         * DO include information in the GCOS field of the password file
           which can be used to identify your site if the password file is
           stolen. e.g., joe:*:10:10:Joe Bloggs, Organisation
           X:/home/joe:/bin/sh
    
       5.7 Authentication
         * 5.7.1 NIS, NIS+ and /etc/passwd Entries
    **** TODO: not checked for
              + DO NOT run NIS or NIS+ if you don't really need it.
              + If NIS functionality is required, DO use NIS+ if possible due
                to the additional security features provided.
    **** TODO: Done in check_nisplus ?
              + ENSURE that the only machines that have a '+' entry in the
                /etc/passwd files are NIS (YP) clients; (i.e. NOT the NIS
                master server!) There appears to be conflicting documentation
                and implementations regarding the '+' entry format and so a
                generic solution is not available here. It would be best to
                consult your vendor's documentation. Some of the available
                documentation suggests placing a '*' in the password field,
                which is NOT consistent across all implementations of NIS. We
                recommend testing your systems on a case-by-case basis to see
                if they correctly implement the '*' in the password field.
                See C.10 for instructions.
    **** TODO: not done yet
              + ENSURE that /etc/rc.local or the equivalent startup procedure
                is set up to start ypbind with the -s option. This may not be
                applicable on all systems. Check your documentation.
              + DO use secure RPC if available for your platform. This is
                also known as DES authentication and is a Sun Microsystems
                secure authentication mechanism for RPC. It depends on
                synchronised clocks and a shared DES key. See the manpage for
                nisaddcred for more info.
         * 5.7.2 Password Shadowing
    **** TODO: not done yet
              + DO enable vendor supplied password shadowing or a third party
                product. Password shadowing restricts access to users'
                encrypted passwords.
    **** TODO: not done yet
              + DO periodically audit your password and shadow password files
                for unauthorised additions or inconsistencies.
         * 5.7.3 One-Time Passwords
    **** Note: not easy to audit automatically
              + CONSIDER using One-Time Passwords if users log into your
                machine via an insecure connection or protocol (such as
                telnet or ftp).
              + NEVER generate the master key or password lists over an
                insecure connection or protocol - these should be done
                locally on a secure (preferably not networked) machine.
              + ENSURE your users do not store password lists on or near
                their computer.
              + Minimise the number of passwords given to each user.
              + CONSIDER imposing a limit to the number of sequential failed
                logins. [NOTE: This has the possibilities of creating a DoS
                situation.]
              + A commonly used free version is Secure Key (S/KEY). This is
                implemented by default in the FreeBSD operating system. See
                A.2.8.
              + One-Time Passwords in Everything (OPIE) is another free
                implementation of non-replayable passwords. See A.2.8.
         * 5.7.4 Lightweight Directory Access Protocol (LDAP)
              + LDAP is a protocol for accessing online directory services.
              + LDAP supports encryption and access control lists.
              + ENSURE that you provide access controls for services provided
                by an LDAP server.
              + An open-source implementation of LDAP is available from:
    
         http://www.openldap.org/
              + A historical reference page for LDAP is at:
    
         http://www.umich.edu/~dirsvcs/ldap/
         _________________________________________________________________
    
    6.0 System Monitoring
    
         * 6.1 Account Security
         * 6.2 Log Files
         * 6.3 Network Security (syslog, etc)
                ____________________________________________________
    
       DISCLAIMER: We recommend you consult your organisation's security and
       privacy polices, as well as any laws for your area before implementing
                      any of the suggestions in this section.
    
       6.1 Account Security
         * DO regularly expire user passwords.
    ***** Done with crack_run
         * CONSIDER performing periodic checks of password security by
           running a cracking tool - for example, Crack or "John the Ripper"
           (See A.2.2) - against your password file.
    ***** TODO: Not checked
         * CONSIDER enabling auditing capabilities if available for your
           system - Solaris for example has a C2 auditing facility.
    ***** Done with check_runprocs but could be improved
         * DO actively monitor processes on your machines - tools are
           available that make it possible to do this remotely, like Big
           Brother (See A.1.3)
    ***** TODO: Not checked
         * DO run process accounting.
    ***** TODO: Not checked
         * CONSIDER logging all login attempts, both successful and
           unsuccessful.
         * DO examine accounting logfiles for activity, for example for su
           attempts.
         * CONSIDER disabling accounts after a number of failed login
           attempts. [NOTE: This has the possibilities of creating a DoS
           situation.]
    
       6.2 Log Files
    **** TODO: Tell CERT to recommend logcheck
         * DO make use of facilities provided with your operating system to
           assist with disseminating log files e.g. FreeBSD emails a summary
           of important system and security information to root as part of
           its pre-configured crontab.
         * DO use a reliable mechanism for log rotation. This may include
           replacing an existing logging daemon with a more secure or
           full-featured one.
         * DO use network and system daemons that have more comprehensive
           logging features, such as logdaemon (See A.2.4) and tcp wrappers
           (See A.1.13).
         * DO make use of syslog facilities for network logging and log to
           more than one host if possible.
    ***** TODO: not done yet
         * CONSIDER protecting your logfiles with filesystem security if
           possible, for example FreeBSD and Linux support flags to make
           files append-only.
    
       6.3 Network Security
    **** TODO: Tell CERT to recommend Nessus
         * DO use utilities to enable output profiling of log data, such as
           ISS (See A.3.1.3) or SAINT (See A.3.2.2).
         * CONSIDER implementing automated reporting facilities so that scans
           of your network are reported to the administrators of their
           originating domains.
    ***** Done with some of the integrity checking tools
         * DO check system files for modification regularly, using tools like
           Tripwire (See A.1.15).
         * DO keep a logbook of all sysadmin activity on each host on your
           network.
    ***** Done with check_listeningprocs
         * lsof (See A.2.5) is a tool for monitoring open system files and
           may be used to check for any suspicious activity.
         * DO thoroughly document any procedures associated with system
           modifications or upgrades.
         _________________________________________________________________
    
    Section III. Major Services
    
    7.0 Name Service
    
         * 7.1 BIND
         * 7.2 Alternatives
              + 7.2.1 DNS Tools by D. J. Bernstein
                ____________________________________________________
    
       7.1 BIND
    ***** TODO: not done yet
         * DO use the latest version of BIND available - there are known
           vulnerabilities in previous versions. Check for the latest
           releases at:
    
         http://www.isc.org/products/BIND
         * ENSURE that you turn off dynamic updates
         * CONSIDER applying the security practices detailed in the following
           documents:
    
         Secure BIND Template
         By Rob Thomas
         http://www.cymru.com/~robt/Docs/Articles/secure-bind-template.html
    
         Securing an Internet Name Server
         By Cricket Liu
         http://www.acmebw.com/resources/papers/securing.pdf
         Chroot-BIND HOWTO
         By Scott Wunsch
         http://www.linuxsecurity.com/docs/HOWTO/Chroot-BIND-HOWTO/Chroot-BI
         ND-HOWTO.html
    
       7.2 Alternatives
         * 7.2.1 DNS Tools by D. J. Bernstein
              + DNScache is a component of the djbdns collection of Domain
                Name System tools designed with security in mind.
              + The djbdns collection is available from:
    
         http://cr.yp.to/djbdns.html
         _________________________________________________________________
    
    8.0 Electronic Mail
    
         * 8.1 Sendmail
              + 8.1.1 /etc/aliases
         * 8.2 Alternatives (qmail and postfix)
              + 8.2.1 qmail by D. J. Bernstein
              + 8.2.2 postfix by Wietse Venema (uses an alias database)
         * 8.3 POP/IMAP
                ____________________________________________________
    
       8.1 Sendmail
    ***** TODO: not done yet
         * DO use the latest version of Eric Allman's sendmail. The latest
           version is available via anonymous FTP from:
    
         http://www.sendmail.org/
           NOTE: If you don't already run the current version of sendmail,
           then it may take you some time to build, install, and configure
           the system to your needs. For example, other sendmail
           configuration files may not be compatible with the latest version
           of sendmail.
         * If you use a vendor version of sendmail, ENSURE that you have
           installed the latest patches as sendmail has been a source of
           several security vulnerabilities.
         * DO use smrsh if you require progmailer functionality to limit
           sendmail's scope of program execution to programs in smrsh
           configuration only. smrsh is a restricted shell utility that may
           be configured to execute a specific list of programs. smrsh is
           included with recent versions of sendmail.
         * If you do not require progmailer functionality then DO disable
           mail to programs by setting this field to /bin/false in the
           sendmail configuration file.
         * ENSURE sendmail is configured to deny relaying from unknown hosts.
           This helps to prevent your mail server from being used
           inappropriately. (e.g. for spam/UCE)
         * DO increase sendmail logging to a minimum log level of 9. This
           will help detect attempted exploitation of the sendmail
           vulnerabilities. See C.5 for example commands.
         * DO increase the level of logging provided by syslog. Enable a
           minimum level of "info" for mail messages to be logged to the
           console and/or the syslog file. See C.6 for example code and
           instructions.
         * CONSIDER disabling the daemon mode on client hosts. This will
           still allow clients to use sendmail for mail delivery. If this is
           implemented, CONSIDER adding sendmail -q to your crontab to ensure
           delayed messages are delivered.
         * REMEMBER that you will need to restart sendmail for any changes to
           take effect. If you are running a frozen configuration file
           (sendmail.fc), you will need to rebuild it before restarting
           sendmail (C.7). Note that sendmail v8.x no longer supports frozen
           configuration files.
    **** Done with check_aliases
         * 8.1.1 /etc/aliases
              + ENSURE that all programs executable by an alias are owned by
                root, have permissions 755 and are stored in a directory
                specified by smrsh configuration e.g., /usr/libexec/sm.bin.
                Refer to your sendmail documentation for more details (8.1
                Sendmail).
    
       8.2 Alternatives (qmail and postfix)
         * 8.2.1 qmail by D. J. Bernstein
              + DO use the latest version of qmail. It is available at:
    
         http://cr.yp.to/qmail.html
              + Make sure you read all the documentation before you even
                begin to install and compile it.
              + It is recommended that qmail be used with tcpserver instead
                of inetd. It is available at:
    
         http://cr.yp.to/ucspi-tcp.html
              + qmail contains a sendmail 'dropin' to make conversion between
                the two transparent to users.
         * 8.2.2 postfix by Wietse Venema
              + DO use the latest version of postfix. To find your nearest
                anonymous FTP site for download, see:
    
         http://www.postfix.org/ftp-sites.html
              + ENSURE you have installed the relevant patches. See postfix's
                download page (above) for more information.
              + postfix's homepage can be found at:
    
         http://www.postfix.org
              + postfix has been designed to avoid common security problems
                such as shell access, set-uid, buffer overruns and DoS.
              + If you are thinking of using postfix instead of sendmail,
                read the documentation found on the postfix website and the
                mailing lists.
    
       8.3 POP/IMAP
    ***** TODO: not done yet
         * ENSURE that you have the latest version of your POP/IMAP software
           - there are known vulnerabilities in some previous and some
           obsolete POP/IMAP implementations. Ask your vendor for details if
           you are unsure.
         _________________________________________________________________
    
    9.0 Web Security
    
         * 9.1 General Configuration
              + 9.1.1 chroot
              + 9.1.2 CGI Programming
              + 9.1.3 daemon non-root uid
              + 9.1.4 Command Interpreters
              + 9.1.5 SSL
              + 9.1.6 Additional Configuration Matters
         * 9.2 Freely Available Servers
              + 9.2.1 Apache
              + 9.2.2 publicfile
              + 9.2.3 WU-FTPD
         * 9.3 Client Configuration 
                ____________________________________________________
    
       9.1 General Configuration
    ***** TODO: not done yet
         * 9.1.1 chroot
              + DO consider running the web server as a chrooted process.
                Changing the root environment so that the http service runs
                in a properly restricted area can minimise damage resulting
                from a compromised web server.
              + CONSIDER placing static files onto a read-only media, such as
                a hardware write-protected hard disk or CD-ROM.
         * 9.1.2 CGI Programming
    **** TODO: Done for Apache for check_apache but not all of the checks
              + ENSURE the server is configured to execute only those CGI
                scripts which reside in the CGI binary directory, e.g.,
                /cgi-bin. Set the ownership and permissions on this directory
                to 755 or 751. Consider monitoring changes to these scripts
                with such programs as Tripwire.
              + ENSURE that all default or example CGI scripts are backed up
                and removed if not needed or thoroughly tested for signs of
                bad programming practices (refer point below).
    **** TODO: A simple audit of scripts could be done (at least recommending
    **** some things like using -T or not using exec/eval/open in Perl...
              + DO audit CGI scripts for bad programming practices, for
                example, the use of:
                   o within perl - eval, exec, open() to a pipe, backticks,
                     and the regular expression modifier /e all may fork a
                     process. These can potentially be subverted to allow an
                     attacker to run an arbitrary command
                   o within C and C++ - popen() and system() are at risk in a
                     similar manner as perl above and can be subverted easily
                     to allow shell access.
              + DO test for untrustworthy user input. For example:
                   o unexpected input values - may cause the script to
                     perform actions which were not intended by the author;
                   o special characters - may allow unauthorised access. A
                     preferred alternative to checking for a list of
                     dangerous/special characters is to specify a list of
                     allowable characters;
                   o unexpectedly large input - may cause buffer overflow or
                     inappropriate actions;
                   o any other potential abuses.
              + DO use the tainting feature of Perl. CGI scripts written in
                Perl should be invoked with perl -T.
              + DO consider implementing CGI wrappers. Wrappers can be used
                to perform security checks on the script, e.g. - change the
                ownership of the CGI process, or use chroot as discussed
                above.
              + CONSIDER reading available documents on the Internet
                regarding secure programming. See B.2.5
         * 9.1.3 daemon non-root uid
    **** TODO: check_apache should determine if it's run as root
              + ENSURE that you DO NOT run your web service as root. The UID
                and GID of the service should be changed, after it has been
                started, to a user and group that has no privileged access on
                the server. The most popular Unix web server, Apache, lowers
                its ownership level immediately after starting - it still
                must be invoked as root to allow it to bind to a privileged
                port. This avoids the risk of any scripts the web service
                executes running as root.
    **** TODO: should be done in check_apache
              + DO set up script directories (e.g cgi-bin) to be owned by
                root and set permissions to 751. This prevents users from
                viewing contents of the directory whilst allowing the daemon
                to run the scripts within it. Additionally, if the server is
                compromised by sending unexpected input to a CGI script, the
                user that is running the server has no permission to edit or
                remove files from the script area.
              + DO set up the web server directory with root ownership.
              + ENSURE configuration, log, and binary files for the web
                server are owned by root and set permissions to 755.
         * 9.1.4 Command Interpreters
              + ENSURE that shells and command interpreters are removed from
                the web documents path.
              + CONSIDER running the web server machine solely for the
                purpose of being a web server (e.g. - do not run any other
                services such as mail, DNS etc) For such a server also remove
                all unnecessary accounts, unnecessary utilities, programs,
                compilers etc. and do not export any directories.
         * 9.1.5 SSL
              + DO consider using SSL (Secure Socket Layer) for encrypting
                any TCP/IP protocols in use. SSL can be used for server
                authentication, client authentication, and transmitting
                encrypted data.
              + DO consider using SHTTP (Secure HTTP).
         * 9.1.6 Additional Configuration Matters
    **** Done in check_apache
              + DO consider configuring the web server to not allow automatic
                directory listing if an index.html file is not present in the
                directory.
    **** Done in check_apache
              + DO consider configuring the web server to not follow symbolic
                links. This prevents a user with access to the web server's
                document tree from making other documents, outside the tree,
                available via symbolic links.
    **** TODO: should be done in check_apache
              + DO consider preventing or limiting use of server-side
                includes. Some web servers can be configured to limit
                processing of server-side includes to specific directories.
    **** TODO: should be done in check_apache
              + ENSURE that the directory of the documents served by the web
                server is not also available via anonymous FTP. Any
                restrictions to access to the documents set by the web server
                would be circumvented by anonymous FTP.
    
       9.2 Freely Available Servers
         * 9.2.1 Apache
              + There are a number of commercial web server packages
                available. A popular, freely available web-server is Apache.
                Current Apache binaries can be found at:
    
         http://www.apache.org/
              + ENSURE that the web server used is always patched against the
                latest vulnerabilities.
         * 9.2.2 publicfile
              + publicfile is a read-only HTTP and FTP server. It is
                available from:
    
         http://cr.yp.to/publicfile.html
         * 9.2.3 WU-FTPD
              + WU-FTPD is a replacement FTP daemon for Unix systems
                developed at Washington University. It is available from:
    
         http://www.wu-ftpd.org
         ftp://www.wu-ftpd.org
    
       9.3 Client Configuration 
    ***** TODO: not done yet, could be done for some common clients
         * DO NOT allow external programs to spawn for any downloaded files
           or content that contain executable material.
         * ENSURE web browsers are NOT configured to automatically run files
           when downloaded from the Internet. This includes not allowing
           browsers to automatically launch command line shells,
           interpreters, macro processors, and scripting language processors.
           This may be achieved using the application preferences for the
           browser.
         * DO consider terminating connections to secure pages if the web
           browser alerts that the host name in site certificate does not
           match the host name of the server the certificate came from.
         * DO consider rejecting site certificates signed by an unknown
           certifying authority.
         * ENSURE Java, JavaScript ActiveX are disabled in the web browser
           and built-in email readers that may come with the browser.
         * If you MUST enable Java, JavaScript, or ActiveX ENSURE you are
           running the latest version of your browser and respective run-time
           environments. This includes all related security patches.
         * DO NOT run a web browser as root.
         * CONSIDER removing cookies on a periodic basis. Alternatively
           consider making a symbolic link between the cookies file (e.g.
           ~/.netscape/cookies) and /dev/null.
         * DO consider utilising anti-virus software.
         * ENSURE web browsers are patched against the latest known security
           vulnerabilities.
         _________________________________________________________________
    
    10.0 FTP: ftpd and anonymous ftp
    
         * 10.1 General Server Configuration
         * 10.2 Incoming Directories
         * 10.3 Freely Available Servers
         * 10.4 Anonymous FTP Only
                ____________________________________________________
    
       10.1 General Server Configuration
    ***** TODO: not done yet
         * ENSURE that you are using the most recent version of the FTP
           daemon of your choice.
         * CHECK all default configuration options on your FTP server.
         * ENSURE that your FTP server does not have the SITE EXEC command
           (see C.8 for command details), or that this command is disabled
           correctly.
         * ENSURE that you have set up a file /etc/ftpusers which specifies
           those users that are NOT allowed to connect to your ftpd. This
           should include, as a MINIMUM, the entries: root, bin, uucp,
           ingres, daemon, news, nobody and ALL vendor supplied accounts.
         * CHECK all default configuration options on your FTP server. Not
           all versions of ftp daemons are configurable. If you have a
           configurable version of ftp (e.g., WU-FTP) then make sure that all
           delete, overwrite, rename, chmod and umask options (there may be
           others) are NOT allowed for guests and anonymous users. In
           general, anonymous users should not have any unnecessary
           privileges.
         * ENSURE that you DO NOT include a command interpreter (such as a
           shell or tools like perl) in ~ftp/bin, ~ftp/usr/bin, ~ftp/sbin or
           similar directory configurations that can be executed by SITE
           EXEC. For an example of a previous vulnerability, refer to AusCERT
           advisory:
    
         ftp://ftp.auscert.org.au/pub/auscert/advisory/AA-2000.02
         * DO NOT keep system commands in ~ftp/bin, ~ftp/usr/bin, ~ftp/sbin
           or similar directory configurations that can be executed by SITE
           EXEC. It may be necessary to keep some commands, such as
           uncompress, in these locations. Consider the inclusion of each
           command on a case by case basis and be aware that the presence of
           such commands may make it possible for local users to gain
           unauthorised access. Be wary of including commands that can
           execute arbitrary commands. For example, some versions of tar may
           allow you to execute an arbitrary file.
    ***** Done in check_anonftp
         * ENSURE that you use an invalid password and user shell for the ftp
           entry in the system password file and the shadow password file (if
           you have one). It should look something like:
    
         ftp:*:400:400:Anonymous FTP:/home/ftp:/bin/false
           where /home/ftp is the anonymous FTP area.
    ***** TODO: check if done in check_anonftp (some file permissions are done
    ***** but it does not enforce 555)
         * ENSURE that the permissions of the FTP home directory ~ftp/ are
           set to 555 (read nowrite execute), owner set to root (NOT ftp).
    ***** Done in check_anonftp
         * ENSURE that you DO NOT have a copy of your real /etc/passwd file
           as ~ftp/etc/passwd. Create one from scratch with permissions 444,
           owned by root. It should not contain the names of any accounts in
           your real password file. It should contain only root and ftp.
           These should be dummy entries with disabled passwords e.g.:
    
         root:*:0:0:Ftp maintainer::
         ftp:*:400:400:Anonymous ftp::
           The password file is used only to provide uid to username mapping
           for ls(1) listings.
    ***** TODO: should be done in check_anonftp
         * ENSURE that you DO NOT have a copy of your real /etc/group file as
           ~ftp/etc/group. Create one from scratch with permissions 444,
           owned by root.
    ***** TODO: Done for rhosts but not for .forward
         * ENSURE the files ~ftp/.rhosts and ~ftp/.forward do not exist.
    ***** TODO: Not done
         * DO set the login shell of the ftp account to a non-functional
           shell such as /bin/false.
    ***** Done in check_anonftp
         * ENSURE NO files or directories are owned by the ftp account or
           have the same group as the ftp account. If they are, it may be
           possible for an intruder to replace them with a trojan version.
    ***** TODO: Not done, should be done in check_anonftp
         * ENSURE NO files or directories in the FTP area are world writable.
    ***** Done in check_anonftp
         * ENSURE that the anonymous ftp user cannot create files or
           directories in ANY directory unless required (Refer to 10.1)
    ***** TODO: not done, should be in check_anonftp
         * ENSURE that the anonymous ftp user can only read information in
           public areas.
         * ENSURE that the system subdirectories ~ftp/etc and ~ftp/bin have
           the permissions 111 only, owner set to root.
         * ENSURE that the permissions of files in ~ftp/bin have the
           permissions 111 only, owner set to root.
         * ENSURE that the permissions of files in ~ftp/etc are set to 444,
           owner set to root.
    ***** TODO: not done, where should it be done ?
         * ENSURE that there is a mail alias for ftp to avoid mail bounces.
         * ENSURE /usr/spool/mail/ftp is owned by root with permissions 400.
         * NEVER mount disks from other machines to the ~ftp hierarchy unless
           they are set read-only in the mount command.
    
       10.2 Incoming Directories
    ***** TODO: should be done in check_anonftp
         * ENSURE that you don't have any writable directories. It is safest
           not to have any writable directories. If you do have any, we
           recommend that you limit the number to one, for instance an
           'upload' directory.
         * ENSURE that writable directories are not also readable.
           Directories that are both writable and readable may be used in an
           unauthorised manner.
         * ENSURE that any writable directories are owned by root and have
           permissions 1733.
         * DO put writable directories on a separate partition if possible.
           This will help to prevent denial of service attacks.
    
       10.3 Freely Available Servers
         * 10.3.1 WU-FTP
              + Make sure you are using the latest version of WU-FTPD and
                have applied all recommended patches. Versions of WU-FTPD
                prior to 2.6.1 have known security vulnerabilities.
              + WU-FTPD can be found at:
    
         http://www.wu-ftpd.org
         * 10.3.2 ProFTPD
              + ProFTPD does not support the SITE EXEC command.
              + ProFTPD can use mySQL password databases instead of password
                files, although at the time of writing there are a few known
                bugs, and compilation of ProFTPD with mySQL support can be
                difficult.
              + There are several mailing lists for ProFTPD, including
                development and help lists.
              + DO install the latest version of ProFTPD - previous versions
                are known to have bugs that may lead to security problems
                (but are more likely to cause problems in use.)
              + ProFTPD can be found at:
    
         http://www.proftpd.net/
         * 10.3.3 Publicfile
              + Publicfile is a read-only HTTP and FTP server. It is
                available from:
    
         http://cr.yp.to/publicfile.html
    
       10.4 Anonymous FTP Only
    ***** TODO: should be done in check_anonftp? some of this should be
    ***** dependant on server configuration.
         * To ascertain whether you are running anonymous FTP, try to connect
           to the localhost using anonymous FTP. Be sure to give an RFC822
           compliant username as the password (See C.9).
         * To disable anonymous FTP, move or delete all files in ~ftp/ and
           then remove the user ftp from your password file.
         * If you are running distributed passwords (e.g. NIS, NIS+) then you
           will need to check the password entries served to your machine as
           well as those in your local password file.
         * ENSURE that if you want to use anonymous FTP you have configured
           your server correctly. In general, anonymous users should not be
           allowed to create directories, delete anything, change the file
           system in any way (for instance change the permissions of a file)
           or upload files. If you do want anonymous users to upload files,
           follow the instructions above about general server configuration.
         * Limit the number of anonymous connections allowed, and also the
           number of times a single IP can be logged in at once. Anonymous
           should only be allowed to have one session active at a time -
           otherwise you leave yourself open to a DoS attack.
         _________________________________________________________________
    
    11.0 File Services
    
         * 11.1 NFS
         * 11.2 Alternatives
              + 11.2.1 Samba
              + 11.2.2 AFS
              + 11.2.3 DFS
                ____________________________________________________
    
       11.1 NFS
    ***** TODO: Not done fully, some is done in check_exports, should check
    ***** everything included here.
       When using NFS, you implicitly trust the security of the NFS server to
       maintain the integrity of the mounted files.
         * DO filter NFS traffic at the router. Filter TCP/UDP on port 111
           TCP/UDP on port 2049 This will prevent machines not on your subnet
           from accessing file systems exported by your machines.
         * DO apply all available patches. NFS has had a number of security
           vulnerabilities.
         * DO disable NFS if you do not need it. See your vendor supplied
           documentation for detailed instructions.
         * DO enable NFS port monitoring. Calls to mount a file system will
           then be accepted from ports < 1024 only. This will provide added
           security in some circumstances. See your vendor's documentation to
           determine whether this is an option for your version of UNIX (see
           also 15.4).
         * DO use /etc/exports or /etc/dfs/dfstab to export ONLY the file
           systems you need to export. If you aren't certain that a system
           needs to be exported, then it probably shouldn't be exported.
         * DO NOT self-reference an NFS server in its own exports file (i.e.
           the exports file should not export the NFS server to itself in
           part or in total). In particular, ensure the NFS server is not
           contained in any netgroups listed in its exports file.
         * DO NOT allow the exports file to contain a 'localhost' entry.
         * DO export to fully qualified hostnames only (i.e. use the full
           machine address 'machinename.domainname.au' and do not abbreviate
           it to 'machinename').
         * ENSURE that you never export file systems unintentionally to the
           world. Use a -access=host.domainname.au option or equivalent in
           /etc/exports.
         * DO export file systems read-only (-ro) whenever possible. See the
           manual page for exports or dfstab for more information.
         * If NFS is required in your situation, then DO use the secure
           option in the exports file and mount requests (if the secure
           option is available).
         * DO use showmount -e to see what you currently have exported.
    *** Done in check_perms
         * ENSURE that the permissions of /etc/exports are set to 644.
         * ENSURE that /etc/exports is owned by root.
    *** TODO: Not done
         * ENSURE that you run a portmapper or rpcbind that does not forward
           mount requests from clients. A malicious NFS client can ask the
           server's portmapper daemon to forward requests to the mount
           daemon. The mount daemon processes the request as if it came
           directly from the portmapper. If the file system is self-mounted
           this gives the client unauthorised permissions to the file system.
           Refer to A.2.11 for how to obtain an alternate portmapper or
           rpcbind that disallow proxy access.
         * REMEMBER that changes in /etc/exports will take effect only after
           you run /usr/etc/exportfs or equivalent.
         * You may wish to test your NFS implementation with NFSbug, a
           program which scans for known NFS holes. It is available from:
    
         ftp://ftp.cs.vu.nl/pub/leendert/nfsbug.shar
    
       NOTE: A "web of trust" is created between hosts connected to each
       other via NFS. That is, you are trusting the security of any NFS
       server you use.
    
       11.2 Alternatives
         * 11.2.1 Samba
    *** TODO: Not done, a check_samba is planned
           The Samba service provides filesystem shares to clients that are
           running other operating systems, usually a version of Microsoft
           Windows.
              + DO enable encrypted passwords for Samba using smbpasswd.
              + DO configure your shares for user-level security using the
    
         security = user
                parameter in smb.conf.
              + DO restrict access to your Samba service with the parameters:
    
         hosts allow =
         hosts deny =
              + DO protect your Samba services with firewall rules - Samba
                file services use NetBIOS over TCP/IP (also referred to as
                NBT and NetBT), so ports 135, 137, 138, and 139 (TCP) should
                be filtered.
              + CONSIDER using stronger authentication methods. Samba
                supports alternative authentication models, including
                Kerberos and Pluggable Authentication Modules (PAM).
              + CONSIDER encrypting your Samba traffic. Samba supports the
                Secure Sockets Layer (SSL) protocol.
           Samba sources and documentation are available from:
    
         http://www.samba.org/
         * 11.2.2 Andrew File System (AFS)
    *** TODO: Not done
           AFS is a distributed filesystem that makes use of Kerberos to
           authenticate users. It allows the use of access control lists
           (ACLs). It is available from the Transarc Corporation.
              + CONSIDER using AFS if it is available for your platform and
                appropriate for your needs.
           Information is available from:
    
         ftp://ftp.transarc.com/pub/afs-contrib/doc/faq/afs-faq.html
         http://www.transarc.ibm.com/Product/EFS/AFS/index.html
         * 11.2.3 DFS
    *** TODO: Not done
           DFS is a distributed filesystem, also available from the Transarc
           Corporation. Information is available from:
    
         http://www.transarc.ibm.com/Product/EFS/DFS/index.html
         _________________________________________________________________
    
    12.0 X Window System
    
         * 12.1 X Security - General
         * 12.2 Problems with xdm
                ____________________________________________________
    
       Access to your X server may be controlled through either a host-based
       or user-based method. The former is left to the discretion of the
       Systems Administrator at your site and is useful as long as all hosts
       registered in the /etc/Xn.hosts file have users that can be trusted,
       where "n" represents your X server's number.
    
       This may not be possible at every site, so a better method is to
       educate each and every user about the security implications (see
       references below). Better still, when setting up a user, give them a
       set of X security related template files, such as .xserverrc and
       .xinitrc. These are located in the users home directory.
    
       You are strongly advised to read the section on X window system
       security referred to in the X Window System Administrators Guide
       (B.1.4).
    
       12.1 X Security - General
         * DO read the man pages for xauth and Xsecurity. Use this
           information to set up the security level you require.
    **** TODO: Should be done by check_perms (it is only done for /var/tmp)
         * ENSURE that the permissions on /tmp are set to 1777. (i.e. the
           sticky bit should be set) The owner MUST always be root and group
           ownership should be set to group-id 0 or "system". If the sticky
           bit is set, no one other than the owner can delete the file
           /tmp/.X11-unix/X0, which is a socket for your X server. Once this
           file is deleted, your X server will no longer be accessible. See
           C.14 for example commands to set the correct permissions and
           ownership for /tmp.
    *** TODO: Not done
         * DO use the X magic cookie mechanism MIT-MAGIC-COOKIE-1 or better.
           With logins under the control of xdm (see 12.2), you can turn on
           authentication by editing the xdm-config file and setting the
           DisplayManager*authorize attribute to true. When granting access
           to the screen from another machine, use the xauth command in
           preference to the xhost command.
         * DO not permit access from arbitrary hosts. Remove all instances of
           the xhost + command from the system-wide Xsession file, from user
           .xsession files, and from any application programs or shell
           scripts that use the X window system.
         * CONSIDER encrypting your X network traffic, especially if you run
           remote clients locally. Ssh is a useful method.
    *** Done by check_listeningprocs but not analysed
         * CONSIDER configuring workstations to disable listening for
           incoming X sessions over the network. This is done on some
           operating systems by using the -nolisten tcp option. You should
           consult your specific operating system's documentation for
           specific instructions.
    
       12.2 Problems with xdm
    *** TODO: Not done
    
       DO not use any version of X11 prior to release 6 as it resolved
       security problems that existed in earlier versions. If necessary,
       obtain the source for X11R6 and compile and install it on your system.
       This may be obtained from:
    
         http://www.x11.org
    
         * xdm bypasses the normal getty and login functions, which means
           that quotas for the user, ownership of /dev/console and possibly
           other preventive measures put in place by you may be ignored.
         * You should consult your vendor and ask about potential security
           holes in xdm and what fixes are available.
         * Newer window managers that are available for Unix and Unix clones
           are provided with different X display managers (e.g. gdm, the
           Gnome project item) so you should check that there are no
           vulnerabilities specific to the instance of display manager that
           you choose.
         _________________________________________________________________
    
    Section IV. Specific Operating Systems
    
    13.0 BSD-derived Operating Systems
    
         * 13.1 BSD/OS
              + 13.1.1 Patches
              + 13.1.2 Security Advisories
         * 13.2 FreeBSD
              + 13.2.1 Patches
              + 13.2.2 Security Advisories
         * 13.3 NetBSD
              + 13.3.1 Patches
              + 13.3.2 Security Advisories
         * 13.4 OpenBSD
              + 13.4.1 Patches
              + 13.4.2 Security Advisories
                ____________________________________________________
    
       13.1 BSD/OS
         * 13.1.1 Patches
           Patches for the BSDI Internet Server and Internet Super Server can
           be found at:
    
         http://www.bsdi.com/services/support/patches/
         * 13.1.2 Security Advisories
           Security Advisories for the BSDI Internet Server and Internet
           Super Server can be found at:
    
         http://www.bsdi.com/services/support/
    
       13.2 FreeBSD
         * 13.2.1 Patches
           Patches for the FreeBSD operating system (choose your platform)
           can be found at:
    
         ftp://ftp.freebsd.org/pub/FreeBSD/releases/i386
         ftp://ftp.freebsd.org/pub/FreeBSD/releases/alpha
         * 13.2.2 Security Advisories
    
         http://www.freebsd.org/security/
    
       13.3 NetBSD
         * 13.3.1 Patches
           Security patches for the NetBSD operating system can be found at:
    
         http://www.netbsd.org/Security/
         * 13.3.2 Security Advisories
    
         http://www.netbsd.org/Security/
    
       13.4 OpenBSD
         * 13.4.1 Patches
           Patches for OpenBSD can be found at:
    
         ftp://ftp.openbsd.org/pub/OpenBSD/patches/
         * 13.4.2 Security Advisories
    
         http://openbsd.org/errata.html
         _________________________________________________________________
    
    14.0 Linux Distributions
    
         * 14.1 Caldera OpenLinux
              + 14.1.1 Patches
              + 14.1.2 Security Advisories
         * 14.2 Debian GNU/Linux
         * 14.3 Mandrake Linux
              + 14.3.1 Patches and Security Advisories
              + 14.3.2 Security Configuration Scripts
         * 14.4 Redhat Linux
              + 14.4.1 Patches and Security Advisories
              + 14.4.2 Security Configuration Scripts
         * 14.5 Slackware Linux
              + 14.5.1 Patches
              + 14.5.2 Security Advisories
              + 14.5.3 Security Configuration Scripts
         * 14.6 SuSE Linux
         * 14.7 TurboLinux
         * 14.8 Others
                ____________________________________________________
    
       14.1 Caldera OpenLinux
         * 14.1.1 Patches
           Updates for specific versions of the OpenLinux product can be
           found at:
    
         ftp://ftp.calderasystems.com/pub/updates/OpenLinux/
         * 14.1.2 Security Advisories
    
         http://www.calderasystems.com/support/security/
    
       14.2 Debian GNU/Linux
    **** TODO: Should provide special link to patches and advisories (the
    **** mailing list). Also should add a note about Bastille.
    
       Security information for Debian GNU/Linux, including links to security
       bulletins, patches and updates can be found at:
    
         http://www.debian.org/security/
    
       14.3 Mandrake Linux
         * 14.3.1 Patches and Security Advisories
           Security information for Mandrake Linux, including links to
           advisories, patches, and updates can be found at:
    
         http://www.linux-mandrake.com/en/security/
         * 14.3.2 Security Configuration Scripts
           The Bastille Hardening System attempts to "harden" or "tighten"
           the Linux operating system. It currently supports RedHat and
           Mandrake systems. Additional information can be found at:
    
         http://bastille-linux.sourceforge.net
    
       14.4 RedHat Linux
         * 14.4.1 Patches and Security Advisories
           Security information for RedHat Linux, including links to
           advisories, patches, and updates can be found at:
    
         http://www.redhat.com/support/errata/
         * 14.4.2 Security Configuration Scripts
           The Bastille Hardening System attempts to "harden" or "tighten"
           the Linux operating system. It currently supports RedHat and
           Mandrake systems. Additional information can be found at:
    
         http://bastille-linux.sourceforge.net
    
       14.5 Slackware Linux
         * 14.5.1 Patches
           Security patches are incorporated into the latest stable version
           release as well as in the slackware-current release:
    
         ftp://ftp.slackware.com/pub/slackware/
         ftp://ftp.slackware.com/pub/slackware/slackware-current/
         * 14.5.2 Security Advisories
           Information about security patches is made available via mailing
           list and is documented in the ChangeLog:
    
         http://www.slackware.com/lists/
         http://www.slackware.com/changelog/
         * 14.5.3 Security Configuration Scripts
           SAStk, the Slackware Administrators Security tool kit, provides a
           simple scripted interface that aids in securing Slackware Linux.
           Additional information can be found at:
    
         http://www.sastk.org/
    
       14.6 SuSE Linux
    
       Security information for SuSE Linux, including links to advisories,
       patches, and updates can be found at:
    
         http://www.suse.com/us/support/security/index.html
    
       14.7 TurboLinux
    
       Security information for TurboLinux, including links to advisories,
       patches, and updates can be found at:
    
         http://www.turbolinux.com/security/
    
       14.8 Others
    
       For other distributions of Linux, please refer to your vendor's
       website. A useful starting point for finding Linux distribution
       vendor's sites is:
    
         http://www.linux.org/dist/index.html
         _________________________________________________________________
    
    15.0 Solaris
    
         * 15.1 Patches
         * 15.2 IP Forwarding and Source Routing
         * 15.3 Stack Execution
         * 15.4 NFS Port Monitoring
         * 15.5 Framebuffers /dev/fbs
         * 15.6 Security Bulletins
         * 15.7 Sun BluePrints
         * 15.8 Solaris Security Toolkit (JASS)
                ____________________________________________________
    
       15.1 Patches
    **** TODO: Should note that there is a checker for security patches
         * DO regularly ask your vendor for a complete list of patches. Sun
           regularly updates a list of recommended and security patches,
           which is available from:
    
         ftp://sunsolve1.sun.com/pub/patches/
         http://sunsolve1.sun.com/
    
       15.2 IP Forwarding and Source Routing
    
       This is particularly relevant if you are using your Sun server as a
       bastion host or dual homed system.
    **** Checked for in check_ndd
         * DO disable IP forwarding and source routing. To do this you will
           need to edit the file /etc/rc2.d/S69.inet and set the options
           ip_forwarding and ip_ip_forward_src_routed to zero as illustrated
           below:
    
         ndd -set /dev/ip ip_forwarding 0
         ndd -set /dev/ip ip_ip_forward_src_routed 0
           For the changes to take effect you will then need to reboot.
    
       15.3 Stack Execution
    **** TODO: not done but should be
         * DO Disable executable stacks by default to stop "stack smashing"
           attacks based on buffer overflow exploits. To do this, you will
           need to edit the file /etc/system and add the following lines:
    
         set noexec_user_stack=1
         set noexec_user_stack_log=1
           Note that this may go against the SPARC and Intel ABIs and can be
           bypassed as required in programs with mprotect(2). For the changes
           to take effect you will then need to reboot.
    
       15.4 NFS Port Monitoring
    **** TODO: not done but should be
         * DO enable NFS port monitoring. To do this add the following line
           to /etc/system:
    
         set nfs:nfs_portmon = 1 set nfssrv:nfs_portmon = 1
           See also 11.1.
    
       15.5 Framebuffers /dev/fbs
    **** TODO: not done but should be
         * Solaris versions 2.3 and above have a protection facility for
           framebuffers which is a superset of the functionality provided by
           /etc/fbtab in SunOS 4.1.x.
         * Under Solaris, /dev/fbs is a directory that contains links to the
           framebuffer devices. The /etc/logindevperm file contains
           information that is used by login(1) and ttymon(1M) to change the
           owner, group, and permissions of devices upon logging into or out
           of a console device. By default, this file contains lines for the
           keyboard, mouse, audio, and frame buffer devices. A sample
           /etc/logindevperm file:
        #
        # File:      /etc/logindevperm
        # Purpose:   Specifies that upon login to /dev/console, the
        #            owner, group and permissions of all supported
        #            devices, including the framebuffer, will be set to
        #            the user's username, the user's group and 0600.
        # Comments:  SunOS specific.
        # Note:      You cannot use \ to continue a line.
        #
        # Format:
        # Device     Permission     Colon separated device list.
        #
        /dev/console    0600        /dev/kbd:/dev/mouse
        /dev/console    0600        /dev/sound/*         # audio devices
        /dev/console    0600        /dev/fbs/*           # frame buffers
                   Read the man page for logindevperm(4) for more
           information.
    
       15.6 Security Bulletins
         * Security Bulletins are available under the SunSolve area of the
           Sun Microsystems web site:
    
         http://sunsolve.sun.com/
         http://www.sun.com/security/
    
       15.7 Sun BluePrints
         * BluePrints are Sun's leading source for in-depth technical
           information on Best Practices using Sun Solutions. Sun's
           BluePrints web site is available from:
    
         http://www.sun.com/blueprints/
           The security section of the BluePrints archive is available from:
    
         http://www.sun.com/blueprints/browsesubject.html#security
         * Some of the specific security BluePrints which are of interest for
           Solaris based hosts and networks include:
              + Solaris Operating Environment Security
    
         http://www.sun.com/blueprints/0401/security-updt1.pdf
              + Solaris Operating Environment Network Settings for Security
    
         http://www.sun.com/blueprints/1200/network-updt1.pdf
              + Solaris Minimization for Security
    
         http://www.sun.com/blueprints/1100/minimize-updt1.pdf
    
       15.8 Solaris Security Toolkit (JASS)
         * The Solaris Security Toolkit, informally known as the JumpStart
           Architecture and Security Scripts (JASS) toolkit, provides a
           flexible and extensible mechanism to minimise, harden, and secure
           Solaris Operating Environment systems. The primary goal behind the
           development of this toolkit is to simplify and automate the
           process of securing Solaris systems. Additional information and
           downloads are available from:
    
         http://www.sun.com/security/jass/
         _________________________________________________________________
    
    16.0 IRIX
    
         * 16.1 Patches
         * 16.2 Default Account Security
         * 16.3 Security Bulletins
                ____________________________________________________
    
       16.1 Patches
         * DO regularly ask your vendor for a complete list of patches.
         * Some IRIX security patches are available from:
    
         http://www.sgi.com/support/security/
         * DO read the FAQ on IRIX security. A copy may be obtained from:
    
         http://www-viz.tamu.edu/~sgi-faq/faq/html-1/security.html
         * For systems which do not have the chroot(1) command, use of
           chrootuid (A.2.1) may be of assistance.
         * rscan checks for many common IRIX-specific security
           vulnerabilities and problems. rscan is no longer supported by the
           author, but is still available from:
    *** TODO: could include some of the functionalities in Tiger
         http://www.protomatter.com/rscan/
    
       16.2 Default Account Security
    **** TODO: Not done
         * DO review the state of accounts that are installed by default in
           the IRIX operating system. Several of these accounts are installed
           with widely-known or empty passwords. Refer to 5.2 for information
           about checking for password-less accounts. Some of the accounts
           that may be installed with empty passwords are:
              + guest
              + demos
              + EZsetup
              + OutOfBox
              + 4Dgifts
              + lp
              + root
           Other accounts may be added with known passwords. Here is a
           partial list of accounts known to have easily guessed passwords.
              + lp
              + field
              + tutor
              + tour
              + 4Dgifts
    
       16.3 Security Advisories
         * DO review SGI security advisories. SGI security advisories can be
           found at:
    
         http://www.sgi.com/support/security/advisories.html
         _________________________________________________________________
    
    17.0 Hewlett Packard UNIX (HP-UX)
    **** TODO: Should note that HP-UX provides Bastille now
    **** TODO: Should note that there is a checker for security patches
    
         * 17.1 Patches
                ____________________________________________________
    
       17.1 Patches
         * DO review and apply relevant security patches. Patches for HP-UX
           can be found via:
    
         http://us-support.external.hp.com/
         _________________________________________________________________
    
    18.0 Digital/Compaq Tru64 UNIX
    
         * 18.1 Patches
                ____________________________________________________
    
       18.1 Patches
         * DO review and apply relevant security patches for your version of
           Digital Unix (or Tru64). Patches for these operating systems are
           available at:
    
         http://ftp.support.compaq.com/patches/.new/unix.shtml
         _________________________________________________________________
    
    19.0 AIX
    **** TODO: Should mention that there is a tool to harden AIX systems
    
         * 19.1 Patches
         * 19.2 Security Advisories
                ____________________________________________________
    
       19.1 Patches
         * DO review and apply relevant security patches. Fixes, drivers,
           updates and tools are available at:
    
         http://techsupport.services.ibm.com/rs6000/fixes
    
       19.2 Security Advisories
         * DO subscribe to and review the IBM security advisories. IBM
           security advisories can be found at:
    
         http://techsupport.services.ibm.com/rs6000/notification
         _________________________________________________________________
    
    Section V. Appendixes
    
    A. Useful security tools
    
       There are many freely available tools that provide a good mechanism
       for checking the security of your system. The list below is not a
       complete list, and you should NOT rely on these to do ALL of your work
       for you. They are intended to be only a guide. It is envisaged that
       you may write some site specific tools to supplement these. It is also
       envisaged that you may look around on HTTP or FTP servers for other
       useful tools.
    
       AusCERT and CERT/CC have not formally reviewed, evaluated or endorsed
       the tools described herein. The decision to use these tools is the
       responsibility of each user or organisation.
         * A.1 System Monitoring Tools
         * A.2 General Purpose Tools
         * A.3 Network Monitoring Tools
         * A.4 Network Access Control Tools
                ____________________________________________________
    
    A.1 System Monitoring Tools
    
         * A.1.1 Analog
         * A.1.2 anlpasswd
         * A.1.3 Big Brother
         * A.1.4 CheckWtmp (DFN-CERT)
         * A.1.5 CheckXusers
         * A.1.6 Chkacct (DFN-CERT)
         * A.1.7 Chklastlog (DFN-CERT)
         * A.1.8 The Coroner's Toolkit
         * A.1.9 Portsentry
         * A.1.10 SWATCH
         * A.1.11 tcpdump
         * A.1.12 tcptrace
         * A.1.13 TCP Wrapper
         * A.1.14 Tiger
         * A.1.15 Tripwire
         * A.1.16 TTY-Watcher
                ____________________________________________________
    
         * A.1.1 Analog
           Analog is a utility for the analysis of web server log files. It
           is available from:
    
         http://www.analog.org/loganalysis/download.html
         * A.1.2 anlpasswd
           anlpasswd is a pro-active password checker and can replace the
           standard /bin/passwd. It is available from:
    
         ftp://coast.cs.purdue.edu/pub/tools/unix/pwdutils/anlpasswd/
         * A.1.3 Big Brother
           Big Brother is a real-time network and system monitoring tool with
           a web browser interface. It is available at:
    
         http://bb4.com/
         * A.1.4 CheckWtmp (DFN-CERT)
           CheckWtmp is a tool to check for overwritten information in
           /var/adm/wtmp on SunOS 4.x systems. It is available via anonymous
           FTP from:
    
         ftp://coast.cs.purdue.edu/pub/tools/unix/logutils/chkwtmp/
         * A.1.5 CheckXusers
           CheckXusers is a script that checks for people logged on to a host
           from insecure X servers.
    
         ftp://coast.cs.purdue.edu/pub/tools/unix/sysutils/checkXusers/
         * A.1.6 Chkacct (DFN-CERT)
           Chkacct is a tool to help with checking permissions. It can
           automatically correct file permissions or output a list of changes
           that need to be made. It is available via anonymous FTP from:
    
         ftp://coast.cs.purdue.edu/pub/tools/unix/sysutils/chkacct/
         * A.1.7 Chklastlog (DFN-CERT)
           Chklastlog is a tool to check for overwritten information in
           /var/adm/lastlogin on SunOS 4.x systems. It is available via
           anonymous FTP from:
    
         ftp://coast.cs.purdue.edu/pub/tools/unix/logutils/chklastlog/
         * A.1.8 The Coroner's Toolkit
           The Coroners Toolkit (TCT) is a collection of software tools that
           provide a System Administrator with a framework for performing
           computer forensic analysis. TCT aims to automate the task of
           low-level forensic examination. It is available from:
    
         http://www.fish.com/tct/
         * A.1.9 Portsentry
           PortSentry is a program designed to detect and respond to port
           scans against a target host in real-time. It is available from:
    
         http://www.psionic.com/abacus/portsentry/
         * A.1.10 SWATCH
           Swatch, the Simple WATCHer program, is an easily configurable log
           file filter/monitor. Swatch monitors log files and acts to filter
           out unwanted data and take one or more user-specified actions
           based on patterns in the log. Swatch is available from
    
         ftp://coast.cs.purdue.edu/pub/tools/unix/logutils/swatch/
         * A.1.11 tcpdump
           tcpdump is a protocol packet capture and dumper and capture
           program. It is available via anonymous FTP from:
    
         ftp://coast.cs.purdue.edu/pub/tools/unix/netutils/tcpdump/
         * A.1.12 tcptrace
           tcptrace allows for analysis of TCP dump files as produced by
           programs such as tcpdump, snoop etc. It is available from:
    
         http://masaka.cs.ohiou.edu/tcptrace/tcptrace_new/
         * A.1.13 TCP Wrapper
           This software gives logging and access control to most network
           services. It is available via anonymous FTP from:
    
         ftp://ftp.porcupine.org/pub/security/
         * A.1.14 Tiger
           This package identifies common security and configuration
           problems. It also checks for common signs of intrusion. It is
           available via anonymous FTP.
    
         ftp://coast.cs.purdue.edu/pub/tools/unix/scanners/tiger/
         * A.1.15 Tripwire
           This package maintains a checksum database of important system
           files. It can serve as an early intrusion detection system. It is
           freely available via anonymous FTP from:
    
         ftp://coast.cs.purdue.edu/pub/tools/unix/ids/tripwire/
           or via HTTP from:
    
         http://www.tripwire.com/downloads/tripwire_asr/
           Tripwire is also available as a commercial software package from
           the following web site:
    
         http://www.tripwire.com
         * A.1.16 TTY-Watcher
           TTY-Watcher is a utility to monitor and control users on a single
           system. TTY-Watcher is available via anonymous FTP from:
    
         ftp://coast.cs.purdue.edu/pub/tools/unix/sysutils/ttywatcher/
         _________________________________________________________________
    
    A.2 General Purpose Tools
    
         * A.2.1 chrootuid
         * A.2.2 Crack and "John the Ripper"
         * A.2.3 Fix-Modes
         * A.2.4 logdaemon
         * A.2.5 lsof
         * A.2.6 MD5
         * A.2.7 NoShell
         * A.2.8 OPIE and S/KEY
         * A.2.9 overflow_wrapper
         * A.2.10 PGP/GnuPG
         * A.2.11 portmapper/rpcbind
         * A.2.12 RBAC
         * A.2.13 ssh
                ____________________________________________________
    
         * A.2.1 chrootuid
           Allows chroot functionality. It is available from:
    
         ftp://ftp.porcupine.org/pub/security/
         * A.2.2 Crack and "John the Ripper"
           Crack is a fast password cracking program designed to assist site
           administrators in ensuring that users use effective passwords.
           Available via anonymous FTP from:
    
         ftp://coast.cs.purdue.edu/pub/tools/unix/pwdutils/
           John the Ripper is a password cracker, designed to detect weak
           Unix passwords. It is available from:
    
         http://www.openwall.com/john/
         * A.2.3 FixModes
           The FixModes scripts run on Solaris and remove group and world
           write permissions on specific system files and directories. The
           new permissions make it harder for non-root users to become root,
           and for non-root users to modify system files. FixModes is
           available from:
    
         http://www.sun.com/blueprints/tools/
         * A.2.4 logdaemon
           Written by Wietse Venema, this package includes replacements for
           rsh and rlogin daemons. By default these versions do not accept
           wild cards in host.equiv or .rhost files. They also have an option
           to disable user .rhost files. logdaemon is available via anonymous
           FTP from:
    
         ftp://ftp.porcupine.org/pub/security/
         * A.2.5 lsof
           lsof reports files open by a process, files open on a partition as
           well as processes listening on a port/socket and processes which
           have a file open. Available via anonymous FTP from:
    
         ftp://coast.cs.purdue.edu/pub/tools/unix/sysutils/lsof/
         * A.2.6 MD5
           MD5 is a message digest algorithm. Tools to verify MD5 checksums
           are included with many current operating systems, for example
           md5(1) (FreeBSD) or md5sum (Linux). Otherwise, an implementation
           of MD5 is available via anonymous FTP from:
    
         ftp://coast.cs.purdue.edu/pub/tools/unix/crypto/md5/
         * A.2.7 noshell
           This program is designed to provide the system administrator with
           additional information about who is logging into disabled
           accounts. It is used as a replacement shell, to be specified in
           the login shell entry for the account in the unix password file.
           It is available from:
    
         http://www.fish.com/titan/src1/noshell.c
           Detailed instructions on installing and usage of noshell are
           available from:
    
         http://www.cert.org/security-improvement/implementations/i049.02.ht
         ml
         * A.2.8 OPIE and S/KEY
           The S/KEY one-time password system provides authentication over
           networks that are subject to eavesdropping/reply attacks. This
           system has several advantages compared with other one-time or
           multi-use authentication systems. The user's secret password never
           crosses the network during login. This directory contains
           information, the latest version and patches. It is available via
           anonymous FTP from:
    
         ftp://ftp.cert.dfn.de/pub/tools/password/SKey/
           OPIE is an implementation of the One-Time Password (OTP) standard
           specified in RFC 1938. Available via anonymous FTP from:
    
         http://www.inner.net/pub/opie/
         * A.2.9 overflow_wrapper
           AusCERT designed this wrapper to limit exploitation of programs
           which have command line argument buffer overflow vulnerabilities.
           It is available via anonymous FTP from:
    
         ftp://ftp.auscert.org.au/pub/auscert/tools/overflow_wrapper/overflo
         w_wrapper.c
         * A.2.10 PGP/GnuPG
           PGP Pretty Good Privacy implements encryption and authentication.
           GnuPG is a similar utility released under the GNU public licence.
           PGP is available from:
    
         http://www.pgpi.org/
           GnuPG is available from:
    
         http://www.gnupg.org/
         * A.2.11 portmapper/rpcbind
           These are portmapper/rpcbind replacements written by Wietse Venema
           that disallow proxy access to the mount daemon via the portmapper.
           Choose the one suitable for your system. They are available via
           anonymous FTP from:
    
         ftp://ftp.porcupine.org/pub/security/
         * A.2.12 RBAC
           Role Based Access Control (RBAC) allows each user to be assigned
           one or more roles and each role is assigned one or more privileges
           that are permitted to users in that role. Security administration
           with RBAC consists of determining the operations that must be
           executed by persons in particular jobs, and assigning employees to
           the proper roles. Complexities introduced by mutually exclusive
           roles or role hierarchies are handled by the RBAC software, making
           security administration easier. Additional information and
           downloads are available from:
    
         http://csrc.nist.gov/rbac/
         * A.2.13 ssh
           Secure Shell (ssh) provides for encrypted remote communications
           between hosts. It can replace rsh, rlogin, and others. It is
           available from:
    
         http://www.ssh.fi/
         http://www.openssh.com/
         http://www.ssh.com/
         _________________________________________________________________
    
    A.3 Network Monitoring Tools
    
         * A.3.1 Intrusion Detection Systems (IDS)
    **** TODO: Note: Should mention Tiger too and TARA
              + A.3.1.1 Snort
              + A.3.1.2 NFR
              + A.3.1.3 ISS RealSecure
              + A.3.1.4 Tripwire
              + A.3.1.5 Cisco Secure Intrusion Detection System
         * A.3.2 Vulnerability Scanning Tools
              + A.3.2.1 Nessus
              + A.3.2.2 SAINT
              + A.3.2.3 SARA
              + A.3.2.4 bv-Control
         * A.3.3 Other Useful Tools
              + A.3.3.1 Argus
              + A.3.3.2 Ethereal
              + A.3.3.3 ifstatus
              + A.3.3.4 AntiSniff
              + A.3.3.5 NOCOL
              + A.3.3.6 NMAP
                ____________________________________________________
    
         * A.3.1 Intrusion Detection Systems (IDS)
              + A.3.1.1 Snort
                Snort is a lightweight network intrusion detection system,
                capable of performing real-time traffic analysis and packet
                logging on IP networks. It can perform protocol analysis,
                content searching/matching and can be used to detect a
                variety of attacks and probes. More information is available
                at:
    
         http://www.snort.org/
              + A.3.1.2 NFR
                Network Flight Recorder (NFR) is a customisable commercial
                IDS. More information is available at:
    
         http://www.nfr.net/
              + A.3.1.3 RealSecure
                RealSecure is a commercial IDS from Internet Security Systems
                (ISS). More information is available at:
    
         http://www.iss.net/securing_e-business/security_products/intrusion_
         detection/
              + A.3.1.4 Tripwire
                This package maintains a checksum database of important
                system files. It can serve as an early intrusion detection
                system. It is freely available via anonymous ftp from:
    
         ftp://coast.cs.purdue.edu/pub/tools/unix/ids/tripwire/
                or via HTTP from:
    
         http://www.tripwire.com/downloads/tripwire_asr/
                Tripwire is also available as a commercial software package
                from the following web site:
    
         http://www.tripwire.com
              + A.3.1.5 Cisco Secure Intrusion Detection System
                The Cisco Secure Intrusion Detection System (IDS), formerly
                known as the Cisco NetRanger system, is a real-time,
                network-based IDS designed to detect, report, and terminate
                unauthorized activity throughout a network. Additional
                information is available from:
    
         http://www.wheelgroup.com/warp/public/cc/pd/sqsw/sqidsz/
         * A.3.2 Vulnerability Scanning Tools
              + A.3.2.1 Nessus
                Nessus is a free, programmable graphical vulnerability
                assessment and scanning tool. It offers a number of features,
                such as a modular architecture, and its own scripting
                language. Nessus is available at:
    
         http://www.nessus.org/
              + A.3.2.2 SAINT
                SAINT is a vulnerability assessment tool, similar to SATAN,
                which allows network administrators to scan their networks
                for known vulnerabilities in specific software packages. More
                information is available at:
    
         http://www.wwdsi.com/saint
              + A.3.2.3 SARA
                The Security Auditor's Research Assistant (SARA) is another
                vulnerability assessment and scanning tool. It supports the
                use of CVE nomenclature among other things. More information
                is available at:
    
         http://www-arc.com/sara/
              + A.3.2.4 bv-Control
                bv-Control from BindView is a cross-platform package that
                provides vulnerability assessments as well as assiting in
                routine system administration. More information is available
                at:
    
         http://www.bindview.com/products/control/
         * A.3.3 Other Useful Tools
              + A.3.3.1 Argus
                Argus is an advanced IP network transaction auditing tool.
                Classified as a Real Time IP Flow Monitor, Argus generates a
                persistent audit of all network transactions and their
                performance, without the need for configuration.
                The data that Argus generates can be used for a wide range of
                tasks that are traditionally benefited from audit, of
                particular interest are Network Security and Network
                Assurance and Performance Management. Argus is available at:
    
         ftp://ftp.andrew.cmu.edu/pub/argus/
              + A.3.3.2 Ethereal
                Ethereal is a free network protocol analyzer for Unix and
                Windows. It allows you to examine data from a live network or
                from a capture file on disk. You can interactively browse the
                capture data, viewing summary and detail information for each
                packet. Ethereal has several powerful features, including a
                rich display filter language and the ability to view the
                reconstructed stream of a TCP session. More information is
                available from:
    
         http://www.ethereal.com/
              + A.3.3.3 ifstatus
                ifstaus can be run on a UNIX system to check the network
                interfaces for any that are in debug or promiscuous mode.
                This may be the sign of an intruder performing network
                monitoring to steal passwords and the like (see CERT/CC
                Advisory CA-1994-01). ifstatus is available from:
    
         ftp://coast.cs.purdue.edu/pub/tools/unix/sysutils/ifstatus/
              + A.3.3.4 AntiSniff
                AntiSniff is a tool which can scan a network and detect
                whether or not the network interfaces on any computers are in
                promiscuous mode, since this is often a sign that a computer
                has been compromised.
                Antisniff was designed to detect compromised machines with IP
                stacks that a remote attacker could utilize to sniff network
                traffic. It was not designed to detect hardware based network
                probes or special purpose network analysers which an attacker
                would need physical access to install. More information is
                available from:
    
         http://www.securitysoftwaretech.com/antisniff/
              + A.3.3.5 Network Operations Center On-Line (NOCOL)
                Network Operation Center On-Line (NOCOL) is a network
                monitoring package that runs on Unix platforms. It can
                monitor various network variables such as ICMP or RPC
                reachability, nameservers, ethernet load, port reachability,
                host performance, SNMP traps, modem line usage, appletalk &
                novell routes and services, BGP peers, etc. The software is
                extensible and allows new monitors to be added. NOCOL is
                available from:
    
         ftp://ftp.netplex-tech.com/pub/
                Additional information is available from:
    
         http://www.netplex-tech.com/software/nocol/
              + A.3.3.6 Nmap
                Nmap is an open-sourced tool for port scanning large
                networks. It features a variety of modes of scanning and
                remote operating system identification. More information is
                available from:
    
         http://www.nmap.org/
         _________________________________________________________________
    
    A.4 Network Access Control Tools
    
         * A.4.1 Proxy Servers
              + A.4.1.1 TIS Firewall Toolkit (fwtk)
              + A.4.1.2 Dante
              + A.4.1.3 JAVA SOCKS Server
              + A.4.1.4 Muffin World Wide Web Filtering System
              + A.4.1.5 Squid Web Proxy Cache
         * A.4.2 Packet Filtering Tools
              + A.4.2.1 ipfw
              + A.4.2.2 ipfwadm
              + A.4.2.3 IP Filter (ipf)
              + A.4.2.4 ipchains
              + A.4.2.5 netfilter/iptables
              + A.4.2.6 SunScreen Lite
                ____________________________________________________
    
         * A.4.1 Proxy Servers
           Proxy servers can be used to authenticate and forward specific
           service requests between networks. Typically, a proxy server
           replaces a regular system service and then arbitrates sessions
           between legitimate clients and servers. Proxy servers are often
           used in conjunction with packet filtering tools (See A.4.2) to
           enforce network security policies. Many commercial and
           non-commercial packages offer proxy server functionality. Below
           are pointers to several non-commercial software packages that
           perform proxy services.
              + A.4.1.1 TIS Firewall Toolkit (fwtk)
    
         http://www.tis.com/research/software/
              + A.4.1.2 Dante
    
         http://www.inet.no/dante/
              + A.4.1.3 JAVA SOCKS Server
    
         http://jsocks.sourceforge.net/
              + A.4.1.4 Muffin World Wide Web Filtering System
    
         http://muffin.doit.org/
              + A.4.1.5 Squid Web Proxy Cache
    
         http://www.squid-cache.org/
         * A.4.2 Packet Filtering Tools
           Packet filtering tools provide the ability to selectively control
           the forwarding TCP/IP packets through a device with two or more
           network interfaces. Packet filtering can be used to enforce
           network security policies through the construction and use of a
           series of packet filtering rules. Many commercial and
           non-commercial packages offer packet filtering functionality.
           Below are pointers to several non-commercial software packages
           that perform packet filtering.
              + A.4.2.1 ipfw
                ipfw is an older packet filtering tool distributed as a part
                of some BSD-based operating systems, particularly FreeBSD.
                Information about ipfw is available from the FreeBSD
                Handbook.
    
         http://www.freebsd.org/handbook/firewalls.html
              + A.4.2.2 ipfwadm
                Ipfwadm is a packet filtering tool distributed as a part of
                some older Linux distributions. It is designed for use with
                older (e.g., prior to version 2.2.x) Linux kernels.
                Information about ipfwadm is available from the author's
                website:
    
         http://www.xos.nl/linux/ipfwadm/
              + A.4.2.3 IP Filter (ipf)
                IP Filter, or ipf, is a packet filtering tool distributed as
                a part of BSD-based operating systems such as FreeBSD,
                OpenBSD, and NetBSD. It is also available for use on other
                platforms such as Solaris, SunOS, IRIX, and HP-UX. More
                information is available from:
    
         http://coombs.anu.edu.au/~avalon/
              + A.4.2.4 ipchains
                Ipchains is a packet filtering tool distributed as a part of
                many current Linux distributions. It is designed for use with
                newer (e.g., version 2.2.x) kernels. Information about
                ipchains is available from one of several locations:
    
         http://netfilter.filewatcher.org/ipchains/
         http://www.samba.org/netfilter/ipchains/
         http://netfilter.kernelnotes.org/ipchains/
              + A.4.2.5 netfilter/iptables
                Netfilter and iptables are packet filtering tools being
                developed in conjunction with newer (e.g., 2.3.x) Linux
                kernels for use in the 2.4.x series of Linux kernels.
                Information about netfilter and iptables is available from
                one of several locations.
    
         http://netfilter.filewatcher.org/
         http://netfilter.samba.org/
         http://netfilter.kernelnotes.org/
              + A.4.2.6 SunScreen Lite
                SunScreen Lite offers high-speed, dynamic, stateful packet
                screening, and is designed to protect individual servers or
                small workgroups. It is available for no additional cost to
                users of Solaris 8. More information is available at:
    
         http://www.sun.com/software/securenet/lite/
         _________________________________________________________________
    
    B. References
    
         * B.1 Bibliography
         * B.2 On-line references
                ____________________________________________________
    
    B.1 Bibliography
    
         * B.1.1 Practical UNIX & Internet Security, 2nd Edition
         * B.1.2 Solaris Security
         * B.1.3 UNIX System Security: A Guide for Users and System
           Administrators
         * B.1.4 Volume 8: X Window System Administrator's Guide
         * B.1.5 Hacking Exposed: Network Security Secrets and Solutions
         * B.1.6 Firewalls and Internet Security
         * B.1.7 Building Internet Firewalls, Second Edition
         * B.1.8 Maximum Security - A Hacker's Guide to Protecting Your
           Internet Site and Network
         * B.1.9 UNIX System Administration Handbook (third edition)
         * B.1.10 Essential System Administration, 2nd Edition
         * B.1.11 Real World Linux Security: Intrusion Prevention, Detection
           and Recovery
         * B.1.12 Managing NFS and NIS, 2nd Edition
         * B.1.13 Unix Secure Shell (McGraw-Hill Tools Series)
         * B.1.14 Hack Proofing Your Network - Internet Tradecraft
         * B.1.15 Applied Cryptography, 2nd Edition
         * B.1.16 TCP/IP Illustrated Vols I, II, III
                ____________________________________________________
    
         * B.1.1 Practical UNIX & Internet Security, 2nd Edition
           By Simson Garfinkel & Gene Spafford
           2nd Edition April 1996
           (C) 1996, 1991 O'Reilly & Associates, Inc.
           ISBN: 1565921488
         * B.1.2 Solaris Security
           By Peter H. Gregory
           (C) 1999 Prentice Hall PTR/Sun Microsystems Press
           ISBN: 0130960535
         * B.1.3 UNIX system security: A Guide for Users and System
           Administrators
           By David A. Curry
           (C) 1992 Addison-Wesley Professional Computing Series
           ISBN: 0201606402
         * B.1.4 Volume 8: X Window System Administrator's Guide
           By Linda Mui & Eric Pearce
           1st Edition October 1992
           (C) 1992 O'Reilly & Associates, Inc.
           ISBN: 0937175838
         * B.1.5 Hacking Exposed: Network Security Secrets and Solutions
           By Joel Scambray, Stuart McClure and George Kurtz
           (C) 2000 McGraw-Hill Professional Publishing
           ISBN: 0072127481
         * B.1.6 Firewalls and Internet Security
           By William R. Cheswick & Steven M. Bellovin
           (C) 1994 AT&T Bell Laboratories, Inc.
           Addison-Wesley Professional Computing Series
           ISBN: 0201633574
         * B.1.7 Building Internet Firewalls, Second Edition
           By Elizabeth D. Zwicky, Simon Cooper, & D. Brent Chapman
           (C) 1995 O'Reilly & Associates, Inc.
           ISBN: 1565928717
         * B.1.8 Maximum Security - A Hacker's Guide to Protecting Your
           Internet Site and Network
           By Anonymous
           (C) 1998 SAMS Publishing
           ISBN: 0672313413
         * B.1.9 UNIX System Administration Handbook (third edition)
           Evi Nemeth, Garth Snyder, Trent R. Hein and Scott Seebass
           (C) 2001 Prentice-Hall PTR
           ISBN: 0130206016
         * B.1.10 Essential System Administration, 2nd Edition
           By Aeleen Frisch
           2nd Edition September 1995
           (C) 1995 O'Reilly & Associates, Inc.
           ISBN: 1565921275
         * B.1.11 Real World Linux Security: Intrusion Prevention, Detection
           and Recovery
           By Bob Toxen
           (C) 2000 Prentice Hall PTR/Sun Microsystems Press
           ISBN: 0130281875
         * B.1.12 Managing NFS and NIS, 2nd Edition
           By Hal Stern
           2nd Edition June 2001
           (C) 2001 O'Reilly & Associates, Inc.
           ISBN: 1565925106
         * B.1.13 Unix Secure Shell (McGraw-Hill Tools Series)
           By Anne H. Carasik
           (C) 1999 Osborne McGraw-Hill
           ISBN: 0071349332
         * B.1.14 Hack Proofing Your Network - Internet Tradecraft
           By Ryan Russell
           (C) 2000 Syngress
           ISBN: 1928994156
         * B.1.15 Applied Cryptography, 2nd Edition
           By Bruce Schneier
           (C) 1995 John Wiley & Sons
           ISBN: 0471117099
         * B.1.16 TCP/IP Illustrated Volumes 1, 2, 3
           By Gary R. Wright and W. Richard Stevens
           (C) 1994, 1995, 1996 Addison-Wesley
           ISBN: 0201633469 (Vol 1 - The Protocols)
           ISBN: 020163354X (Vol 2 - The Implementation)
           ISBN: 0201634953 (Vol 3 - TCP for Transactions, HTTP, NNTP, and
           the UNIX(R) Domain Protocols)
         _________________________________________________________________
    
    B.2 On-line references
    
         * B.2.1 Unix Flavours
         * B.2.2 General Security
         * B.2.3 Mailing Lists
         * B.2.4 Archives, News and Research
         * B.2.5 Secure Programming
                ____________________________________________________
    
         * B.2.1 Unix Flavours
              + Linux Security Administrator's Guide
                By Dave Wreski, dave@nic.com
                http://www.nic.com/~dave/SecurityAdminGuide/SecurityAdminGuid
                e.html
              + Armoring Linux - Preparing your linux box for the Internet
                By Lance Spitzner, lance@spitzner.net?Subject=Armoring Linux
                http://www.enteract.com/~lspitz/linux.html
              + Armoring Solaris - Preparing Solaris for a firewall
                By Lance Spitzner, lance@spitzner.net?Subject=Armoring
                Solaris
                http://www.enteract.com/~lspitz/armoring.html
              + Solaris Security Advisories
                http://sunsolve.sun.com/pub-cgi/secBulletin.pl
              + Sun BluePrints - Security
                http://www.sun.com/blueprints/browsesubject.html#security
              + FreeBSD Security Advisories
                http://www.freebsd.org/security/
              + NetBSD Security Advisories
                http://www.netbsd.org/Security/
              + OpenBSD Security Advisories
                http://openbsd.org/errata.html
              + BSD/OS Technical Support
                http://www.bsdi.com/services/support/
              + Caldera OpenLinux Security Advisories
                http://www.calderasystems.com/support/security/
              + Debian GNU/Linux Security Advisories
                http://www.debian.org/security/
    **** TODO: Note should mention the Securing Debian HOWTO
              + RedHat Linux Security Advisories
                http://www.redhat.com/support/errata/
    **** TODO: Note should mention the RedHat Security Guide
              + Mandrake Linux Security Advisories
                http://www.linux-mandrake.com/en/security/
              + SuSE Linux Security Advisories
                http://www.suse.com/us/support/security/index.html
              + TurboLinux Security Advisories
                http://www.turbolinux.com/security/
              + Slackware Linux Security Advisories
                http://www.slackware.com/lists/archive/
              + IRIX Security Advisories
                http://www.sgi.com/support/security/advisories.html
              + Hewlett Packard UNIX (HP-UX) Support
                http://us-support.external.hp.com/
              + Digital UNIX and Compaq Tru64 Support
                http://www.compaq.com/support/
         * B.2.2 General Security
              + AusCERT References (Checklists & Papers)
                http://www.auscert.org.au/Information/Auscert_info/papers.htm
                l
              + The World Wide Web Security FAQ
                By Lincoln D. Stein, lstein@cshl.org
                http://www.w3.org/Security/Faq/www-security-faq.html
              + Firewall Seen FAQ
                By Robert Graham, firewall-seen@robertgraham.com
                http://www.robertgraham.com/pubs/firewall-seen.html
              + CERT Coordination Center - Finding Site Contacts
                Copyright 1999 Carnegie Mellon University
                http://www.cert.org/tech_tips/finding_site_contacts.html
              + The web site of Rob Thomas
                Security related documents, tools, and links
                http://www.cymru.com/~robt/
                   o Secure BIND Template
                     By Rob Thomas, robt@cymru.com
                     http://www.cymru.com/~robt/Docs/Articles/secure-bind-tem
                     plate.html
         * B.2.3 Mailing Lists
              + The CERT/CC Advisory Mailing List
                http://www.cert.org/contact_cert/certmaillist.html
              + BugTraq
                By SecurityFocus.com
                http://www.securityfocus.com/about/feedback/subscribe.html
                SecurityFocus.com also hosts several other mailing lists
                dedicated to specific security topics. These are available at
                the above mentioned web site.
              + SANS Newsletter Subscription Service
                http://www.sans.org/sansnews
         * B.2.4 Archives, News and Research 
              + AusCERT Advisories and Alerts
                http://www.auscert.org.au/Information/Advisories/aus_advisori
                es.html
              + AusCERT External Security Bulletins
                http://www.auscert.org.au/Information/Advisories/esb_advisori
                es.html
              + CERT/CC Alerts
                http://www.cert.org/nav/alerts.html
              + CERT/CC Current Activity
                http://www.cert.org/current/current_activity.html
              + SecurityFocus.com
                http://www.securityfocus.com/
              + SANS Institute - Information Security Reading Room
                http://www.sans.org/infosecFAQ/index.htm
              + Internet Security Systems: X-Force
                http://xforce.iss.net/
              + COAST
                http://www.cerias.purdue.edu/coast/hotlist/
         * B.2.5 Secure Programming
              + AusCERT Secure Programming Checklist
                ftp://ftp.auscert.org.au/pub/auscert/papers/secure_programmin
                g_checklist
              + Secure Programming for Linux and Unix HOWTO
                http://dwheeler.com/secure-programs/
              + The World Wide Web Security FAQ
                http://www.w3.org/Security/faq/www-security-faq.html
              + Secure Programming
                http://securityfocus.com/forums/secprog/secure-programming.ht
                ml
              + Secure Programming - "The Foundation to Secure Computing"
                http://www.sans.org/infosecFAQ/code/sec_programming.htm
         _________________________________________________________________
    
    C. List of commands by flavour
    
       Notes:
         * The commands given here are examples only. Please consult the
           manual pages for your system if you are unsure of the consequence
           of any command.
         * BSD-style commands are marked as BSD commands, similarly for SVR4.
           Commands which are not labelled are expected to work for both.
         * Full directory paths and program options may vary for different
           flavours of UNIX. If in doubt, consult your vendor documentation.
    
         * C.1 Restart inetd
         * C.2 Ascertain which services are registered with the portmapper
         * C.3 Rebuild alias maps
         * C.4 Printing the umask value for each user
         * C.5 Set sendmail log level to 9
         * C.6 Set syslog log level for mail messages
         * C.7 (Rebuilding and) restarting sendmail(8)
         * C.8 Test whether ftpd supports SITE EXEC
         * C.9 Ascertain whether anonymous FTP is enabled
         * C.10 Ensure that '*' in the password field is correctly
           implemented
         * C.11 Find .exrc files
         * C.12 Locate and print .forward files
         * C.13 Remove execute permission on /usr/lib/expreserve
         * C.14 Set ownership and permissions for /tmp correctly
         * C.15 Find group and world writable files and directories
         * C.16 Find files with the SUID or SGID bit enabled
         * C.17 Find normal files in /dev
         * C.18 Find block or character special files
         * C.19 Avoid NFS mounted file systems when using /bin/find
                ____________________________________________________
    
       C.1 Restart inetd
    
       BSD commands
         # /bin/ps -aux | /bin/grep -E "inetd|^USER" | /bin/grep -v grep
         # /bin/kill -HUP 
    
       SVR4 commands
         # /bin/ps -ef | /bin/grep inetd | /bin/grep -v grep
         # /bin/kill -HUP 
    
       C.2 Ascertain which services are registered with the portmapper
         # /usr/bin/rpcinfo -p
    
       C.3 Rebuild alias maps
         # /usr/bin/newaliases
    
       If you run NIS (YP), you will then need to rebuild your maps to have
       the change take effect over all clients:
         # (cd /var/yp; /usr/bin/make aliases)
    
       C.4 Printing the umask value for each user
    
       Use the following shell script:
        #!/bin/sh
        PATH=/bin:/usr/bin:/usr/etc:/usr/ucb
    
        HOMEDIRS=`cat /etc/passwd | awk -F":" 'length($6) > 0 {print $6}' | sort -u
    `
        FILES=".cshrc .login .profile"
    
        for dir in $HOMEDIRS
        do
                for file in $FILES
                do
                grep -s umask /dev/null $dir/$file
                done
        done
    
       C.5 Set sendmail log level to 9
    
       Include lines describing the log level (similar to the following two)
       in the options part of the general configuration information section
       of the sendmail configuration file:
         # log level
         OL9
    
       The log level syntax changed in sendmail 8.7 to:
         # log level
         O LogLevel=9
    
       C.6 Set syslog log level for mail messages
    
       Include lines describing the logging required (similar to the
       following two) in the syslog.conf file:
         mail.info                       /dev/console
         mail.info                       /var/adm/messages
    
       For the change to take effect, you must then instruct syslog to reread
       the configuration file.
    
       BSD commands
       Get the current PID of syslog:
         # /bin/ps -aux | /bin/grep syslogd | /bin/grep -v grep
    
       Then tell syslog to reread its configuration file:
         # /bin/kill -HUP 
    
       SVR4 commands
       Get the current PID of syslog:
         # /bin/ps -ef | /bin/grep syslogd | /bin/grep -v grep
    
       Then tell syslog to reread its configuration file:
         # /bin/kill -HUP 
    
       NOTE: In the logs, look for error messages like:
       - mail to or from a single pipe ("|")
       - mail to or from an obviously invalid user (e.g., bounce or blah)
    
       C.7 (Rebuilding and) restarting sendmail(8)
    
       To rebuild the frozen configuration file, firstly do:
         # /usr/lib/sendmail -bz
    
       NOTE: The above process does not apply to sendmail v8.x which does not
       support frozen configuration files.
    
       To restart sendmail(8), you should kill *all* existing sendmail(8)
       processes by sending them a TERM signal using kill, then restart
       sendmail(8).
    
       BSD commands
       Get the pid of every running sendmail process:
         # /bin/ps -aux | /bin/grep sendmail | /bin/grep -v grep
    
       Kill every running sendmail process and restart sendmail:
         # /bin/kill      #pid of every running sendmail process
         # /usr/lib/sendmail -bd -q1h
    
       SVR4 commands
       Get the pid of every running sendmail process:
         # /bin/ps -ef | /bin/grep sendmail | /bin/grep -v grep
    
       Kill every running sendmail process and restart sendmail:
         # /bin/kill      #pid of every running sendmail process
         # /usr/lib/sendmail -bd -q1h
    
       C.8 Test whether ftpd supports SITE EXEC
    
       For normal users:
         % ftp localhost 21
         USER username
         PASS password
         SITE EXEC
    
       For anonymous users:
         % ftp localhost 21
         USER ftp
         PASS username@domainname.au
         SITE EXEC
    
       You should see the response "5nn error return" (e.g., "500 'SITE EXEC'
       command not understood"). If your ftp daemon has SITE EXEC enabled,
       make sure you have the most recent version of the daemon. Older
       versions of ftpd allow any user to gain shell access using the SITE
       EXEC command. Use QUIT to end the telnet session.
    
       C.9 Ascertain whether anonymous FTP is enabled
         % ftp localhost
         Connected to localhost
         220 hostname FTP server ready
         Name (localhost:username):  anonymous
         331 Guest login ok, send username as password
         Password:  user@domain.au
         230 Guest login ok, access restrictions apply.
         Remote system type is UNIX.
         Using binary mode to transfer files.
         ftp>
    
       C.10 Ensure that '*' in the password field is correctly implemented
         * Try using NIS with the '*' in the password field for example:
           +:*:0:0::: If NIS users cannot log in to that machine, remove the
           '*' and try the next test.
         * With the '*' removed, try logging in again. If NIS users can log
           in AND you can also log in unauthenticated as the user '+', then
           your implementation is vulnerable. Contact the vendor for more
           information. If NIS users can log in ANC you cannot log in as the
           user '+', your implementation should not be vulnerable to this
           problem.
    
       C.11 Find .exrc files
        # /bin/find /  -name '.exrc' -exec /bin/cat {} \; -print
    
       See also C.19.
    
       C.12 Find .forward files
        # /bin/find / -name '.forward' -exec /bin/cat {} \; -print
    
       See also C.19.
    
       C.13 Remove execute permission on /usr/lib/expreserve
        # /bin/chmod 400 /usr/lib/expreserve
    
       C.14 Set ownership and permissions for /tmp correctly
         # /bin/chown root /tmp
         # /bin/chgrp 0 /tmp
         # /bin/chmod 1777 /tmp
    
       NOTE: This will NOT recursively set the sticky bit on sub-directories
       below /tmp, such as /tmp/.X11-unix and /tmp/.NeWS-unix; you may have
       to set these manually or through the system startup files.
    
       C.15 Find group and world writable files and directories
         # /bin/find / -type f \( -perm -2 -o -perm -20 \) -exec ls -lg {} \;
    
         # /bin/find / -type d \( -perm -2 -o -perm -20 \) -exec ls -ldg {} \;
    
       See also C.19.
    
       C.16 Find files with the SUID or SGID bit enabled
         # /bin/find / -type f \( -perm -004000 -o -perm -002000 \) \
           -exec ls -lg {} \;
    
       See also C.19.
    
       C.17 Find normal files in /dev
         # /bin/find /dev -type f -exec ls -l {} \;
    
       See also C.19.
    
       C.18 Find block or character special files
         # /bin/find / \( -type b -o -type c \) -print | grep -v '^/dev/'
    
       See also C.19.
    
       C.19 Avoid NFS mounted file systems when using /bin/find
         # /bin/find / \( \! -fstype nfs -o -prune \) 
    
       As an example,  could be
         -type f \( -perm -004000 -o -perm -002000 \) -exec ls -lg {} \;
         _________________________________________________________________
    
    D. Abbreviated Checklist
    
       It is intended that this short version of the checklist be used in
       conjunction with the full checklist as a progress guide (mark off the
       sections as you go so that you remember what you have done so far).
    
    Section I. The First Step
    
         * [   ]  1.0 Patches
    
    Section II. The Basic Operating System
    
         * [   ]  2.0 Network Services
              + [   ]  2.1 /etc/inetd.conf
              + [   ]  2.2 tcp_wrapper
              + [   ]  2.3 fingerd
              + [   ]  2.4 "r" Commands
              + [   ]  2.5 /etc/hosts.equiv
              + [   ]  2.6 $HOME/.rhosts
              + [   ]  2.7 /etc/netgroup
              + [   ]  2.8 /etc/services
              + [   ]  2.9 /etc/hosts.lpd
              + [   ]  2.10 /etc/login.access
              + [   ]  2.11 /etc/login.conf
              + [   ]  2.12 /etc/login.defs
              + [   ]  2.13 PAM
              + [   ]  2.14 cron
              + [   ]  2.15 Secure Terminals
              + [   ]  2.16 RPC
                   o [   ]  2.16.1 portmapper/rpcbind
              + [   ]  2.17 Trivial FTP (tftp)
              + [   ]  2.18 majordomo
              + [   ]  2.19 UUCP
              + [   ]  2.20 REXD
         * [   ]  3.0 Network Administration
              + [   ]  3.1 Packet Filtering
              + [   ]  3.2 Denial of Service Attacks
              + [   ]  3.3 Encryption and Strong Authentication
         * [   ]  4.0 File System Security
              + [   ]  4.1 General
              + [   ]  4.2 Startup and Shutdown Scripts
              + [   ]  4.3 External File Systems/Devices
              + [   ]  4.4 File Permissions 
              + [   ]  4.5 Files Run by root
              + [   ]  4.6 Bin Ownership
              + [   ]  4.7 Tiger
              + [   ]  4.8 Tripwire
              + [   ]  4.9 The Coroner's Toolkit
         * [   ]  5.0 Account security
              + [   ]  5.1 Policy
              + [   ]  5.2 Administration
              + [   ]  5.3 Special accounts
              + [   ]  5.4 root Account
              + [   ]  5.5 .netrc Files
              + [   ]  5.6 GCOS Field
              + [   ]  5.7 Authentication
                   o [   ]  5.7.1 NIS, NIS+ and /etc/passwd Entries
                   o [   ]  5.7.2 Password Shadowing 
                   o [   ]  5.7.3 One-Time-Passwords
                   o [   ]  5.7.4 LDAP
         * [   ]  6.0 System Monitoring
              + [   ]  6.1 Account Security
              + [   ]  6.2 Log Files
              + [   ]  6.3 Network Security (syslog, etc)
    
    Section III. Major Services
    
         * [   ]  7.0 Name Service
              + [   ]  7.1 BIND
              + [   ]  7.2 Alternatives
                   o [   ]  7.2.1 DNS Tools by D. J. Bernstein
         * [   ]  8.0 Electronic Mail
              + [   ]  8.1 Sendmail
                   o [   ]  8.1.1 /etc/aliases
              + [   ]  8.2 Alternatives (qmail and postfix)
                   o [   ]  8.2.1 qmail by D. J. Bernstein
                   o [   ]  8.2.2 postfix by Wietse Venema (uses an alias
                     database)
              + [   ]  8.3 POP/IMAP
         * [   ]  9.0 Web Security
              + [   ]  9.1 General Configuration
                   o [   ]  9.1.1 chroot
                   o [   ]  9.1.2 CGI Programming
                   o [   ]  9.1.3 daemon non-root uid
                   o [   ]  9.1.4 Command Interpreters
                   o [   ]  9.1.5 SSL
                   o [   ]  9.1.6 Additional Configuration Matters
              + [   ]  9.2 Freely Available Servers
                   o [   ]  9.2.1 Apache
                   o [   ]  9.2.2 publicfile
                   o [   ]  9.2.3 WU-FTPD
              + [   ]  9.3 Client Configuration 
         * [   ]  10.0 FTP: ftpd and anonymous ftp
              + [   ]  10.1 General Server Configuration
              + [   ]  10.2 Incoming Directories
              + [   ]  10.3 Freely Available Servers
              + [   ]  10.4 Anonymous FTP Only
         * [   ]  11.0 File Services
              + [   ]  11.1 NFS
              + [   ]  11.2 Alternatives
                   o [   ]  11.2.1 Samba
                   o [   ]  11.2.2 AFS
                   o [   ]  11.2.3 DFS
         * [   ]  12.0 X Window System
              + [   ]  12.1 X Security - General
              + [   ]  12.2 Problems with xdm
    
    Section IV. Specific Operating Systems
    
         * [   ]  13.0 BSD-derived Operating Systems
              + [   ]  13.1 BSD/OS
                   o [   ]  13.1.1 Patches
                   o [   ]  13.1.2 Security Advisories
              + [   ]  13.2 FreeBSD
                   o [   ]  13.2.1 Patches
                   o [   ]  13.2.2 Security Advisories
              + [   ]  13.3 NetBSD
                   o [   ]  13.3.1 Patches
                   o [   ]  13.3.2 Security Advisories
              + [   ]  13.4 OpenBSD
                   o [   ]  13.4.1 Patches
                   o [   ]  13.4.2 Security Advisories
         * [   ]  14.0 Linux Distributions
              + [   ]  14.1 Caldera OpenLinux
                   o [   ]  14.1.1 Patches
                   o [   ]  14.1.2 Security Advisories
              + [   ]  14.2 Debian GNU/Linux
              + [   ]  14.3 Mandrake Linux
                   o [   ]  14.3.1 Patches
                   o [   ]  14.3.2 Security Configuration Scripts
              + [   ]  14.4 Redhat Linux
                   o [   ]  14.4.1 Patches
                   o [   ]  14.4.2 Security Configuration Scripts
              + [   ]  14.5 Slackware Linux
                   o [   ]  14.5.1 Patches
                   o [   ]  14.5.2 Security Advisories
                   o [   ]  14.5.3 Security Configuration Scripts
              + [   ]  14.6 SuSE Linux
              + [   ]  14.7 TurboLinux
              + [   ]  14.8 Others
         * [   ]  15.0 Solaris
              + [   ]  15.1 Patches
              + [   ]  15.2 IP Forwarding and Source Routing
              + [   ]  15.3 Stack Execution
              + [   ]  15.4 NFS Port Monitoring
              + [   ]  15.5 Framebuffers /dev/fbs
              + [   ]  15.6 Security Bulletins
              + [   ]  15.7 Sun BluePrints
              + [   ]  15.8 Solaris Security Toolkit (JASS)
         * [   ]  16.0 IRIX
              + [   ]  16.1 Patches
              + [   ]  16.2 Default Account Security
              + [   ]  16.3 Security Bulletins
         * [   ]  17.0 HP-UX
              + [   ]  17.1 Patches
         * [   ]  18.0 Digital/Compaq Tru64 Unix
              + [   ]  18.1 Patches
         * [   ]  19.0 AIX
              + [   ]  19.1 Patches
              + [   ]  19.2 Security Advisories
       _________________________________________________________________
    
       Revision History
       Oct 8, 2001
       Initial Release
       _________________________________________________________________
    
       Questions or comments regarding this page? auscert@auscert.org.au
       Disclaimer - Copyright İ 2001, AusCERT
       http://www.auscert.org.au/
    tiger-3.2.3/scripts/0000755000175000017500000000000011306441026012743 5ustar  pacopacotiger-3.2.3/scripts/misc/0000755000175000017500000000000011306441026013676 5ustar  pacopacotiger-3.2.3/scripts/misc/check_symlink0000755000175000017500000000420307502327223016453 0ustar  pacopaco#!/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 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_symlink  - 04/22/93
    #
    #-----------------------------------------------------------------------------
    
    basedir=${TIGERHOMEDIR:=.}
    
    for parm
    do
       case $parm in
       -B) basedir=$2; break;;
       esac
    done
    
    [ ! -r $basedir/config ] && {
      echo "--ERROR-- [init002e] No 'config' file in \`$basedir'."
      exit 1
    }
    
    . $basedir/config
    
    haveallof()
    {
      retval=0
      what=$1
      shift
      for file
      do
        eval cmd=\$$file
        [ ! -n "$cmd" ] && {
          echo "--ERROR-- [init001e] Don't have all required $what (missing $file)"
          retval=1
        }
      done
      return $retval
    }
    
    echo
    echo "# Attempting to perform miscellaneous checks..."
    
    haveallof commands AWK CHMOD CHOWN LN LS RM|| exit 1
    haveallof variables WORKDIR || exit 1
    
    
    getpermit()
    {
       $LS $LSLINK -ld $1 |
       $AWK '{
          for(i=2;i<11;i++){
    	 c = substr($1, i, 1);
             if(c == "-" || c == "S")
    	     printf("0 ");
             else
                 printf("1 ");
          }
          printf("\n");
       }'
    }
    
    #
    # See if chown/chmod chase symbolic links...
    #
    > $WORKDIR/file.$$
    $CHMOD 644 $WORKDIR/file.$$
    $LN -s $WORKDIR/file.$$ $WORKDIR/link.$$
    $CHMOD 666 $WORKDIR/link.$$
    
    getpermit $WORKDIR/file.$$ | {
      read ur uw ux gr gw gx or ow ox
      [ "$gw" = "1" ] && {
        echo "--INFO-- This systems chmod follows symbolic links."
      }
    }
    
    $CHOWN bin $WORKDIR/link.$$
    $LS -l $LSGROUP $WORKDIR/file.$$ | {
      read p l owner rest
      [ "$owner" != "root" ] && {
        echo "--INFO-- This systems chown follows symbolic links."
      }
    }
    
      
    
    
    tiger-3.2.3/scripts/misc/scan_rhosts.pl0000755000175000017500000000634107502327223016575 0ustar  pacopaco#!/usr/local/bin/perl -- # -*-Perl -*-
    #
    #  Scan .rhosts files for various things, including checks for
    #  rhosting of other users.
    #
    #    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.
    #
    #  Usage:  scan.rhosts
    #
    #----
    # Where is the finger program?
    $FINGER="/usr/ucb/finger";
    #----
    # How long do we give hosts to respond? (in seconds)
    $ALARMTIME=30;
    
    $SIG{'ALRM'} = 'sigalrm';
    
    sub sigalrm {
        $timeout = 1;
        kill 9, $pid;
    }
    
    setpwent;
    
    while(($user, $pwd, $uid, $gid, $quota, $comment, $gcos, $home) = getpwent){
        if(-f "$home/.rhosts"){
    	$header = "$user ($gcos):";
    	if((($d,$i,$mode) = stat(_))){
    	    if($mode & 0066){
    		$perms="";
    		if($mode & 0060){
    		    $perms .= " group";
    		    $perms .= " readable" if($mode & 0040);
    		    $perms .= " writable" if($mode & 0020);
    		    $perms .= "," if($mode & 0006);
    		}
    		if($mode & 0006){
    		    $perms .= " world";
    		    $perms .= " readable" if($mode & 0004);
    		    $perms .= " writable" if($mode & 0002);
    		}
    		print "$header .rhosts is$perms.\n";
    	    }
    	}
    	else {
    	    warn "stat($home/.rhosts): $!.\n";
    	}
    	
    	open(RHOSTS, "$home/.rhosts") || warn "Can't open $home/.rhosts: $!\n";
    	while(){
    	    if(!/^\s*$/){
    		($rhost, $ruser) = split;
    		if($rhost eq "+" || $ruser eq "+"){
    		    print "$header has + in ~/.rhosts\n";
    		}
    		elsif($rhost !~ /^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/ &&
    		      !(($s) = gethostbyname($rhost))){
    		    print "$header $ruser@$rhost ([host unknown]).\n";
    		}
    		elsif($ruser ne "" && $ruser ne $user){
    		    alarm($ALARMTIME);
    		    $timeout = 0;
    		    $foundit = 0;
    		    $pid = open(FINGER, "$FINGER $ruser@$rhost 2>&1 |") || 
    			warn "Can't execute $FINGER\n";
    		    while(){
    			alarm(0);
    			if(/connect: *([^\r\n]*)\s$/){
    			    $foundit = 1;
    			    if($rhost =~ /^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/){
    				print "$header (INVALID ENTRY) $ruser@$rhost ([$1]).\n";
    			    }
    			    else {
    				print "$header $ruser@$rhost ([$1]).\n";
    			    }
    			}
    			elsif(/^[Ll]og[oi]n.*:[ \t]+(\w+).+: *([^\r\n]*)\s*$/){
    			    if($1 eq $ruser){
    				$rname = $2;
    				$foundit=1;
    				if($rhost =~ /^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/){
    				    print "$header (INVALID ENTRY) $ruser@$rhost ($rname).\n";
    				}
    				else {
    				    print "$header $ruser@$rhost ($rname)\n";
    				}
    				last;
    			    }
    			}
    		    }
    		    alarm(0);
    		    close(FINGER);
    		    if($timeout){
    			if($rhost =~ /^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/){
    			    print "$header (INVALID ENTRY) $ruser@$rhost ($rname).\n";
    			}
    			else {
    			    print "$header $ruser@$rhost ([timeout]).\n";
    			}
    		    }
    		    elsif(!$foundit){
    			if($rhost =~ /^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/){
    			    print "$header (INVALID ENTRY) $ruser@$rhost ([no answer]).\n";
    			}
    			else {
    			    print "$header $ruser@$rhost ([no answer]).\n";
    			}
    		    }
    		}
    	    }
    	}
    	close(RHOSTS);
        }
    }
    endpwent;
    tiger-3.2.3/scripts/sub/0000755000175000017500000000000011306441026013534 5ustar  pacopacotiger-3.2.3/scripts/sub/check_devs0000755000175000017500000000413710217661040015565 0ustar  pacopaco#!/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 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.
    #
    # sub/check_devs - 06/14/93
    #
    #-----------------------------------------------------------------------------
    # This script is not runnable directly.
    # 
    
    file="$1"
    
    [ "$CONFIGURED_ALREADY" != "YES" ] && {
      echo "--ERROR-- [init008e] This script can not be run directly."
      exit 1
    }
    
    . $BASEDIR/initdefs
    
    #
    # If run in test mode (-t) this will verify that all required
    # elements are set.
    #
    [ "$Tiger_TESTMODE" = 'Y' ] && {
      haveallcmds GETCLIENTDIRS AWK GREP LS RM || exit 1
      haveallfiles WORKDIR || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    echo
    echo "# Looking for unusual device files..."
    
    haveallcmds AWK GREP LS || exit 1
    haveallvars WORKDIR || exit 1
    
    dldevdirs=
    
    [ -n "$HOSTNAMESLIST" ] && haveallcmds GETCLIENTDIRS && {
      dldevdirs="`$GETCLIENTDIRS | $AWK '{printf(\"%s/dev %s/devices \", $2, $2);}'`"
    }
    
    [ ! -n "$DEVDIRSYS" ] && DEVDIRSYS="/dev/"
    
    set $DEVDIRSYS $FS_DEVDIRS $dldevdirs
    greps="$GREP -v '^'$1 $file"
    shift
    for dir
    do
      greps="$greps | $GREP -v '^'$dir"
    done
    
    # The "hw" hack is due to SGI renaming devices in IRIX 6.5
    eval $greps | $GREP -v '^'/hw> $WORKDIR/dev.list.$$
    
    [ -s $WORKDIR/dev.list.$$ ] && {
      message ALERT fsys006a "" "Unexpected device files found:"
      $SORT $WORKDIR/dev.list.$$ |
      while read file
      do
        $LS $LSGROUP -ld "$file"
      done
      echo
    }
    
    delete $WORKDIR/dev.list.$$
    
    tiger-3.2.3/scripts/sub/check_embed0000755000175000017500000001525510217661040015703 0ustar  pacopaco#!/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 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.
    #
    # sub/check_embed - 06/29/93
    #
    #-----------------------------------------------------------------------------
    #
    
    [ "$CONFIGURED_ALREADY" != "YES" ] && {
      echo "--ERROR-- [init008e] This script can not be run directly."
      exit 1
    }
    
    #
    # 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/initdefs
    
    #
    # If run in test mode (-t) this will verify that all required
    # elements are set.
    #
    [ "$Tiger_TESTMODE" = 'Y' ] && {
      haveallcmds AWK CAT FMT GEN_PASSWD_SETS JOIN LS RM || exit 1
      haveallfiles BASEDIR WORKDIR || exit 1
      haveallvars TESTLINK HOSTNAME
    
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    
    haveallcmds LS AWK SORT CAT STRINGS SED GREP TR COMM JOIN RM || exit 1
    haveallfiles WORKDIR || exit 1
    
    saveifs=$IFS
    realpath="$REALPATH -d"
    [ ! -n "$REALPATH" -o ! $TESTEXEC "$REALPATH" ] && realpath=echo
    
    showwhere()
    {
      [ -n "$1" ] && {
    
        hdr="         Embedded references in: "
        for source in $1
        do
          echo "${hdr}${source}"
          hdr="                                 "
        done
      }
    }
    
    check_file()
    {
      __level="$1"
      __owner="$2"
      __fcmd="$3"
      __where="$4"
      l='w'
      [ "x$__level" = "xINFO" ] && l='i'
    
      okowner=$Tiger_Embedded_OK_Owners
      [ ! -n "$okowner" ] && okowner='root'
    
      lgetpermit "$__fcmd" |
      while read __path fowner __group ur uw ux gr gw gx or ow ox suid sgid stk
      do
        eval "case \$fowner in
          $okowner) ;;
          *) {
    	if [ \"\$__fcmd\" != \"\$__path\" ]; then
    	  message \$__level embed001\$l \"\" \"Path \\\`\$__fcmd' contains \\\`$__path' which is not owned by \$__owner (owned by \$fowner).\"
    	else
    	  message \$__level embed002\$l \"\" \"Path \\\`\$__fcmd' is not owned by \$__owner (owned by \$fowner).\"
    	fi
    	showwhere \"\$__where\"
          }
          ;;
        esac"
    
        [ -n "$Tiger_Embedded_OK_Group_Write" -a "$gw" = '1' ] && {
          eval "case \$__group in
    	$Tiger_Embedded_OK_Group_Write) gw=0;;
          esac"
        }
          
        case "$gw$ow" in
          00) __what="";;
          01) __what="world";;
          10) __what="group \`$__group'";;
          11) __what="group \`$__group' and world";;
          *) __what="";;
        esac
        [ -n "$__what" ] && {
          if [ "$__fcmd" != "$__path" ]; then
    	message $__level embed003$l "" "Path \`$__fcmd' contains \`$__path' which is $__what writable."
          else
    	message $__level embed004$l "" "Path \`$__fcmd' is $__what writable."
          fi
          showwhere "$__where"
        }
      done
    }
    
    newfile=$WORKDIR/embed1.$$
    oldfile=$WORKDIR/embed2.$$
    record=$WORKDIR/embedrec.$$
    
    $SED -e '/^[ 	]*$/d' |
    $SORT -u > $oldfile
    $AWK '{print $1}' $oldfile > $record
    
    depth=1
    maxdepth=9999
    
    [ -n "$Tiger_Embed_Max_Depth" -a $Tiger_Embed_Max_Depth -gt 0 ] && {
      maxdepth=$Tiger_Embed_Max_Depth
    }
    
    [ ! -n "$EXPR" ] && maxdepth=0
    
    info=Y
    
    [ "x$Tiger_Embed_Report_Exec_Only" = 'xY' ] && {
      info=N
    }
    
    while [ -s $oldfile ]
    do
      > $newfile
      $AWK '{print $1}' $oldfile |
      $SORT -u |
      while read file
      do
        [ -r "$file" ] && {
          $STRINGS - $file |
          $SED -e 's/#.*$//' -e '/^$/d' |
          $GREP '/[-a-zA-Z0-9_.][-a-zA-Z0-9_./]*' |
          $SED -e 's/[^-a-zA-Z0-9_./]/ /g' |   
          $AWK '{
          for(i=1;i<=NF;i++)
            if(substr($i,1,1) == "/")
              print $i;
          }' |
          $GREP '^/[-/a-zA-Z0-9_.]*$' |
          $AWK '{printf("%s %s\n", "'"$file"'", $1);}'
        }
      done 2>/dev/null |
      $SORT -u |
      $JOIN -o 1.2 2.1 2.2 - $oldfile |
      $AWK '{
          if($3 != "")
            printf("%s %s->%s\n", $1, $2, $3);
          else
    	printf("%s %s\n", $1, $2);
      }' |
      $SORT -u > $WORKDIR/scr.$$
    
      $AWK '{print $1}' $WORKDIR/scr.$$ |
      $SORT -u |
      $COMM -23 - $record |
      while read pathname
      do
        if [ -b "$pathname" -o -c "$pathname" -o -p "$pathname" ]; then
          : # Don't process these
        elif [ -d "$pathname" -a $info = 'Y' ]; then
          echo "$pathname"
        elif [ -f "$pathname" ]; then
          if [ ! -s "$pathname" ]; then
    	:  # Zero length file... the only reason for this is to skip sockets
          elif [ "x$Tiger_Embed_Check_Exec_Only" != 'xN' ]; then
    	getpermit "$pathname" | {
    	  read _f owner grp ur uw ux gr gw gx or ow ox suid sgid stk
    	  if [ "$ux$gx$ox" != '000' ]; then
    	    echo "$pathname" >> $newfile
    	    echo "$pathname"
    	  elif [ $info = 'Y' ]; then
    	    echo "$pathname"
    	  fi
    	}
          else
    	echo "$pathname" >> $newfile
    	[ $info = 'Y' ] && echo "$pathname"
          fi
        fi
      done |
      $SORT -u |
      $JOIN -o 2.1 2.2 - $WORKDIR/scr.$$
      
      > $oldfile
      [ -s $newfile ] && {
        $SORT -u $newfile $record > $record.new
    
        $SORT -u $newfile |
        $JOIN -o 2.1 2.2 - $WORKDIR/scr.$$ |
        $SORT -u > $oldfile
    
      }
    
      [ -f $record.new ] && $CAT $record.new > $record
      delete $record.new $WORKDIR/scr.$$
    
      [ -n "$EXPR" -a $TESTEXEC "$EXPR" ] && depth="`$EXPR $depth + 1`"
    
      [ $depth -gt $maxdepth ] && break
      
    done |
    $SORT -u |
    $AWK '
      BEGIN {
              last="";
      }
            { 
              if(substr($1, length($1), 1) == "/")
                 name=substr($1, 1, length($1)-1);
              else
                 name=$1;
    
              if(last==name){
                  printf(" %s", $2);
              }
    	  else {
    	      if(last != "") 
                     printf("\n");
                  last=name;
                  printf("%s %s", last, $2);
    	  }
      }
      END   { if(last != "")printf("\n");}
    ' |
    while read pathname source
    do
      if [ -d "$pathname" ]; then
        check_file 'INFO' root "$pathname" "$source" 
      elif [ -f "$pathname" ]; then
        getpermit "$pathname" | {
          read _f owner grp ur uw ux gr gw gx or ow ox suid sgid stk
          if [ "$ux$gx$ox" != '000' ]; then
    	check_file 'WARN' root "$pathname" "$source"
          else
    	check_file 'INFO' root "$pathname" "$source"
          fi
        }
      fi
    done
    
    delete $newfile $oldfile $record $WORKDIR/tmp1.$$
    
    exit 0
    tiger-3.2.3/scripts/sub/check_links0000755000175000017500000000357310664614312015755 0ustar  pacopaco#!/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 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.
    #
    # sub/check_links - 06/14/93
    #
    #-----------------------------------------------------------------------------
    # This script is not runnable directly.
    # 
    file="$1"
    
    [ "$CONFIGURED_ALREADY" != "YES" ] && {
      echo "--ERROR-- [init008e] This script can not be run directly."
      exit 1
    }
    
    . $BASEDIR/initdefs
    
    #
    # If run in test mode (-t) this will verify that all required
    # elements are set.
    #
    [ "$Tiger_TESTMODE" = 'Y' ] && {
      haveallcmds SORT GREP JOIN LS CAT CC RM || exit 1
      haveallfiles BASEDIR WORKDIR || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    echo
    echo "# Checking symbolic links..."
    
    haveallcmds SORT GREP JOIN LS REALPATH || exit 1
    haveallfiles WORKDIR || exit 1
    
    $REALPATH < $file |
    $SORT -k 2 > $WORKDIR/link.tmp.$$
    
    $GREP -v '^#' $FILE_ACL |
    $SORT |
    $JOIN -j2 2 -o 2.1 2.2 1.1 - $WORKDIR/link.tmp.$$ |
    while read file realfile facl
    do
      $LS -ld $LSGROUP "$file" | {
        read p l owner group s a b c f
        [ "$owner" != 'root' -a "$owner" != 'bin' ] && {
          message INFO fsys007i "" "Symbolic link \`$file' points to \`$realfile'."
        }
      }
    done
    
    delete $WORKDIR/link.tmp.$$
    
    tiger-3.2.3/scripts/sub/check_names0000755000175000017500000000332710217644452015737 0ustar  pacopaco#!/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 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.
    #
    # sub/check_names - 06/14/93
    #
    #-----------------------------------------------------------------------------
    # This script is not runnable directly.
    # 
    file="$1"
    
    [ "$CONFIGURED_ALREADY" != "YES" ] && {
      echo "--ERROR-- [init008e] This script can not be run directly."
      exit 1
    }
    
    . $BASEDIR/initdefs
    
    #
    # If run in test mode (-t) this will verify that all required
    # elements are set.
    #
    [ "$Tiger_TESTMODE" = 'Y' ] && {
      haveallcmds LS RM BASENAME || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    echo
    echo "# Checking unusual file names..."
    
    haveallcmds LS BASENAME || exit 1
    
    [ -s $file ] && {
      $SORT $file |
      while read pathname
      do
        file="`$BASENAME \"$pathname\"`"
        case "$file" in
          .FSP*)
    	message WARN fsys009w "" "FSP server control file found:"
    	$LS $LSGROUP -ld "$pathname";;
          *)
    	message ALERT fsys005a "" "Unusual filename \`$file' found:"
    	$LS $LSGROUP -ld "$pathname";;
        esac
      done
      echo
    }
    tiger-3.2.3/scripts/sub/check_nousrgrp0000755000175000017500000000326307502327223016507 0ustar  pacopaco#!/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 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.
    #
    # sub/check_nousrgrp - 06/14/93
    #
    #-----------------------------------------------------------------------------
    # This script is not runnable directly.
    # 
    
    nouserfile="$1"
    nogroupfile="$2"
    
    [ "$CONFIGURED_ALREADY" != "YES" ] && {
      echo "--ERROR-- [init008e] This script can not be run directly."
      exit 1
    }
    
    . $BASEDIR/initdefs
    
    #
    # If run in test mode (-t) this will verify that all required
    # elements are set.
    #
    [ "$Tiger_TESTMODE" = 'Y' ] && {
      haveallcmds GETCLIENTDIRS AWK GREP LS RM || exit 1
      haveallfiles WORKDIR || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    
    haveallcmds AWK GREP LS || exit 1
    haveallvars WORKDIR || exit 1
    
    [ -s "$nouserfile" ] && {
      echo '--WARN-- [xxxxx] The following files are unowned:'
      $SORT "$nouserfile"
      echo
    }
    
    [ -s "$nogroupfile" ] && {
      echo '--WARN-- [xxxxx] The following files have undefined groups ownership:'
      $SORT "$nogroupfile"
      echo
    }
    tiger-3.2.3/scripts/sub/check_sgid0000755000175000017500000000753110217644452015563 0ustar  pacopaco#!/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 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.
    #
    # sub/check_sgid - 11/12/93
    # ARC check_sgid - 04/27/99
    #
    #-----------------------------------------------------------------------------
    # This script is not runnable directly.
    # 
    inputfile="$1"
    
    [ "$CONFIGURED_ALREADY" != "YES" ] && {
      echo "--ERROR-- [init008e] This script can not be run directly."
      exit 1
    }
    
    . $BASEDIR/initdefs
    
    #
    # If run in test mode (-t) this will verify that all required
    # elements are set.
    #
    [ "$Tiger_TESTMODE" = 'Y' ] && {
      haveallcmds RM FILECMD SGREP LS STRINGS SORT COMM CAT AWK || exit 1
      haveallfiles BASEDIR WORKDIR SUID_LIST || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    echo
    echo "# Checking setgid executables..."
    
    haveallfiles BASEDIR WORKDIR || exit 1
    
    #[ -n "$TigerCheckEmbedded" -a "x$Tiger_Embed_Check_SGID" = 'xY' ] && {
    #  while read file
    #  do
    #    $LS -lLd "$file" 2>/dev/null | {
    #      read p l owner rest
    #      [ "$owner" = root ] && echo "$file" >> $TigerCheckEmbedded
    #    }
    #  done
    #}
    
    haveallcmds FILECMD LS SGREP STRINGS && {
      while read file
      do
        $FILECMD "$file" 2>/dev/null | $SGREP script 2>/dev/null && {
          message WARN fsys010w "" "File $file is a setgid script:"
          $LS $LSGROUP -ld "$file"
        }
      
    #    $STRINGS - "$file" 2>/dev/null |
    #   $SGREP '\.\./' 2>/dev/null && {
    #      $SGREP "$file" $REL_FILE_EXCP 2>/dev/null || {
    #	message WARN fsys002w "" "setuid program $file has relative pathnames."
    #      }
    #    }
      done < $inputfile
      
      echo
    }
    
    haveallcmds SORT COMM CAT && {
      if [ -n "$SGID_LIST" -a -s "$SGID_LIST" ]; then
        $SORT $SGID_LIST |
        $COMM -23 $inputfile - > $WORKDIR/sgid.list.$$
      else
        message CONFIG fsys003c "" 'No setgid list... listing all setgid files'
        $CAT $inputfile > $WORKDIR/sgid.list.$$
      fi
    }
    
    haveallcmds LS AWK && {
      [ -s $WORKDIR/sgid.list.$$ ] && {
        message ALERT fsys011a "" 'The following setgid programs are non-standard:'
        while read file
        do
          $LS $LSGROUP -ld "$file"
        done < $WORKDIR/sgid.list.$$ |
        $AWK '{printf("%10s %-8s %-8s %s\n", $1, $3, $4, $NF);}' |
        $SORT
        echo
      }
    }
    
    #
    # Try to locate setuid copies of any executables we have signatures
    # for.
    #
    if [ "$Tiger_Check_SIGNATURES" != 'N' ]; then  
    haveallcmds SORT AWK COMM GREP LS SNEFRU &&
    haveallfiles SIGNATURE_FILE && {
      $SORT $inputfile > $WORKDIR/sgid.$$
      $AWK '{print $3}' $SIGNATURE_FILE |
      $SORT |
      $COMM -13 - $WORKDIR/sgid.$$ |
      while read file
      do
        loc_signature=
        case "$p1$p2$p3$p4$p5$p6$p7$p8" in
          *[!0-9a-f]*) {
    	std_signature="$p1"
    	comment="$p2 $p3 $p4 $p5 $p6 $p7 $p8 $comment"
    	[ -n "$MD5" ] && loc_signature="`$MD5 < $file`"
          }
          ;;
          *) {
    	std_signature=" $p1 $p2 $p3 $p4 $p5 $p6 $p7 $p8"
    	[ -n "$SNEFRU" ] && loc_signature="`$SNEFRU < $file`"
          }
          ;;
        esac
        [ -n "$loc_signature" ] && {
          $GREP "$loc_signature" $SIGNATURE_FILE | {
    	read flag msgid rfile p1 p2 p3 p4 p5 p6 p7 p8 comment
    	[ -n "$rfile" -a "$file" != "$rfile" ] && {
    	  message ALERT sgid001a "" "\`$file' is a setgid copy of $rfile [$comment]."
    	  $LS -ld $LSGROUP $file
    	}
          }
        }
      done
    }
    fi
    delete $WORKDIR/sgid.list.$$ $WORKDIR/sgid.$$
    tiger-3.2.3/scripts/sub/check_suid0000755000175000017500000001417710263753470015607 0ustar  pacopaco#!/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 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.
    #
    # 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"
    
    [ "$CONFIGURED_ALREADY" != "YES" ] && {
      echo "--ERROR-- [init008e] This script can not be run directly."
      exit 1
    }
    
    . $BASEDIR/initdefs
    
    #
    # If run in test mode (-t) this will verify that all required
    # elements are set.
    #
    [ "$Tiger_TESTMODE" = 'Y' ] && {
      haveallcmds RM FILECMD SGREP LS STRINGS SORT COMM CAT AWK || exit 1
      haveallfiles BASEDIR WORKDIR SUID_LIST || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    echo
    echo "# Checking setuid executables..."
    
    haveallfiles BASEDIR WORKDIR || exit 1
    
    [ -n "$TigerCheckEmbedded" -a "x$Tiger_Embed_Check_SUID" = 'xY' ] && {
      while read file
      do
        $LS -lLd "$file" 2>/dev/null | {
          read p l owner rest
          [ "$owner" = root ] && echo "$file" >> $TigerCheckEmbedded
        }
      done
    }
    
    haveallcmds FILECMD LS SGREP STRINGS && {
      while read file
      do
        $FILECMD "$file" 2>/dev/null | $SGREP script 2>/dev/null && {
          message FAIL fsys001f "" "File $file is a setuid script:"
          $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)."
        }
        ;;
        esac
      
        $STRINGS - "$file" 2>/dev/null |
        $SGREP '\.\./' 2>/dev/null && {
          $SGREP "$file" $REL_FILE_EXCP 2>/dev/null || {
    	case "$file" in
    	  */xload)
    	  message WARN misc015w "" "$file appears to contain relative pathnames.  There is a known security vulnerability with xload in this configuration."
    	  ;;
    	  # The following is contributed by Bob Hall for HP-UX (it is not active by default)
    	  # TODO: find a way to read this from a file and check them instead of the case
    # /sbin/lvchange) ;;
    # /sbin/lvcreate) ;;
    # /sbin/lvdisplay) ;;
    # /sbin/lvextend) ;;
    # /sbin/lvlnboot) ;;
    # /sbin/lvmerge) ;;
    # /sbin/lvsplit) ;;
    # /sbin/lvsync) ;;
    # /sbin/lvreduce) ;;
    # /sbin/lvremove) ;;
    # /sbin/lvrmboot) ;;
    # /sbin/passwd) ;;
    # /sbin/pvchange) ;;
    # /sbin/pvck) ;;
    # /sbin/pvcreate) ;;
    # /sbin/pvdisplay) ;;
    # /sbin/pvmove) ;;
    # /sbin/pvremove) ;;
    # /sbin/sdstolvm) ;;
    # /sbin/shutdown) ;;
    # /sbin/vgcfgbackup) ;;
    # /sbin/vgcfgrestore) ;;
    # /sbin/vgchange) ;;
    # /sbin/vgchgid) ;;
    # /sbin/vgcreate) ;;
    # /sbin/vgdisplay) ;;
    # /sbin/vgexport) ;;
    # /sbin/vgextend) ;;
    # /sbin/vgimport) ;;
    # /sbin/vgreduce) ;;
    # /sbin/vgremove) ;;
    # /sbin/vgscan) ;;
    # /sbin/vgsync) ;;
    # /sbin/nomwcsyncd) ;;
    # /usr/bin/X11/X) ;;
    # /usr/lbin/chgpt) ;;
    # /usr/sbin/sd) ;;
    # /usr/bin/at) ;;
    # /usr/bin/chkey) ;;
    # /usr/bin/ct) ;;
    # /usr/lbin/grmd) ;;
    # /usr/sam/lbin/rsam) ;;
    # /usr/sbin/swacl) ;;
    # /usr/sbin/swask) ;;
    # /usr/sbin/swconfig) ;;
    # /usr/sbin/swcopy) ;;
    # /usr/sbin/swinstall) ;;
    # /usr/sbin/swjob) ;;
    # /usr/sbin/swlist) ;;
    # /usr/sbin/swmodify) ;;
    # /usr/sbin/swpackage) ;;
    # /usr/sbin/swreg) ;;
    # /usr/sbin/swremove) ;;
    # /usr/sbin/swverify) ;;
    # /usr/dt/bin/dtsession) ;;
    # /usr/dt/bin/dtterm) ;;
              *)
    	  message WARN fsys002w "" "setuid program $file has relative pathnames."
              ;;
            esac
          }
        }
        getpermit "$file" |
        pathmsg . suidxxx "$file" . "Setuid file" ""
      done < $inputfile
      
      echo
    }
    
    haveallcmds SORT COMM CAT && {
      if [ -n "$SUID_LIST" -a -s "$SUID_LIST" ]; then
        $SORT $SUID_LIST |
        $COMM -23 $inputfile - > $WORKDIR/suid.list.$$
      else
        message CONFIG fsys003c "" 'No setuid list... listing all setuid files'
        $CAT $inputfile > $WORKDIR/suid.list.$$
      fi
    }
    
    haveallcmds LS AWK && {
      [ -s $WORKDIR/suid.list.$$ ] && {
        message ALERT fsys004a "" 'The following setuid programs are non-standard:'
        while read file
        do
          $LS $LSGROUP -ld "$file"
        done < $WORKDIR/suid.list.$$ |
        $AWK '{printf("%10s %-8s %-8s %s\n", $1, $3, $4, $NF);}' |
        $SORT
        echo
      }
    }
    
    #
    # Try to locate setuid copies of any executables we have signatures
    # for.
    #
    haveallcmds SORT AWK COMM GREP LS SNEFRU &&
    haveallfiles SIGNATURE_FILE && {
      $SORT $WORKDIR/suid.list.$$ > $WORKDIR/suid.$$
      $AWK '{print $3}' $SIGNATURE_FILE |
      $SORT |
      $COMM -13 - $WORKDIR/suid.$$ |
      while read file
      do
        loc_signature=
        case "$p1$p2$p3$p4$p5$p6$p7$p8" in
          *[!0-9a-f]*) {
    	std_signature="$p1"
    	comment="$p2 $p3 $p4 $p5 $p6 $p7 $p8 $comment"
    	[ -n "$MD5" ] && loc_signature="`$MD5 < $file`"
          }
          ;;
          *) {
    	std_signature=" $p1 $p2 $p3 $p4 $p5 $p6 $p7 $p8"
    	[ -n "$SNEFRU" ] && loc_signature="`$SNEFRU < $file`"
          }
          ;;
        esac
        [ -n "$loc_signature" ] && {
          $GREP "$loc_signature" $SIGNATURE_FILE | {
    	read flag msgid rfile p1 p2 p3 p4 p5 p6 p7 p8 comment
    	[ -n "$rfile" -a "$file" != "$rfile" ] && {
    	  message ALERT suid001a "" "\`$file' is a setuid copy of $rfile [$comment]."
    	  $LS -ld $LSGROUP $file
    	}
          }
        }
      done
    }
    
    delete $WORKDIR/suid.list.$$ $WORKDIR/suid.$$
    tiger-3.2.3/scripts/sub/check_wdir0000755000175000017500000000533210217644452015577 0ustar  pacopaco#!/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 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.
    #
    # sub/check_wdir - 06/14/93
    #
    #-----------------------------------------------------------------------------
    # This script is not runnable directly.
    # 
    file="$1"
    
    [ "$CONFIGURED_ALREADY" != "YES" ] && {
      echo "--ERROR-- [init008e] This script can not be run directly."
      exit 1
    }
    
    . $BASEDIR/initdefs
    
    #
    # If run in test mode (-t) this will verify that all required
    # elements are set.
    #
    [ "$Tiger_TESTMODE" = 'Y' ] && {
      haveallcmds GREP CAT RM AWK GETCLIENTDIRS || exit 1
      haveallfiles WORKDIR || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    echo
    echo "# Checking for writable directories..."
    
    haveallcmds GREP CAT SED || exit 1
    haveallvars WORKDIR || exit 1
    
    [ ! -n "$FS_WDIRSYS" ] && FS_WDIRSYS="/tmp/ /usr/tmp/"
    
    dltmpdirs=
    [ -n "$HOSTNAMESLIST" ] &&
    haveallcmds GETCLIENTDIRS AWK && {
      dltmpdirs=`$GETCLIENTDIRS |
                 while read client rootdir
                 do
                   for dir in $FS_WDIRSYS
                   do
                      echo "$rootdir$dir"
                   done
                 done
      `
    }
    
    set $FS_WDIRSYS $dltmpdirs
    
    greps="$GREP -v '^'$1"
    
    shift
    for dir
    do
      greps="$greps | $GREP -v '^'$dir"
    done
    
    $SED -e 's%\([^/]\)$%\1/%' $file |
    eval $greps > $WORKDIR/wdir.tmp.$$
    
    [ -s $WORKDIR/wdir.tmp.$$ ] && {
      message FAIL fsys008f "" 'The following directories are world writable:'
      $SORT $WORKDIR/wdir.tmp.$$
    }
    
    delete $WORKDIR/wdir.tmp.$$
    
    # Note: The followin directories are world-writable under HP-UX
    # (contributed by Bob Hall)
    #  $SORT $WORKDIR/wdir.tmp.$$
    #while read DIR
    # do
    # case $DIR in
    # /dev/screen/) ;;
    # /etc/opt/resmon/log/) ;;
    # /usr/newconfig/var/stm/*) ;;
    # /var/dt/appconfig/appmanager/*) ;;
    # /var/X11/Xserver/logs/) ;;
    # /var/news/) ;;
    # /var/opt/dce/rpc/local/*) ;;
    # /var/preserve/) ;;
    # /var/rbootd/) ;;
    # /var/stm/*) ;;
    # */man/cat[^\/]*[.]Z/) ;;
    # /var/spool/calendar/*) ;;
    # /var/spool/cron/tmp/*) ;;
    # /var/spool/sockets/*) ;;
    # /var/tmp/*) ;;
    # /var/userlogs/*) ;;
    # *) echo $DIR ;;
    # esac
    # done
    
    
    tiger-3.2.3/scripts/aide_run0000755000175000017500000001264207732461606014502 0ustar  pacopaco#!/bin/sh
    #
    #     tiger - A UN*X security checking system
    #     Copyright (C) 2003 Javier Fernandez-Sanguino
    #
    #    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.
    #
    # aide_run - 04/24/2003
    # unSpawn 
    #
    # Implement system integrity checks using aide.
    # The script checks for the aide binary and configuration file
    # location, if not found and no user-supplied vars are given, it will use
    # the # default installation location. 
    # The default database location is in the configuration file unless 
    # overridden by the user. 
    # It then runs Aide and parses/presents the result.
    #
    # Tested on RH-7.1 using non-custom Aide configuration
    #
    # 08/13/2003 - jfs - Respect the AIDE override (if done) in the site
    #              configuration file.
    # 08/09/2003 - jfs - Minor fixes and removed bashisms. Renamed messages to
    #               either 'info', 'warn' or 'fail' and moved from Tiger_Run_AIDE
    #               to Tiger_AIDE namespace.
    # 05/05/2003 - jfs
    #	Fixed integrity checks (commands)
    #	Moved namespace of variables to Tiger_Aide
    #	Added some more TODOs
    #	Converted direct calls to grep, cut, tr to $GREP...
    #
    #
    # TODO:
    # - the config files for systems need to locate AIDE 
    #
    #-----------------------------------------------------------------------------
    #
    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 CUT GREP TR RM || exit 1
      haveallfiles BASEDIR WORKDIR || exit 1
      haveallvars TESTLINK HOSTNAME
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    echo
    echo "# Performing Aide filesystem integrity check..."
    haveallcmds CUT GREP TR RM || exit 1
    haveallfiles BASEDIR WORKDIR || exit 1
    
    # TODO
    # - Toggle verbose reporting using Tiger_AIDE_VERBOSE=1
    # - User input custom aide location (pref from read-only media)
    #   Proposed user input var (tigerrc): Tiger_AIDE_LOC_OVERRIDE
    # - User input custom aide config(s) (pref from read-only media)
    #   Proposed user input var (tigerrc): Tiger_AIDE_CFG_OVERRIDE
    # - User input custom db (pref from read-only media)
    #   Proposed user input var (tigerrc): Tiger_AIDE_DB_OVERRIDE
    # - Expand with Integrit, Osiris and Prelude.
    
    # For all of the below commands to fill in the gaps I'm thinking 
    # "how portable is this?"...
    
    # Aide binary location|override + default check
    # Which, find, user-supplied var or tigexp's findcmd?:
    if [ -z "$AIDE" ]
    then
    if [ -z "${Tiger_AIDE_LOC_OVERRIDE}" ]
    then 
    	AIDE=`which aide`
    else 
    	AIDE=${Tiger_AIDE_LOC_OVERRIDE}
    fi
    fi
    
    # Aide binary default location, not using "eval" or "[ -x":
    case "${#AIDE}" in 0) AIDE="/usr/local/bin/aide";; esac
    
    # If AIDE is not available don't continue
    haveallcmds AIDE || exit 1
    
    # Aide configuration file location|override + default check
    if [ -z "${Tiger_AIDE_CFG_OVERRIDE}" ]; 
    then AIDE_CFG=`$AIDE -v 2>&1| $GREP -e "^CONFIG_FILE" | $CUT -d " " -f 3| $TR -d "\""`
    else AIDE_CFG=${Tiger_AIDE_CFG_OVERRIDE}
    fi
    
    # Aide default configuration file, not using "eval" or "[ -z|-f":
    case "${#AIDE_CFG}" in 0) AIDE_CFG="/usr/local/etc/aide.conf";; esac
    
    # Aide database override, else this variable is taken from the configuration file of course
    if [ ! -z "${Tiger_AIDE_DB_OVERRIDE}" ]; 
    then AIDE_DB="--after=database=file:${Tiger_AIDE_DB_OVERRIDE}"
    fi
    
    # Run Aide using std conf, report to stdout
    AIDE_RPT="$WORKDIR/aide.out.tmp.$$"
    AIDE_ERR_RPT="$WORKDIR/aide.err.tmp.$$"
    safe_temp "$AIDE_RPT" "$AIDE_ERR_RPT"
    trap 'delete $AIDE_RPT $AIDE_ERR_RPT ; exit 1' 1 2 3 15
    
    $AIDE --check --config=${AIDE_CFG} --report=stdout ${AIDE_DB} \
    	2>${AIDE_ERR_RPT} > ${AIDE_RPT}
    # TODO: calling AIDE should check the errors (if any)
    # i.e. check $? and determine what happened
    
    # Check temporary report for the changes signal:
    $GREP ${AIDE_RPT} -qe "AIDE found differences"
    
    case "$?" in
    0)	# Summary
    	AIDE_SUMMARY=`$GREP ${AIDE_RPT} -e "^Total number"`
    	message INFO aide003i "" "Summary: ${AIDE_SUMMARY}"
    	# Differentiate between added, changed and removed files
    	for status in changed removed detected; do
    		$GREP ${AIDE_RPT} -e "^${status}:" \
    		| $CUT -d ":" -f 2 | while read result; do
    		case "${status}" in
    			changed) exp="aide003w";;
    			removed) exp="aide004w";;
    			added)   exp="aide005w";;
    		esac
    		message WARN ${exp} "" "Detected ${status} file ${result}"
    		done
    	done;;
    1)	# No changes to report
    	message INFO aide001i "" "No changes detected.";;
    esac
    
    delete ${AIDE_RPT} ${AIDE_ERR_RPT}
    
    exit 0
    tiger-3.2.3/scripts/check_accounts0000755000175000017500000003230010664613724015657 0ustar  pacopaco#!/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.
    #
    # check_accounts - created 06/14/93
    #
    # Checks the accounts provided in the system, looking for disabled accounts
    # with cron, rhosts, and .forward files as well as proper configuration
    # (home directory accesibility, shell configuration files, dormant accounts
    # and .hushlogin files)
    #
    # 10/11/2006 jfs  Redirect find errors in $HOME to null (Debian bug #386163)
    # 20/04/2006 jfs  Fix the pipe check in forward files (Debian bug #329610)
    # 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
    #            avoid going through all the filesystem if $home is not defined.
    # 09/19/2003 jfs  Add root to Tiger_Admin_Accounts if already defined.
    #                 Also permit empty USERDOTFILES and fix dependancies.
    # 08/15/2003 jfs  ETCSHELLS is not indispensable to running this script.
    # 08/14/2003 jfs  Included ARSC changes including an update for Linux
    #                 in which no shell equals shell to address no
    #                 login programs.
    # 08/08/2003 jfs  Changed the creation of temporary file to avoid race
    #                 conditions. 
    # 08/08/2003 jfs  Added Ryan Bradetich's patch which:
    #     * Fixed the join statement to properly handle empty fields for
    #      check_user.
    #     * Fixed the home directory permission check.
    #     * Simplified the parent directory check.
    #     * Removed the "root" requirement for checking the shell initilizaion
    #       files.
    #     * Added .bashrc and .kshrc to the default list of .dotfiles.
    #     * Removed the following checks (Duplicates will be merged, the
    #     remaining checks will be relocated to a more appropriate module:
    #     check_passwd or check_passwdformat): acc001w, acc020w, acco14f,
    #     acc013w, acc010a, acc011w, acc012w, acc015w, add018w, acc016w,
    #     acc017w
    #
    # 05/01/2003 jfs  Fixed dependancy
    #
    # 07/26/2002 jfs Fixed to work in Solaris. Added WC as required command
    #
    # 07/25/2002 jfs Added a sanity check for password files
    #
    # 12/26/2001 jfs  Added Tiger_Accounts_Trust to define valid users which will
    #		not be so thoroughly checked. Useful for UN*X systems that
    #		ship with a default number of administrative (but disabled) users 
    #		for services/files (like Debian GNU/Linux)
    #
    # 04/28/93 dls  Added -L to 'ls' so we get the permissions off the file
    #               instead of the link.
    #
    # 04/27/93 dls  Rename from check_passwd to check_accounts
    #               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='.'
    
    #
    # 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
    #
    # Grab subroutines
    #
    . $BASEDIR/initdefs
    
    #
    # If run in test mode (-t) this will verify that all required
    # elements are set.
    #
    [ "$Tiger_TESTMODE" = 'Y' ] && {
      haveallcmds AWK CAT CHECK_CRON FIND GEN_PASSWD_SETS GREP JOIN LS TR WC RM || exit 1
      haveallfiles BASEDIR WORKDIR || exit 1
      haveallvars HOSTNAME TESTEXEC || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    #------------------------------------------------------------------------
    echo
    echo "# Performing check of user accounts..."
    
    haveallcmds AWK CAT CHECK_CRON FIND GEN_PASSWD_SETS GREP JOIN LS TR WC RM || exit 1
    haveallfiles BASEDIR WORKDIR || exit 1
    haveallvars HOSTNAME TESTEXEC || exit 1
    
    safe_temp "$WORKDIR/pass.list.$$" "$WORKDIR/home.hosts.$$"
    trap 'delete $WORKDIR/pass.list.$$ $WORKDIR/home.hosts.$$ ; exit 1' 1 2 3 15
    
    
    
    # Just in case: sanity check
    # If Not defined Tiger_Accounts_Trust then it's the lowest
    # possible to assure that -lt checks will be always false
    [ -z "$Tiger_Accounts_Trust" ] && Tiger_Accounts_Trust=-1
    # If not defined we disable this check
    [ -z "$Tiger_Dormant_Limit" ] && Tiger_Dormant_Limit=0
    if [ -z "$Tiger_Admin_Accounts" ] 
    then
    	Tiger_Admin_Accounts="root"
    else
    	Tiger_Admin_Accounts="$Tiger_Admin_Accounts|root"
    fi
    
    #
    # This function checks for potential access to an "disabled" account.
    #
    check_disabled()
    {
      user=$1
      home=$2
      host=$3
    
      # 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 -F '|' $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"
        }
      }
    }
    
    check_users()
    {
      saveifs=$IFS
      IFS=:
      while read user home host shell uid hash
      do
         # Perform checks on "disabled" accounts (i.e. accounts without
         # a valid password).
         case $hash in
           '*')
             check_disabled "$user" "$home" "$host"
             ;;
         esac
    
         # Verify the home directory is accessable.
         [ ! -d "$home/" ] && {
           [ -n "$uid" ] && [ $Tiger_Accounts_Trust -lt $uid ] && [ "$host" = "$HOSTNAME" ] && {
             message WARN acc022w "" "Login ID $user home directory ($home) is not accessible."
           }
           continue
         }
    
         IFS=$saveifs
    
         # Check the permissions on $home.
         getpermit "$home/" | {
           read _f owner group ur uw ux gr gw gx or ow ox suid sgid sticky
    
           # Note: in Debian GNU/Linux systems, there might be one user in a single
           # 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"
             case "$gw$ow" in
               01) str="$str world write"
                   mode='o-w'
                   ;;
               10) str="$str group \`$group' write"
                   mode='g-w'
                   ;;
               11) mode='o=w'
                   [ "$owner" != "$group" ] && {
                     str="$str group \`$group' and "
                     mode='go-w'
                   }
                   str="$str world write"
                   ;;
             esac
             message WARN acc006w "" "${str} access."
             changelog "WARN : chmod : $mode : $home/."
           }
         }
    
         # Check permissions on the parent home directory
         [ -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
                 01) str="$str world write"
                     ;;
                 10) str="$str group \`$group' write"
                     ;;
                 11) str="$str group \`$group' and world write"
                     ;;
               esac
               message WARN acc023w "" "${str} access."
             }
           }
         }
    
         # Dormant account check.
         [ "$home" != / -a -n "$home" -a "$Tiger_Dormant_Limit" != 0 ] && {
           notadmin=`eval "case \"$user\" in $Tiger_Admin_Accounts) ;; *) echo $user;; esac"`
           [ -n "$notadmin" ] &&  \
           [ `$FIND "$home/" -mtime -$Tiger_Dormant_Limit 2>/dev/null | $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 '' "Login ID $user has a non-zero length .hushlogin"
    
         # Check shell initialization files.
         # TODO: Bob Hall suggest disabling the check for standard UNIX accounts. 
         # In HP-UX these are: daemon|bin|sys|adm|lp|nobody|hpdb.
         # However, this might leave some  "holes" open 
         # (just rename the account so that it will not be check for).
         # A secure approach has to be determined for this to work properly.
    
         [ -z "$shell" ] && shell=/bin/sh
         [ $TESTEXEC $shell ] && [ -n "$uid" ] && [ $uid -gt $Tiger_Accounts_Trust ] && {
           eval "
             case \"$shell\" in
               $shcase)
                 [ ! -r "${home}/.${shell##*/}rc" ] && {
                   message WARN acc019w \"\" \"Login ID $user may be missing a shell initialization file ${home}/.${shell##*/}rc.\"
                 }
                 ;;
               *)
                 # Invalid shells are handled in the check_password module.
                 ;;
             esac"
         }
    
         # Check permissions on user dotfiles.
         dotfiles=${USERDOTFILES:-".cshrc .bashrc .kshrc .profile .login .exrc .forward"}
         for file in $dotfiles
         do
           [ -f "$home/$file" ] && {
             getpermit "$home/$file" | {
               read _f owner group ur uw ux gr gw gx or ow ox suid sgid stk
    
               [ "${gw}${ow}" != '00' ] && {
                 str="Login ID $user's $file config file 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
    
                 message WARN acc008w '' "${str} access."
                 changelog "WARN : chmod : $mode : $home/$file"
               }
             }
           }
         done
         IFS=:
      done
      IFS=$saveifs
    }
    
    # Define shcase to be a list of valid shells, so we can check for
    # shell initilization files.
    shcase='/bin/sh|/bin/csh|/bin/bash|/bin/tcsh|/bin/ksh'
    [ -n "$ETCSHELLS" -a -s "$ETCSHELLS" ] && {
      shells=`$GREP -v '^#' $ETCSHELLS`
      shcase=`echo $shells | $TR ' ' '|'`
    }
    
    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
      source=`$CAT $passwd_set.src`
      echo "# Checking accounts from $source."
    
      $AWK -F: '{print $1, $6}' $passwd_set |
      $BASEDIR/util/${GETFSHOST:=getfs-std} |
      $TR ' ' : > $WORKDIR/home.hosts.$$
    
      $JOIN -t: -o 1.1 1.6 2.3 1.7 1.3 1.2 $passwd_set $WORKDIR/home.hosts.$$ |
      check_users
    
      [ ! -n "$Tiger_PasswdFiles" ] && delete $passwd_set $passwd_set.src
      delete $WORKDIR/home.hosts.$$
    done < $WORKDIR/pass.list.$$
    
    delete "$WORKDIR/pass.list.$$" "$WORKDIR/home.hosts.$$"
    exit 0
    tiger-3.2.3/scripts/check_aliases0000755000175000017500000000767510217661040015466 0ustar  pacopaco#!/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.
    #
    #  check_aliases - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    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 GEN_ALIAS_SETS CAT AWK SED OUTPUTMETHOD RM || exit 1
      haveallfiles BASEDIR WORKDIR || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    trap cleanup 0
    #------------------------------------------------------------------------
    echo
    echo "# Performing checks of mail aliases..."
    
    haveallcmds GEN_ALIAS_SETS CAT AWK SED OUTPUTMETHOD LS RM || exit 1
    haveallfiles BASEDIR WORKDIR || exit 1
    
    progalias()
    {
      rcpt="$1"
      file="$2"
    
      fmsg=
      [ -n "$file" ] && fmsg=" (from included file $file)"
    
      prog="`echo \"$rcpt\" | $SED -e 's/^[ 	|\"]*\([^\" ]*\).*$/\1/'`"
    
      if [ ! -f "$prog" ]; then
        message INFO ali001i "$rcpt" "Program alias \`$alias' executable does not exist$fmsg"
      else
        [ -n "$TigerCheckEmbedded" ] && {
          echo "$prog $source" >> $TigerCheckEmbedded
        }
        message WARN ali005w "$rcpt" "Alias \`$alias' contains a program entry${fmsg}:"
        case "$prog" in 
          *uudecode) message FAIL ali002f "" "Program alias \`$alias' executes $prog.";;
        esac
      fi
    
      lgetpermit "$prog" |
      pathmsg ali003 ali004 "$prog" root "Program alias \`$alias' uses$fmsg executable" "Alias: $rcpt"
    }
    
    filealias()
    {
      alias="$1"
      file="`echo \"$2\" | $SED -e 's/[ 	]*:include://'`"
    
      [ ! -f "$file" ] && {
        message INFO ali006i "" "Alias \`$alias' included file \`$file' does not exist$fmsg"
      }
      
      lgetpermit "$file" |
      pathmsg ali007 ali008 "$file" root "Alias \`$alias' includes${fmsg} file"
    
      [ -r "$file" ] && {
        while read names
        do
          checkalias "$alias" "$names" "$file"
        done < "$file"
      }
    }
    
    checkalias()
    {
      alias="$1"
      rcptlist="$2"
      file="$3"
      
      IFS=","
      set X $rcptlist
      IFS=$saveifs
      shift
      for rcpt
      do
        case $rcpt in
          *:include:*) # Include file
               filealias "$alias" "$rcpt" "$file"
               ;;
          ' '*\|*|\|*) # Program alias
               progalias "$rcpt" "$file"
               ;;
          ' '*'"|'*|'"|'*) # Program alias
               progalias "$rcpt" "$file"
               ;;  
        esac
      done
    }
    
    saveifs=$IFS
    
    realpath="$REALPATH -d"
    
    [ ! -n "$REALPATH" -o ! -f "$REALPATH" ] && realpath="echo"
    
    $GEN_ALIAS_SETS |
    while read alias_set
    do
      source="`$CAT $alias_set.src`"
      echo "# Checking aliases from $source."
    
      $AWK '{
               if(substr($0, 1, 1) != " ")
    	      printf("\n");
    	   printf("%s", $0);
    	}   
    	END {printf("\n");}
      ' < $alias_set |
      $SED -e '/^$/d' |
      {
        IFS=:
        while read alias rcptlist
        do
          IFS=$saveifs
          checkalias "$alias" "$rcptlist" ""
          IFS=:
        done
      }
      
      delete $alias_set $alias_set.src
    done |
    $OUTPUTMETHOD
    tiger-3.2.3/scripts/check_anonftp0000755000175000017500000001354210223071247015501 0ustar  pacopaco#!/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.
    #
    # 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
    # 04/28/1993 dls   Duh... added -L option to 'ls' when reading permission
    #                bits so that we don't get them off a symbolic link.
    # 04/27/1993 dls   Added check for .rhosts file in ~ftp
    #
    # TODO:
    # 
    # - The script prints a warning whenever a directory is owned by 'ftp' and is
    # user-writeable. It also prints a warning if a directory is not
    # owned by ftp, but is writable by ftp. However some implementations
    # of anonymous ftp I've seen allow for an upload directory to be
    # owned by ftp and writable by ftp. On NetBSD this is ~ftp/incoming.
    # On HP-UX it is ~ftp/pub.
    #
    # Possible option: the user the FTP server sruns as
    # Possible option: variable to specify an upload directory that will allow
    #    ftp write privileges
    #
    # - The script uses /etc/passwd to determine if 'ftp' exists. It should use
    #   GEN_PASSWD
    #
    #-----------------------------------------------------------------------------
    #
    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 CAT AWK GROUPSS FIND SGREP GREP OUTPUTMETHOD || exit 1 
      haveallfiles BASEDIR WORKDIR || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    echo 
    echo "# Performing check of anonymous FTP..."
    
    haveallcmds LS CAT AWK GROUPSS FIND SGREP GREP OUTPUTMETHOD || exit 1 
    haveallfiles BASEDIR WORKDIR || exit 1
    
    checkfiles()
    {
      level=$1
      msgid=$2
      rootcheck=$3
    
      getpermit |
      $SED -e "s%$ftphome%~ftp%" |
      while read _f owner group ur uw ux gr gw gx or ow ox suid sgid stk
      do
        if [ "$_f" = "~ftp" ]; then
          what='Anonymous FTP directory'
        else
          what="$_f"
        fi
    
        indirgrp=NO
        for grp in $ftpgroups
        do
          [ "$grp" = "$group" ] && indirgrp=YES
        done
        
        if [ "$owner" != 'root' ]; then
          if [ "$owner" = 'ftp' ]; then
    	if [ $uw = 1 ]; then
    	  message $level ftp007$msgid "" "$what owned and writable by 'ftp'."
    	else
    	  message $level ftp008$msgid "" "$what owned by 'ftp' (but not writable)."
    	fi
          else
    	if [ \( $indirgrp = YES -a $gw = 1 \) -o $ow = 1 ]; then
    	  message $level ftp007$msgid "" "$what is writable by 'ftp'."
    	elif [ "$rootcheck" = "Y" ]; then
    	  message WARN ftp009w "" "$what not owned by 'root' (owner '$owner')."
    	fi
          fi
        else
          [ \( $indirgrp = YES -a $gw = 1 \) -o $ow = 1 ] && {
    	message $level ftp010$msgid "" "$what is writable by 'ftp'."
          }
        fi
      done
    }
    
    status=1
    
    haveallcmds GETUSERHOME && {
      ftphome=`$GETUSERHOME ftp`
      status=$?
    }
    
    {
      # TODO: this should be fixed to use the password sources (gen_passwd)
      # instead of using the system's directly (might lead to false
      # positives)
    
      # 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) | $GREP -vs $ftphome |
            checkfiles WARN w N
          }
        )
    
        [ -f $ftphome/etc/passwd ] && {
          $SGREP '^[^:]*:[a-zA-Z0-9\./,]*:' $ftphome/etc/passwd | $SGREP -v '::' && {
            message WARN ftp003w "" "$ftphome/etc/passwd contains accounts with passwords."
          }
        }
    
        [ -s $ftphome/.rhosts ] && {
          message ALERT ftp002a "" "$ftphome/.rhosts exists and is not empty:"
          $CAT $ftphome/.rhosts
          echo
        }
      fi
    } |
    $OUTPUTMETHOD
    
    exit 0
    
    tiger-3.2.3/scripts/check_apache0000755000175000017500000001453511061317252015260 0ustar  pacopaco#!/bin/sh
    #
    #     tiger - A UN*X security checking system
    #     Copyright (C) 2002 Javier Fernandez-Sanguino
    #
    #    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_apache - 11/25/2002 - jfs - first release
    #
    # The checks in this script are derived from the following references:
    # Bastille's Apache module
    # http://httpd.apache.org/docs-2.0/misc/security_tips.html
    # http://www.intersectalliance.com/projects/ApacheConfig/index.html 
    # SANS's Linux Security Checklist (item #25)
    #
    # 08/12/2003 - jfs - Fixed a typo in the call to SED
    # 11/08/2007 - jfs - Change message calls so that they can be filtered (Debian bug #411534)
    #                  - Fix the way the configuration file is handled to obtain
    #                  the IP address and port (Debian bug #436904)
    #
    # TODO (generic)
    # - include checks for problematic modules
    # - analyse authenticating methods
    # - analyse SSL configuration (is the certificate protected?)
    # - include some more analysis of the configuration file
    # - provide cross-checks for configuration (i.e. not only determine if 
    #   a given directive is configured but if the current setup might 
    #   be vulnerable: eg. user with a symbolic link back to the root filesystem
    #
    #-----------------------------------------------------------------------------
    #
    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 GREP AWK CAT SED CUT || exit 1
      haveallfiles APACHECONFDIR BASEDIR WORKDIR || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    
    echo
    echo "# Checking apache configuration files..."
    
    haveallcmds GREP AWK CAT SED CUT || exit 1
    haveallfiles APACHECONFDIR BASEDIR WORKDIR || exit 1
    
    
    # First check if Apache is bound to use only an IP address
    [ -f $APACHECONFDIR/httpd.conf ] && {
    	listen=`$GREP ^Listen $APACHECONFDIR/httpd.conf | head -1 | $AWK '{print $2}'`
            if [ -n "$listen" ]; then
                    if echo "$listen" | grep -q ':' ; then
                        port=`echo "$listen" | $CUT -d : -f 2`
                        ipaddr=`echo "$listen" | $SED -e 's/:.*$//'`
                    else
                        port="$listen"
                        ipaddr=""
                    fi
            fi
    	# TODO: this check should warn only if this is a multihomed host
    	# (we probably need to check this in other places so a utils function
    	# 'amImultihome' might be useful)
    	if [ -z "$port" -o -z "$ipaddr" ]; then
    		message WARN apa001w "" "The Apache server is not configured to be bound to an specific IP address."
    	else 
    		message INFO apa001w "" "The Apache server is configured to listen only on address $ipaddr port $port."
    	fi
    }
    # Now check options
    # we need to do this for all possible configuration files
    # Options that might be a securityrisk are FollowSymlinks, Indexes,
    # FollowSymlinksIfOwnerMatch
    
    for file in $APACHECONFDIR/*.conf 
    do
    # We have to read the file line by line in order to know which Directory
    # we are talking about
    	directory="Any (default)"; export directory;
    	denyfirst=0; export denyfirst
    	alldenied=0; export alldenied
    	options=""; export options
    	$CAT $file |  $GREP -v '^#' |
    	while read line
    	do
    		if [ ! -z "`echo $line | $GREP -i \"$//'`
    			denyfirst=0
    		fi
    
    		if [ ! -z "`echo $line | $GREP -i \"//g' | $TR -d '()\;\`&!|'`"
    
        # Can't 'set' this because of shell meta-characters.
        cmd="`echo \"$com\" | $AWK '{print $1}'`"
      
        base=`$BASENAME -- "$cmd"`
        case "$base" in
          sh|csh|ksh|tcsh|zsh|bash|if|cd)
          [ "$2" != "-c" ] && cmd="`echo \"$com\" | $AWK '{print $2}'`";;
        esac
    
        [ -n "$TigerCheckEmbedded" -a -f "$cmd" -a "$owner" = 'root' ] && {
          echo "$cmd root.crontab" >> $TigerCheckEmbedded
        }
    # This is removed from tara's version 3.0.3 
    #    case "$cmd" in
    #          |cd|echo|if|else|then) ;;
    #          *)
    #           if [ -z "`echo $cmd | $GREP \"^\/\"`" ] ; then
    #             message WARN cron001w "command = $command" "cron entry for $owner does not use full pathname"
    #          fi ;;
    #    esac
    # And subsituted by this:
        if [ -z "`echo $cmd | $GREP \"^[\/\[]\"`" -a "$cmd" != "umask" ]; then
            message WARN cron001w "" "cron entry for $owner does not use full pathname ($cmd):"
        fi
    
    
    
        [ "$owner" != "$lowner" ] && {
          curdir=/
          [ -n "$GETUSERHOME" ] && curdir=`$GETUSERHOME $owner`
          lowner=$owner
        }
        setcurdir=0
        for comp in $com
        do
          [ $setcurdir -eq 1 ] && {
    	curdir="$comp"
    	setcurdir=0
          }
          
          case "$comp" in
    	*/*) {
    
    	  case "$comp" in
    	    /*) ;;
    	    *) comp="$curdir/$comp";;
    	  esac
    
    	  [ ! -c "$comp" -a ! -b "$comp" ] && {
    	    lgetpermit "$comp" |
    	    pathmsg cron002 cron003 "$comp" $owner "cron entry for $owner uses" "$command"
    	  }
    	}
    	;;
    	cd) setcurdir=1;;
          esac
        done
      done < $WORKDIR/cron.in.$$
    } |
    $OUTPUTMETHOD
    
    delete $WORKDIR/cron.in.$$
    
    
    # Check for existence of root crontab
    [ ! -r $CRONSPOOL/root ] &&
         message WARN cron004w "" "Root crontab does not exist"
    
    # Check for existence of root 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.3/scripts/check_devices0000755000175000017500000001161110664613756015471 0ustar  pacopaco#!/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.
    #
    # check_devices
    # 	checks permissions on tape devices
    # 10-30-2001
    # Paul Telford 
    #
    # 09/19/2003 jfs  Fixed error with patch submitted by Ryan Bradetich
    # 08/12/2003 jfs  Fixed error (dirs->dir) and added a warning for 
    #                 non-special files.
    # 08/11/2003 jfs  Fixed dependancies.
    # 04/15/2003 jfs  Fixed stupid error which made terminals appear 
    #		  (/dev/ -> /dev)
    # 08/12/2002 jfs  Added /devices/pseudo/pts to terminal lists.
    # 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
    # 05/20/2006 jfs  Handle the special case of having " in filenames by quoting
    #                 the character (Debian bug #355096)
    # 06/21/2007 jfs  Extend the list of EXPECTEDDIRS for Linux to cover udev
    #
    #-----------------------------------------------------------------------------
    #
    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 AWK SED || exit 1
      haveallfiles BASEDIR WORKDIR || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    #------------------------------------------------------------------------
    
    haveallcmds LS AWK SED || exit 1
    haveallfiles BASEDIR WORKDIR || exit 1
    
    check_dev_file()
    {
    	device=$1
    	getpermit $device |
        	while read filename rowner rgroup rur ruw rux rgr rgw rgx ror row rox rsuid rsgid rstk
        	do
    		if [ $ror -eq 1 -o $row -eq 1 -o $rox -eq 1 ]
    		then
    		case $device in
    		/dev/st[0-9])
    			message FAIL dev001f "" "$device has world permissions"
    		;;
    		*)
    			message FAIL dev002f "" "$device has world permissions"
    		;;
    		esac
    		fi
    	done
    
    }
    
    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|/dev/bus|/dev/cdroms|/dev/discs|/dev/disk|/dev/dri|/dev/fb|/dev/floppy|/dev/i2c|/dev/loop|/dev/md|/dev/misc|/dev/ptal-printd|/dev/scsi|/dev/snd|/dev/sound|/dev/tts|/dev/vc|/dev/vcc"
    fi
    
    dirs="/dev"
    # For Solaris but maintain compatibility with others
    # (in Solaris /dev/ are symlinks to devices in /devices/pseudo)
    [ -d /devices ] && dirs="$dirs /device"
    [ -d /devices/pseudo ] && dirs="$dirs /devices/pseudo"
    for dir in $dirs
    do
    for file in $dir/[a-z0-9]*
    do
    
    	[ -f "$file" ] &&  {
    	file=`echo $file | $SED -e 's/"/\\\"/g'`
        	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/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" ] 
    		then
    		   check_dev_file $file
    		fi
    	;;
    	esac
    done
    done
    
    exit 0
    tiger-3.2.3/scripts/check_embedded0000755000175000017500000000440310045247304015562 0ustar  pacopaco#!/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.
    #
    # check_embedded - 06/29/93
    # 05/02/2004 jfs  Try to avoid eval problems if handling variables with
    #                 special characters (such as space)
    #-----------------------------------------------------------------------------
    #
    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 CAT SORT AWK GREP || exit 1
      haveallfiles BASEDIR WORKDIR || exit 1
      haveallvars TESTLINK HOSTNAME
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    
    echo
    echo "# Performing check of embedded pathnames..."
    
    haveallcmds CAT SORT AWK GREP || exit 1
    haveallfiles BASEDIR WORKDIR || exit 1
    
    {
      [ -n "$TigerCheckEmbedded" -a -s "$TigerCheckEmbedded" ] && {
        $CAT $TigerCheckEmbedded
      }
      [ -n "$EMBEDDEDLIST" -a -s "$EMBEDDEDLIST" ] && {
        $GREP -v '^#' "$EMBEDDEDLIST" |
        while read file
        do
          eval echo "$file" | $AWK '{for(i=1;i<=NF;i++)print $i}' 
        done
      }
    } |
    $SORT -u |
    $SCRIPTDIR/sub/check_embed
    
    tiger-3.2.3/scripts/check_exports0000755000175000017500000001702610045247304015542 0ustar  pacopaco#!/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.
    #
    #  check_exports - 06/14/93
    #
    # Check NFS exports file for:
    #
    #       Anonymous ID = 0 and write access (fail)
    #       Anonymous ID = 0 and readonly access (warn)
    #       Exporting the root filesystem (warn)
    #       Exporting the root filesystem to "world" (fail)
    #       Exporting the root filesystem with "root" access (fail)
    #       Exporting a filesystem to "world" with write (fail)
    #       Exporting a filesystem to "world" (warn)
    #       Exporting a filesystem with "root" access, the host
    #                 is a diskless client, but the path is "safe" (info)
    #       Exporting a filesystem with "root" access, the host
    #                 is a diskless client, but the path is "unsafe" (warn)
    #       Exporting a filesystem with "root" access, the host
    #                 is not a diskless client, and the path is "unsafe" (warn)
    #
    #-----------------------------------------------------------------------------
    #
    # 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
    # 04/28/93 dls  Add '-L' to 'ls' so we get the permissions from the file
    #               instead of a symbolic link.
    #
    #------------------------------------------------------------------------
    #
    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 GEN_EXPORT_SETS SORT RM OUTPUTMETHOD || exit 1
      haveallfiles BASEDIR WORKDIR || exit 1
      haveallvars HOSTNAMESLIST || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    echo
    echo "# Performing NFS exports check..."
    
    haveallcmds GEN_EXPORT_SETS SED AWK RM OUTPUTMETHOD || exit 1
    haveallfiles BASEDIR WORKDIR || exit 1
    haveallvars HOSTNAMESLIST || exit 1
    
    is_safe_path()
    {
      saveifs=$IFS
      IFS=/
      set $1
      IFS=$saveifs
      path=
      open=1
    
      for name
      do
        set `getpermit ${path}/$name` X
        shift
        shift
        shift
        [ -n "$9" ] &&
        [ "$4" = 0 -a "$5" = 0 -a "$6" = 0 -a \
           "$7" = 0 -a "$8" = 0 -a "$9" = 0 ] && { open=0; break; }
        path=${path}/$name
      done
      return $open
    }
    
    check_entry()
    {
      dir=$1
      shift
    
      # Do not assume first a good setup
      world=1
      root=0
      readonly=0
      anonid=-1
      readmost=0
      roothosts=
    
    # TODO: Does not recognise new /etc/exports format
    # directory	serverA (options) domainB (options)
    # Needs to be rewritten or gen_exports modified
      for acl
      do
        case $acl in
          -access=*|access=*)  world=0;;
          -root=*|root=*)      root=1;roothosts=`echo $acl|$AWK -F= '{print $2}'`;;
          -ro=*|ro=*)          readonly=1; world=0;;
          -ro|ro)              readonly=1;;
          -anon=*|anon=*)      anonid=`echo $acl | $AWK -F= '{print $2}'`;;
          -rw=*|rw=*)          readmost=1;world=0;;
          -rw|rw)              readmost=1;;
          *)                   world=0;;
        esac
      done
    
      [ "$anonid" = "0" -a "$readonly" = "0" ] &&
    	message FAIL nfs001f "" "Anonymous ID == 0, for R/W filesystem $dir"
      [ "$anonid" = "0" -a "$readonly" = "1" ] &&
    	message WARN nfs002w "" "Anonymous ID == 0 for R/O filesystem $dir"
      [ "$dir" = "/" ] && 
    	message WARN nfs003w "" "Exporting the root filesystem (/)."
      [ "$dir" = '/usr' -a "$readonly" = '0' ] &&
            message WARN nfs014w "" "Exporting the /usr filesystem R/W."
    
      [ $world = 1 ] && {
        if [ "$dir" = "/" ]; then
          if [ "$readonly" = "0" -a "$readmost" = "0" ]; then
    	message FAIL nfs004f "" "Exporting the root filesystem (/) R/W to everyone."
          else
    	message FAIL nfs005f "" "Exporting the root filesystem (/) R/O to everyone."
          fi
        else
          if [ "$readonly" = "0" ]; then
    	message FAIL nfs006f "" "Directory $dir exported R/W to everyone."
          else
    	message WARN nfs007w "" "Directory $dir exported R/O to everyone."
          fi
        fi
      }
      [ $root = 1 -a -d $dir ] && {
        [ "$dir" = "/" ] && {
          if [ "$readonly" = "1" ]; then
    	message FAIL nfs008f "" "Exporting the root filesystem (/) R/O with root access."
          else
    	message FAIL nfs009f "" "Exporting the root filesystem (/) R/W with root access."
          fi
        }
        IFS=:
        set X $roothosts
        IFS="$saveifs"
        shift
        dlclient=1
        # roothost is a magic variable name... don't change it.
        for roothost
        do
          eval "case \"$dir\" in $casediskless esac"
        done
    
        roothosts=`
          echo $roothosts |
          $SED -e 's/:/, /g' -e 's/,\([^,]*\)$/, and\1/'`
    
        if [ $dlclient = 0 ]; then
          if is_safe_path $dir ; then
    	message INFO nfs010i "" "Directory $dir is exported with root access to host(s) $roothosts."
          else
    	message WARN nfs011w "" "Unprotected directory $dir is exported with root access to host(s) $roothosts."
          fi
        else
          if is_safe_path $dir ; then
    	:
          else
    	message WARN nfs012w "" "Unprotected directory $dir is exported with root access for diskless client $roothosts."
         fi
       fi
     }
    }
    
    parse_bootparam()
    {
      $AWK '
           BEGIN {LINE="";}
           $0 ~ /\\$/ {printf("%s ", substr($0, 1, length($0)-1));}
           $0 !~ /\\$/ {printf("%s\n", $0);}
           END {printf("\n");}
       ' |
      $AWK '{
               for(i=2;i<=NF;i++)
                 if(substr($i, 1,5) == "root="){
    	       x=substr($i, 6, length($i));
                   split(x, ar, ":");
                   print $1, ar[1], ar[2];
       	     }
            }'
    }
    
    casediskless='*) dlclient=0;;'
    
    haveallcmds GEN_BOOTPARAM_SETS && {
      casediskless=`
      {
        $GEN_BOOTPARAM_SETS | 
        while read bootparam_set
        do
          parse_bootparam < $bootparam_set
          
          delete $bootparam_set $bootparam_set.src
        done
      } |
      $SORT -u |
      while read client server filesys
      do
        eval "case \"$server\" in
          $HOSTNAMESLIST)
          echo $filesys') 
          case \\$roothost in
    	'$client'*) ;;
          *) dlclient=0;;
          esac;;' ;;
        esac"
      done
      echo '*) dlclient=0;;'
      `
    }
    
    saveifs="$IFS"
    
    $GEN_EXPORT_SETS | 
    while read export_set
    do
      $SED -e 's/#.*$//' $export_set |
      $SED -e '/^[ \t]*$/d' |
      $AWK '
            BEGIN  { LINE=""; }
            /\\$/  { LINE=LINE " " substr($0,1,length($0)-1); }
            !/\\$/ { print LINE $0; LINE="";}
            END    { if(LINE != "") print LINE; }
          ' |
      $SED -e 's/,/ /g' |
      while read dir acl
      do
        check_entry $dir $acl
      done
    
      delete $export_set $export_set.src
    done |
    $OUTPUTMETHOD
    
    exit 0
    tiger-3.2.3/scripts/check_exrc0000755000175000017500000000473107736640315015012 0ustar  pacopaco#!/bin/sh
    #
    #     tiger - A UN*X security checking system
    #     Copyright (C) YEAR AUTHOR
    #
    #    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_exrc - 14 April 2003 
    #
    # Find .exrc files that are not in user's home directories. The vi
    # 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.
    #
    #
    # 14 April 2003 - jfs - Created this script based on patch #1354
    #
    #-----------------------------------------------------------------------------
    #
    # This is the directory Tiger is installed on
    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 FIND || exit 1
      haveallfiles BASEDIR WORKDIR || exit 1
      haveallvars TESTLINK HOSTNAME || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    echo
    echo "# Performing Check of .exrc files ..."
    
    haveallcmds FIND || exit 1
    haveallfiles BASEDIR WORKDIR || exit 1
    haveallvars TESTLINK HOSTNAME || exit 1
    
    # Note $NICE is not needed, if defined then it is used
    
    $NICE $FIND / -name '.exrc' -print 2>/dev/null |\
    while read FILEPATH
    do
      EXRCDIR=${FILEPATH%/.exrc}
      if grep -q ":${EXRCDIR}:" /etc/passwd
      then
        continue
      fi
      message WARN kis009w "" "Editor config file not in a user's home dir -- ${FILEPATH}"
    done
    
    exit 0
    tiger-3.2.3/scripts/check_finddeleted0000755000175000017500000001440610021345750016302 0ustar  pacopaco#!/bin/sh
    #
    #     tiger - A UN*X security checking system
    #     Copyright (C) 2002 Javier Fernandez-Sanguino
    #
    #    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_findeleted - 16 April 2003
    #
    # This script will check if deleted files are being used by any process
    # in the current system. This is somewhat usual behaviour for some applications
    # but it might also be an indication of:
    #  a) an intruder launching processes and then deleting its files so that
    #     the admin does not notice it.
    #  b) servers which have been patched after an updated but have not been
    #     restarted and are, thus, using removed library files and are still
    #     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.
    # 04/16/2002 - jfs - First version based on Brian Hatch's articles
    #              (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)
    #
    #-----------------------------------------------------------------------------
    #
    # This is the directory Tiger is installed on
    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 GREP CAT LSOF PS CUT SORT AWK || exit 1
      haveallfiles BASEDIR WORKDIR || exit 1
      haveallvars TESTLINK HOSTNAME || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    echo
    echo "# Performing check of deleted files used by processes..."
    
    haveallcmds GREP CAT LSOF PS CUT SORT AWK || exit 1
    haveallfiles BASEDIR WORKDIR || exit 1
    
    
    safe_temp "$WORKDIR/deleted.$$" "$WORKDIR/lsof.$$"
    trap 'delete $WORKDIR/deleted.$$ $WORKDIR/lsof.$$ ; exit 1' 1 2 3 15
    
    # 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, 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
    		# 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.3/scripts/check_ftpusers0000755000175000017500000001004310664614004015703 0ustar  pacopaco#!/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 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_ftpusers - jfs -  Sat May 18 18:39:35 CEST 2002
    # 
    # Analyses the system's /etc/ftpusers and determines if the administrative
    # users are in that file.
    #
    # 06/21/2007 jfs Skip the check if we don't find any FTP server software 
    #                (Debian bug #420486)
    #
    # 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.
    #                Changed TigerInstallDir to .
    #
    # 05/18/2002 jfs Created based on check_root with ideas inspired on Titan's
    #		 modules/ftpusers.sh
    #
    # 08/09/2002 jfs Fixed call to grep adding quotes (now works in Solaris)
    #
    #-----------------------------------------------------------------------------
    #
    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 GREP CAT GEN_PASSWD_SETS JOIN LS RM FIND || exit 1
      haveallfiles BASEDIR WORKDIR || exit 1
      haveallvars TESTLINK HOSTNAME || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    echo
    echo "# Performing common access checks for root..."
    
    haveallcmds AWK GREP CAT GEN_PASSWD_SETS JOIN LS RM FIND || exit 1
    haveallfiles BASEDIR WORKDIR || exit 1
    
    safe_temp "$WORKDIR/pass.list.$$"
    trap 'delete $WORKDIR/pass.list.$$ ; exit 1' 1 2 3 15
    
    if ! $FIND /bin /sbin /usr/bin /usr/sbin/ /usr/local/bin \
               /usr/local/sbin -name "*ftpd" >/dev/null 2>&1 ; then
    # No FTP server found, exit and do not implement this check
        exit 0
    fi
    
    # Just in case if it's not configured properly
    [ -z "${Tiger_Accounts_Trust}" ] && { 
    	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 "$FTPUSERS" ]; then
    
    if [ -n "$Tiger_PasswdFiles" ]; then
        [ -f $Tiger_PasswdFiles ] && $CAT "$Tiger_PasswdFiles" > $WORKDIR/pass.list.$$
    else
         $GEN_PASSWD_SETS $WORKDIR/pass.list.$$
    fi
    
    for passwd_set in `$CAT $WORKDIR/pass.list.$$`
    do
    	$CAT $passwd_set |
    	while read line 
    	do
    	runawk="$AWK -F: '(\$3 <= $Tiger_Accounts_Trust) { print \$1 }'"
    	user=`echo $line | eval $runawk`
    # This does not work since $Tiger_Accounts_Trust does not get expanded
    #	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\" $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 $FTPUSERS file."
    
    fi
    
    delete $WORKDIR/pass.list.$$ 
    
    exit 0
    tiger-3.2.3/scripts/check_group0000755000175000017500000001210210664614041015163 0ustar  pacopaco#!/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.
    #
    # check_group  - created 06/14/93
    #
    # check_group  - 07/05/2006 - jfs - Fix deprecated syntax with sort.
    #    Thanks to Cyril Chaboisseau and Adam James for providing a patch
    #    (Debian bug: #369501)
    # 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.
    # check_group  - 08/08/2003 - jfs - Safe temporary file creation
    # check_group  - 06/26/2003 - jfs - Added Ryan Braderitch's patch
    #
    #-----------------------------------------------------------------------------
    #
    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 CAT GEN_GROUP_SETS GREP JOIN MV SORT UNIQ RM OUTPUTMETHOD || exit 1
      haveallfiles BASEDIR WORKDIR || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    echo
    echo "# Performing check of group files..."
    
    haveallcmds AWK CAT GEN_GROUP_SETS GREP JOIN MV SORT UNIQ RM OUTPUTMETHOD || exit 1
    haveallfiles BASEDIR WORKDIR || exit 1
    
    safe_temp "$WORKDIR/grp.list.$$" "$WORKDIR/grp2.$$" "$WORKDIR/g1name.$$" "$WORKDIR/g2name.$$" "$WORKDIR/g1gid.$$" "$WORKDIR/g2gid.$$" "$WORKDIR/grp2new.$$"
    
    trap 'delete "$WORKDIR/grp.list.$$" "$WORKDIR/grp2.$$" \
    "$WORKDIR/g1name.$$" "$WORKDIR/g2name.$$" "$WORKDIR/g1gid.$$" \
    "$WORKDIR/grp2new.$$" "$WORKDIR/g2gid.$$"; exit 1' 1 2 3 15
    
    $GEN_GROUP_SETS > $WORKDIR/grp.list.$$
    
    saveifs=$IFS
    
    $CAT $WORKDIR/grp.list.$$ > $WORKDIR/grp2.$$
    newfile=$WORKDIR/grp2new.$$
    
    while read group1
    do
      src1=`$CAT $group1.src`
      $SORT $group1 > $WORKDIR/g1name.$$
      $SORT -t: -k 3,3 $group1 > $WORKDIR/g1gid.$$
    
      $AWK -F: '{print $1}' $WORKDIR/g1name.$$ |
      $UNIQ -d |
      while read grpname
      do
        message WARN grp001w "" "Groupname \`$grpname' exists multiple times in $src1."
      done
    
      $AWK -F: '{print $3}' $WORKDIR/g1gid.$$ |
      $UNIQ -d |
      while read gid
      do
        message WARN grp002w "" "GID $gid exists multiple times in $src1."
      done
    
      # Avoid duplicate warnings (since PWCK should also say this)
      if [ -z "$PWCK" ]; then
        $AWK -F: 'NF != 4 {print}' $WORKDIR/g1gid.$$ |
        while read entry
        do
          message WARN grp003w "$entry" "Malformed entry in $src1:"
        done
      fi
     
      $GREP -v "^$group1\$" $WORKDIR/grp2.$$ |
      while read group2
      do
        src2=`$CAT $group2.src`
    
        $SORT $group2 > $WORKDIR/g2name.$$
        $SORT -t: -k 3,3 $group2 > $WORKDIR/g2gid.$$
        $JOIN -t: -o 1.1 1.3 2.3 $WORKDIR/g1name.$$ $WORKDIR/g2name.$$ |
        {
          IFS=:
          while read grpname gid1 gid2
          do
    	IFS=$saveifs
    	[ "$gid1" != "$gid2" ] && {
    	  message WARN grp004w "" "GID conflict for group \`$grpname' between $src1 (gid = $gid1) and $src2 (gid = $gid2)."
    	}
    	IFS=:
          done
        }
    
        $JOIN -t: -j 3 -o 1.3 1.1 2.1 $WORKDIR/g1gid.$$ $WORKDIR/g2gid.$$ |
        {
          IFS=:
          while read gid name1 name2
          do
    	IFS=$saveifs
    	[ "$name1" != "$name2" ] && {
    	  message WARN grp005w "" "Groupname conflict for gid $gid between $src1 (group $name1) and $src2 (group $name2)."
    	}
    	IFS=:
          done
        }
        echo "$group2" >> $newfile
        delete $WORKDIR/g2gid.$$ $WORKDIR/g2name.$$
      done
      delete $WORKDIR/g1gid.$$ $WORKDIR/g1name.$$ $WORKDIR/grp2.$$
      [ -s $newfile ] && $MV $newfile $WORKDIR/grp2.$$
    done < $WORKDIR/grp.list.$$ |
    $OUTPUTMETHOD
    
    while read file
    do
      delete $file $file.src
    done < $WORKDIR/grp.list.$$
    
    # Verify the group file format.
    [ -n "$GRPCK" ] && {
      # 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
    }
    
    delete $WORKDIR/grp.list.$$ $WORKDIR/grp2new.$$
    delete $WORKDIR/g2gid.$$ $WORKDIR/g2name.$$
    
    exit 0
    tiger-3.2.3/scripts/check_inetd0000755000175000017500000002676510664614063015162 0ustar  pacopaco#!/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.
    #
    # check_inetd - 06/14/93
    #
    # Checks the configuration of the inetd configuration file and determines
    # possible problems in them.
    #
    # check_inetd - 04/20/99
    #     Portions corrected y Advanced Research Corporation (R)
    # check_inetd - 12/13/2001 - jfs
    #     Fixes to avoid false positives 
    # check_inetd - 05/27/2002 - jfs
    #     Changed TigerInstallDir to .
    # check_inetd - 04/15/2003 - jfs
    #     Separated the services check into a separate script.
    # check_inetd - 04/23/2003 - jfs
    #     Fixed requirements
    # check_inetd - 05/26/2003 - jfs
    #     Fixed calls to test (worked in Linux but not in other OS due
    #     to -n not being implicit)
    # check_inetd - 08/08/2003 - jfs
    #     Safe temporary file creation.
    # check_inetd - 08/09/2003 - jfs
    #     Re added RM to dependancies since it's used by delete.
    # check_inetd - 08/11/2003 - jfs
    #     Added checks for the file permissions of the INETDFILE
    # check_inetd - 08/13/2003 - jfs
    #     Added one of the fixes done by ARSC which were lost in the merge
    # check_inetd - 08/14/2003 - jfs Added OUTPUTMETHOD to dependancies.
    #     Added checks from ARSC's tara 3.0.3 for more services 
    #     (recommending the use of encryption) and implemented more checks
    #     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
    # check_inetd - 07/05/2006 - jfs - Fix deprecated syntax with sort.
    #    Thanks to Cyril Chaboisseau and Adam James for providing a patch
    #    (Debian bug: #369501)
    #
    # TODO
    # - This script needs to be improved to warn for some of the 'chatty' issues
    #   closed by Titan (currently only does this for some services)
    #-----------------------------------------------------------------------------
    #
    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 SED AWK CAT GEN_INETD_SETS GREP JOIN LS SORT UNIQ RM OUTPUTMETHOD || exit 1
      haveallfiles BASEDIR WORKDIR INETDFILE || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    echo
    echo "# Performing check of 'inetd'..."
    
    haveallcmds SED AWK CAT GEN_INETD_SETS GREP JOIN LS SORT UNIQ RM OUTPUTMETHOD || exit 1
    haveallfiles BASEDIR WORKDIR INETDFILE || exit 1
    
    saveifs=$IFS
    
    tmpinetd=$WORKDIR/sec.$$in
    safe_temp "$tmpinetd" "$WORKDIR/cinetd.$$" "$WORKDIR/inet1.$$"
    trap 'delete $tmpinetd $WORKDIR/cinetd.$$ $WORKDIR/inet1.$$; exit 1' 1 2 3 15
    
    checkinetd ()
    {
      infile=$1
    
      $JOIN -o 1.1 2.6 1.6 1.7 $infile $INETDFILE > $WORKDIR/cinetd.$$
    
      __xx="`$LS -id \`$AWK '{print $3}' $WORKDIR/cinetd.$$ |
               $GREP -v internal
              \` 2>/dev/null |
             $SORT |
             $UNIQ -c |
             $SORT -rn |
             $SED -e '1q'`"
      set x $__xx
    	 
      count="$2"
      size="$3"
    #  tcpdpath="$4"
      tcpdpath=$TCPD
    
    #  [ "$count" -lt 2 ] && tcpdpath=
        
      $GREP -v '^#' $infile | grep -v '^$' |
      while read currservice s p t user currbinary parm1 parms
      do
        [ -z "$currservice" ] && continue
        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
          message WARN inet013w "" "'netstat' service is enabled, consider disabling it."
        elif [ "$currservice" = 'telnet' ]; then
          message WARN inet098w "" "The 'telnet' server is enabled, consider using ssh instead."
        elif [ "$currservice" = 'ftp' ]; then
          message WARN inet098w "" "The 'ftp' server is enabled, consider using ssh/sftp instead."
        elif [ "$currservice" = 'login' ]; then
          message WARN inet098w "" "The 'login' server is enabled, consider using ssh/sftp instead."
        elif [ "$currservice" = 'shell' ]; then
          message WARN inet098w "" "The 'rsh' server is enabled, consider using ssh/sftp instead."
        elif [ "$currservice" = 'tftp' ]; then
          message WARN inet022w "" "The 'tftpd' server is enabled, consider disabling it"
        elif [ "$currservice" = 'finger' ]; then
          message WARN inet023w "" "The 'finger' server is enabled, consider disabling it"
        elif [ "$currservice" = 'rusers' ]; then
          message WARN inet024w "" "The 'rusers' server is enabled, consider disabling it"
        elif [ "$currservice" = 'echo' -a "$p" = 'udp' ]; then
          message WARN inet025w "" "The 'echo' udp server is enabled, consider disabling it"
        elif [ "$currservice" = 'chargen' -a "$p" = 'udp' ]; then
          message WARN inet025w "" "The 'chargen' udp server is enabled, consider disabling it"
        fi
    
        [ "$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
    
    
        if [ -n "`echo $currbinary | $GREP '?'`" ] ; then
          currbinary=`echo $currbinary | $SED -e "s/\?//"`
        fi
    
        if [ -f "$currbinary" ]; then
          [ -n "$TigerCheckEmbedded" -a "$user" = 'root' ] && {
    	echo "$currbinary $inetdsrc" >> $TigerCheckEmbedded
          }
     # SGI IRIX currbinary paths can be prefixed with '?' to indicate
     # optional existance of the binary
         elif [ "X$OS" = "XIRIX" -a "X`echo $currbinary | $SED 's:[?]::'`" != "X$currbinary" ]; then
    	if [ -f "`echo $currbinary | $SED 's:[?]::'`" ]; then
    		[ -n "$TigerCheckEmbedded" -a "$user" = 'root' ] && {
    			echo "`echo $currbinary | $SED 's:[?]::'` $inetdsrc" >> $TigerCheckEmbedded
    		 }
    	else
    		message INFO inet014i "" "`echo $currbinary | $SED 's:[?]::'` for $currservice does not exist (flagged as optional)."
    	fi
    
        else
          message INFO inet010i "" "$currbinary for $currservice does not exist."
        fi
        
        if [ "X$OS" = "XIRIX" -a "X`echo $currbinary | $SED 's:[?]::'`" != "X$currbinary" ]; then
    	lgetpermit "`echo $currbinary | $SED 's:[?]::'`" |
    	pathmsg inet008 inet009 "`echo $currbinary | $SED 's:[?]::'`" root "inetd entry for $currservice service uses"
        else
    	lgetpermit "$currbinary" |
    	pathmsg inet008 inet009 "$currbinary" root "inetd entry for $currservice service uses"
        fi
    
        if [ "$currbinary" = "$tcpdpath" ]; then
          if [ -f "$parm1" ]; then
    	[ -n "$TigerCheckEmbedded" -a "$user" = 'root' ] && {
    	  echo "$parm1 $inetdsrc" >> $TigerCheckEmbedded
    	}
          else
    	message INFO inet010i "" "$parm1 for $currservice does not exist."
          fi
        
          lgetpermit "$parm1" |
          pathmsg inet008 inet009 "$parm1" root "inetd entry for $currservice service uses"
        fi
      done 
    
      while read service exppath currpath parm1 parms
      do
        if [ -n "`echo $currpath | $GREP '?'`" ]; then
         currpath=`echo $currpath | $SED -e "s/\?//"`
        fi
        if [ -n "`echo $exppath | $GREP '?'`" ]; then
         exppath=`echo $exppath | $SED -e "s/\?//"`
        fi
        if [ "$currpath" != "$exppath" -a "$currpath" != "$tcpdpath" ]; then
    	message WARN inet005w "" "Service $service is using $currpath instead of $exppath."
        fi
      done < $WORKDIR/cinetd.$$
      
      delete $WORKDIR/cinetd.$$
    
      $AWK '$6 != "internal" {print}' $infile |
      $SORT > $WORKDIR/inet1.$$
    # TODO: Consider this change done by ARSC:
    #   $SORT -k 6,6 > $WORKDIR/inet1.$$
      $AWK '$6 != "internal" {print}' $INETDFILE |
      $SORT |
    # TODO: Consider this change done by ARSC:
    #   $SORT -k 6,6 |
      $JOIN -j 1 -o 1.1 2.1 1.6 - $WORKDIR/inet1.$$ |
      while read expservice currservice prog
      do
       if [ -n "$prog" ] ; then
        [ "$expservice" != "$currservice" ] && {
          message WARN inet007w "" "Binary $prog is being used for service $currservice.  Expected service is $expservice."
        }
       fi
      done 
      delete $WORKDIR/inet1.$$
    
    # Print out any other entries that have been added
      $AWK '{ print $1 " " $3 }' $infile |
      $GREP -v '^#' | $GREP -v '^ $' | $SORT |
      while read service protocol
      do
    	matchescount=""
    	matches=`$AWK '{ print $1 " " $3 }' $INETDFILE | $GREP " $protocol$" | \
    	$AWK '{ print $1 }'`
    	for currservice in $matches
    	do
    		if [ "X$service" = "X$currservice" ]; then
    			matchescount="$matchescount."
    		fi
    	done
    	if [ "X$matchescount" = "X" ]; then
    		x="`$EGREP \"^$service[     ]\" $infile`"
    		message INFO inet011i "$x" "Locally added entry \`$service' in inetd.conf:"
    	fi
      done
    # TODO: ARSC's tara uses the following, consider using it since
    # it looks (is?) more efficient
    #  $AWK '{printf("%s %s\n",$1,$3)}' $infile | sort> $WORKDIR/f1.$$
    #  $AWK '{printf("%s %s\n",$1,$3)}' $INETDFILE | $GREP -v "^#" | sort |
    #  $COMM -23 $WORKDIR/f1.$$ - |
    #  while read service protocol
    #  do
    #    if [ -n "$service" ]; then
    #    message INFO inet011i "" "Locally added entry \`$service'in inetd.conf:"  
    #    fi
    #  done
    #
    
    }
    
    realpath="$REALPATH -d"
    
    [ ! -n "$REALPATH" -o ! $TESTEXEC "$REALPATH" ] && realpath="echo"
    
    # Check the permissions in the /etc/inetd.conf
    # TODO: Should the location of the inetd be hardcoded? 
    # (it is in the gen_inetd programs)
    getpermit /etc/inetd.conf |
    while read _namefile _owner _group ur uw ux gr gw gx or ow ox suid sgid stk
    do
         [ "$ur$uw$ux$gr$gw$gx$or$ow$ox" != '110000000' -a "$_group" != "root" ] && \
             message WARN inet017w "" "The $_namefile permissions are not 600."
         [ "$gw" != '0' ] && \
             message WARN inet018w "" "The $_namefile file can be written by any user of the group $_group."
         [ "$ow" != '0' ] && \
             message ALERT inet019a "" "The $_namefile file can be written by any user."
         [ "$_owner" != 'root' ] && \
             message FAIL inet020f "" "The $_namefile file is not owned by root (owned by $_owner)."
    done
    
    
    # Check the information in the INETDFILE
    {
    
      haveallcmds GEN_INETD_SETS UNIQ &&
      haveallfiles INETDFILE && {
        $GEN_INETD_SETS |
        while read inetd_set
        do
          inetdsrc=`$CAT $inetd_set.src`
          echo "# Checking inetd entries from $inetdsrc"
    
          checkinetd $inetd_set
    
          delete $inetd_set $inetd_set.src
        done
      }
    } |
    $OUTPUTMETHOD
    
    delete "$tmpinetd" "$WORKDIR/cinetd.$$" "$WORKDIR/inet1.$$"
    
    exit 0
    tiger-3.2.3/scripts/check_issue0000755000175000017500000000567407720443054015202 0ustar  pacopaco#!/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.
    #
    # check_issue - jfs - 11/10/2001
    #
    # 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)
    #
    # check_issue - 05/27/2002 - jfs
    #        Changed TigerInstallDir to .
    #
    # check_issue - 08/09/2002 - jfs
    #        Fixed some ! problems in Solaris by changing the ! DIFF to a
    #        check of the exit status
    #
    # check_issue - 05/01/2003 - jfs - Fixed dependancies
    #
    #-----------------------------------------------------------------------------
    # TODO:
    # Make haveallfiles behave when /etc/issue is an empty file?:
    # __fSize=( $(stat -t /etc/issue) )
    # case "${__fSize[1]}" in 0) message WARN issue001w "" \
    #"/etc/issue does not contain the designated content.";; esac
    # 
    #-----------------------------------------------------------------------------
    #
    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 DIFF || exit 1
      haveallfiles ISSUEFILE ISSUENETFILE BASEDIR WORKDIR || exit 1
      haveallvars TESTLINK HOSTNAME || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    
    echo
    echo "# Performing check of /etc/issue(s) login message..."
    
    haveallcmds DIFF || exit 1
    haveallfiles ISSUEFILE ISSUENETFILE BASEDIR WORKDIR || exit 1
    
    # for the local logins
    $DIFF -q /etc/issue $ISSUEFILE >/dev/null 2>&1
    if [ $? -ne 0 ] 
      then
       message WARN issue001w "" "/etc/issue does not contain the designated content."
    fi
    
    # for the networked logins
    $DIFF -q /etc/issue.net $ISSUENETFILE >/dev/null 2>&1
    if [ $? -ne 0 ] 
      then
       message WARN issue002w "" "/etc/issue.net does not contain the designated content."
    fi
    tiger-3.2.3/scripts/check_known0000755000175000017500000002371311061321642015167 0ustar  pacopaco#!/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.
    #
    # check_known - 06/14/93
    # 05/20/2006 jfs Use TAIL properly (POSIX 1003.2-1992)
    # 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
    #                provided by Nicolas François 
    # 08/14/2003 jfs Added OUTPUTMETHOD to dependancies. Incorporated tests
    #                implemented by ARSC (quite a time ago....)
    # 08/08/2003 jfs Safe temporary file creation
    # 05/01/2003 jfs Removed RM and CC from dependancies
    # 04/15/2003 jfs Removed the 'cd' to MAILSPOOL since the CAT of the passlist
    #		 will not work if BASEDIR is relative. Fixed the AWK call
    #		 (was being made to the wrong file!)
    # 07/25/2002 jfs Added a sanity check for password files
    # 18/05/2002 jfs Changed cat to $CAT in some calls
    # 28/03/2002 jfs Applied some of the changes described by CHANGES.ARSC from 
    #              mlk.
    # 09/14/2001 ret Added test for promiscous mode in ifconfig
    # 09/24/2001 ret Added test for shell (e.g. bin/sh) in inetd.conf
    # 14/09/2001 jfs Changed to ls -lan so it can check user's id (otherwise it
    #              does not work for long user names) affects only SPOOL check
    # 06/06/1993 dls Moved 1's complement check to SunOS 4.x specific
    # 04/27/1993 dls "1's complement" check of /bin/login added
    #
    #-----------------------------------------------------------------------------
    # TODO
    # - Many exploits run code that make inetd source a different configuration
    #   file through the use of the '-s' flag (available in SunOS and OpenBSD)
    #   or by directly specifying a configuration file (works in FreeBSD and Linux)
    #-----------------------------------------------------------------------------
    #
    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 CAT EGREP FIND GET_MOUNTS LS SED SGREP STRINGS TR TAIL HEAD CUT OUTPUTMETHOD RM GEN_INETD_SETS || exit 1
      haveallfiles BASEDIR WORKDIR || exit 1
      haveallvars TESTLINK HOSTNAME
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    echo
    echo "# Checking for known intrusion signs..."
    
    haveallcmds AWK CAT EGREP FIND GET_MOUNTS LS SED SGREP STRINGS TR TAIL HEAD CUT OUTPUTMETHOD RM GEN_INETD_SETS || exit 1
    haveallfiles BASEDIR WORKDIR || exit 1
    
    safe_temp "$WORKDIR/login.str.$$" "$WORKDIR/pass.list.$$"
    trap 'delete $WORKDIR/login.str.$$ $WORKDIR/pass.list.$$ ; exit 1' 1 2 3 15
    
    {
      haveallcmds IFCONFIG && { 
         # 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'
      [ -n "$ETCSHELLS" -a -s "$ETCSHELLS" ] && {
        shells=`$GREP -v '^#' $ETCSHELLS`
        shcase=`echo $shells | $TR ' ' '|'`
      }
      backdoor="`$EGREP $shcase $inetd_sets`"
      if [ -n "$backdoor" ]; then
         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
    /usr/spool/secretmail/.lock /usr/tmp/.log /usr/spool/uucp/.sys
    /usr/uucp/.sys /var/crash/... /usr/etc/.getwd /var/crash/.getwd /usr/kvm/... /dev/.tty /dev/.test"
    
      for file in $file_list
      do
        [ -s "$file" ] && {
          if [ -d "$file" ]; then
    	message ALERT kis001a "" "$file is a directory."
    	$LS -AlR "$file"
    	echo
          else 
    	message ALERT kis002a "" "$file is not zero-length."
    	$LS -l "$file"
    	echo
          fi
        }
      done
    
      haveallcmds EGREP FIND && {
        for serverdir in /tmp/.X11-unix /tmp/.NeWS-unix
        do
          [ -d "$serverdir" ] && {
    	nonsocket=`$FIND $serverdir/ ! -type s -a ! -type p -print |
    	$EGREP -v '^'"$serverdir"'/$'`
    
    	[ -n "$nonsocket" ] && {
    	  message ALERT kis003a "" "$serverdir contains files other than window server sockets:"
    	  $LS -alR "$serverdir"
      	  echo
    	}
          }
        done
      }
      
      haveallcmds GET_MOUNTS AWK FIND SED TR && {
        $GET_MOUNTS local |
        $AWK '{
          if($1 == "/")
            print "/lost+found";
          else
            print $1 "/lost+found";
        }' |
        while read dir
        do
          [ -d "$dir" -a -r "$dir" ] && {
    	cd "$dir"
    	files=`$FIND . -print | $SED -e 's%^./%%' -e '/^.$/d' -e '/^..$/d'`
    	# On HP-UX change to:
    	#files=`$FIND . -print | $SED -e 's%^./%%' -e '/^.$/d' -e '/^..$/d' -e '/^[.]fsadm$/d'`
    	alertfiles=`echo "$files" |
    	            $TR ' ' '\012' |
    	            $SED -e 's%^#\{1\}[0-9][0-9.]*$%%g'
    	`
    	if [ -n "$alertfiles" ]; then
    	  message WARN kis004w "" "$dir contains possible non-fsck files:"
    	  # 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:"
    	fi
          }
        done
      }
    
      haveallcmds STRINGS SGREP && {
        $STRINGS - /bin/login > $WORKDIR/login.str.$$
        $SGREP 'back' $WORKDIR/login.str.$$ && {
          message ALERT kis005a "" "/bin/login may contain backdoor login"
        }
        $SGREP 'BACK' $WORKDIR/login.str.$$ && {
          message ALERT kis005a "" "/bin/login may contain backdoor login"
        }
        delete $WORKDIR/login.str.$$
      }
    
      [ -n "$TESTSUID" -a $TESTEXEC "$TESTSUID" ] && {
        $TESTSUID ||
        message ALERT kis007a "" "The setuid(2) system call is compromised."
      }
    
      haveallcmds GEN_PASSWD_SETS GREP CUT AWK LS TAIL HEAD &&
      haveallfiles BASEDIR MAILSPOOL WORKDIR && (
        echo
        echo "# Performing check of files in system mail spool..."
    
    
         if [ -n "$Tiger_PasswdFiles" ]; then
          [ -f $Tiger_PasswdFiles ] && $CAT "$Tiger_PasswdFiles" > $WORKDIR/pass.list.$$
         else
          $GEN_PASSWD_SETS $WORKDIR/pass.list.$$
         fi
    
    # Added -n for numeric uids, jfs
        $LS -anl $MAILSPOOL/  |
        $TAIL -n +2 |
        $AWK '{print $3, $NF}' |
        while read uid file
        do
        
        # TODO: the current scheme does not work correctly  in all cases 
        # if there is more that one user with the same UID 
        # (the ^+ is there to prevent confusing
        # NIS records) and the $HEAD -1 just takes the first one...
        # (this errors are introduced due to the numeric checks instead of name
        # checks.... oh well...)
         owner=""
         for passwd_set in `$CAT $WORKDIR/pass.list.$$`
         do
          [ -z "$owner" ] && 
    #	 owner=`$GREP :$uid: $passwd_set | $GREP -v "^+" | $CUT -f 1 -d : |$HEAD -1`
    	 owner=`$AWK -F: '$3 ~ /^'$uid'$/ { print $1 }' $passwd_set | $HEAD -1`
         done 
    
         # If the user is not found in the password file
         if [ -n "$owner" ] ; then
    	     [ "$file" != '.' -a "$file" != '..' -a "$file" != ':saved' -a "$owner" != "$file" ] &&
    	     message WARN kis008w "" "File \"$file\" in the mail spool, owned by \"$owner\"."
         else
    	     [ "$file" != '.' -a "$file" != '..' ] &&
    	     message WARN kis010w "" "File \"$file\" in the mail spool does not belong to a valid user (belongs to uid \"$uid\")."
         fi
    
        done # of the while read
    
        if [ -f $WORKDIR/pass.list.$$ ] ; then
        	if [ -z "$Tiger_PasswdFiles" ] ; then
     	     	for passwd_set in `$CAT $WORKDIR/pass.list.$$`; do
          			delete $passwd_set $passwd_set.src 
          		done
    	fi
    	delete $WORKDIR/pass.list.$$
        fi
      )
    } |
    $OUTPUTMETHOD
    #
    exit 0
    tiger-3.2.3/scripts/check_listeningprocs0000755000175000017500000001314410241353546017102 0ustar  pacopaco#!/bin/sh
    #
    #     tiger - A UN*X security checking system
    #     Copyright (C) 2000, 2001 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 - 08/23/2001
    #
    # check_listeningprocs - 08/23/2001 - jfs 
    #             Removed netstat (the Linux file has it) since the different
    #             UNIX implementations do not shared command line parameters
    #             (lsof does)
    # check_listeningprocs - 04/17/2003 - jfs 
    #             Use safe delete() instead of RM
    # check_listeningprocs - 08/08/2003 - jfs 
    #             Improved temporary file creation.
    # check_listeningprocs - 09/19/2003 - jfs 
    #             Allow empty okprocess and okprocessuser with the patch
    #             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
    # output (in Solaris -t or -u does not work and -p does not show processes
    # but net tables)
    # - the 'case' statements probably need to be introduced into an 'eval'
    # (this bug was reported for Debian GNU/Linux) in order for multiple
    # ValidUsers/ValidProcs to work ok. Check systems/Linux/2/check_listeningprocs
    # (once it has been tested it will be included here too)
    #
    # NOTES:
    #
    # - there are know problems related to services open TCP/UDP ports spuriously
    # to contact the outside world. Tiger cannot distinguish these from 
    # normal servers. These usually happens with servers (DNS, Samba, Squid, 
    # Qmail) that open UDP listeners to receive DNS requests (this is Debian
    # bug #136991)
    #
    # To avoid these false positives you can either:
    #   1.- add these processes to the list of valid processes in the tigerrc
    #       configuration file (Tiger_Listening_ValidProcs)
    #
    #   2.- use the ignore mechanism (new in 3.2), for example, if you get reports
    #        like  this one:
    # WARN The process `X' is listening on socket 35477 (UDP) on every interface.
    #        with the number of the socket varying everytime add an ignore 
    #        entry in the tiger.ignore configuration file with:
    # 'The process `X' is listening on socket [0-9]+ (UDP) on every interface.'
    #
    #-----------------------------------------------------------------------------
    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 CAT CUT GREP AWK SORT UNIQ LSOF || exit 1
    # Lsof is needed for this program since netstat does not work
    # the same across all Unix platforms
      haveallfiles BASEDIR WORKDIR || exit 1
      haveallvars TESTLINK HOSTNAME
      
      message CONFIG init003c "" "$0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    echo
    echo "# Checking listening processes "
    
    haveallcmds CAT LSOF GREP CUT AWK SORT UNIQ || exit 1
    haveallfiles BASEDIR WORKDIR || exit 1
    
    okprocessusers=${Tiger_Listening_ValidUsers-"root"}
    okprocess=${Tiger_Listening_ValidProcs-""}
    
    safe_temp "$WORKDIR/procs.$$" "$WORKDIR/openprocs.$$"
    trap 'delete $WORKDIR/procs.$$ $WORKDIR/openprocs.$$  ; exit 1' 1 2 3 15
    
    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" != "loopback" ]  && {
    			message WARN lin003w "" "The process \`$proc' is listening on socket $socket ($type on $address interface) is run by $user."
    		} 
    		;;
    		esac
    	;;
    	esac
    }
    
    $LSOF -n > $WORKDIR/procs.$$
    $CAT $WORKDIR/procs.$$ | $GREP "IPv" | 
    	$GREP -v "\->" |
    	$AWK '{printf("%s %s %s %s\n", $1, $3, $7, $8)}' >> $WORKDIR/openprocs.$$
    # Now check for raw sockets (some trojans use them too)
    $CAT $WORKDIR/procs.$$ | $GREP "raw" |
            $AWK '{printf("%s %s %s %s\n", $1, $3, $5, $7)}' >> $WORKDIR/openprocs.$$
    
    $CAT $WORKDIR/openprocs.$$ |
    $SORT | $UNIQ |
    while read proc user type asocket 
    do
    	check_socket $proc $user $type $asocket
    
    done 
    
    delete $WORKDIR/procs.$$ $WORKDIR/openprocs.$$
    exit 0 
    tiger-3.2.3/scripts/check_logfiles0000755000175000017500000001551710223071403015636 0ustar  pacopaco#!/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.
    #
    # check_logfiles - 11/10/2001
    # 
    # Check for the presence of a given number of logfiles and their permissions.
    # Note that these check is operating system dependant.
    #
    # check_logfiles - 08/09/2001 - jfs - fixed to add GREP and WC to haveallcmds
    #                  detected when testing in Solaris 8. Also changed == to =
    #
    # check_logfiles - 04/15/2003 - jfs - separated logfiles and umask checks
    #                  added permission checks for the logfiles based on 
    #                  Solaris recommendations. 
    #                  Logfile location is no longer hardcoded but can be changed
    #                  depending on $OS
    # check_logfiles - 06/20/2003 - jfs - based on patch from Ryan Bradetich fixed
    #                  logic errors in check_fileperm(). Updated the error codes to 
    #                  match the appropriate descriptions.
    #                  Also fixed a typo in MESSAGEs and modified the script to not
    #                  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.
    #
    #-----------------------------------------------------------------------------
    #
    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 || exit 1
      haveallfiles BASEDIR WORKDIR || exit 1
      haveallvars TESTLINK HOSTNAME
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    
    echo
    echo "# Checking for existence of log files..."
    
    haveallcmds AWK || exit 1
    
    check_fileperm () {
      file=$1
      permission=$2
      value=1
      realpermission=`getpermit $1 | $AWK '{ print $4$5$6$7$8$9$10$11$12 }' `
      [ "$realpermission" = "$permission" ]  && value=0
      return $value
    }
    
    
    #####
    # Check various accounting files
    #####
    WTMP=/var/log/wtmp
    BTMP=/var/log/btmp
    LASTLOG=/var/log/lastlog
    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
    	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 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 [ ! -f "$WTMP" ] ; then
        #echo "...Warning: $WTMP does not exist"
        message FAIL logf001f "" "Log file $WTMP does not exist"
    else
        group=`getpermit $WTMP | $AWK '{ print $3 }'`
        if [  "$group" = "utmp" ] ; then
            check_fileperm $WTMP 110110100 || 
           	message FAIL logf005f "" "Log file $WTMP permission should be 664"
        else
    	check_fileperm $WTMP 110100100 || 
     	message FAIL logf005f "" "Log file $WTMP permission should be 644"
        fi
    fi
    
    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
    
    [ -n "$LASTLOG" -a ! -f "$LASTLOG" ] && 
        #echo "...Warning: $LASTLOG does not exist"
        message FAIL logf003f "" "Log file $LASTLOG does not exist"
    
    if [ ! -f "$UTMP" ] ; then
        #echo "...Warning: $UTMP does not exist"
        message FAIL logf004f "" "Log file $UTMP does not exist"
    else
        group=`getpermit $UTMP | $AWK '{ print $3 }'`
        if [  "$group" = "utmp" ] ; then
    	check_fileperm $UTMP 110110100 || 
       	message FAIL logf005f "" "Log file $UTMP permission should be 664"
        else
    	check_fileperm $UTMP 110100100 || 
    	message FAIL logf005f "" "Log file $UTMP permission should be 644"
        fi
    fi
    
    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 [ -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.3/scripts/check_netrc0000755000175000017500000001215710217637536015164 0ustar  pacopaco#!/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.
    #
    # check_netrc - 06/14/93
    #
    # Checks if users's netrc files are insecurely configured. This includes
    # 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
    # 04/28/93 dls  Added '-L' option to 'ls' to get the permissions from the
    #               file instead of the symbolic link.
    #
    #-----------------------------------------------------------------------------
    #
    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 CAT GEN_PASSWD_SETS JOIN LS RM OUTPUTMETHOD || exit 1
      haveallfiles BASEDIR WORKDIR || exit 1
      haveallvars TESTLINK HOSTNAME || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    echo
    echo "# Performing check of .netrc files..."
    
    haveallcmds AWK CAT GEN_PASSWD_SETS JOIN LS RM OUTPUTMETHOD || exit 1
    haveallfiles BASEDIR WORKDIR || exit 1
    
    safe_temp "$WORKDIR/pass.list.$$" "$WORKDIR/home.hosts.$$"
    trap 'delete $WORKDIR/pass.list.$$ $WORKDIR/home.hosts.$$ ; exit 1' 1 2 3 15
    
    check_file()
    {
      user=$1
      file=$2
      
      $AWK '
       BEGIN  {
               LINE="";
              }
       /[ \t]*machine/ {
               print LINE;
               LINE="$0";
              }
              {
               LINE=LINE " " $0;
              }
       END    {
               print LINE;
              }
       ' < $file |
      $AWK '
       BEGIN  {
               BAD=0;
              }
              {
               username="";
               password="";
               for(i=0;i $WORKDIR/pass.list.$$
      else
        $GEN_PASSWD_SETS $WORKDIR/pass.list.$$
      fi
    }
    
    [ -r $WORKDIR/pass.list.$$ ] && {
    while read passwd_set
    do
      echo
      echo "# Checking accounts from `$CAT $passwd_set.src`..."
    
      $AWK -F: '{print $1, $6}' $passwd_set |
      $BASEDIR/util/${GETFSHOST:=getfs-std} > $WORKDIR/home.hosts.$$
    
      $AWK -F: '{printf("%s %s\n", $1, $6); }' $passwd_set |
      $JOIN -o 1.1 1.2 2.3 - $WORKDIR/home.hosts.$$ |
      process_passwd
      
      [ ! -n "$Tiger_PasswdFiles" ] && delete $passwd_set $passwd_set.src
      delete $WORKDIR/home.hosts.$$
    done < $WORKDIR/pass.list.$$ |
    $OUTPUTMETHOD
    }
    
    delete $WORKDIR/pass.list.$$
    #
    exit 0
    tiger-3.2.3/scripts/check_network0000755000175000017500000004003207654226342015533 0ustar  pacopaco#!/usr/bin/perl
    #
    #    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.
    #  
    # Custom check made by HP (provided by Bryan Gartner) for RedHat 6.2
    # servers, implements a set of checks of permitted and not permitted
    # services. 
    #
    # This check will be integrated into Tiger through the development 
    # of specific modules (written in shell to avoid depending in Perl)
    # and is included as a way to show how specific checks can be written
    # by system administrators.
    #
    use strict;
    
    # BUG - UID/GID still wrong
    # Utilities...
    
    unless ( -f "/etc/redhat-release" ) {
      &Info ('netw000i','network_check has only been tested on RedHat');
    }
    open(IN,"/etc/redhat-release");
    my ($r,$h,$re,$ver,$code) = split(' ',);
    close(IN);
    unless ($ver gt '6.2') {
      &Info ('netw001i','network_check has only been tested on RedHat release 6.2 and greater');
    }
    
    # %ps{name} = pid;
    my %ps = &do_ps;
    # %ports{proto}{port} = 1;  e.g. if ( $ports{'tcp'}{'79'} ) { fingerd is listening }
    my %ports = &do_netstat;
    # Make an @array of valid shells
    my @real_shells = &get_shells;
    # %portmap{name}{proto}{ver} = port
    my %portmap = &get_portmap;
    # @adminids = just an @array of valid UID's for admin accounts
    my @adminids = split('\|',$ENV{'Tiger_Admin_Accounts'});
    
    # Start the checks....
    
    &check_inetd;
    &check_syslog;
    &check_omniback;
    &check_fingerd;
    &check_indetd;
    &check_inetd_internals;
    &check_routing;
    &check_securetty;
    &check_ip_fwd;
    &check_dns;  # BUG - Zone transfers????
    &check_ftpd;
    &check_ftpusers;
    &check_ntp;  # BUG - Not done
    &check_rcmd;
    &check_rexd;
    &check_sshd;
    &check_issue;
    &check_X;
    &check_tftpd;
    &check_nis;
    &check_uucp;
    &check_nfs;
    &check_smtp;
    
    
    # Da Checks...
    
    sub check_inetd {
    
    # Inetd's configuration files need correct permissions
    
      my @bad;
      if ( -d "/etc/xinetd.d" ) {
    # It's xinetd based...
         opendir(DIR,"/etc/xinetd.d") || die "cannot open xinetd.d : $!\n";
         my @files = (sort(readdir(DIR)));
         closedir(DIR);
         # Drop . & .., add the top dir
         shift(@files); shift(@files);
         my $mode = (stat("/etc/xinetd.d"))[2];
         my $writeable = $mode & 002;
         push(@bad,"/etc/xinetd.d") if $writeable;
         $mode = (stat("/etc/xinetd.conf"))[2];
         $writeable = $mode & 002;
         push(@bad,"/etc/xinetd.conf") if $writeable;
         foreach my $file (@files) {
           my $mode = (stat("/etc/xinetd.d/$file"))[2];
           my $writeable = $mode & 002;
           push(@bad,"/etc/xinetd.d/$file") if $writeable;
         }
      } else {
        my @files = qw (hosts.allow hosts.deny hosts.equiv inetd.conf);
         foreach my $file (@files) {
           my $mode = (stat("/etc/$file"))[2];
           my $writeable = $mode & 002;
           push(@bad,"File /etc/$file") if $writeable;
         }
      }
      foreach my $bad ( @bad ) { &Fail('netw001f',"$bad is publicly writeable") }
    
    # Inetd's configuration files need proper ownersip
    
      undef(@bad);
      if ( -d "/etc/xinetd" ) {
    # It's xinetd based...
         opendir(DIR,"/etc/xinetd.d") || die "cannot open xinetd.d : $!\n";
         my @files = (sort(readdir(DIR)));
         closedir(DIR);
         # Drop . & .., add the top dir
         shift(@files); shift(@files);
         my $uid = (stat("/etc/xinetd"))[2];
         push(@bad,"/etc/xinetd") if ( $uid > 5 );
         foreach my $file (@files) {
           my $mode = (stat("/etc/xinetd.d/$file"))[2];
           push(@bad,"/etc/xinetd.d/$file") if ( $uid > 5 );
         }
      } else {
        my @files = qw (hosts.allow hosts.deny hosts.equiv inetd.conf);
         foreach my $file (@files) {
           my $uid = (stat("/etc/$file"))[4];
           push(@bad,"/etc/$file") if ( $uid > 5 );
         }
      }
      foreach my $bad ( @bad ) { &Fail('netw002f',"$bad - must be owned by and admin UID") }
    
    # Inetd should have logging enabled
    
      my ($bad,$pid);
      $pid = $ps{'inetd'} || $ps{'inetd'};
      open(IN,"/proc/$pid/cmdline") || die "cannot find /proc/$pid/cmdline : $!\n";
      my $line = ;
      close(IN);
      if ( $ps{'inetd'} ) {
        $bad = "inetd" unless ( $line =~ /-l/ );
      } elsif ( $ps{xinetd} ) {
        $bad = "xinetd" unless (( $line =~ /filelog/ ) || ( $line =~ /syslog/ ));
      } 
      if ( $bad ) {
        &Fail('netw003f',"$bad is not configured with logging enabled");
      }
    
    }
    
    sub check_syslog {
    
    # syslogd should be executing, is it?
    
      unless ( $ps{'syslogd'} ) {
        &Fail('netw004f',"syslogd is not running");
      }
    
    }
    
    sub check_omniback {
    
    # Specify the cell server by IP addresses 
    
      my $port=getservbyname('omni','tcp');      
      $port = 555 || $port;  # Default omni port
      unless ( $ports{'tcp'}{$port} ) {  return }
    
      my $cell_file = '/usr/omni/config/cell/cell_server';
      unless ( -r $cell_file ) {
        &Fail('netw005f',"Omniback listening on port $port, but cell_server not specified in $cell_file");
      }
      open(IN,"$cell_file");
      while() {
        chomp;
        next if /^#/; 
        next unless $_;
        if (/[a-zA-Z_-]/ ) {
          &Fail('netw006f',"Omniback cell server must be specified by IP address in $cell_file");    
        }
      }
      close(IN);
    
    }
    
    sub check_fingerd {
    
    # fingerd's BAD...
    
      my $port=getservbyname('finger','tcp');
      $port = 79 || $port;  # Default finger port
      if ( $ports{'tcp'}{$port} ) {
        &Fail('netw007f',"Fingerd appears to be listening on port $port");
      }
    
    }
    
    sub check_indetd {
    
    # IDENTD is not permitted
    
      my $port=getservbyname('auth','tcp');
      $port = 113 || $port;  # Default auth port
      if ( $ports{'tcp'}{$port} ) {
        &Fail('netw008f',"IDENTD (auth)  appears to be listening on port $port");
      }
    
    }
    
    sub check_inetd_internals {
    
    # Services: daytime, time, echo, chargen, discard should be disabled
    
      my %svcs = (
        daytime => 13,
        time => 37,
        echo => 7,
        chargen => 19,
        discard => 9,
       );
    
      foreach my $service (keys(%svcs)) {
        my $port=getservbyname($service,'tcp');
        $port = $svcs{$service} || $port;  # Default port
        foreach my $proto ('tcp','udp') {
          if ( $ports{'tcp'}{$port} ) {
            &Fail('netw008f',"$service appears to be listening on $proto port $port");
          }
        }
      }
    }
    
    sub check_routing {
    
    # Routing not permitted on a 'secure' host
    
      my @route_daemons = qw (routed gated rdpd);
      my @bad;
      foreach my $name (@route_daemons) {
        if ( $ps{$name} ) { push(@bad,$name) };
      }
      foreach my $name (@bad) {
        &Fail('netw009f',"Routing daemon $name appears to be running");
      }
    
    }
    
    sub check_securetty {
    
    # securetty should direct super-user logins on invalid terminals
    
      unless ( -f "/etc/securetty" ) {
        &Fail('netw010f',"/etc/securetty does NOT exist");
        return;
      }
      open(IN,"/etc/securetty") || die "Cannot open /etc/securetty : $!\n";
      my @bad;
      while() {
        next if (/^vc\//);          # Virt Cons
        next if (/^tty[0-9]/);    # Hard Wired
        chomp;
        push(@bad,$_);
      }
      close(IN);
      foreach my $bad (@bad) {
        &Fail('netw011f',"Insecure entry $bad in /etc/securetty");
      }
    
    # /etc/securetty should have admin ownership and permissions.
    
      my ($dev,$ino,$mode,$nlink,$uid,$gid,@rest) = stat("/etc/securetty");  
      undef(@bad);
      if ( $uid > 5 ) { &Fail('netw012f',"/etc/securetty had bad uid ownership") };
      if ( $gid > 5 ) { &Fail('netw013f',"/etc/securetty had bad gid ownership") };
      if ( $mode & 002 ) { &Fail('netw014f',"/etc/securetty has world write permission") }
    
    }
    
    sub check_ip_fwd {
    
      open (IN,";  
      close(IN);
      chomp($fwd);
      if ( $fwd ) {
        &Fail('netw015f',"IP forwarding is not permitted, but /proc/sys/net/ipv4/ip_forward == 1");
      }
    
    }
    
    sub check_dns {
    
    #  BIND version 8.2.3 or later is required. 
    
      my @bad;
      if ( -x "/usr/sbin/named" ) {
        my $info = `/usr/sbin/named -v`;
        chomp($info);
        my ($bind,$ver) = split(' ',$info);
        if ( $ver lt '8.2.3' ) {
          &Fail('netw016f',"BIND version $ver appears less than 8.2.3"); 
        }
      }
    
    
    }
    
    sub check_ftpd {
    
    # 4.24  ftpd, wuftpd version 2.6.0 are permited.
    
      if ( -x "/usr/sbin/in.ftpd" ) {
        open(IN,"/usr/sbin/in.ftpd -V |");
        my ($bog,$ver);
        while () {
          next unless /^Version wu/;
          chomp;
          ($bog,$ver) = split;
          last;
        }
        close(IN); wait;
        if (( $ver lt 'wu-2.6.0' ) && ( $ver )) {
          &Fail('netw017f',"wu-ftpd version < 2.6.0");
        }
      }
    
    #  Anonymous FTP user shouldn't have a valid shell
    
      my ($name,$pass,$uid,$gid,$gecos,$home,$shell);
      open(PASS,"/etc/passwd") || die "Cannot open /etc/passwd : $!\n";
      while() {
        next unless /^ftp:/;
        chomp;
        ($name,$pass,$uid,$gid,$gecos,$home,$shell) = split(':',$_);
        last;
      }
      close(PASS);
      return unless ($name);
      return unless ($shell);
      if (( $shell ne '/bin/false' ) || ( $shell ne '/sbin/nologin' )) {
        &Fail('netw018f',"Anon ftp user $name has valid shell of $shell");
      }
    
    }
    
    sub check_ftpusers {
    
    # Restricted shell users should be listed in the /etc/ftpusers.
    
      my %bad;
      my @users;
      open(IN,"/etc/ftpusers");
      while() {  chomp; push(@users,$_) }
      close(IN);
    
      open(IN,"/etc/passwd") || die "Cannot read /etc/passwd : $!\n";
      while() {
        chomp;
        my ($name,$pass,$uid,$gid,$gecos,$home,$shell) = split(':',$_);
        unless ( grep(@real_shells,/^$shell$/) ) {
          unless ( grep(@users,$name) ) {
            $bad{$name} = $shell;
          }
        }
      }
      close(IN);
      foreach my $name (sort(keys(%bad))) {
        &Fail('netw019f',"Restricted shell user $name with shell ($bad{$name}) is not listed in /etc/ftpusers"); 
      }
    
    }
    
    sub check_ntp {
    
    # NTP service is required and should only accept updates from'trusted' hosts
    
    }
    
    sub check_rcmd {
    
    # No r-commands friend
    
      my %svcs = (
        exec => 512,
        login => 513,
        shell => 514,
       );
    
      foreach my $service (keys(%svcs)) {
        my $port=getservbyname($service,'tcp');
        $port = $svcs{$service} || $port;  # Default port
        if ( $ports{'tcp'}{$port} ) {
          &Fail('netw022f',"$service appears to be listening on port $port");
        }
      }
    
    }
    
    sub check_rexd {
    
    # REXD is bad...
    
      open(IN,"/usr/sbin/rpcinfo -u localhost 100017 2>&1 |");
      while() {
        if (/ready and waiting/) { 
          &Fail('netw023f',"Service rexd appears to be listening on prognum 100017");
        }
      }
      close(IN); wait;
    
    }
    
    sub check_sshd {
    
    #  sshd shouldn't have PermitRootLogin or RhostsAuthentication
    
      return unless (( $ports{'tcp'}{'ssh'} ) || ( $ports{'udp'}{'ssh'} ));
      if ( -f "/etc/ssh/sshd_config" ) {
        open(IN,"/etc/ssh/sshd_config");
        while() {
          next if /^#/; 
          chomp;
          next unless $_;
          if ( /PermitRootLogin/ ) {
            my ($mark,$stat) = split(' ',$_);
    	unless ( lc($stat) ne 'no' ) {
    	  &Fail('netw024f',"sshd PermitRootLogin is $stat, should be no");
    	}
          }
          if ( /RhostsAuthentication / ) {
            my ($mark,$stat) = split(' ',$_);
    	unless ( lc($stat) ne 'no' ) {
    	  &Fail('netw025f',"sshd RhostsAuthentication is $stat, should be no");
    	}
          }
        }
      } else {
        &Fail('netw026f','Cannot find /etc/ssh/sshd_config to parse!');
      }
    
    }
    
    sub check_issue {
    
    # Don't send a telnet banner, they don't need to know what we are if they can't login
    
      my $banner = '/etc/issue.net';
      my $size = (stat($banner))[7];
      if ( $size > 0 ) {
        &Fail('netw027f',"Telnetd cannot send info before login, yet $banner > 0 bytes");
      } 
    
    }
    
    sub check_X {
    
    # no X servers on a secure host!
    
      if ( $ps{'X'} ) {
        &Fail('netw028f',"X servers not permitted, yet one appears to be running as pid $ps{'X'}");
      }
    
    }
    
    sub check_tftpd {
    
    # tftpd is not permitted with the public internet  
    
      my $port=getservbyname('tftp','tcp');
      $port = 69 || $port;  # Default tftp port
      if (( $ports{'tcp'}{$port} ) || ( $ports{'udp'}{$port} )) {
        &Fail('netw029f',"tftpd appears to be listening on port $port");
      }
    
    }
    
    
    sub check_nis {
     
    #  NIS/NIS+ is not permitted on a secure host
     
      if ( -x "/usr/bin/ypwhich" ) {
        my $rep = `/usr/bin/ypwhich 2>&1`;
        chomp($rep);
        unless ( $rep =~ /Local domain name not set/ ) {
          &Fail('netw030f',"NIS/NIS+ not permitted, yet this node in domain $rep");
        }
      }
      my @nis_procs = qw (ypserv ypxfrd yppasswdd ypupdated ypbind);
      foreach my $name (@nis_procs) {
        foreach my $proto ('tcp','udp') {
          foreach my $ver ( 1 .. 4 ) {
            my $port = $portmap{$name}{$proto}{$ver};
            if (( $port ) && ( $ports{$proto}{$port} )) {
              &Fail('netw031f',"NIS svc $name is listening on $proto port $port");
            }
          }
        }
      }
     
    }
    
    sub check_uucp {
    
    # UUCP is bad
       
      my $port=getservbyname('uucp-path','tcp');
      $port = 117 || $port;  # Default tftp port
      if (( $ports{'tcp'}{$port} ) || ( $ports{'udp'}{$port} )) {
        &Fail('netw032f',"uucp-path appears to be listening on port $port");
      }
      $port=getservbyname('uucp','tcp');
      $port = 117 || $port;  # Default tftp port
      if ( $ports{'tcp'}{$port} ) {
        &Fail('netw033f',"uucp appears to be listening on port $port");
      }
    
    }
    
    sub check_nfs {
    
    #  NFS is not permitted   
       
      my @nfs_procs = qw (mountd nfs llockmgr nlockmgr);
      foreach my $name (@nfs_procs) {
        foreach my $proto ('tcp','udp') {
          foreach my $ver ( 1 .. 4 ) {
            my $port = $portmap{$name}{$proto}{$ver};
            if (( $port ) && ( $ports{$proto}{$port} )) {
              &Fail('netw034f',"NFS service $name is listening on $proto port $port");
            }
          }
        }
      }
    
      &check_nfs_client;
    
    }
    
    sub check_nfs_client {
    
      # if NFS client is bad too....
      open(IN,"/bin/df -t nfs|");
      ; # toss header
      my $bad = 0;
      while() {
         $bad = 1;
      }
      &Fail('netw035f','NFS mounts are NOT allowed!') if $bad;
    
    }
    
    
    sub check_smtp {
    
    #   Sendmail version 8.11.0 or later, or Postfix. EXPN and VRFY commands must be disabled.
    
      return unless ($ports{'tcp'}{'25'});  # no one's at home
      my $proto=(getprotobyname('tcp'))[2];   
      my $addr = (gethostbyname('localhost'))[4];
      my $socket =  pack('S n a4 x8', 2, 25, $addr);   
      unless ( socket(S,2,1,$proto) ) {
        &Fail('netw036w',"Couldn't create socket : $!");
        return;
      }
      unless ( connect(S,$socket) ) {
        &Fail('netw036f',"Couldn't connect to SMTP server : $!");
        return;
      }
      select(S); $|=1;
      my $what = ;
      select(STDOUT); $|=1;
      print S "expn root\n";
      my $reply = ;
      unless ( $reply =~ /^5/ ) { &Fail('netw037f',"SMTP server supports the expn command") }
      print S "vrfy root\n";
      $reply = ;
      unless (( $reply =~ /^502/ ) || ( $reply =~ /^252/ )) { &Fail('netw038f',"SMTP server supports the vrfy command") }
      print S "quit\n";
      close(S); 
    
    }
    
    #    0     1     2       3   4    5    6      7     8      9     10      11      12
    #my ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,$blksize,$blocks) = stat($filename);  
    
    
    ## UTILITIES
    
    sub do_ps {
    
    # What's running on this box
    
      my %ps;
      open(PS,"/bin/ps -e |") || die "Cannot fork /bin/ps -e : $!\n";
      while(my $buf=) {
        chomp($buf);
        my ($pid,$ppid,$pty,$name) = split(' ',$buf);
        $ps{$name}=$pid;
      }
      close(PS); wait;
      return(%ps);
    
    }
    
    sub do_netstat {
    
    # Find out what we're listening on...
    
      my %ports;
      open(NET,"/bin/netstat -an -A inet |") ||
        die "Cannot fork netstat : $!\n";
      while (my $buf = ) {
        chomp($buf);
        my ($proto,$recq,$sndq,$local,$remote,$state) = split(" ",$buf);
        next if ( $state ne 'LISTEN' );
        my ($add,$port) = split(':',$local);
        $ports{$proto}{$port} = 1;
      }
      close(NET); wait;
      return(%ports);
    
    }
    
    sub get_shells {
    
    # Build a list of valid shells
    
      my @shells;
      open(IN,"/etc/shells") || die "Cannot open /etc/shells : $!\n";
      while() {
        chomp;
        push(@shells,$_);
      }
      close(IN);
      return(@shells);
    
    }
    
    sub get_portmap {
    
    # Find out what portmap has us listening on...
    
      my %portmap;
      open(IN,"/usr/sbin/rpcinfo -p localhost |");
      ;  # toss header
      while() {
        chomp;
        my ($prog,$ver,$proto,$port,$name) = split(' ',$_);
        $portmap{$name}{$proto}{$ver} = $port;
      }
      close(IN); wait;
      return(%portmap);
    
    }
    
    sub Fail {
    
      my ($section,$string) = @_;
      print "--FAIL-- [$section] $string\n";
    
    }
    
    sub Warn {
    
      my ($section,$string) = @_;
      print "--WARN-- [$section] $string\n";
    
    }
    
    sub Info {
    
      my ($section,$string) = @_;
      print "--INFO-- [$section] $string\n";
    
    }
    tiger-3.2.3/scripts/check_nisplus0000755000175000017500000000740507654247431015550 0ustar  pacopaco#!/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.
    #
    # check_nisplus - ??/??/??
    # 
    # 05/01/2003 - jfs - Fixed dependancies
    #
    #-----------------------------------------------------------------------------
    #
    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 CAT FMT GEN_PASSWD_SETS JOIN LS RM || exit 1
      haveallfiles BASEDIR WORKDIR || exit 1
      haveallvars TESTLINK HOSTNAME
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    haveallcmds AWK CAT FMT GEN_PASSWD_SETS JOIN LS RM || exit 1
    haveallfiles BASEDIR WORKDIR || exit 1
    
    getaccessmsg()
    {
      r="$1"
      m="$2"
      c="$3"
      d="$4"
    
      sep=""
      txt=""
      [ $r -eq 1 ] && {
        txt="read"
        sep=", "
      }
      [ $m -eq 1 ] && {
        txt="$txt${sep}modify"
        sep=", "
        [ "$r$m$c" = '110' ] && sep=", and"
      }
      [ $c -eq 1 ] && {
        txt="$txt${sep}create"
        sep=", and "
      }
      [ $d -eq 1 ] && {
        txt="$txt${sep}delete"
      }
      echo "$txt"
    }
    
    ownread="0000100000000000"
    
    [ -f /usr/bin/nisdefaults ] &&
    /usr/bin/nisdefaults -s |
    while read domain
    do
      /usr/bin/niscat -o "[],passwd.org_dir.$domain" |
      $AWK '
      /^Owner[ 	]*:/ {
        split($0, data, ":");
        split(data[2], ownerd, ".");
        owner=substr(ownerd[1], 2);
      }
      /^Access Rights[ 	]*:/ {
        split($0, data, ":");
        printf("%s ", owner);
        for(i=2;i<=17;i++)
          if(substr(data[2], i, 1) == "-")
            printf("0 ");
          else
    	printf("1 ");
        needuser=1
      }
      /[ 	][ 	]*/ && needuser == 1 {
        start=index($0, "'"'"'");
        if(start != 0){
          temp=substr($0, start+1);
          len=length(temp)-1;
          user=substr(temp, 1, len);
          print user;
          needuser=0
        }
      }
      ' |
      while read owner nr nm nc nd or om oc od gr gm gc gd wr wm wc wd user
      do
        [ "$nr$nm$nc$nd$or$om$oc$od$gr$gm$gc$gd$wr$wm$wc$wd" != "$ownread" ] && {
          nobody_access="`getaccessmsg $nr $nm $nc $nd`"
          owner_access="`getaccessmsg 0 $om $oc $od`"
          group_access="`getaccessmsg $gr $gm $gc $gd`"
          world_access="`getaccessmsg $wr $wm $wc $wd`"
    
          [ -n "$nobody_access" ] && {
    	message WARN nisplus001 "" "NIS+ passwd entry for $user has $nobody_access for \`nobody'."
          }
          [ -n "$owner_access" ] && {
    	message WARN nisplus002 "" "NIS+ passwd entry for $user has owner $owner_access."
          }
          [ -n "$group_access" ] && {
    	message WARN nisplus003 "" "NIS+ passwd entry for $user has group $group_access."
          }
          [ -n "$world_access" ] && {
    	message WARN nisplus004 "" "NIS+ passwd entry for $user has world $world_access."
          }
        }
      done
    done
    tiger-3.2.3/scripts/check_ntp0000644000175000017500000000530010000431767014623 0ustar  pacopaco#!/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.3/scripts/check_omniback0000644000175000017500000000453010000431767015611 0ustar  pacopaco#!/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.3/scripts/check_passwd0000755000175000017500000002646710664614124015355 0ustar  pacopaco#!/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.
    #
    # check_passwd  - 06/14/93
    #
    # 07/27/2002 jfs Added a sanity check for password files
    # 08/09/2002 jfs Fixed some ! tests 
    # 10/28/2002 jfs Improved check with patch from Bob Hall
    # 05/01/2003 jfs Fixed PWCK behavior
    # 06/21/2003 jfs Modified with patch from Ryan Bradetich to generalise
    #                PWCK support and to add an additional check (emtpy password)
    #                Also added an acceptable cryptographic hash check, as well
    #                as a check for duplicate home directories.
    # 08/08/2003 jfs Improved temporary file creation.
    #		 Applied Ryan Braderitch's patch:
    #   * Reformat and optimize some checks (replace several awk statements with
    #    a single pass through the password file).
    #   * Changed the Administrative Login ID with impossible password to a failure
    #     instead of a warning.
    #   * Added the following checks from check_account:
    #    - Login ID is disabled, but still has a valid shell (acc001w)
    #    - Login does not have a valid shell (acc020w)
    #    - UID has / for home directory (acc014f)
    #    - Login ID is UID-0 (acc012w)
    #    - Administrative Login ID should have impossible password (acc018w)
    #   * Merged these duplicate checks from check_account:
    #    - 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
    # 05/20/2006 jfs Add quotation marks to Tiger_Admin_Accounts to prevent
    #                errors if empty (Debian bug #342181)
    #
    #-----------------------------------------------------------------------------
    # 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='.'
    
    #
    # 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 CAT GEN_PASSWD_SETS GREP EGREP JOIN SED SORT UNIQ RM || exit 1
      haveallfiles BASEDIR WORKDIR || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    
    echo
    echo "# Performing check of passwd files..."
    
    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
    
    check_passwd_entries()
    {
      saveifs=$IFS
      IFS=:
    
      while read login hash uid gid gcos home shell
      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.\"
            ;;
          $Tiger_Passwd_Hashes|\*)
            ;;
          *)
            message WARN pass013w \"\" \"Username \\\`$login' is not using an acceptable password hash ($hash).\"
            ;;
        esac"
    
        # Report additional UID-0 accounts.
        [ "$uid" = 0 -a "$login" != root ] && {
          message WARN pass017w "" "Login ID $login has uid == 0."
        }
    
        # Perform administrative checks (Maybe this should be a function...)
        eval "case \"$login\" in
          \"$Tiger_Admin_Accounts\")
             [ \"$hash\" != '*' ] && {
               message FAIL pass018f \"\" \"Administrative user $login does not have an impossible password.\"
             }
             continue
             ;;
        esac"
    
        # Report users with / as their homedir
        [ "$home" = / ] && {
          message WARN pass016w "" "User $login has $home as home directory"
        }
    
        # 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|/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).\"
             ;;
        esac"
      done
    
      IFS=$saveifs
    }
    
    #
    # This function checks for UID and username conflicts between multiple password sources.
    #
    conflict_check()
    {
      passwd1=$1
      passwd2=$2
    
    
      $SORT $passwd2 > $WORKDIR/p2name.$$
      $SORT -t: -k 3,3 $passwd2 > $WORKDIR/p2uid.$$
      $JOIN -t: -o 1.1 1.3 2.3 $WORKDIR/p1name.$$ $WORKDIR/p2name.$$ |
      {
        IFS=:
        while read username uid1 uid2
        do
          IFS=$saveifs
          [ "$uid1" != "$uid2" ] && {
            message WARN pass004w "" "UID conflict for login ID \`$username' between $src1 (uid = $uid1) and $src2 (uid = $uid2)."
          }
          IFS=:
        done
      }
                                                                                                                                                                                                               
      $JOIN -t: -j1 3 -j2 3 -o 1.3 1.1 2.1 $WORKDIR/p1uid.$$ $WORKDIR/p2uid.$$ |
      $AWK -F: '$1 != 0 {print}' |
      {
        IFS=:
        while read uid name1 name2
        do
          IFS=$saveifs
          [ "$name1" != "$name2" ] && {
            message WARN pass005w "" "Username conflict for uid $uid between $src1 (login ID $name1) and $src2 (login ID $name2)."
          }
          IFS=:
        done
      }
      delete $WORKDIR/p2uid.$$ $WORKDIR/p2name.$$
    }
    
    # Define shcase to be a list of valid shells, so we can check for
    # shell initilization files.
    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 ' ' '|'`
    }
    
    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
      source=`$CAT $passwd_set.src`
      echo "# Checking entries from $source."
    
      $CAT $passwd_set |
      check_passwd_entries
    
      $SORT $passwd_set > $WORKDIR/p1name.$$
      $SORT -t: -k 3,3 $passwd_set > $WORKDIR/p1uid.$$
    
      # Check for duplicate usernames.
      $AWK -F: '{print $1}' $WORKDIR/p1name.$$ |
      $SORT |
      $UNIQ -c |
      while read times username
      do
        # Previous fix for Debian bug #117117, ARSC's fix is much better (jfs)
        #    times=`$GREP "$username:" $WORKDIR/p1name.$$ | $AWK 'END { print NR }'`
        [ $times -gt 1 ] && {
          message WARN pass001w "" "Username \`$username' exists multiple times ($times) in $source."
        }
      done
    
      # Check for multiple non-NIS entries with the same UID
      $AWK -F:  '/^[^+-]/ {print $3}' $WORKDIR/p1uid.$$ |
      $SORT |
      $UNIQ -c |
      while read times uid
      do
    # 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.
      $EGREP -v "^($Tiger_Admin_Accounts):" $WORKDIR/p1uid.$$ |
      $AWK -F: '{print $6}' |
      $SORT |
      $UNIQ -c |
      while read times homedir
      do
        [ $times -gt 1 ] && {
          message WARN pass012w "" "Home directory $homedir exists multiple times ($times) in $source."
        }
      done
    
    done < $WORKDIR/pass.list.$$
    
    # Check for conflicts.
    while read src1
    do
      while read src2
      do
        conflict_check $src1 $src2
      done 
    done < $WORKDIR/pass.list.$$
    
    # See if the system is configured for shadow passwords.
    [ "$Tiger_Check_PASSWD_SHADOW" != 'N' ] && {
      [ -s /etc/passwd ] && [ -s /etc/shadow ] || {
        message WARN pass007w "" "System is not properly configured for shadow passwords."
      }
    }
    
    # Verify the password file format.
    [ -n "$PWCK" ] && {
      # TODO: Add the results to the report
      pwckerr=`$PWCK 2>&1`
      if [ -n "$pwckerr" ] ; then
        message WARN pass006w "" "Integrity of password files questionable ($PWCK)."
      fi
    }
    
    # Check the password constraints.
    [ -r "$LOGINDEF" ] && [ -z "$PAMLOGINDEF" -o ! -f "$PAMLOGINDEF" ] && \
    [ -n "$Tiger_Passwd_Constraints" ]  && {
      for param in $Tiger_Passwd_Constraints
        do
        if [ ! `$GREP -v '#' $LOGINDEF | $GREP "$param"` ] >/dev/null 2>&1
          then
            message WARN pass007w "" "Password control $param missing from $LOGINDEF."
        fi
      done
    }
    
    # TODO: For Pam systemms the PAMLOGINDEF file needs to be checked instead
    # of login.defs
    #[ -f "$PAMLOGINDEF" ] && [ -n "$Tiger_Pam_Constraints" ]  && {
    #}
                                                                                                                                                                                                               
    # Cleanup the temporary files.
    [ ! -n "$Tiger_PasswdFiles" ] && {
      while read file
      do
        delete $file $file.src
      done < $WORKDIR/pass.list.$$
    }
    delete "$WORKDIR/pass.list.$$" "$WORKDIR/p1name.$$" "$WORKDIR/p2name.$$" 
    delete "$WORKDIR/p1uid.$$" "$WORKDIR/p2uid.$$"
    
    exit 0
    
    tiger-3.2.3/scripts/check_passwdformat0000755000175000017500000002212410664614153016552 0ustar  pacopaco#!/bin/sh
    #
    #     tiger - A UN*X security checking system
    #     Copyright (C) 2002 Javier Fernandez-Sanguino
    #
    #    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_passwdformat - jfs - October 2002
    #
    # 10/13/2002 - check_passwdformat
    #       This script checks the format of the /etc/passwd file in order to
    #       determine inconsistencies which indicate an intrusion 
    #       or misconfiguration.
    #       This script is based on SuSE's and OpenBSD's daily security check.
    # 08/08/2003 - jfs - Improved temporary file creation.
    # 10/07/2003 - jfs - Delete temporary files created.
    # 10/10/2003 - jfs - Improved message and allowed daemon in uid 1 (for
    #                    debian bug #211328). Also added password content 
    #                    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)
    # 07/05/2006 - jfs - Fix deprecated syntax with sort.  Thanks to Cyril
    #                    Chaboisseau and Adam James for providing a patch (Debian
    #                    bug: #369501)
    #
    #-----------------------------------------------------------------------------
    #
    # This is the directory Tiger is installed on
    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 UNIQ SORT TEE COLUMN GREP CAT JOIN LS RM || exit 1
      haveallfiles BASEDIR WORKDIR || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    echo
    echo "# Checking the format of passwd and group files."
    
    # Note /etc/passwd is not checked for since its not on the
    # config files.
    haveallcmds AWK UNIQ SORT TEE COLUMN GREP CAT JOIN LS RM || exit 1
    haveallfiles BASEDIR WORKDIR || exit 1
    
    # message FAIL XXXX0??f "" "MESSAGE TO WRITE IN REPORT"
    
    
    OUT=$WORKDIR/passwdcheck.$$
    USERCHECK=$WORKDIR/usercheck.$$
    TMPFILE=$WORKDIR/passwdcheck.tmp.$$
    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
    #
    PW="/etc/passwd"
    [ -r $PW ] &&  {
    $AWK -F: '{
            if ($0 ~ /^[ 	]*$/) {
                    printf("Line %d is a blank line.\n", NR);
                    next;
            }
            if (NF != 7)
                    printf("Line %d has the wrong number of fields.\n", NR);
            if ($1 ~ /^[+-]$/)
                    next;
            if ($1 == "")
                    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);
    # 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);
    #if ($2 != "" && length($2) != 13 && ($10 ~ /.*sh$/ || $10 == "") &&
    #   ($2 !~ /^\$[0-9a-f]+\$/)) {
    #       if (system("test -d "$9" -a ! -r "$9"") == 0)
    #          printf("Login %s if off but still has valid shell and home directory is unreadable\n\t by root; cannot check for existance of alternate access files.\n", $1);
    #       else if (system("for file in .ssh .rhosts .shosts .klogin;
    #               do if test -e "$9"/$file; then if ((ls -ld "$9"/$file | cut -b 2-10 | grep -q r) && (test ! -O "$9"/$file)) ; then exit 1; fi; fi; done"))
    #                  printf("Login %s is off but still has a valid shell and alternate access files in\n\t home directory are still readable.\n",$1);
    #}
            if ($3 == 0 && $1 != "root")
                    printf("Login %s has a user id of 0 which should be reserved for root\n", $1);
            if ($3 == 1 && $1 != "bin" && $1 != "daemon" )
    		printf("Login %s has a user id of 1 which should be reserved for bin or daemon\n", $1);
            if ($3 < 0)
                    printf("Login %s has a negative user id.\n", $1);
            if ($4 < 0)
                    printf("Login %s has a negative group id.\n", $1);
    	if ($4 == 0 && $1 != "root")
    		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 >>$USERCHECK
    
    
    $AWK -F: '{ print $1 }' $PW | $SORT | $UNIQ -d > $OUT
    if [ -s "$OUT" ] ; then
    	message WARN pass001w "" "File $PW has duplicate user names"
            $COLUMN "$OUT"
    fi
    $AWK -F: '{ print $1 " " $3 }' $PW | $SORT -n -k 2 | $TEE ${TMPFILE}-1 |
    $UNIQ -d -f 1 | $AWK '{ print $2 }' > ${TMPFILE}-2
    if [ -s "${TMPFILE}-2" ] ; then
    	message WARN pass002w "" "File $PW has duplicate user ids:"
            while read uid; do
                    $GREP -w $uid ${TMPFILE}-1
            done < ${TMPFILE}-2 | $COLUMN
    fi
    }
    #
    # /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: '{
            if ($0 ~ /^[ 	]*$/) {
                    printf("Line %d is a blank line.\n", NR);
                    next;
            }
            if (NF != 9)
                    printf("Line %d has the wrong number of fields.\n", NR);
            if ($1 ~ /^[+-]$/)
                    next;
            if ($1 == "")
                    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) > 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-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 unusual password content.\n", $1);
    }' < $PW >> "$USERCHECK"
    
    # NOTE: I've found some passwords with '/'. Is this common?
    
    $AWK -F: '{ print $1 }' $PW | $SORT | $UNIQ -d > $OUT
    if [ -s "$OUT" ] ; then
    	message WARN pass001w "" "File $PW has duplicate user names:"
            $COLUMN "$OUT"
    fi
    }
    #
    # /etc/group checking
    #
    GRP=/etc/group
    [ -r $GRP ] &&  {
    $AWK -F: '{
            if ($0 ~ /^[	 ]*$/) {
                    printf("Line %d is a blank line.\n", NR);
                    next;
            }
            if ($1 ~ /^[+-]$/)
                    next;
            if (NF != 4)
                    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) > 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)
    		printf("Group %s(%s) has got the following members: %s\n", $1, $3, $4);
    }' < $GRP > $OUT
    
    if [ -s "$OUT" ] ; then
            $CAT "$OUT" |
    	while read message; do
    		message FAIL pass009f "" "$message"
    	done
    fi
    
    $AWK -F: '{ print $1 }' $GRP | $SORT | $UNIQ -d > $OUT
    
    if [ -s "$OUT" ] ; then
    	message WARN pass010w "" "File $GRP has duplicate group ids:"
            $COLUMN "$OUT"
    fi
    }
    
    # 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.3/scripts/check_path0000755000175000017500000002606610045247304014776 0ustar  pacopaco#!/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.
    #
    # 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
    #                its supported by all the LS implementations I've seen)
    #                (Fixes Debian Bug #161993)
    # 08/14/2003 jfs Added OUTPUTMETHOD to dependancies
    # 08/13/2003 jfs Return if the files do not exist (a safeguard for the
    #                functions but these is redundant code anyway)
    # 08/08/2003 jfs Improved temporary file creation.
    # 10/22/2002 jfs Fixed check for PATH in config files (was not done properly
    #            due to the way it was being tested)
    # 07/25/2002 jfs Added a sanity check for password files
    # ARC check_path - 05/10/99  Fixed problem with parse_csh
    #
    #
    #-----------------------------------------------------------------------------
    #
    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 GEN_PASSWD_SETS GREP JOIN RM SED TR OUTPUTMETHOD || exit 1
      haveallfiles BASEDIR WORKDIR || exit 1
      haveallvars HOSTNAME || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    
    echo
    echo "# Performing check of PATH components..."
    
    haveallcmds AWK GEN_PASSWD_SETS GREP JOIN RM SED TR OUTPUTMETHOD || exit 1
    haveallfiles BASEDIR WORKDIR || exit 1
    
    safe_temp $WORKDIR/pth.$$
    trap 'delete $WORKDIR/pth.$$ ; exit 1' 1 2 3 15
    
    checkcmds()
    {
      _user="$1"
      _dir="$2"
      _srcfile="$3"
    
      okown=$Tiger_ROOT_PATH_OK_Owners
      [ "$_user" != 'root' ] && okown=$Tiger_PATH_OK_Owners
      [ ! -n "$okown" ] && okown='root'
    
      okgroup=$Tiger_ROOT_PATH_OK_Group_Write
      [ "$_user" != 'root' ] && okgroup=$Tiger_PATH_OK_Group_Write
    
      [ -d $_dir ] &&
      $LS -Ld $_dir/*  2>/dev/null|
      getpermit |
      while read _execfile _owner _group ur uw ux gr gw gx or ow ox suid sgid stk
      do
        [ "$ux$gx$ox" != '000' ] && {
          [ -n "$TigerCheckEmbedded" -a "$_user" = 'root' ] && {
    	echo "$_execfile /$_srcfile(PATH)" >> $TigerCheckEmbedded
          }
          
          [ "$gw" = '1' -a -n "$okgroup" ] && {
    	eval "case \"$_group\" in
    	  $okgroup) gw=0;;
    	esac"
          }
          
          case "$gw$ow" in
    	00) _msg='';;
    	01) _msg='world'; __newmode='o-w';;
    	10) _msg="group \`$_group'"; __newmode='g-w';;
    	11) _msg="group \`$_group' and world";__newmode='go-w';;
    	*) _msg='';;
          esac
          [ -n "$_msg" ] && {
    	message WARN path001w "" "$_execfile in $_user's PATH from $_srcfile is $_msg writable."
    	changelog "WARN : chmod : $__newmode : $_execfile"
          }
          if [ "$suid" = '0' ]; then
    	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
    	  $okown);;
    	  *) message INFO path008i \"\" \"Setuid program $_execfile in $_user's PATH from $_srcfile is not owned by root (owned by $_owner).\";;
    	esac"
          fi
        }
      done
    }
    
    parse_path()
    {
      user="$1"
      file="$2"
      pth="$3"
      saveifs=$IFS
    
      [ ! -n "$pth" -a "$user" = 'root' ] && {
        message INFO path003i "" "Unable to ascertain PATH from $user's $file."
        return
      }
    
      case "$pth" in
        *:) pth="${pth}.";;
      esac
      
      IFS=:
      set X $pth
      IFS=$saveifs
      shift
      
      dotinpath=
      
      for pcomp
      do
        comp="${pcomp:=.}"
        if [ "$comp" = '.' ]; then
          dotinpath=Y
          [ "$user" = 'root' ] && {
    	message WARN path004w "" "PATH in $user's $file contains '.'"
          }
        elif [ -d "$comp" ]; then
          lgetpermit "$comp" |
          pathmsg path006 path007 "$comp" "$user" "The PATH set in $user's $file contains"
        fi
        [ "$user" = 'root' -a "$comp" != '.' ] && checkcmds $user "$comp" "$file"
      done
      [ "$lastcomp" != '.' -a -n "$dotinpath" ] && {
        message WARN path005w "" "'.' in PATH from $user's $file is not the last entry."
      }
    }
    
    #
    # Parse Bourne SHell style file (sh, ksh, bash)
    #
    # This creates a file which all contains variable assignments in
    # it.  We try to strip out command substitions or anything else
    # that might execute a command, but...
    #
    parse_bsh()
    {
      user="$1"
      dir="$2"
      file="$3"
      [ ! -f "$dir/$file" ] && return
      
      $AWK '
      BEGIN {LINE="";}
      $0 ~ /\\$/ {printf("%s ", substr($0, 1, length($0)-1));}
      $0 !~ /\\$/ {printf("%s\n", $0);}
      END {printf("\n");}
      ' $dir/$file |
      $GREP -v '".*;.*"' |
      $TR ';' '\012' |
      # Bob Hall suggests chaging the SED from
      # -e 's/\${\([a-zA-Z_][a-zA-Z0-9_]*}[^a-zA-Z0-9_]\)/${XXX_\1/g' \
      # to
      # -e 's/\${\([a-zA-Z_][a-zA-Z0-9_]*}\)$/${XXX_\1/g' \
      # on HP-UX 
      # TODO:(does this apply to other OS?
      $SED -e 's/#.*$//' \
           -e '/^$/d' \
           -e 's/^[ 	]*//' \
           -e 's/export[ 	][ 	]*//' \
           -e 's/^setenv[ 	]*\([a-zA-Z_][a-zA-Z0-9_]*\)[ 	]*\(.*\)$/XXX_\1=\2/g' \
           -e 's/^\([a-zA-Z_][a-zA-Z0-9_]*=.*\)$/XXX_\1/g' \
           -e 's/\$\([a-zA-Z_][a-zA-Z0-9_]*[^a-zA-Z0-9_]\)/$XXX_\1/g' \
           -e 's/\$\([a-zA-Z_][a-zA-Z0-9_]*\)$/$XXX_\1/g' \
           -e 's/\$([^)]*)//g' \
           -e 's/`[^`]*`//g' |
      $GREP -v '`' |
      $GREP -v '\$(' |
      $GREP -v '^.*=[^ 	]*[ 	]' |
      $GREP -v 'DISPLAY' |
      $GREP '^XXX_[a-zA-Z_][a-zA-Z0-9]*=' > $WORKDIR/pth.$$
      #
      # Now, source the file to get variable values.
      # Use a subshell so we don't contaminate.  Everything
      # should start with XXX_, but take no chances if IFS.
      #
      (
        XXX_USER="$user"
        XXX_LOGNAME="$user"
        XXX_HOME="$dir"
        saveifs=$IFS
        . $WORKDIR/pth.$$
        IFS=$saveifs
        delete $WORKDIR/pth.$$
        parse_path $user $file "$XXX_PATH"
      )
    }
    
    #
    # Parse C SHell style file (csh, tcsh)
    #
    # This creates a file which contains all variable assignments (sh style)
    # in it.  We try to strip out command substitions or anything else
    # that might execute a command, but...
    #
    parse_csh()
    {
      user="$1"
      dir="$2"
      file="$3"
    
      [ ! -f "$dir/$file" ] && return
      
      $AWK '
      $0 ~ /\\$/ {printf("%s ", substr($0, 1, length($0)-1));}
      $0 !~ /\\$/ {print}
      END {printf("\n");}
      ' $dir/$file |
      $GREP -v '".*;.*"' |
      $TR ';' '\012' |
      $SED -e 's/#.*$//' \
           -e '/^$/d' \
           -e 's/^[ 	]*//' \
           -e 's/[()]//g' \
           -e 's/^set \([a-zA-Z_][a-zA-Z0-9_]*\)[ 	]*=[ 	]*\(.*\)$/XXX_\1=\2/g' \
           -e 's/^setenv[ 	]*\([a-zA-Z_][a-zA-Z0-9_]*\)[ 	]*\(.*\)$/XXX_\1=\2/g' \
           -e 's/[ 	]$//' \
           -e 's/[ 	]/:/g' \
           -e 's%~%'"$dir"'%g' \
           -e 's/\$\([a-zA-Z_][a-zA-Z0-9_]*[^a-zA-Z0-9_]\)/$XXX_\1/g' \
           -e 's/\$\([a-zA-Z_][a-zA-Z0-9_]*\)$/$XXX_\1/g' \
           -e 's/XXX_path/XXX_PATH/g' \
           -e 's/`[^`]*`//g' \
           -e '/\$/dev/null`
                if [ -z "$found" ]; then
                    message WARN path009w "" "$file does not export an initial setting for PATH."
                fi
                ;;
              /etc/csh.login)
                found="`$GREP -v \# $file | $GREP PATH | $GREP setenv 2>/dev/null`" 
                if [ -z "$found" ]; then
                    message WARN path009w "" "$file does not setenv an initial setting for PATH."
                fi
                ;;
             *)
                found="`$GREP -v \# $file | $GREP PATH `"
                if [ -z "$found" ]; then
                    message WARN path009w "" "$file does not have an initial setting for PATH."
                fi
                ;;
           esac
          }
        done
    }
    
    {
      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 |
    	$BASEDIR/util/${GETFSHOST:=getfs-std} > $WORKDIR/home.hosts.$$
          
    	$AWK -F: '{ printf("%s %s\n", $1, $6); }' $passwd_set |
    	$JOIN -o 1.1 1.2 2.3 - $WORKDIR/home.hosts.$$ |
    	while read user homedir host
    	do
    	  [ "$host" = "$HOSTNAME" ] && {
    	    check_user $user $homedir
    	  }
    	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 /
      fi
    } |
    $OUTPUTMETHOD
    
    delete $WORKDIR/pth.$$
    
    exit 0
    tiger-3.2.3/scripts/check_perms0000755000175000017500000001611711200654270015162 0ustar  pacopaco#!/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.
    #
    # check_perms - 06/14/93
    #
    # 05/07/2009 jfs Fixed use of quotes in check_perms (Savannah bug #26479)
    # 08/14/2003 jfs Added OUTPUTMETHOD to dependancies
    # 05/01/2003 jfs Fixed dependancies
    # 11/05/2002 jfs Small fix to prevent shell expansion to ocur while testing
    #                filenames (discovered due a broken self-made package that
    #                created a /usr/bin/*config directory, ouch.)
    # ??/??/1999 ARC  Changed echo to message and limited giving warnings if owner
    #               of files is 'bin'
    # 04/28/1993 dls  Added '-L' option to 'ls' so we get permissions from
    #               file instead of symbolic link.
    #
    #-----------------------------------------------------------------------------
    #
    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 GET_MOUNTS GREP LS SGREP OUTPUTMETHOD || exit 1
      haveallfiles FILE_ACL BASEDIR WORKDIR || exit 1
      haveallvars TESTLINK || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    
    echo
    echo "# Performing check of system file permissions..."
    
    haveallcmds AWK GET_MOUNTS GREP LS SGREP OUTPUTMETHOD || exit 1
    haveallfiles FILE_ACL WORKDIR BASEDIR ||
    haveallvars TESTLINK || exit 1
    
    [ ! -f "$FILE_ACL" ] && {
      message CONFIG perm004c "" "No file permission database."
      exit 1
    }
    
    display_what_access()
    {
      file=$1
      onoff=$2
      who=$3
      what=$4
    
      access=$what
    
      if [ "$access" = 'X' ]; then
        access='execute'
        [ -d "$file" ] && access='search'
      fi
    
      [ "$onoff" = '0' ] && {
        message $level perm001w "" "$file should not have $who $access."
      }
    }
               
    check_file()
    {
      [ "$suid" != "$rsuid" -a "$rsuid" = '1' ] && {
        message ALERT perm023a "" "$filename is setuid to \`$rowner'."
        changelog "ALERT : chmod : u-s : $filename"
      }
      [ "$sgid" != "$rsgid" -a "$rsgid" = '1' ] && {
        message ALERT perm024a "" "$filename is setgid to \`$rgroup'."
        changelog "ALERT : chmod : g-s : $filename"
      }
      [ "$owner" != '.' -a "$owner" != "$rowner"  -a "$rowner" != "bin" ] && {
        message $level perm$ownmid$m "" "The owner of $filename should be $owner (owned by $rowner)."
        changelog "$level : chown : $owner : $filename"
      }
    
      [ "$group" != '.' -a "$group" != "$rgroup" ] && {
        message $level perm$grpmid$m "" "The group owner of $filename should be $group."
        changelog "$level : chgrp : $group : $filename"
      }
    
      [ "$ur" != '.' -a "$ur" != "$rur" ] && {
        display_what_access $filename $ur owner read
        changelog "$level : chmod : u-r : $filename"
      }
      [ "$uw" != '.' -a "$uw" != "$ruw" ] && {
        display_what_access $filename $uw owner write
        changelog "$level : chmod : u-w : $filename"
      }
      [ "$ux" != '.' -a "$ux" != "$rux" ] && {
        display_what_access $filename $ux owner X
        changelog "$level : chmod : u-x : $filename"
      }
        
      [ "$gr" != '.' -a "$gr" != "$rgr" ] && {
        display_what_access $filename $gr group read
        changelog "$level : chmod : g-r : $filename"
      }
      [ "$gw" != '.' -a "$gw" != "$rgw" ] && {
        display_what_access $filename $gw group write
        changelog "$level : chmod : g-w : $filename"
      }
      [ "$gx" != '.' -a "$gx" != "$rgx" ] && {
        display_what_access $filename $gx group X
        changelog "$level : chmod : g-x : $filename"
      }
        
      [ "$or" != '.' -a "$or" != "$ror" ] && {
        display_what_access $filename $or world read
        changelog "$level : chmod : o-r : $filename"
      }
      [ "$ow" != '.' -a "$ow" != "$row" ] && {
        display_what_access $filename $ow world write
        changelog "$level : chmod : o-w : $filename"
      }
      [ "$ox" != '.' -a "$ox" != "$rox" ] && {
        display_what_access $filename $ox world X
        changelog "$level : chmod : o-x : $filename"
      }
    }
    
    {
      $GREP -v '^#' $FILE_ACL |
      while read file owner group suid sgid ur uw ux gr gw gx or ow ox lvl ownmid grpmid prmmid
      do
        if [ "$lvl" = 'A' ]; then
          level='ALERT'
          m='a'
        elif [ "$lvl" = 'F' ]; then
          level='FAIL'
          m='f'
        else
          level='WARN'
          m='w'
        fi
        
        getpermit $file |
        while read filename rowner rgroup rur ruw rux rgr rgw rgx ror row rox rsuid rsgid rstk
        do
          [ ! $TESTLINK "$filename" ] && [ -f "$filename" -o -d "$filename" ] &&
          if [ "$file" = "$filename" ]; then
    	check_file "$filename"
          else
    	$SGREP "^$filename[ 	]" $FILE_ACL 2>/dev/null || 
    	check_file "$filename" 
          fi
        done
      done
    
      saveifs=$IFS
    
      haveallcmds GET_MOUNTS && {  
        $GET_MOUNTS local all |
        while read mtpoint fstype fsdevice rdevice
        do
          for fsdev in $fsdevice $rdevice
          do
    	[ -n "$fsdev" -a \( -b $fsdev -o -c $fsdev \) ] && {
    	  getpermit $fsdev |
    	  {
    	    read _f owner group ur uw ux gr gw gx or ow ox suid sgid stk
    
    	    [ "$owner" != 'root' ] && {
    	      message WARN perm022w "" "Disk device $fsdev not owned by root (owned by $owner)."
    	      changelog "WARN : chown : root : $fsdev "
    	    }
    	
    	    [ "$or$ow" != '00' ] && {
    	      perm=
    	      [ "$or" = '1' ] && {
    		perm='read'
    		change='o-r'
    	      }
    	      [ "$ow" = '1' ] && {
    		perm='write'
    		change='o-w'
    	      }
    	      [ "$or$ow" = '11' ] && {
    		perm='read/write'
    		change='o-rw'
    	      }
    	      message WARN perm020w "" "Disk device $fsdev has world $perm access."
    	      changelog "WARN : chmod : $change : $fsdev"
    	    }
    #TODO: In Debian GNU/Linux disk group is created to access /dev/hd*
    	    [ "$gr$gw" != '00' ] && 
    #NOTE: In HP-UX you could add also (contributed by Bob Hall
    # [ "$group" != 'sys' ] && 
    	    [ "$group" != "disk" ] && {
    	      perm=
    	      [ "$gr" = '1' ] && {
    		perm='read'
    		change='g-r'
    	      }
    	      [ "$gw" = '1' ] && {
    		perm='write'
    		change='g-w'
    	      }
    	      [ "$gr$gw" = '11' ] && {
    		perm='read/write'
    		change='g-rw'
    	      }
    	      message WARN perm021w "" "Disk device $fsdev has $perm access for group $group."
    	      changelog "WARN : chmod : $change : $fsdev"
    	    }
    	  }
    	}
          done
        done
      }
    } |
    $OUTPUTMETHOD
    #
    exit 0
    tiger-3.2.3/scripts/check_printcap0000755000175000017500000000775110664614177015677 0ustar  pacopaco#!/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.
    #
    # check_printcap - 06/28/93
    #
    # Checks the printer control file.
    #
    # 06/22/2007 - jfs   - Skip this test if CUPS is installed (Debian bug #420487)
    # 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
    #
    #-----------------------------------------------------------------------------
    #
    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
    
    # 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 src infile || exit 1
      haveallvars TESTLINK HOSTNAME
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    
    [ -x /usr/sbin/cupsd ] && exit 0
    
    echo
    echo "# Checking printer configuration files..."
    
    haveallcmds AWK CAT LS SED || exit 1
    haveallfiles BASEDIR WORKDIR src infile || exit 1
    
    saveifs=$IFS
    realpath="$REALPATH -d"
    [ ! -n "$REALPATH" -o ! $TESTEXEC "$REALPATH" ] && realpath=echo
    
    dirname()
    {
      _path="$1"
      echo "$_path" |
      $SED -e 's%/[^/][^/]*/*$%/%'
    }
    
    check_filter()
    {
      __pr="$1"
      __f="$2"
      __fcmd="$3"
      __source="$4"
    
      set X $__fcmd
      shift
      pass=1
      for __comp
      do
        case "$__comp" in
          /*/*) {
    	if [ ! -f "$__comp" -a ! -d "$__comp" ]; then
    	  [ $pass -eq 1 ] && {
    	    message INFO xxxx "" "Printer control $__f's file \`$__comp' for printer \`$__pr' does not exist."
    	    echo
    	  }
    	  
    	  while [ -n "$__comp" -a \( ! -f "$__comp" -a ! -d "$__comp" \) ]
    	  do
    	    __comp="`dirname \"$__comp\"`"
    	  done
    	fi
    
    	[ -n "$__comp" ] && {
    	  lgetpermit "$__comp" |
    	  pathmsg pcap002w pcap003w "$__comp" root "Print control \`$__f' for printer \`$__pr' uses" ""
    
    	  [ ! -d "$__comp" -a "$ux" = '1' ] && {
    	    [ -n "$TigerCheckEmbedded" ] && {
    	      echo "$__comp $__source" >> $TigerCheckEmbedded
    	    }
    	  }
    	}
          }
          ;;
        esac
        pass=2
      done
    }
    
    $SED -e 's/^#.*$//' -e '/^$/d' $infile |
    $AWK '
    /\\$/ {printf("%s", substr($0, 1, length($0)-1));}
    !/\\$/
    ' |
    $SED -e 's/[ 	]*=[ 	]*/=/g' |
    while read entry
    do
      IFS=:
      set X $entry
      IFS=$saveifs
      shift
      pnames="$1"
      shift
      printer="`echo \"$pnames\" | $SED -e 's/^\([^|]*\)|.*$/\1/'`"
      for setting
      do
        case "$setting" in
          *=*) {
    	IFS="="
    	set X $setting
    	IFS=$saveifs
    	shift
    	keyword=$1
    	shift
    	value="$*"
    	case "$keyword" in
    	  ff|sf) ;;
              lp);;
              ?f) check_filter "$printer" "$keyword" "$value" "$src";;
               *) case "$value" in
    	        /*/*) check_filter "$printer" "$keyword" "$value" "$src";;
                  esac;;
            esac
          };;
        esac
      done
    done
    tiger-3.2.3/scripts/check_rhosts0000755000175000017500000002332010241360754015355 0ustar  pacopaco#!/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.
    #
    # check_rhosts - 06/14/93
    #
    # 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)
    # 08/08/2003 jfs Improved temporary file creation.
    # 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.
    #
    #-----------------------------------------------------------------------------
    #
    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 CAT EXPR GEN_PASSWD_SETS HEAD JOIN LS RM SED OUTPUTMETHOD || exit 1
      haveallfiles BASEDIR WORKDIR || exit 1
      haveallvars TESTLINK HOSTNAME || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    echo
    echo "# Performing check of /etc/hosts.equiv and .rhosts files..."
    
    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
    
    check_entry()
    {
      user="$1"
      rhost="$2"
      ruser="$3"
      plus=0
    
      if [ "$rhost" = '+' ]; then
        if [ "$user" = '+' ]; then
          message FAIL rcmd001f "" "User $user's .rhosts file has a '+ +' entry."
        else
          message FAIL rcmd002f "" "User $user's .rhosts file has a '+' for host field."
        fi
      fi
      if [ -n "$RHOST_SITES" ]; then
        note=1
        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
        message WARN rcmd004w "" "User $user's .rhosts file has a '+' for user (host $rhost)."
      elif [ ! -n "$ruser" ]; then
        message INFO rcmd005i "" "User $user's .rhosts file has empty user field for host \`$rhost'."
      fi
    # Linux allows comments in rhosts files
      [ "$OS" != "Linux" ] &&
      case "$rhost" in
        '#'*) {
          message WARN rcmd013w "" "User $user's .rhosts file contains an attempted comment line"
        }
        ;;
      esac
    }
    
    scan_file()
    {
      user="$1"
      file="$2"
         
      # added #+@_ which should be valid characters.
      $AWK '/^[#\+@_a-zA-Z0-9\.\-\\\t ]*$/ {print}' < "$file" | 
            {
              while read rhost ruser
              do
                check_entry "$user" "$rhost" "$ruser"
              done
            }
        
      # added #+@_ which should be valid characters.
      $AWK 'BEGIN {count = 0} !/^[#\+@_a-zA-Z0-9\.\-\\\t ]*$/ {count += 1} 
      END {print count}' < "$file" |
              {
                read count
                if [ "$count" -ne 0 ];then
                  message WARN rcmd015w "" "$count lines of user $user's .rhosts file were not checked because of invalid characters."
                fi
              }
    
    }
    
    check_file()
    {
      user=$1
      file=$2
      getpermit $file | {
        read _f owner group ur uw ux gr gw gx or ow ox suid sgid stk
    
        rtxt=
        wtxt=
        case "$gr$or" in
          00) rtxt='';;
          01) rtxt='world';;
          10) rtxt="group \`$group'";;
          11) rtxt="group \`$group' and world";;
          *) rtxt='???';;
        esac
    
        case "$gw$ow" in
          00) wtxt='';;
          01) wtxt='world';;
          10) wtxt="group \`$group'";;
          11) wtxt="group \`$group' and world";;
          *) wtxt='???';;
        esac
    
        [ -n "$rtxt$wtxt" ] && {
          [ -n "$rtxt" ] && rtxt="$rtxt read"
          [ -n "$wtxt" ] && wtxt="$wtxt write"
          sep=
          [ -n "$rtxt" -a -n "$wtxt" ] && sep='and'
          message WARN rcmd006w "" "User $user's .rhosts file has $rtxt$sep$wtxt access."
        }
      }
    }
    
    process_passwd()
    {
      while read user homedir host
      do
    # Root is no longer skipped since it's rhosts file is also sensible
    #   [ "$homedir" = '/' -a "$user" != 'root' ] && continue
    
        [ "$host" = "$HOSTNAME" ] && {
          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"
    	  else
    	    message INFO read001i "" "Can not open $user's .rhosts file."
    	  fi
    	}
          elif [ -d "$homedir/.rhosts" ]; then
    	message ALERT rcmd008a "" "User $user's .rhosts file is a directory:"
    	$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"
    	else
    	  message INFO read001i "" "Can not open $user's .rhosts file."
    	fi
          fi
        }
      done
    }
    
    file_rhosts ()
    {
      while read user userid homedir
      do
        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}'`
    # 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)"
    	    }
        fi
      done
    }
    
    saveifs="$IFS"
    
    # By default, a warning will be issued for any host in any .rhosts file.
    rhostcase='*) note=1;;'
    
    [ -n "$RHOST_SITES" ] && {
      rhostcase=
      set -f
      for site in $RHOST_SITES
      do
        rhostcase="$rhostcase ${site}) note=0;;"
      done
      set +f
    }
    
    {
      [ -s /etc/hosts.equiv ] && {
        {
          hosts=
          netgroup=
          line=1
          while read entry
          do
    	case $entry in
    	  +@*) netgroup="${netgroup}`echo $entry | $SED -e 's/^+@//'` ";;
    	  +|'+ '*) message FAIL rcmd009f "" "/etc/hosts.equiv contains '+'.";;
    	  -*) [ $line -eq 1 -a "$HASHOSTEQUIVBUG" != 'N' ] && {
    	    message FAIL rcmd011f "" "First line of hosts.equiv has leading '-'."
    	    }
    	  ;;
    	  '#'*) {
    	    # Linux allows comments in rhosts files
    	    [ "$OS" != "Linux" ] && {
    	    message WARN rcmd013w "" "/etc/hosts.equiv contains an attempted comment line"
    	    hosts="$hosts
    $entry"
    	    }
    	  }
    	  ;;
    	  *) hosts="$hosts
    $entry";;
    	esac
    	line=`$EXPR $line + 1`
          done
          
          [ -n "$netgroup" ] && {
    	hosts="$hosts `$BASEDIR/util/getnetgroup $netgroup`"
          }
          [ -n "$hosts" ] && {
    	message WARN rcmd010w "" "/etc/hosts.equiv contains the following hosts:"
    	wildcard=0
    	saveifs=$IFS
    	IFS="
    "
    	for host in $hosts
    	do
    	  IFS=$saveifs
    	  if [ ! -n "$host" ]; then
    	    :
    	  elif [ "$host" = '*' ]; then
    	    wildcard=1
    	    echo " (netgroup wildcard)"
    	  else
    	    case "$host" in
    	      ' '*) echo "$host";;
    	      *) echo " $host";;
    	    esac
    	  fi
    	  IFS="
    "
            done
            IFS=$saveifs
    	[ $wildcard -eq 1 ] &&
    	  message FAIL rcmd012f "" "Wildcard netgroup member (,,)."
          }
        } < /etc/hosts.equiv
      }
    
      {
        if [ -n "$Tiger_PasswdFiles" ]; then
          [ -f $Tiger_PasswdFiles ] && $CAT "$Tiger_PasswdFiles" > $WORKDIR/pass.list.$$
        else
          $GEN_PASSWD_SETS $WORKDIR/pass.list.$$
        fi
      }
    
      [ -r $WORKDIR/pass.list.$$ ] && {
      while read passwd_set
      do
        echo
        echo "# Checking accounts from `$CAT $passwd_set.src`..."
      
        $AWK -F: '{print $1, $6}' $passwd_set |
        $BASEDIR/util/${GETFSHOST:=getfs-std} > $WORKDIR/home.hosts.$$
        $AWK -F: '{ printf("%s %s\n", $1, $6); }' $passwd_set |
        $JOIN -o 1.1 1.2 2.3 - $WORKDIR/home.hosts.$$ |
        process_passwd
    
        $AWK -F: '{print $1, $3, $6}' $passwd_set |
        file_rhosts
    
        [ ! -n "$Tiger_PasswdFiles" ] && delete $passwd_set $passwd_set.src
        delete $WORKDIR/home.hosts.$$
      done < $WORKDIR/pass.list.$$
      }
    
      delete $WORKDIR/pass.list.$$
    } |
    $OUTPUTMETHOD
    
    #
    exit 0
    tiger-3.2.3/scripts/check_root0000755000175000017500000001300510223076070015010 0ustar  pacopaco#!/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.
    #
    # 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
    # 08/28/2003 jfs Fixed syntax error
    # 08/14/2003 jfs Implemented some of ARSC changes done in Tara 3.0.3, 
    #            including a bugfix and checks for SSH PermitRootLogin's
    #            (although changes have been implemented to allow for OS
    #            and site configuration of the SSHD_CONFIG file location)
    # 05/26/2003 jfs Fixed calls to test (worked in Linux but not in other OS due
    #     to -n not being implicit)
    # 07/25/2002 jfs  Changed TigerInstallDir to .
    # 05/30/1999  Added feature to check for no console root logins
    #
    #-----------------------------------------------------------------------------
    #
    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 GREP CAT GEN_PASSWD_SETS JOIN LS RM || exit 1
      haveallfiles BASEDIR WORKDIR || exit 1
      haveallvars TESTLINK HOSTNAME || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    echo
    echo "# Performing common access checks for root (in /etc/default/login, /securetty, and /etc/ttytab..."
    
    haveallcmds AWK GREP CAT GEN_PASSWD_SETS JOIN LS RM || exit 1
    haveallfiles BASEDIR WORKDIR || exit 1
    
    if [ -f /etc/default/login ]; then
      if [ -z "`$GREP '^CONSOLE' /etc/default/login`" ]; then
         message WARN root001w "" "Remote root login allowed in /etc/default/login."
         echo
      fi
    fi
    
    if [ -f /etc/securetty ]; then
      if [ -n "`$GREP '^ttyp' /etc/securetty`" ]; then
         message WARN root001w "" "Remote root login allowed in /etc/securetty"
         echo
      fi
    fi   
    
    if [ -f /etc/ttytab ]; then
      if [ -n "`$GREP ' secure' /etc/ttytab | $GREP -v console`" ]; then
         message WARN root001w "" "Remote root login allowed in /etc/ttytab"
         echo
      fi
    fi   
    if [ -f /etc/security/access.conf ]; then
      if [ -n "`$GREP '^+:root' /etc/security/access.conf`" ]; then
         message WARN root001w "" "Remote root login allowed in /etc/security/access.conf"
         echo
      fi
    fi
    if [ -f /etc/ftpusers ]; then
      if [ -z "`$GREP '^root' /etc/ftpusers`" ]; then
         message WARN root002w "" "Remote root access allowed in /etc/ftpusers"
         echo
      fi
    fi
    if [ -f /etc/X11/xdm/Xresources ]; then
      if [ "`$GREP ^xlogin.Login.allowRootLogin /etc/X11/xdm/Xresources | $CUT -d : -f 2`" = "true" ]; then
         message WARN root004w "" "Root access allowed for xdm"
         echo
      fi
    fi
    if [ -f /etc/X11/gdm/gdm.conf ]; then
      [ "`$GREP ^AllowRoot /etc/X11/gdm/gdm.conf | $CUT -d = -f 2`" = "true" ] || \
      [ "`$GREP ^AllowRemoteRoot /etc/X11/gdm/gdm.conf | $CUT -d = -f 2`" = "true" ] &&
      {
         message WARN root004w "" "Root access allowed for gdm"
         echo
      }
    fi
    
    [ -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" ] && {
    if [ -f /usr/local/etc/sshd_config ]; then
      SSHD_CONFIG=/usr/local/etc/sshd_config
    elif [ -f /etc/sshd_config ]; then
      SSHD_CONFIG=/etc/sshd_config
    elif [ -f /etc/ssh2/sshd2_config ]; then
      SSHD_CONFIG=/etc/ssh2/sshd2_config
    elif [ -f /etc/ssh/sshd_config ]; then
      SSHD_CONFIG=/etc/ssh/sshd_config
    fi
    }
    
    [ -f "$SSHD_CONFIG" ] && {
    rootssh=`$GREP PermitRootLogin $SSHD_CONFIG | $GREP -v '^#'`
    if [ -n "$rootssh" ]; then
        if [ "`echo $rootssh | $GREP -i yes`" ]; then
          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 $SSHD_CONFIG"
        fi
    fi
    }
    
    exit 0
    tiger-3.2.3/scripts/check_rootdir0000755000175000017500000000701610217665123015522 0ustar  pacopaco#!/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.
    #
    # check_rootdir - 11/10/2001
    #
    # check_rootdir - 07/25/2002 - jfs
    #       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)
    #       
    #
    #-----------------------------------------------------------------------------
    #
    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 CAT SORT AWK LS RM GETFS GREP AWK || exit 1
      haveallfiles BASEDIR WORKDIR || exit 1
      haveallvars TESTLINK HOSTNAME || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    
    echo
    echo "# Performing check of root directory..."
    
    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}'`
    fstype=`$GETFS | $GREP " / " | $AWK -F " " '{ print $5;}'`
    [ $inode != 2 ] && [ "$fstype" = "ext2" -o "$fstype" = "ext3" ] &&
       message FAIL rootdir001f "" "Root directory on incorrect inode"
    
    
    # Verify the permissions on the root directory is standard
    
    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.3/scripts/check_rootkit0000655000175000017500000001401110664614260015525 0ustar  pacopaco#!/bin/sh
    #
    #     tiger - A UN*X security checking system
    #     Copyright (C) 2003 Advanced Research Corporation
    #
    #    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_rootkit -  05/15/2002
    # 
    # 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.
    #
    # Note: This script does not use the configured LS and FIND but, instead
    # uses those defined in the path
    #
    # DATE (MM/DD/YYYY) 	NAME 	DESCRIPTION_OF_CHANGES
    # 11/30/2006            jfs     Send stderr output of chkrootkit to /dev/null 
    #                               to avoid the 'warning, got bogus unix line'
    #                               messages that netstat might output (See Debian
    #                               Bug 223847)
    # 08/31/2006            jfs     Fix typo in script
    # 08/30/2006            jfs     Introduce Tiger_CHKROOTKIT_ARGS so that 
    #                               admins can ajust the behaviour of CHKROOTKIT
    #                               Output the lines of infected errors
    # 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
    # 05/15/2002            ARSC	Initial version
    #
    #-----------------------------------------------------------------------------
    # TODO
    # - Chkrootkit messages could be parsed more thoroughly
    #-----------------------------------------------------------------------------
    #
    # This is the directory Tiger is installed on
    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 RM || exit 1
      haveallfiles BASEDIR WORKDIR || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    echo
    echo "# Performing check for rookits..."
    
    haveallcmds RM || exit 1
    haveallfiles BASEDIR WORKDIR || exit 1
    
    FINDFLAG="OK"
    LSFLAG="OK"
    BADFIND=""
    BADLS=""
    STRINGS="dummy defs divine S11klog ... .._ ..BK war war1 war2 brscan sbh rstv"
    STRINGS="$STRINGS lsniff shadow illusion cl mirkforce buca smurf psybnc"
    STRINGS="$STRINGS lib.a hideme occult tcp.log bnc eggdrop"
    set *=$STRINGS
    shift
    
    while [ -n "$1" ]; do
      LSFLAG="OK"
      FINDFLAG="OK"
      TMP=`echo $1 |sed -e "s/BK/ /g"`
      touch "$WORKDIR/$TMP"
      if [ $? -eq 0 ]; then
        LSTMP=`ls "$WORKDIR/$TMP" 2>/dev/null`
        if [ -z "$LSTMP" ]; then
          LSFLAG="BAD"
          BADLS="$BADLS,$TMP"
        fi
        FINDTMP=`find $WORKDIR -name "$TMP" -print`
        if [ -z "$FINDTMP" ]; then
          FINDFLAG="BAD"
          BADFIND="$BADFIND,$TMP"
        fi
      fi
      if [ -n "$VERBOSE" ]; then
        echo "$TMP $LSFLAG $FINDFLAG"
      fi
      shift
      delete "$WORKDIR/$TMP"
    done
    
    if [ -n "$BADLS" ]; then
      message FAIL rootkit001f "" "ls appears to be a trojan version"
      message ALERT rootkit006a "" "A rootkit seems to be installed in the system"
    fi
    if [ -n "$BADFIND" ]; then
      message FAIL rootkit002f "" "find appears to be a trojan version"
      message ALERT rootkit006a "" "A rootkit seems to be installed in the system"
    fi
    
    # Chkrookit binary location|override + default check
    if [ -z "${Tiger_CHKROOTKIT_LOC_OVERRIDE}" ]
    then
            CHKROOTKIT=`which chkrootkit 2>/dev/null`
    else
            CHKROOTKIT=${Tiger_CHKROOTKIT_LOC_OVERRIDE}
    fi
    # Chkrootkit arguments
    if [ -z "${Tiger_CHKROOTKIT_ARGS}" ]
    then
    # Note: we use the quiet mode to avoid parsing all the lines of 
    # "Searching for..." things
    	Tiger_CHKROOTKIT_ARGS="-q"
    fi
    
    # 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)
    #
    # Send stderr output to /dev/null to avoid the
    # 'warning, got bogus unix line' messages that netstat might output 
    # (See Debian Bug 223847)
    	$CHKROOTKIT $Tiger_CHKROOTKIT_ARGS 2>/dev/null|
    	while read line
    	do
    		case "$line" in 
    		Suspect' 'directory*)
      		message WARN rootkit003w "" "Chkrootkit has detected a suspicious directory"
    		echo $line ;;
    		Possible*)
      		message WARN rootkit004w "" "Chkrootkit has detected a possible rootkit installation"
    		echo $line ;;
    		Warning:' 'Possible*)
      		message WARN rootkit004w "" "Chkrootkit has detected a possible rootkit installation"
    		echo $line ;;
    		Warning:' '*installed)
      		message ALERT rootkit005a "" "Chkrootkit has detected a rootkit installation"
                    message ALERT rootkit006a "" "A rootkit seems to be installed in the system"
    		echo $line ;;
    		INFECTED*)
      		message ALERT rootkit005a "" "Chkrootkit has found a file which seems to be infected because of a rootkit"
                    message ALERT rootkit009a "" "A rootkit seems to be installed in the system"
    		echo $line ;;
    		esac
    
    	done
    }
    exit 0
    tiger-3.2.3/scripts/check_runprocs0000755000175000017500000000627610241404170015710 0ustar  pacopaco#!/bin/sh
    #
    #     tiger - A UN*X security checking system
    #     Copyright (C) 2002, 2003 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_runprocs jfs 12/06/2002
    #        This module will check if the processes configured in tigerrc
    #        are running currently in the system. If any of the processes
    #        is not running  a FAIL: will be issued. 
    #        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='.'
    
    
    #
    # 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 GREP || exit 1
      
      message CONFIG init003c "" "$0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    echo
    echo "# Checking running processes "
    
    haveallcmds PS GREP || exit 1
    
    processes=$Tiger_Running_Procs
    [ -z "$processes" ] && {
    	message ERROR con009e "" "There are no running process configured. Please add the Tiger_Running_Procs variable to tigerrc."
    	exit 1
    }
    
    # TODO: Check if this is portable, 'ps' options tend to vary 
    # amongst UNIX systems (see the ps(1) manpage)
    for proc in $processes
    do
    # 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 state comm command args
    		do
    		   [ "$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."
    	}
    done
    
    exit 0 
    tiger-3.2.3/scripts/check_sendmail0000755000175000017500000001101607756435615015646 0ustar  pacopaco#!/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.
    #
    # check_sendmail - 06/14/93
    #
    # 05/18/2002 jfs Added check on banner (based on Titan's modules/smtpbanner.sh)
    # 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.
    #
    #-----------------------------------------------------------------------------
    #
    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 SENDMAILS AWK LS SED STRINGS || exit 1
      haveallfiles SENDMAILCF BASEDIR WORKDIR || exit 1
      haveallvars TESTLINK HOSTNAME || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    echo
    echo "# Checking sendmail..."
    
    haveallcmds STRINGS GREP SED AWK SORT LS || exit 1
    haveallfiles SENDMAILCF BASEDIR WORKDIR || exit 1
    
    check_date()
    {
      mailer="$1"
      # TODO: Doing 'strings' on the mailer will not work as advertised
      # and might return false positives/negatives. Also, many mailers
      # might provide a /usr/sbin/sendmail which contains that string
      # (exim, for example, does).
    
      if [ -r "$mailer" ]; then
        $STRINGS $mailer |
        $GREP '[0-9][0-9]/[0-9][0-9]/[0-9][0-9]' |
        $SED -e 's%^.* *\([0-9][0-9]*/[0-9][0-9]*/[0-9][0-9]*\).*$%\1%' |
        $AWK -F/ '{
          month=$1;
          day=$2;
          year=$3;
          if(month > 12){
          year=$1;
          month=$2;
          day=$3;
        }
        if(year<100)
        year += 1900;
        if(year<10)
        year += 2000;
        printf("%04d %02d %02d\n", year, month, day);
        }' |
        $SORT -r |
        $SED -e 1q | {
          read year month day
          if [ ! -z $year ]
          then 
          [ "$year" -lt 1993 -o \( "$year" -eq 1993 -a "$month" -lt 10 \) ] && {
    	message WARN misc010w "" "$mailer appears to be older than November 1993 (apparent date $month/$day/$year), and may contain a security vulnerability."
          }
          fi
        }
      else
        message ERROR misc012e "" "Can not read $mailer.  Test skipped."
      fi
    }
    
    {
    if [ -r "$SENDMAILCF" ]; then
      $GREP '^Mprog' $SENDMAILCF |
      $SED -e 's/^.*P=\([^, ]*\).*$/\1/'
    else
      echo "/bin/sh"
    fi
    } |
    {
      read progmailer
    
      usingsmrsh=0
      case "$progmailer" in
        */smrsh) usingsmrsh=1;;
      esac
    
      if [ "$usingsmrsh" = 0 ]; then
        for mailer in $SENDMAILS
        do
          [ -f "$mailer" ] && check_date "$mailer"
        done
      else
        $STRINGS $progmailer |
        $GREP '/[-a-zA-Z0-9_.][-a-zA-Z0-9_./]*' |
        $GREP -v '/.*:/.*' |
        $SED -e 's/[^-a-zA-Z0-9_./]/ /g' |   
        $AWK '{
          for(i=1;i<=NF;i++)
          if(substr($i,1,1) == "/")
          print $i;
        }' |
        $GREP '^/[-/a-zA-Z0-9_.]*$' |
        $GREP -v /bin/sh |
        while read path
        do
          [ -d "$path" ] && {
    	$LS "$path" |
    	while read file
    	do
    	  case "$file" in
    	    sh|csh|perl|uudecode|sed|grep|awk|cat|ksh|bash|tcsh) {
    	      message WARN misc011w "" "Executable \`$file' in 'smrsh' directory \`$path' may create a vulnerability"
    	      }
    	    ;;
    	  esac
    	done
          }
        done
      fi	      
    }
    
    if [ -r "$SENDMAILCF" ]; then
    	version="`$GREP \"^O\ SmtpGreetingMessage=\$j\ Sendmail\ \$v\/\$Z\;\ \$b\" $SENDMAILCF`"
    	[ -n "$version" ] &&
    	      message WARN netw019w "" "Sendmail avertises its version in $SENDMAILCF, current line: $version"
    
    fi
    
    exit 0
    tiger-3.2.3/scripts/check_services0000755000175000017500000001330107756430241015662 0ustar  pacopaco#!/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.
    #
    # check_services - 04/16/2003
    #
    # Check which services are configured in the system (usually in 
    # /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.
    # check_services - 08/08/2003 - jfs
    #    Created securely the $tmpservices file, otherwise, if the directory
    #    $WORKDIR is not secure it could be exploited as a race condition.
    # check_services - 04/23/2003 - jfs
    #     Fixed requirements 
    # check_services - 04/16/2003 - jfs
    #     Separated check_services from check_inetd
    #     Modified script so that it does not FAIL on services which are 
    #     already duplicated in the OS service file.
    # check_inetd - 05/27/2002 - jfs
    #     Changed TigerInstallDir to .
    # check_inetd - 12/13/01 - jfs
    #     Fixes to avoid false positives 
    # check_inetd - 04/20/99
    #     Portions corrected y Advanced Research Corporation (R)
    #     
    #-----------------------------------------------------------------------------
    #
    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 SED AWK CAT GEN_SERVICES_SETS GREP JOIN SORT RM OUTPUTMETHOD || exit 1
      haveallfiles BASEDIR WORKDIR SERVICESFILE || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    echo
    echo "# Performing check of 'services' ..."
    
    
    haveallcmds SED AWK CAT GEN_SERVICES_SETS GREP JOIN SORT RM OUTPUTMETHOD || exit 1
    haveallfiles BASEDIR WORKDIR SERVICESFILE || exit 1
    
    saveifs=$IFS
    
    tmpservices=$WORKDIR/sec.$$ts
    safe_temp "$tmpservices"
    trap 'delete $tmpservices ; exit 1' 1 2 3 15
    
    checkservices ()
    {
      services="$1"
    
      # Check that these services have the correct port assigned.
      while read currservice currport
      do
        [ ! -z "$currport" ] && {
        matches="`$AWK '{ print $2 \" \" $1}' $services | $GREP \"^$currport \" | $AWK '{ print $1 }'`"
        IFS=/
        set $currport
        IFS=$saveifs
        currportnum=$1
        serviceok="N"
    # Note: The message is not sent and the serviceok variable is used
    # so that problems with repeated entries do not lead to false positives
    # (jfs, debian bug #123730)
        for port in $matches
        do
          IFS=/
          set $port
          IFS=$saveifs
          if [ "$1" = "$currportnum" ]; then
    	      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
        }
      done < $SERVICESFILE
    
      # Check that these services are not set for any other services.
      while read currservice currport
      do 
        matches=`$GREP " $currport$" $services | $AWK '{ print $1 }'`
        for service in $matches
        do
          if [ $service != $currservice ]; then
            origmatch=`$GREP " $currport$" $SERVICESFILE | $AWK '{ print $1 }' | $GREP $service`
    	[ -z "$origmatch" ] && 
    		message WARN inet003w "" "The port for service $currservice is also assigned to service $service."
          fi
        done
      done < $SERVICESFILE
    
      # Print out any other entries that have been added
      $AWK '{ print $1 " " $2 }' $services |
      $GREP -v '^#' | $GREP -v '^ $' | $SORT |
      while read currservice currport
      do
    	matchescount=""
    	matches=`$AWK '{ print $1 " " $2 }' $SERVICESFILE | $GREP " $currport$" | $AWK '{ print $1 }'`
    	for service in $matches
    	do
    	if [ $service = $currservice ]; then
    		matchescount="$matchescount."
    	fi
      done
      if [ "x$matchescount" = "x" ]; then
        message INFO inet004i "" "$currservice is $currport (local addition)."
      fi
      done
    }
    
    
    realpath="$REALPATH -d"
    
    [ ! -n "$REALPATH" -o ! $TESTEXEC "$REALPATH" ] && realpath="echo"
    
    {
      haveallcmds GEN_SERVICES_SETS &&
      haveallfiles SERVICESFILE && {
        $GEN_SERVICES_SETS |
        while read services_set
        do
          echo "# Checking services from `$CAT $services_set.src`."
    
          $AWK '!/^#/ { print $1, $2 }' $services_set |
          $SED -e '/^$/d' |
          $SORT -u > $tmpservices
    
          checkservices $tmpservices
    
          delete $services_set $services_set.src $tmpservices
        done
      }
    
    
    } |
    $OUTPUTMETHOD
    
    exit 0
    tiger-3.2.3/scripts/check_signatures0000755000175000017500000000740210223075321016213 0ustar  pacopaco#!/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.
    #
    # check_signatures - 06/14/93
    #
    # 08/14/2003 jfs Added OUTPUTMETHOD and SNEFRU to dependancies
    # 04/28/93 dls  Added '-L' option to 'ls' so that we get the permissions
    #               from the file instead of the symbolic link.
    #
    #-----------------------------------------------------------------------------
    #
    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 CAT FMT GREP LS RM SED SORT SNEFRU OUTPUTMETHOD || exit 1
      haveallfiles BASEDIR WORKDIR SIGNATURE_FILE || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    
    echo
    echo "# Performing signature check of system binaries..."
    
    haveallcmds AWK CAT FMT GREP LS RM SED SORT SNEFRU OUTPUTMETHOD || exit 1
    haveallfiles BASEDIR SIGNATURE_FILE WORKDIR || exit 1
    
    $SED -e '/^#/d' -e '/^[ 	]*$/d' $SIGNATURE_FILE |
    $AWK '{print $3}' |
    $SORT -u |
    while read file
    do
      if [ -r $file ]; then
        $GREP -v '^#' $SIGNATURE_FILE |
        $GREP "[ 	]$file[ 	]" | {
          located=0
          versions=""
          while read flag msgid fl p1 p2 p3 p4 p5 p6 p7 p8 comment
          do
    	loc_signature=
    	case "$p1$p2$p3$p4$p5$p6$p7$p8" in
    	  *[!0-9a-f]*) {
    	    std_signature="$p1"
    	    comment="$p2 $p3 $p4 $p5 $p6 $p7 $p8 $comment"
    	    [ -n "$MD5" ] && loc_signature="`$MD5 < $file`"
    	  }
    	  ;;
    	  *) {
    	    std_signature=" $p1 $p2 $p3 $p4 $p5 $p6 $p7 $p8"
    	    [ -n "$SNEFRU" ] && loc_signature="`$SNEFRU < $file`"
    	  }
    	  ;;
    	esac
    
    	[ -n "$loc_signature" ] && {
    	  case $flag in
    	    Y)
    	    versions="$versions>>>>>> $comment
    "
                [ "$loc_signature" = "$std_signature" ] && located=1;;
    	    N)
    	    [ "$loc_signature" = "$std_signature" ] && {
    	      perm="`$LS $LSLINK -l $file | $AWK '{print $1}'`"
    	      message ALERT $msgid "" "Binary $file ($perm) $comment."
    	      located=1
    	    }
    	    ;;
    	    O)
    	    versions="$versions>>>>>> $comment
    "
                perm="`$LS -l $file | $AWK '{print $1}'`"
                [ "$loc_signature" = "$std_signature" ] && {
    	      message WARN $msgid "" "$file ($perm) is from $comment"
    	      located=1
    	    }
    	    ;;
    	  esac
    	}
            [ "$located" = 1 ] && break
          done
    
          [ "$located" = "0" -a -n "$versions" ] && {
    	perm="`$LS -l $file | $AWK '{print $1}'`"
    	message WARN sig004w "$versions" "None of the following versions of $file ($perm) matched the $file on this machine."
          }
        }
      elif [ -f $file ]; then
        message ERROR sig005e "" "Unable to read binary $file.  Can not perform signature check."
      fi
    done |
    $OUTPUTMETHOD
    
    #
    exit 0
    tiger-3.2.3/scripts/check_ssh0000755000175000017500000001260510045247304014631 0ustar  pacopaco#!/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_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 
    #             SSHD_CONFIG which might not be configured in some systems
    # 06/30/2003 - rbradetich@uswest.net - first release
    #
    # TODO:
    #   - Add additional directives that can be checked.
    #   - Figure out a clever method for integrating the default checks with the
    #     normal checks.
    #   - Currently suited for OpenSSH needs to be tested with other SSH daemons
    #-----------------------------------------------------------------------------
    #
    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
    }
    
    #------------------------------------------------------------------------
    
    echo
    echo "# Checking sshd_config configuration files..."
    
    haveallfiles BASEDIR || exit 1
    
    #
    # Parse the Protocol line and verify only allowed protocols are specified.
    # Return 0 if the protocol is not in the approved protocol list, otherwise
    # return 1.
    #
    parse_Protocol()
    {
    	line=$1
    
    	[ -z "$Tiger_SSH_Protocol" ] && return 1
    	while [ -n "$line" ]
    	do
    		proto=${line%%,*}
    		line=${line##${proto}}
    		line=${line##,}
    
    		eval "case \"$proto\" in
    			$Tiger_SSH_Protocol)
    				;;
    			*)
    				return 0
    				;;
    		esac"
    	done
    	return 1
    }
    
    #
    # Generic parsing routine for SSH Daemon directivies. 
    # Return 0 if the value is not in the approved list, otherwise
    # return 1.
    #
    parse_directive()
    {
    	value=$1
    	list=$2
    
    	[ -z "$list" ] && return 1
    	eval "case \"$value\" in
    		$list)
    			return 1
    			;;
    		*)
    			return 0
    			;;
    	esac"
    }
    
    #
    # Parse the specified sshd_config file.
    #
    parse_sshd_config_file()
    {
    	# Declare some variables to see if specified attributes are specified
    	# or if we need to check the defaults.
    	found_Protocol=0
    	found_RhostsAuthentication=0
    	found_PasswordAuthentication=0
    
    	while read line
    	do
    		line=${line%%\#*}
    		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.
    	[ $found_Protocol = 0 ] && parse_Protocol "2,1" && {
    		message WARN ssh001w "" "Protocol $proto is enabled in $file"
    	}
    	[ $found_RhostsAuthentication = 0 ] && parse_directive "no" $Tiger_SSH_RhostsAuthentication && {
    		message WARN ssh003w "" "The RhostsAuthentication directive in $1 is set to the unapproved default value: no."
    	}
    	[ $found_PasswordAuthentication = 0 ] && parse_directive "yes" $Tiger_SSH_PasswordAuthentication && {
    		message WARN ssh004w "" "The PasswordAuthentication directive in $1 is set to the unapproved defult value: yes."
    	}
    }
    
    # If SSHD_CONFIG is not defined we use some sane values
    [ -z "$SSHD_CONFIG" ] && {
    if [ -f /usr/local/etc/sshd_config ]; then
      SSHD_CONFIG=/usr/local/etc/sshd_config
    elif [ -f /etc/sshd_config ]; then
      SSHD_CONFIG=/etc/sshd_config
    elif [ -f /etc/ssh2/sshd2_config ]; then
      SSHD_CONFIG=/etc/ssh2/sshd2_config
    elif [ -f /etc/ssh/sshd_config ]; then
      SSHD_CONFIG=/etc/ssh/sshd_config
    fi
    }
    
    # Main loop, check all the specified sshd_config files.
    if [ -n "$SSHD_CONFIG" ] 
    then
    	for file in $SSHD_CONFIG
    	do
    		[ -r "$file" ] && parse_sshd_config_file $file
    	done
    else
    	message FAIL ssh005w "" "Cannot find a configuration file for SSH."
    fi
    
    exit 0
    tiger-3.2.3/scripts/check_system0000755000175000017500000000552710217661040015363 0ustar  pacopaco#!/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.
    #
    # check_system - 06/15/93
    #
    #-----------------------------------------------------------------------------
    #
    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' ] && {
      haveallvars TESTEXEC || exit 1
      haveallcmds GREP LS || exit 1
      haveallfiles BASEDIR CONFIG_DIR SCRIPTDIR || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    echo
    echo "# Performing system specific checks..."
    
    haveallvars TESTEXEC || exit 1
    haveallcmds GREP LS || exit 1
    haveallfiles BASEDIR CONFIG_DIR SCRIPTDIR || exit 1
    
    runtable()
    {
      $GREP -v '^#' |
      while read script
      do
        case "$script" in
          /*)
    	if [ $TESTEXEC $script ]; then
    	  echo "# Running '$script'..."
    	  $script
    	else
    	  echo "--ERROR-- [misc005e] Can't find '$script'..."
    	fi
            ;;
          *)
    	if [ $TESTEXEC $CONFIG_DIR/$script ]; then
    	  echo "# Running '$CONFIG_DIR/$script'..."
    	  $CONFIG_DIR/$script
    	elif [ $TESTEXEC $SCRIPTDIR/$script ]; then
    	  echo "# Running '$SCRIPTDIR/$script'..."
    	  $SCRIPTDIR/$script
    	else
    	  echo "--ERROR-- [misc005e] Can't find $script'..."
    	fi
            ;;
        esac
      done
    }
    
    for dir in $OS/$REL/$REV/$ARCH $OS/$REL/$REV $OS/$REL $OS
    do
      [ $TESTEXEC $BASEDIR/systems/$dir/check ] && {
        echo "# Performing checks for $dir..."
        $BASEDIR/systems/$dir/check
      }
    done
    
    for dir in .. $OS/$REL/$REV/$ARCH $OS/$REL/$REV $OS/$REL $OS
    do
      [ -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.3/scripts/check_tcpd0000755000175000017500000001565407744462665015022 0ustar  pacopaco#!/bin/sh
    #
    #     tiger - A UN*X security checking system
    #
    #     Copyright (C) 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_tcpd - 26/05/2002
    #
    # Tests for the existance of tcp-wrappers and changes in their configuration 
    # 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
    #     if TCPD is available. Preliminary code for XINETD. Also check for
    #     the hosts.allow and hosts.deny file permissions.
    # check_tcpd - 08/08/2003 - jfs
    #     Improved temporary file creation.
    # check_tcpd - 06/26/2003 - jfs
    #     Fixed calls to test ([]) it worked in Linux but not in other OS due
    #     to -n not being implicit.
    # check_tcpd - 04/23/2003 - jfs
    #     Fixed requirements
    # check_tcpd - 08/09/2002 - jfs
    #     Added RM to dependancies.
    # check_tcpd - 07/25/2002 - jfs
    #     Changed TigerInstallDir to .
    #
    #-----------------------------------------------------------------------------
    # TODO: 
    #
    # - This check should include checks on the _content_ of hosts.allow,
    #   and hosts.deny (notice that hosts.equiv is checked for in check_rhosts)
    # - it is not currently able to determine services which are compiled
    # against libwrap (many in Debian GNU/Linux) and tell the user that they
    # are protected this way.
    # - it only uses inetd (through GEN_INETD_SETS) but could be improved to 
    #   use GEN_XINETD_SETS if available.
    #
    #-----------------------------------------------------------------------------
    #
    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 SED AWK CAT GEN_INETD_SETS GREP JOIN LS SORT UNIQ RM || exit 1
      haveallfiles BASEDIR WORKDIR INETDFILE || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    echo
    echo "# Performing check of services with tcp wrappers..."
    
    haveallcmds SED AWK CAT GEN_INETD_SETS GREP JOIN LS SORT UNIQ RM || exit 1
    haveallfiles BASEDIR WORKDIR INETDFILE || exit 1
    
    saveifs=$IFS
    
    tmpservices=$WORKDIR/sec.$$ts
    tmpinetd=$WORKDIR/sec.$$in
    safe_temp $tmpservices $tmpinetd
    
    trap 'delete $tmpservices $tmpinetd; exit 1' 1 2 3 15
    checkinetd ()
    {
      infile=$1
    
      $JOIN -o 1.1 2.6 1.6 1.7 $infile $INETDFILE > $WORKDIR/cinetd.$$
    
    # TODO: This is not used (what do we need it for?) - jfs
      __xx="`$LS -id \`$AWK '{print $3}' $WORKDIR/cinetd.$$ |
               $GREP -v internal
              \` 2>/dev/null |
             $SORT |
             $UNIQ -c |
             $SORT -rn |
             $SED -e '1q'`"
      set x $__xx
    	 
      count="$2"
      size="$3"
    #  tcpdpath="$4"
    # Tcp-wrappers patch is configured in the systems configuration files
      tcpdpath=$TCPD
    
    #  [ "$count" -lt 2 ] && tcpdpath=
        
      $GREP -v '^#' $infile | grep -v '^$' |
      while read currservice s p t user currbinary parm1 parms
      do
          if [ "$currbinary" = "$tcpdpath" ] ; then
           message INFO inet015i "" "Service $currservice is using tcp wrappers."
          fi
      done
    
      $CAT $WORKDIR/cinetd.$$ |
      while read service exppath currpath callpath
      do
        if [ -n "`echo $currpath | $GREP '?'`" ]; then
         currpath=`echo $currpath | $SED -e "s/\?//"`
        fi
        if [ -n "`echo $exppath | $GREP '?'`" ]; then
         exppath=`echo $exppath | $SED -e "s/\?//"`
        fi
    
        if [ "$currpath" = "$tcpdpath" -a "$currpath" != "$exppath" ] ; then
           message INFO inet014i "" "Service $service has been modified to run under tcp wrappers."
        fi
    
        if [ "$currpath" != "$exppath" -a  "$exppath" != "$tcpath" ]; then
    	message FAIL inet016f "" "Service $service which was previously protected by tcpwrappers is now using $currpath (instead of $exppath)."
        fi
      done 
      
      delete $WORKDIR/cinetd.$$
    }
    
    check_hfileperm()
    {
     for __file
     do
        getpermit $__file |
        while read _namefile _owner _group ur uw ux gr gw gx or ow ox suid sgid stk
        do
         [ "$gw" != '0' ] && \
             message WARN inet023w "" "The file $__file can be written by any user of the group $_group."
         [ "$ow" != '0' ] && \
             message FAIL inet024f "" "The file $__file can be written by any user."
         [ "$_owner" != 'root' ] && \
             message FAIL inet025f "" "The file $__file is not owned by root (owned by $owner)."
        done
     done
    }
    
    realpath="$REALPATH -d"
    
    [ ! -n "$REALPATH" -o ! $TESTEXEC "$REALPATH" ] && realpath="echo"
    
    [ -z "$TCPD" -o ! $TESTEXEC "$TCPD" ] && \
    	message FAIL inet021f "" "Tcp wrappers does not seem to be installed in this system."
    
    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 ! -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
    fi
    
    # This piece of code compares the current inetd configuration with the
    # configuration under $OS/$REL/$ARCH/inetd file (which is also generated
    # with gen_inetd_sets)
    haveallcmds GEN_INETD_SETS UNIQ &&
    haveallfiles INETDFILE && {
        $GEN_INETD_SETS |
        while read inetd_set
        do
          inetdsrc=`$CAT $inetd_set.src`
          echo "# Analysing inetd entries from $inetdsrc"
    
          checkinetd $inetd_set
    
          delete $inetd_set $inetd_set.src
        done
      }
    
    # Enable when GEN_XINETD_SETS is available
    #
    #haveallcmds GEN_XINETD_SETS UNIQ TCPD &&
    #haveallfiles XINETDFILE && {
    #    $GEN_XINETD_SETS |
    #    while read xinetd_set
    #   do
    #     inetdsrc=`$CAT $xinetd_set.src`
    #      echo "# Analysing xinetd entries from $xinetdsrc"
    #
    #      checkinetd $xinetd_set
    #      delete $xinetd_set $xinetd_set.src
    #    done
    #  }
    
    delete $tmpservices $tmpinetd
    
    exit 0
    tiger-3.2.3/scripts/check_umask0000755000175000017500000001032510045247304015151 0ustar  pacopaco#!/bin/sh
    #
    #     tiger - A UN*X security checking system
    #     Copyright (C) 2003 Javier Fernandez-Sanguino
    #
    #    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_umask - 04/15/2003
    #
    # Check for umask setting in configuration files. This check has been 
    # separated from check_logfiles since it's a broader check. The command
    # requirements have been modified to adjust to what it's really needed.
    #
    # 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
    # The script will not work properly if the 'umask' string is present 
    # in the script but it's not a valid call to the umask setting. 
    # It will not work properly either if more than 3 occurances of umask are 
    # present.
    #
    #-----------------------------------------------------------------------------
    #
    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 TAIL SED HEAD EXPAND GREP WC CUT  || exit 1
      haveallfiles BASEDIR WORKDIR || exit 1
      haveallvars TESTLINK HOSTNAME
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    
    haveallcmds TAIL SED HEAD EXPAND GREP WC CUT  || exit 1
    haveallfiles BASEDIR WORKDIR || exit 1
    
    #####
    # Check to ensure that the umask is set correctly
    #####
    
    echo
    echo "# Checking for correct umask settings..."
    
    for file in '/etc/profile' '/etc/csh.login' '/etc/bashrc'
    do
       [ -r $file ] && {
    
       Occurance=`$GREP umask $file | $WC -l`
    
       if [ $Occurance = 0 ]; then
    	#echo "No umask entry"
    	message WARN misc021w "" "There are no umask entries in $file"
    
       elif [ $Occurance = 1 ]; then
    	UMASK1=`$GREP umask $file  \
               | $EXPAND \
               | $SED -e "s/^.*umask//"\
               | $CUT -d" " -f2`
    
            if [ "$UMASK1" != "" ] ; then
    	[ $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 
    	message WARN misc021w "" "There are no valid umask entries in $file"
    	fi
    
    
        elif [ $Occurance = 2 ]; then
    	UMASK1=`$GREP umask $file  \
                 | $EXPAND \
                 | $HEAD -n 1 \
                 | $SED -e "s/^.*umask//" \
                 | $CUT -d" "  -f2`
        	UMASK2=`$GREP umask $file  \
                 | $EXPAND \
                 | $TAIL -n 1 \
                 | $SED -e "s/^.*umask//" \
                 | $CUT -d" " -f2`
    
            [ "$UMASK1" != "" -a "$UMASK2" != "" ] && \
     	[ $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
    
    }
    
    done
    tiger-3.2.3/scripts/check_xinetd0000755000175000017500000000766111061317252015334 0ustar  pacopaco#!/bin/sh
    #
    #     tiger - A UN*X security checking system
    #     Copyright (C) 2003 Michael Sconzo, 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 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.
    #
    #  11/08/2007 - jfs - Change message calls so that they can be filtered 
    #                     (Debian bug #411534)
    #  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 XINETDCONF instead of 
    #               hardcoding the location. Added additional checks
    #               to avoid errors and use message instead of echo.
    #
    #-----------------------------------------------------------------------------
    # TODO:
    #
    # - xinetd checks should determine if insecure services are active or
    #   running as root when not needed.
    # - check if the xinetd configuration file is writable
    # - check if the xinetd files under the xinetd directory are writable 
    # - 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 GREP AWK LS || exit 1
      haveallfiles BASEDIR || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    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
    echo "# Performing check of 'xinetd' related services..."
    
    check_xinetconfig()
    {
    	xinetd_dir="$1"
    	$LS $xinetd_dir |
    	while read file
    	do
    		if [ "`$GREP -i 'disable' $xinetd_dir/$file | $AWK '{print $NF}'`" = "no" ] ; 
    		then
    			service=`$GREP -w 'server' $file | $GREP '=' | $AWK '{print $NF}'`
    			message INFO xnet004i "" "Service $file is enabled using: $service."
    		else
    			message INFO xnet005i "" "Service $file is disabled."
    		fi
    	done
    }
    
    [ -z "$XINETDCONF" ] && XINETDCONF="/etc/xinetd.conf"
    
    if [ -r "$XINETDCONF" ] ; then
    	$GREP 'includedir' $XINETDCONF | $AWK '{print $NF}' |
    	while read xinetd_directory
    	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
    	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.3/scripts/crack_run0000755000175000017500000001232310217661040014641 0ustar  pacopaco#!/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.
    #
    # crack_run - created 06/14/93
    #
    # 08/15/2003 - jfs - Commented out code which is no longer is used in
    #              Tara since probably only works for older Crack versions.
    # 08/14/2003 - jfs - Preserve, for backwards compatibility the definition
    #                    of CRACK, REPORTER and CRACKDIR if available
    #                    (exported through the site configuration)
    # 08/13/2003 - jfs - Use Location overrides in the tigerrc configuration file
    # 08/09/2003 - jfs - Added RM to dependancies.
    # 08/08/2003 - jfs - Improved temporary file creation.
    # 05/01/2003 - jfs - Fixed dependancies.
    #
    # TODO: 
    # This script must be tested further. Also it seems that REPORTER is 
    # no longer a part of CRACK so it might only be needed in older versions...
    # There are two code pieces, one for the old version (with REPORTER)
    # and another with the newer version, maybe the code should be selected
    # once a version has been determined...
    #
    #-----------------------------------------------------------------------------
    #
    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 CAT GEN_PASSWD_SETS RM WAIT || exit 1
      haveallfiles BASEDIR WORKDIR || exit 1
      haveallvars TESTLINK HOSTNAME
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    echo
    echo "# Running Crack on password files..."
    
    
    # Crack binary location|override + default check
    # Which, find, user-supplied var or tigexp's findcmd?:
    if [ -z "$CRACK" ] 
    then
      if [ -z "${Tiger_CRACK_LOC_OVERRIDE}" ]
      then
        CRACK=`which crack`
      else
        CRACK=${Tiger_CRACK_LOC_OVERRIDE}
      fi
    fi
    # Reporter binary location|override + default check
    if [ -z "$REPORTER" ] 
    then
    if [ -z "${Tiger_CRACKREPORTER_LOC_OVERRIDE}" ]
    then
       REPORTER=`which crack-reporter`
    else
       REPORTER=${Tiger_CRACKREPORTER_LOC_OVERRIDE}
    fi
    fi
    # Crack directory location
    if [ -z "$CRACKDIR" ]
    then
    if [ -z "${Tiger_CRACKDIR_LOC_OVERRIDE}" ]
    then
       CRACKDIR=/usr/lib/crack
    else
       CRACKDIR=${Tiger_CRACKDIR_LOC_OVERRIDE}
    fi
    fi
    
    
    # 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
    #
    #if [ -e "$CRACK" -a -d "$CRACKDIR" ]; then
    #	cd $CRACKDIR
    #	$CRACKDIR/scripts/shadmrg.sv > $CRACKDIR/run/tmppass
    #	$CRACK $CRACKDIR/run/tmppass
    #	sleep 60
    #	$CRACKDIR/scripts/plaster
    #	$REPORTER -quiet
    #	$RM $CRACKDIR/run/tmppass
    #	make tidy
    #fi 
    #
    #exit 0
    ########################################################################
    # TODO: Check this part, this could work for more passwd sets (like if
    # using NIS, but it is not thoroughly tested)
    
    haveallcmds CRACK GEN_PASSWD_SETS CAT EXPR WAIT || exit 1
    
    localflag=
    [ "$Tiger_Crack_Local" = 'Y' ] && localflag="-l"
    
    count=1
    pid=$$
    
    safe_temp $WORKDIR/pass.list.$$ $WORKDIR/crack.out.$pid.$count  $WORKDIR/file.list.$$ $WORKDIR/guess.list.$$
    
    trap 'delete $WORKDIR/pass.list.$$ $WORKDIR/crack.out.$pid.$count \
    $WORKDIR/file.list.$$ $WORKDIR/guess.list.$$ ; exit 1' 1 2 3 15
    
    $GEN_PASSWD_SET -p $localflag $WORKDIR/pass.list.$$
    
    {
      while read pass_set
      do
        outfile=$WORKDIR/crack.out.$pid.$count
        {
          $CAT $pass_set.src
          $CRACK -f $pass_set 
        } > $outfile 2>&1 < /dev/null &
        echo $outfile
        count=`$EXPR $count + 1`
      done < $WORKDIR/pass.list.$$
      $WAIT
    } > $WORKDIR/file.list.$$
    
    
    while read filename
    do
      {
        read source
        $AWK '$5 == "Guessed" { print $6, $10; }' > $WORKDIR/guess.list.$$
        [ -s "$WORKDIR/guess.list.$$" ] && {
          echo "--WARN-- [crk001w] The following login id's have weak passwords:"
          $CAT $WORKDIR/guess.list.$$
        }
        delete $WORKDIR/guess.list.$$
      } < $filename
      delete $filename
    done < $WORKDIR/file.list.$$
    
    # Cleanup temporary files
    [ ! -n "$Tiger_PasswdFiles" ] && {
    while read pass_set
    do
      delete $pass_set $pass_set.src
    done < $WORKDIR/pass.list.$$
    }
    
    delete $WORKDIR/file.list.$$ $WORKDIR/pass.list.$$
    exit 0
    tiger-3.2.3/scripts/find_files0000755000175000017500000002346311061321642015002 0ustar  pacopaco#!/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.
    #
    # find_files - 06/14/93
    #
    # 08/09/2008 jfs Have GET_MOUNTS use local like getdisks does and do not warn
    #                for non-local filesystems
    #
    # 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
    #
    # 04/28/93 dls Added search for device files...
    #
    # 04/27/93 dls Fixed it so that filenames are stored in a
    #              variable, separated by '/'.  Also, while added
    #              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='.'
    
    #
    # 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 CAT EXPR FIND GETDISKS GREP RM SORT || exit 1
      haveallfiles BASEDIR WORKDIR || exit 1
      haveallvars WAIT || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    
    haveallcmds AWK CAT EXPR FIND GETDISKS GREP RM SORT || exit 1
    haveallfiles BASEDIR WORKDIR || exit 1
    haveallvars WAIT || exit 1
    
    simple_wait()
    {
      loop=1
      while [ "$loop" = '1' ]
      do
        loop=0
        sleep 5
        for pid
        do
            kill -0 $pid > /dev/null 2>&1 && loop=1
        done
      done
    }
    
    trap cleanup 0
    
    cleanup()
    {
      [ -n "$pid" ] && kill -1 $pid >/dev/null 2>&1
      [ -n "$pidlist" -a -s "$pidlist" ] && {
        kill -1 `$CAT $pidlist 2>/dev/null` >/dev/null 2>&1
      }
      delete $pidlist $mountlist ${outfile}* >/dev/null 2>&1
      [ "$_TIGER_RUN" != 'Y' -a -n "$TigerCleanup" ] && {
        for file in $TigerCleanup
        do
        	delete $file
        done
      }  
    }
    
    parse_bootparam()
    {
      $AWK '
           BEGIN {LINE="";}
           $0 ~ /\\$/ {printf("%s ", substr($0, 1, length($0)-1));}
           $0 !~ /\\$/ {printf("%s\n", $0);}
           END {printf("\n");}
       ' |
      $AWK '{
               for(i=2;i<=NF;i++)
                 if(substr($i, 1,5) == "root="){
    	       x=substr($i, 6, length($i));
                   split(x, ar, ":");
                   print $1, ar[1], ar[2];
       	     }
            }'
    }
    
    trap 'cleanup;exit 1' 1
    trap 'cleanup;exit 1' 2
    trap 'cleanup;exit 1' 3
    trap 'cleanup;exit 1' 15
    
    saveifs="$IFS"
    
    [ "$Tiger_FSScan_ofNote" != 'N' ] && {
      otheropt='\( \( -name ...'
      #
      # List of '/' separated filename globs (NOT pathnames) to look for
      # Set 'FS_FILES' in 'tigerrc' to specify the list of files.  The
      # ones here are just defaults in case FS_FILES isn't set.
      #
      filespecs='..[!.]*/.* */.[!.]/.log/.FSP*'
      [ -n "$Tiger_Files_of_Note" ] && filespecs="$Tiger_Files_of_Note"
      
      IFS=/
    
      for fspec in $filespecs
      do
        otheropt="$otheropt -o -name \"$fspec\""
      done
      IFS=$saveifs
    
      logit=$BASEDIR/util/logit
    
      otheropt="$otheropt \) -exec $logit \$otherfile {} \; \)"
    }
    #
    # Options to find for finding suid files and logging them
    #
    [ "x$Tiger_FSScan_Setuid" != 'xN' ] && {
      suidopt='\( -perm -004000 -a ! -type d  \)'
    }
    #
    # Options to find for finding sgid files and logging them
    #
    [ "x$Tiger_FSScan_Setgid" != 'xN' ] && {
      sgidopt='\( -perm -002000 -a ! -type d  \)'
    }
    #
    # Options to find for finding device files and logging them
    #
    [ "x$Tiger_FSScan_Devs" != 'xN' ] && {
      devopt='\( -type b -o -type c \)'
    }
    #
    # Options for finding symbolic links and logging them
    #
    [ "x$Tiger_FSScan_SymLinks" != 'xN' ] && {
      linkopt='-type l'
    }
    #
    # Options for finding writable directories
    #
    [ "x$Tiger_FSScan_WDIR" != 'xN' ] && {
      wdiropt='\( -type d -a -perm -000002 \)'
    }
    
    [ "x$Tiger_FSScan_Unowned" != 'xN' ] && {
      #
      # Options for finding files with noowner
      #
      nownopt='-nouser'
      #
      # Options for finding files with nogroup
      #
      nogrpopt='-nogroup'
    }
    #
    # Make a find command!
    #
    # otheropt should be first.  We'd rather have unusual filenames
    # of a writable directory logged as an unusual name, rather than
    # a writable directory, etc.
    #
    findopt=
    
    [ -n "$otheropt" ] && {
      findopt="$findopt $otheropt"
      [ -n "$suidopt$sgidopt$devopt$linkopt$wdiropt$nownopt$nogrpopt" ] &&
      findopt="$findopt -o"
    }
    
    [ -n "$suidopt$sgidopt$devopt$linkopt$wdiropt$nownopt$nogrpopt" ] &&
    findopt="$findopt \("
    
    prevopt=
    for xopt in "$suidopt" "$sgidopt" "$devopt" "$linkopt" "$wdiropt" "$nownopt" "$nogrpopt"
    do
      [ -n "$prevopt" ] &&
      findopt="$findopt -o"
      [ -n "$xopt" ] &&
      findopt="$findopt $xopt"
    
      prevopt="$xopt"
    done
    
    [ -n "$suidopt$sgidopt$devopt$linkopt$wdiropt$nownopt$nogrpopt" ] &&
    findopt="$findopt \)"
    
    pidlist=$WORKDIR/pid.list$$
    mountlist=$WORKDIR/mount.list$$
    outfile=$WORKDIR/find.out.$$
    
    safe_temp $pidlist $mountlist $outfile $WORKDIR/suid.msgs.$$  $WORKDIR/sgid.msgs.$$ $WORKDIR/other.msgs.$$ $WORKDIR/devs.msgs.$$ $WORKDIR/link.msgs.$$ $WORKDIR/wdir.msgs.$$ $WORKDIR/noowner.msgs.$$
    
    # Define this for the cleanup() function
    TigerCleanup="$TigerCleanup $WORKDIR/suid.msgs.$$ $WORKDIR/sgid.msgs.$$ $WORKDIR/other.msgs.$$ $WORKDIR/devs.msgs.$$ $WORKDIR/link.msgs.$$ $WORKDIR/wdir.msgs.$$ $WORKDIR/noowner.msgs.$$"
    
    counter=1
    
    rw=rw
    [ "x$Tiger_FSScan_ReadOnly" = 'xY' ] && rw=
    
    {
      if [ ! -n "$FINDXDEV" ]; then
        echo "$FINDPRUNE"
        echo "/"
      elif haveallcmds GETDISKS; then
        echo "$FINDXDEV"
        $GETDISKS
      elif haveallcmds GET_MOUNTS; then
        #
        # This will do each file system in series... slower,
        # but better than banging the heads around.
        #
        echo "$FINDXDEV"
        echo "`$GET_MOUNTS local all`"
      else
        echo "$FINDPRUNE"
        echo "/"
      fi
    } |
    {
      read findpruneopt
      while read disklist
      do
        {
          output="$BASEDIR/util/flogit"
          # Do not change the order of these words
          for what in suid dev link wdir nouser nogroup test sgid
          do
    	output="$output ${outfile}.${what}.$counter"
          done
    
          # Do not change these variable names
          otherfile="${outfile}.other.$counter"	
    
    #     echo "$FIND x $findpruneopt $findopt -print" 1>&2
          for mountpt in $disklist
          do
            # 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
          done | nice -6 $output
        } &
        echo $! >> $pidlist
        counter=`$EXPR $counter + 1`
      done
    
      $WAIT `[ "$WAIT" != 'wait' ] && $CAT $pidlist`
      pidlist=
    
      for what in suid sgid other dev link wdir nouser nogroup
      do
        count=1
        while [ $count -lt $counter ]
        do
          [ -r ${outfile}.${what}.$count ] &&
          $CAT ${outfile}.${what}.$count 2>/dev/null
          delete ${outfile}.${what}.$count
          count=`$EXPR $count + 1`
        done |
        $SORT > $outfile.${what}
      done
    } &
    
    pid=$!
    
    $WAIT $pid
    
    {
      pidlist=
      [ "x$Tiger_FSScan_Setuid" != 'xN' ] && {
        $SCRIPTDIR/sub/check_suid $outfile.suid > $WORKDIR/suid.msgs.$$ &
        pidlist="$pidlist $!"
      }
      [ "x$Tiger_FSScan_Setgid" != 'xN' ] && {
        $SCRIPTDIR/sub/check_sgid $outfile.sgid > $WORKDIR/sgid.msgs.$$ &
        pidlist="$pidlist $!"
      }
    
      [ "x$Tiger_FSScan_ofNote" != 'xN' ] && {
        $SCRIPTDIR/sub/check_names $outfile.other > $WORKDIR/other.msgs.$$ &
        pidlist="$pidlist $!"
      }
    
      [ "x$Tiger_FSScan_Devs" != 'xN' ] && {
        $SCRIPTDIR/sub/check_devs $outfile.dev > $WORKDIR/devs.msgs.$$ &
        pidlist="$pidlist $!"
      }
    
      [ "x$Tiger_FSScan_Links" != 'xN' ] && {
        $SCRIPTDIR/sub/check_links $outfile.link > $WORKDIR/link.msgs.$$ &
        pidlist="$pidlist $!"
      }
    
      [ "x$Tiger_FSScan_WDIR" != 'xN' ] && {
        $SCRIPTDIR/sub/check_wdir $outfile.wdir > $WORKDIR/wdir.msgs.$$ &
        pidlist="$pidlist $!"
      }
    
      [ "x$Tiger_FSScan_Unowned" != 'xN' ] && {
        $SCRIPTDIR/sub/check_nousrgrp $outfile.nouser $outfile.nogroup \
        > $WORKDIR/noowner.msgs.$$ &
        pidlist="$pidlist $!"
      }
    
      [ -n "$pidlist" ] && {
        $WAIT `[ "x$WAIT" != 'xwait' ] && echo $pidlist`
      }
      pidlist=
    } &
    
    pid=$!
    $WAIT $pid
    
    for file in $WORKDIR/suid.msgs.$$ $WORKDIR/sgid.msgs.$$ \
    	$WORKDIR/other.msgs.$$ \
    	$WORKDIR/devs.msgs.$$ $WORKDIR/link.msgs.$$ \
    	$WORKDIR/wdir.msgs.$$ $WORKDIR/noowner.msgs.$$
    do
      [ -s "$file" ] && $CAT $file
    done
    
    delete $pidlist ${outfile}*
    delete $WORKDIR/suid.msgs.$$ $WORKDIR/sgid.msgs.$$ \
           $WORKDIR/other.msgs.$$ $WORKDIR/devs.msgs.$$ \
          $WORKDIR/link.msgs.$$ $WORKDIR/wdir.msgs.$$ $WORKDIR/noowner.msgs.$$
    
    #
    exit 0
    tiger-3.2.3/scripts/integrit_run0000755000175000017500000000626007720445603015420 0ustar  pacopaco#!/bin/sh
    #
    #     tiger - A UN*X security checking system
    #     Copyright (C) 2003 Javier Fernandez-Sanguino
    #
    #    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.
    #
    # integrit_run - 08/09/2003
    # 
    # Runs the integrit file checker and reports the results through the mesasging
    # interface.
    #
    # 08/13/2003 - jfs - Respect the override (if done) from the site configuration
    #                    file
    # 
    #-----------------------------------------------------------------------------
    # TODO
    # - Test further this script.
    #
    #-----------------------------------------------------------------------------
    #
    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 RM || exit 1
      haveallfiles BASEDIR WORKDIR || exit 1
      haveallvars TESTLINK HOSTNAME Tiger_INTEGRIT_CFG
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    echo
    echo "# Running Integrit file checker..."
    
    # Integrit binary location|override + default check
    # Which, find, user-supplied var or tigexp's findcmd?:
    if [ -z "$INTEGRIT" ] 
    then
    if [ -z "${Tiger_INTEGRIT_LOC_OVERRIDE}" ]
    then
       INTEGRIT=`which integrit`
    else
       INTEGRIT=${Tiger_INTEGRIT_LOC_OVERRIDE}
    fi
    fi
    
    haveallcmds RM INTEGRIT || exit 1
    haveallfiles BASEDIR WORKDIR || exit 1
    haveallvars TESTLINK HOSTNAME Tiger_INTEGRIT_CFG || exit 1
    
    # TODO: 
    # - The location of integrit should be tested and not be
    #   hardcoded in the script.
    
    INTEGRIT_RPT="$WORKDIR/integrit.out.tmp.$$"
    safe_temp $INTEGRIT_RPT
    trap 'delete $INTEGRIT_RPT; exit 1' 1 2 3 15
    
    $INTEGRIT -c -C $Tiger_INTEGRIT_CFG 2> /dev/null > $INTEGRIT_RPT
    
    # TODO: calling INTEGRIT should check the errors (if any)
    # i.e. check $? and determine what happened
    
    # Differentiate between added, changed and removed files
    for status in changed removed detected; do
    	$GREP ${INTEGRIT_RPT} -e "^${status}:" | 
    	$AWK '{ print $2; }' |
    	while read result
    	do
    	case "${status}" in
    		changed) exp="integ003w";;
    		removed) exp="integ004w";;
    		added)   exp="integ005w";;
    	esac
    	message WARN ${exp} "" "Detected ${status} for file ${result}"
    	done
    done
    
    delete $INTEGRIT_RPT
    
    exit 0
    tiger-3.2.3/scripts/services.README0000644000175000017500000000030507502327223015450 0ustar  pacopacoObtained authorized service listing from:
    
    	http://www.iana.org/assignments/port-numbers
    
    and then did
    
    	grep -v '^#' services.list | \
    	    awk '$1 ~ /^[a-zA-Z]/ { print $1, " ", $2 }' > services
    tiger-3.2.3/scripts/tripwire_run0000755000175000017500000000544610217661040015433 0ustar  pacopaco#!/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.
    #
    # tripwire_run - 11/07/2001
    # Paul Telford 
    #
    # Runs tripwire (either a predefined location based on tigerrc) or 
    # the version found in path to test filesystem integrity.
    #
    # tripwire_run - 08/13/2003 - jfs - Tripwire location is no longer hardcoded
    # tripwire_run - 08/08/2003 - jfs - Temporary file creation.
    # tripwire_run - 05/01/2003 - jfs - Fixed dependancies, awk -> $AWK
    # tripwire_run - 07/25/2002 - jfs
    #       Changed TigerInstallDir to .
    #
    #-----------------------------------------------------------------------------
    #
    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 GREP || exit 1
      haveallfiles BASEDIR WORKDIR || exit 1
      haveallvars TESTLINK HOSTNAME
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    haveallcmds AWK GREP || exit 1
    haveallfiles BASEDIR WORKDIR || exit 1
    echo
    echo "# Running Tripwire..."
    
    
    tmplog="$WORKDIR/trip.out.tmp.$$"
    safe_temp $tmplog
    trap 'delete $tmplog; exit 1' 1 2 3 15
    
    # Tripwire binary location|override + default check
    # Which, find, user-supplied var or tigexp's findcmd?:
    if [ -z "$TRIPWIRE" ]
    then
    if [ -z "${Tiger_TRIPW_LOC_OVERRIDE}" ]
    then
            TRIPWIRE=`which tripwire`
    else
            TRIPWIRE=${Tiger_TRIPW_LOC_OVERRIDE}
    fi
    fi
    
    haveallcmds TRIPWIRE || exit 1
    
    $TRIPWIRE --check 2> /dev/null | $GREP "Rule Name:" | $AWK '{print $NF}' > $tmplog
    
    while read filename
    do
    	message FAIL trip01f "" "Detected modified file $filename"
    done < $tmplog
    	
    delete $tmplog
    exit 0
    tiger-3.2.3/systems/0000755000175000017500000000000011306441064012765 5ustar  pacopacotiger-3.2.3/systems/AIX/0000755000175000017500000000000011306441026013404 5ustar  pacopacotiger-3.2.3/systems/AIX/3/0000755000175000017500000000000011306441026013546 5ustar  pacopacotiger-3.2.3/systems/AIX/3/3.2/0000755000175000017500000000000011306441026014050 5ustar  pacopacotiger-3.2.3/systems/AIX/3/3.2/config0000644000175000017500000001031107732610214015241 0ustar  pacopaco#
    #     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.
    #
    # AIX/3/3.2/config - 06/14/93
    #
    # 09/19/2003 - jfs - Added UUID definition (untested)
    #
    #-----------------------------------------------------------------------------
    #
    #UUID=`/usr/bin/id | /bin/sed -e 's/uid=\([0-9][0-9]*\).*$/\1/'`
    UUID=`id -u`
    USERNAME=`whoami`
    # This will work in most shells
    [ "$UUID" = "" ] && UUID=$UID
    [ "$USERNAME" = "" ] && USERNAME=$USER
    # Last resort
    [ "$UUID" = "" -a ! "$USERNAME" = "" ] && {
            # Try this and see it works
            UUID=`grep  ^$USERNAME: /etc/passwd  |awk -F : '{print $3}'`
    }
    export UUID
    AWK=/usr/bin/awk
    export AWK
    BASENAME=/usr/bin/basename
    export BASENAME
    CAT=/usr/bin/cat
    export CAT
    CC=/usr/bin/cc
    export CC
    CHMOD=/usr/bin/chmod
    export CHMOD
    CHOWN=/usr/bin/chown
    export CHOWN
    COMM=/usr/bin/comm
    export COMM
    DATE=/usr/bin/date
    export DATE
    EGREP=/usr/bin/egrep
    export EGREP
    EXPR=/usr/bin/expr
    export EXPR
    FILECMD=/usr/bin/file
    export FILECMD
    FIND=/usr/bin/find
    export FIND
    FINDXDEV=-xdev
    export FINDXDEV
    FINDPRUNE='! -fstype jfs -prune'
    export FINDPRUNE
    FMT=/usr/ucb/fmt
    export FMT
    GETHOSTNAME=/usr/bin/hostname
    export GETHOSTNAME
    GREP=/usr/ucb/grep
    export GREP
    GROUPSS=/usr/ucb/groups
    export GROUPSS
    JOIN=/usr/bin/join
    export JOIN
    LN=/usr/bin/ln
    export LN
    LS=/usr/bin/ls
    export LS
    MV=/usr/bin/mv
    export MV
    PS=/usr/bin/ps
    export PS
    RM=/usr/bin/rm
    export RM
    SED=/usr/bin/sed
    export SED
    SORT=/usr/bin/sort
    export SORT
    STRINGS=/usr/ucb/strings
    export STRINGS
    TAIL=/usr/ucb/tail
    export TAIL
    TR=/usr/ucb/tr
    export TR
    UNAME=/usr/bin/uname
    export UNAME
    UNIQ=/usr/bin/uniq
    export UNIQ
    BASENAME=/usr/bin/basename
    export BASENAME
    CHMOD=/usr/bin/chmod
    export CHMOD
    CHOWN=/usr/bin/chown
    export CHOWN
    LN=/usr/bin/ln
    export LN
    PASTE=/usr/bin/paste
    export PASTE
    YPCAT=/usr/bin/ypcat
    export YPCAT
    WAIT=wait
    export WAIT
    DIFF=/usr/bin/diff
    export DIFF
    MAILER=/usr/bin/mail
    export MAILER
    SENDMAILS="/usr/sbin/sendmail"
    SENDMAILCF="/etc/sendmail.cf"
    export SENDMAILS SENDMAILCF
    #
    # How to get different effects
    #
    DATECMD="$DATE +%D"
    TIMECMD="$DATE +%H:%M"
    export DATECMD TIMECMD
    SGREP="$EGREP -s"
    export SGREP
    LSGROUP=
    export LSGROUP
    LSLINK=-L
    export LSLINK
    TESTLINK=-L
    export TESTLINK
    TESTEXEC=-x
    export TESTEXEC
    #
    # Where are system directories/files?
    #
    MAILSPOOL=/usr/mail
    export MAILSPOOL
    CRONTAB=/usr/spool/cron/crontabs
    export CRONTAB
    
    #
    # Segment of code to find system specific tiger parts
    #
    
    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 gen_mounts
    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
    MKSHELLS mkshells
    GEN_INETD_SETS gen_inetd
    GETDISKS getdisks
    EMBEDDEDLIST embedlist
    GETUSERHOME getuserhome
    EOL
    `
    
    [ -n "$MKSHELLS" ] && {
      ETCSHELLS=$WORKDIR/shells.$$
      $MKSHELLS $ETCSHELLS
      TigerCleanup="$TigerCleanup $WORKDIR/shells.$$"
      export ETCSHELLS
    }
    tiger-3.2.3/systems/AIX/3/check_cron0000755000175000017500000000161007502327223015575 0ustar  pacopaco#!/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 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.
    #
    # AIX/3/check_cron - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    if [ -f /usr/spool/cron/crontabs/$1 ]; then
      echo "YES"
    else
      echo "NO"
    fi
    tiger-3.2.3/systems/AIX/3/config0000644000175000017500000001035607732610214014750 0ustar  pacopaco#
    #     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.
    #
    # AIX/3/config - 06/14/93
    #
    # 09/19/2003 - jfs - Added UUID definition or otherwise scripts will not
    #          be run.
    # 
    #-----------------------------------------------------------------------------
    #
    #UUID=`/usr/bin/id | /bin/sed -e 's/uid=\([0-9][0-9]*\).*$/\1/'`
    UUID=`id -u`
    USERNAME=`whoami`
    # This will work in most shells
    [ "$UUID" = "" ] && UUID=$UID
    [ "$USERNAME" = "" ] && USERNAME=$USER
    # Last resort
    [ "$UUID" = "" -a ! "$USERNAME" = "" ] && {
            # Try this and see it works
            UUID=`grep  ^$USERNAME: /etc/passwd  |awk -F : '{print $3}'`
    }
    export UUID
    
    
    AWK=/usr/bin/awk
    export AWK
    BASENAME=/usr/bin/basename
    export BASENAME
    CAT=/usr/bin/cat
    export CAT
    CC=/usr/bin/cc
    export CC
    CHMOD=/usr/bin/chmod
    export CHMOD
    CHOWN=/usr/bin/chown
    export CHOWN
    COMM=/usr/bin/comm
    export COMM
    DATE=/usr/bin/date
    export DATE
    EGREP=/usr/bin/egrep
    export EGREP
    EXPR=/usr/bin/expr
    export EXPR
    FILECMD=/usr/bin/file
    export FILECMD
    FIND=/usr/bin/find
    export FIND
    FINDXDEV=-xdev
    export FINDXDEV
    FINDPRUNE='! -fstype jfs -prune'
    export FINDPRUNE
    FMT=/usr/ucb/fmt
    export FMT
    GETHOSTNAME=/usr/bin/hostname
    export GETHOSTNAME
    GREP=/usr/ucb/grep
    export GREP
    GROUPSS=/usr/ucb/groups
    export GROUPSS
    JOIN=/usr/bin/join
    export JOIN
    LN=/usr/bin/ln
    export LN
    LS=/usr/bin/ls
    export LS
    MV=/usr/bin/mv
    export MV
    PS=/usr/bin/ps
    export PS
    RM=/usr/bin/rm
    export RM
    SED=/usr/bin/sed
    export SED
    SORT=/usr/bin/sort
    export SORT
    STRINGS=/usr/ucb/strings
    export STRINGS
    TAIL=/usr/ucb/tail
    export TAIL
    TR=/usr/ucb/tr
    export TR
    UNAME=/usr/bin/uname
    export UNAME
    UNIQ=/usr/bin/uniq
    export UNIQ
    BASENAME=/usr/bin/basename
    export BASENAME
    CHMOD=/usr/bin/chmod
    export CHMOD
    CHOWN=/usr/bin/chown
    export CHOWN
    LN=/usr/bin/ln
    export LN
    PASTE=/usr/bin/paste
    export PASTE
    YPCAT=/usr/bin/ypcat
    export YPCAT
    WAIT=wait
    export WAIT
    DIFF=/usr/bin/diff
    export DIFF
    MAILER=/usr/bin/mail
    export MAILER
    SENDMAILS="/usr/sbin/sendmail"
    SENDMAILCF="/etc/sendmail.cf"
    export SENDMAILS SENDMAILCF
    #
    # How to get different effects
    #
    DATECMD="$DATE +%D"
    TIMECMD="$DATE +%H:%M"
    export DATECMD TIMECMD
    SGREP="$EGREP -s"
    export SGREP
    LSGROUP=
    export LSGROUP
    LSLINK=-L
    export LSLINK
    TESTLINK=-L
    export TESTLINK
    TESTEXEC=-x
    export TESTEXEC
    #
    # Where are system directories/files?
    #
    MAILSPOOL=/usr/mail
    export MAILSPOOL
    CRONTAB=/usr/spool/cron/crontabs
    export CRONTAB
    
    #
    # Segment of code to find system specific tiger parts
    #
    
    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 gen_mounts
    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
    MKSHELLS mkshells
    GEN_INETD_SETS gen_inetd
    GETDISKS getdisks
    EMBEDDEDLIST embedlist
    GETUSERHOME getuserhome
    EOL
    `
    
    [ -n "$MKSHELLS" ] && {
      ETCSHELLS=$WORKDIR/shells.$$
      $MKSHELLS $ETCSHELLS
      TigerCleanup="$TigerCleanup $WORKDIR/shells.$$"
      export ETCSHELLS
    }
    tiger-3.2.3/systems/AIX/3/gen_alias_sets0000755000175000017500000000233107756435007016473 0ustar  pacopaco#!/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 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.
    #
    # AIX/3/gen_alias_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    outfile="$1"
    
    {
      $GREP -v '^#' /etc/aliases |
      $SORT > $WORKDIR/etc_aliases.$$
      echo "/etc/aliases" > $WORKDIR/etc_aliases.$$.src
      echo $WORKDIR/etc_aliases.$$
    
      [ -n "$YPCAT" ] && {
        $YPCAT -k aliases |
        $SED -e 's/ /:/' | 
        $SORT |
        $COMM -23 - $WORKDIR/etc_aliases.$$ > $WORKDIR/nis_aliases.$$
        echo "NIS" > $WORKDIR/nis_aliases.$$.src
        echo $WORKDIR/nis_aliases.$$
      }
    } > $outfile
    tiger-3.2.3/systems/AIX/3/gen_bootparam_sets0000755000175000017500000000250407756435007017370 0ustar  pacopaco#!/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 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.
    #
    # AIX/3/gen_bootparam_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    [ -r /etc/bootparams ] && {
      $SED -e 's/#.*$//' /etc/bootparams |
      $SED -e '/^[ \t]*$/d' |
      $AWK '
           BEGIN {LINE="";}
           /\\\\$/ {LINE=LINE " " substr($0, 1, length($0)-1);}
           !/\\\\$/ {print LINE $0; LINE="";}
      ' > $WORKDIR/etc_bootparams.$$
      echo "/etc/bootparams" > $WORKDIR/etc_bootparams.$$.src
      echo "$WORKDIR/etc_bootparams.$$"
    }
    
    [ -n "$YPCAT" ] && {
      $YPCAT bootparams > $WORKDIR/nis_bootparams.$$
      echo "NIS" > $WORKDIR/nis_bootparams.$$.src
      echo "$WORKDIR/nis_bootparams.$$"
    }
    tiger-3.2.3/systems/AIX/3/gen_export_sets0000755000175000017500000000174607502327223016721 0ustar  pacopaco#!/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 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.
    #
    # AIX/3/gen_export_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    [ -r /etc/exports ] && {
      $GREP -v '^#' /etc/exports > $WORKDIR/etc_exports.$$
      echo "/etc/exports" > $WORKDIR/etc_exports.$$.src
      echo $WORKDIR/etc_exports.$$
    }
    tiger-3.2.3/systems/AIX/3/gen_group_sets0000755000175000017500000000276607756435007016552 0ustar  pacopaco#!/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 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.
    #
    # AIX/3/gen_group_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    $GREP -v '^[-+]' /etc/group |
    $SED -e 's/:$/: /' |
    $SORT > $WORKDIR/etc_group.$$
    echo "/etc/group" > $WORKDIR/etc_group.$$.src
    echo $WORKDIR/etc_group.$$
    
    [ -n "$YPCAT" ] && {
      $YPCAT group |
      $SED -e 's/:$/: /' |
      $SORT |
      $COMM -23 - $WORKDIR/etc_group.$$ > $WORKDIR/nis_group.$$
      echo "NIS" > $WORKDIR/nis_group.$$.src
      echo $WORKDIR/nis_group.$$
    }
    
    [ "$SERVERCHECK" = "Y" ] && {
      $GETCLIENTDIRS |
      while read client dir
      do
        [ -f "$dir/etc/group" ] && {
          $GREP -v '^[-+]' $dir/etc/group |
          $SED -e 's/:$/: /' |
          $SORT > $WORKDIR/group.$$.$client
          echo "$client:/etc/group" > $WORKDIR/group.$$.$client.src
          echo $WORKDIR/group.$$.$client
        }
      done
    }
    
    tiger-3.2.3/systems/AIX/3/gen_inetd0000755000175000017500000000170707502327223015442 0ustar  pacopaco#!/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 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.
    #
    # AIX/3/gen_inetd - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    $GREP -v '^#' /etc/inetd.conf |
    $SORT > $WORKDIR/etc_inetd.$$
    echo "/etc/inetd.conf" > $WORKDIR/etc_inetd.$$.src
    echo $WORKDIR/etc_inetd.$$
    tiger-3.2.3/systems/AIX/3/gen_mount0000755000175000017500000000273307502327223015501 0ustar  pacopaco#!/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 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.
    #
    # AIX/3/gen_mount - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    
    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" = "jfs" ] && LOCAL=0
    
      return $LOCAL
    }
    
    /etc/mount |
    /usr/ucb/tail +3 |
    /usr/bin/awk '{
    	if(NF == 7){
    	   printf("%s on %s type %s %s\n", $1, $2, $3, $5);
            }
            else if($4 == "nfs"){
               printf("%s:%s on %s type %s %s\n", $1, $2, $3, $4, $6);
    	}
    	else {
            }
    }' |
    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" ] && echo "$mtpoint $fstype $fs"
    done
    tiger-3.2.3/systems/AIX/3/gen_passwd_sets0000755000175000017500000000545107756435007016711 0ustar  pacopaco#!/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 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.
    #
    # 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=
    
    for parm
    do
      case "$parm" in
        -p) passwordflag=Y;;
        -l) local=1;;
        *) outfile="$parm";;
      esac
    done
    
    zappasswd()
    {
      IFS=:
      while read user passwd rest
      do
        case $passwd in
          [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="xxxxxxxxxxxxx"
    	   ;;
    	*)
    	     passwd='*'
    	   ;;
        esac
        echo "$user:$passwd:$rest" >> $OUTPUT
      done
    }
    
    $GREP -v '^[-+]' /etc/passwd |
    $SORT > $WORKDIR/pass.tmp.$$
    
    $SED -e 's/#.*$//' -e '/^$/d' /etc/security/passwd |
    $AWK '
    /^[^ 	]*:/ {
      if(user != "")
        printf("%s:\n", user);
      for(i=1;i $WORKDIR/etc_passwd.$$
    
    $RM -f $WORKDIR/pass.tmp.$$
    
    echo "/etc/passwd" > $WORKDIR/etc_passwd.$$.src
    echo $WORKDIR/etc_passwd.$$ >> $outfile
    
    [ -n "$YPCAT" ] &&  {
      $YPCAT passwd |
      $SED -e 's/:$/: /' |
      $SORT |
      echo "NIS" > $WORKDIR/nis_passwd.$$.src
      echo $WORKDIR/nis_passwd.$$ >> $outfile
    }
    tiger-3.2.3/systems/AIX/3/gen_services0000755000175000017500000000213107756435007016165 0ustar  pacopaco#!/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 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.
    #
    # AIX/3/gen_services - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    $GREP -v '^#' /etc/services > $WORKDIR/etc_services.$$
    echo "/etc/services" > $WORKDIR/etc_services.$$.src
    echo $WORKDIR/etc_services.$$
    
    [ -n "$YPCAT" ] && {
      $YPCAT services > $WORKDIR/nis_services.$$
      echo "NIS" > $WORKDIR/nis_services.$$.src
      echo $WORKDIR/nis_services.$$
    }
    
    tiger-3.2.3/systems/AIX/3/gendlclients0000755000175000017500000000314710045247304016156 0ustar  pacopaco#!/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 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.
    #
    # AIX/3/gendlclients - 06/14/93
    #
    # 05/02/2004 jfs  Try to avoid eval problems if handling variables with
    #                 special characters (such as space)
    #
    #-----------------------------------------------------------------------------
    #
    
    
    parse_bootparam()
    {
      $AWK '
           BEGIN {LINE="";}
           $0 ~ /\\$/ {printf("%s ", substr($0, 1, length($0)-1));}
           $0 !~ /\\$/ {printf("%s\n", $0);}
           END {printf("\n");}
       ' |
      $AWK '{
               for(i=2;i<=NF;i++)
                 if(substr($i, 1,5) == "root="){
    	       x=substr($i, 6, length($i));
                   split(x, ar, ":");
                   print $1, ar[1], ar[2];
       	     }
            }'
    }
    
    $GEN_BOOTPARAM_SETS | 
    while read bootparam_set
    do
      parse_bootparam < $bootparam_set
      
      $RM -f $bootparam_set $bootparam_set.src
    done |
    $SORT -u |
    while read client server filesys
    do
      eval "case \"$server\" in $HOSTNAMESLIST) echo \"$client $filesys\";; esac"
    done
    tiger-3.2.3/systems/AIX/3/inetd0000644000175000017500000000257407502327223014611 0ustar  pacopacochargen	dgram	udp	wait	root	internal 
    chargen	stream	tcp	nowait	root	internal 
    comsat	dgram	udp	wait	root	/etc/comsat comsat
    daytime	dgram	udp	wait	root	internal 
    daytime	stream	tcp	nowait	root	internal 
    discard	dgram	udp	wait	root	internal 
    discard	stream	tcp	nowait	root	internal 
    echo	dgram	udp	wait	root	internal 
    echo	stream	tcp	nowait	root	internal 
    exec	stream	tcp	nowait	root	/etc/rexecd rexecd
    finger	stream	tcp	nowait	nobody	/etc/fingerd fingerd
    ftp	stream	tcp	nowait	root	/etc/ftpd ftpd
    instsrv	stream	tcp	nowait	netinst	/u/netinst/bin/instsrv instsrv -r /tmp/netinstalllog /u/netinst/scripts
    login	stream	tcp	nowait	root	/etc/rlogind rlogind
    ntalk	dgram	udp	wait	root	/etc/talkd talkd
    pcnfsd	sunrpc_udp udp	wait	root	/etc/rpc.pcnfsd pcnfsd 150001 1
    rexd	sunrpc_tcp tcp	wait	root	/usr/etc/rpc.rexd rexd 100017 1
    rstatd	sunrpc_udp udp	wait	root	/usr/etc/rpc.rstatd rstatd 100001 1-3
    rusersd	sunrpc_udp udp	wait	root	/usr/etc/rpc.rusersd rusersd 100002 1-2
    rwalld	sunrpc_udp udp	wait	root	/usr/etc/rpc.rwalld rwalld 100008 1
    shell	stream	tcp	nowait	root	/etc/rshd rshd
    sprayd	sunrpc_udp udp	wait	root	/usr/etc/rpc.sprayd sprayd 100012 1
    talk	dgram	udp	wait	root	/etc/talkd talkd
    telnet	stream	tcp	nowait	root	/etc/telnetd telnetd
    tftp	dgram	udp	wait	nobody	/etc/tftpd tftpd -n
    time	dgram	udp	wait	root	internal 
    time	stream	tcp	nowait	root	internal 
    uucp	stream	tcp	nowait	root	/etc/uucpd uucpd
    tiger-3.2.3/systems/AIX/3/mkshells0000755000175000017500000000250507502327223015325 0ustar  pacopaco#!/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 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.
    #
    # AIX/3/mkshells - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    #
    # Parse the AIX /etc/security/login.cfg file and create something
    # that looks like the normal /etc/shells file.
    #
    outputfile=$1
    
    [ -r /etc/security/login.cfg ] && {
      $AWK '/^[ 	]*shells[ ]*=[ ]*.*/ {
        for(i=1;i $1
    }  
    tiger-3.2.3/systems/AIX/3/services0000644000175000017500000000212707502327223015323 0ustar  pacopacoecho		7/tcp
    echo		7/udp
    discard		9/tcp
    discard		9/udp
    systat		11/tcp
    daytime		13/tcp
    daytime		13/udp		 
    netstat		15/tcp
    qotd		17/tcp
    chargen		19/tcp
    chargen		19/udp
    ftp-data	20/tcp
    ftp		21/tcp		 
    telnet		23/tcp
    smtp		25/tcp
    time		37/tcp
    time		37/udp
    rlp		39/udp
    nameserver	42/udp
    whois		43/tcp
    domain		53/tcp
    domain		53/udp
    mtp		57/tcp
    bootps		67/udp
    bootpc		68/udp
    tftp		69/udp
    rje		77/tcp
    finger		79/tcp
    link		87/tcp
    supdup		95/tcp
    hostnames	101/tcp
    iso_tsap	102/tcp
    x400		103/tcp
    x400-snd	104/tcp
    csnet-ns	105/tcp
    pop		109/tcp
    sunrpc		111/tcp
    sunrpc		111/udp
    auth		113/tcp
    sftp		115/tcp
    uucp-path	117/tcp
    nntp		119/tcp
    ntp		123/tcp
    NeWS		144/tcp
    snmp		161/udp
    snmp-trap	162/udp
    smux		199/tcp
    src		200/udp
    exec		512/tcp
    login		513/tcp
    who		513/udp
    shell		514/tcp
    syslog		514/udp
    printer		515/tcp
    talk		517/udp
    ntalk		518/udp
    efs		520/tcp
    route		520/udp
    timed		525/udp
    tempo		526/tcp
    courier		530/tcp
    conference	531/tcp
    netnews		532/tcp
    netwall		533/udp
    uucp		540/tcp
    new-rwho	550/udp
    remotefs	556/tcp
    rmonitor	560/udp
    monitor		561/udp
    instsrv		1234/tcp
    ingreslock	1524/tcp
    writesrv	2401/tcp
    graPHIGS	8000/tcp
    tiger-3.2.3/systems/AIX/4/0000755000175000017500000000000011306441026013547 5ustar  pacopacotiger-3.2.3/systems/AIX/4/check_cron0000644000175000017500000000161007502327223015573 0ustar  pacopaco#!/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 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.
    #
    # AIX/3/check_cron - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    if [ -f /usr/spool/cron/crontabs/$1 ]; then
      echo "YES"
    else
      echo "NO"
    fi
    tiger-3.2.3/systems/AIX/4/config0000644000175000017500000001057407756435456014776 0ustar  pacopaco#
    #     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.
    #
    # 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.
    #-----------------------------------------------------------------------------
    #
    #UUID=`/usr/bin/id | /bin/sed -e 's/uid=\([0-9][0-9]*\).*$/\1/'`
    UUID=`id -u`
    USERNAME=`whoami`
    # This will work in most shells
    [ "$UUID" = "" ] && UUID=$UID
    [ "$USERNAME" = "" ] && USERNAME=$USER
    # Last resort
    [ "$UUID" = "" -a ! "$USERNAME" = "" ] && {
            # Try this and see it works
            UUID=`grep  ^$USERNAME: /etc/passwd  |awk -F : '{print $3}'`
    }
    export UUID
    AWK=/usr/bin/awk
    export AWK
    BASENAME=/usr/bin/basename
    export BASENAME
    CAT=/usr/bin/cat
    export CAT
    CC=/usr/bin/cc
    export CC
    CHMOD=/usr/bin/chmod
    export CHMOD
    CHOWN=/usr/bin/chown
    export CHOWN
    COMM=/usr/bin/comm
    export COMM
    DATE=/usr/bin/date
    export DATE
    EGREP=/usr/bin/egrep
    export EGREP
    EXPR=/usr/bin/expr
    export EXPR
    FILECMD=/usr/bin/file
    export FILECMD
    FIND=/usr/bin/find
    export FIND
    FINDXDEV=-xdev
    export FINDXDEV
    FINDPRUNE='! -fstype jfs -prune'
    export FINDPRUNE
    FMT=/usr/bin/fmt
    export FMT
    GETHOSTNAME=/usr/bin/hostname
    export GETHOSTNAME
    GREP=/usr/bin/grep
    export GREP
    GROUPSS=/usr/bin/groups
    export GROUPSS
    JOIN=/usr/bin/join
    export JOIN
    LN=/usr/bin/ln
    export LN
    LS=/usr/bin/ls
    export LS
    MV=/usr/bin/mv
    export MV
    PS=/usr/bin/ps
    export PS
    RM=/usr/bin/rm
    export RM
    SED=/usr/bin/sed
    export SED
    SORT=/usr/bin/sort
    export SORT
    STRINGS=/usr/bin/strings
    export STRINGS
    TAIL=/usr/bin/tail
    export TAIL
    TR=/usr/bin/tr
    export TR
    UNAME=/usr/bin/uname
    export UNAME
    UNIQ=/usr/bin/uniq
    export UNIQ
    BASENAME=/usr/bin/basename
    export BASENAME
    CHMOD=/usr/bin/chmod
    export CHMOD
    CHOWN=/usr/bin/chown
    export CHOWN
    LN=/usr/bin/ln
    export LN
    PASTE=/usr/bin/paste
    export PASTE
    YPCAT=/usr/bin/ypcat
    export YPCAT
    WAIT=wait
    export WAIT
    DIFF=/usr/bin/diff
    export DIFF
    MAILER=/usr/bin/mail
    export MAILER
    SENDMAILS="/usr/sbin/sendmail"
    SENDMAILCF="/etc/sendmail.cf"
    export SENDMAILS SENDMAILCF
    #
    # How to get different effects
    #
    DATECMD="$DATE +%d-%m-%y"
    TIMECMD="$DATE +%H:%M"
    export DATECMD TIMECMD
    SGREP="$EGREP -s"
    export SGREP
    LSGROUP=-l
    export LSGROUP
    LSLINK=-L
    export LSLINK
    TESTLINK=-L
    export TESTLINK
    TESTEXEC=-x
    export TESTEXEC
    #
    # Where are system directories/files?
    #
    MAILSPOOL=/usr/mail
    export MAILSPOOL
    CRONTAB=/usr/spool/cron/crontabs
    export CRONTAB
    
    #
    # Segment of code to find system specific tiger parts
    #
    
    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 gen_mounts
    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
    MKSHELLS mkshells
    GEN_INETD_SETS gen_inetd
    GETDISKS getdisks
    EMBEDDEDLIST embedlist
    GETUSERHOME getuserhome
    EOL
    `
    
    [ -n "$MKSHELLS" ] && {
      ETCSHELLS=$WORKDIR/shells.$$
      $MKSHELLS $ETCSHELLS
      TigerCleanup="$TigerCleanup $WORKDIR/shells.$$"
      export ETCSHELLS
    }
    tiger-3.2.3/systems/AIX/4/gen_alias_sets0000644000175000017500000000233107756435007016471 0ustar  pacopaco#!/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 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.
    #
    # AIX/3/gen_alias_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    outfile="$1"
    
    {
      $GREP -v '^#' /etc/aliases |
      $SORT > $WORKDIR/etc_aliases.$$
      echo "/etc/aliases" > $WORKDIR/etc_aliases.$$.src
      echo $WORKDIR/etc_aliases.$$
    
      [ -n "$YPCAT" ] && {
        $YPCAT -k aliases |
        $SED -e 's/ /:/' | 
        $SORT |
        $COMM -23 - $WORKDIR/etc_aliases.$$ > $WORKDIR/nis_aliases.$$
        echo "NIS" > $WORKDIR/nis_aliases.$$.src
        echo $WORKDIR/nis_aliases.$$
      }
    } > $outfile
    tiger-3.2.3/systems/AIX/4/gen_bootparam_sets0000644000175000017500000000250407756435010017360 0ustar  pacopaco#!/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 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.
    #
    # AIX/3/gen_bootparam_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    [ -r /etc/bootparams ] && {
      $SED -e 's/#.*$//' /etc/bootparams |
      $SED -e '/^[ \t]*$/d' |
      $AWK '
           BEGIN {LINE="";}
           /\\\\$/ {LINE=LINE " " substr($0, 1, length($0)-1);}
           !/\\\\$/ {print LINE $0; LINE="";}
      ' > $WORKDIR/etc_bootparams.$$
      echo "/etc/bootparams" > $WORKDIR/etc_bootparams.$$.src
      echo "$WORKDIR/etc_bootparams.$$"
    }
    
    [ -n "$YPCAT" ] && {
      $YPCAT bootparams > $WORKDIR/nis_bootparams.$$
      echo "NIS" > $WORKDIR/nis_bootparams.$$.src
      echo "$WORKDIR/nis_bootparams.$$"
    }
    tiger-3.2.3/systems/AIX/4/gen_export_sets0000644000175000017500000000174607502327223016717 0ustar  pacopaco#!/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 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.
    #
    # AIX/3/gen_export_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    [ -r /etc/exports ] && {
      $GREP -v '^#' /etc/exports > $WORKDIR/etc_exports.$$
      echo "/etc/exports" > $WORKDIR/etc_exports.$$.src
      echo $WORKDIR/etc_exports.$$
    }
    tiger-3.2.3/systems/AIX/4/gen_group_sets0000644000175000017500000000276607756435010016542 0ustar  pacopaco#!/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 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.
    #
    # AIX/3/gen_group_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    $GREP -v '^[-+]' /etc/group |
    $SED -e 's/:$/: /' |
    $SORT > $WORKDIR/etc_group.$$
    echo "/etc/group" > $WORKDIR/etc_group.$$.src
    echo $WORKDIR/etc_group.$$
    
    [ -n "$YPCAT" ] && {
      $YPCAT group |
      $SED -e 's/:$/: /' |
      $SORT |
      $COMM -23 - $WORKDIR/etc_group.$$ > $WORKDIR/nis_group.$$
      echo "NIS" > $WORKDIR/nis_group.$$.src
      echo $WORKDIR/nis_group.$$
    }
    
    [ "$SERVERCHECK" = "Y" ] && {
      $GETCLIENTDIRS |
      while read client dir
      do
        [ -f "$dir/etc/group" ] && {
          $GREP -v '^[-+]' $dir/etc/group |
          $SED -e 's/:$/: /' |
          $SORT > $WORKDIR/group.$$.$client
          echo "$client:/etc/group" > $WORKDIR/group.$$.$client.src
          echo $WORKDIR/group.$$.$client
        }
      done
    }
    
    tiger-3.2.3/systems/AIX/4/gen_inetd0000644000175000017500000000170707502327223015440 0ustar  pacopaco#!/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 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.
    #
    # AIX/3/gen_inetd - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    $GREP -v '^#' /etc/inetd.conf |
    $SORT > $WORKDIR/etc_inetd.$$
    echo "/etc/inetd.conf" > $WORKDIR/etc_inetd.$$.src
    echo $WORKDIR/etc_inetd.$$
    tiger-3.2.3/systems/AIX/4/gen_mount0000644000175000017500000000273307502327223015477 0ustar  pacopaco#!/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 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.
    #
    # AIX/3/gen_mount - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    
    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" = "jfs" ] && LOCAL=0
    
      return $LOCAL
    }
    
    /etc/mount |
    /usr/ucb/tail +3 |
    /usr/bin/awk '{
    	if(NF == 7){
    	   printf("%s on %s type %s %s\n", $1, $2, $3, $5);
            }
            else if($4 == "nfs"){
               printf("%s:%s on %s type %s %s\n", $1, $2, $3, $4, $6);
    	}
    	else {
            }
    }' |
    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" ] && echo "$mtpoint $fstype $fs"
    done
    tiger-3.2.3/systems/AIX/4/gen_passwd_sets0000644000175000017500000000550607756435010016702 0ustar  pacopaco#!/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 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.
    #
    # 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=
    
    for parm
    do
      case "$parm" in
        -p) passwordflag=Y;;
        -l) local=1;;
        *) outfile="$parm";;
      esac
    done
    
    zappasswd()
    {
      IFS=:
      while read user passwd rest
      do
        case $passwd in
          [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="xxxxxxxxxxxxx"
    	   ;;
    	*)
    	     passwd='*'
    	   ;;
        esac
        echo "$user:$passwd:$rest" >> $OUTPUT
      done
    }
    
    $GREP -v '^[-+]' /etc/passwd |
    $SORT > $WORKDIR/pass.tmp.$$
    
    $SED -e 's/#.*$//' -e '/^$/d' /etc/security/passwd |
    $AWK '
    /^[^ 	]*:/ {
      if(user != "")
        printf("%s:\n", user);
      for(i=1;i $WORKDIR/etc_passwd.$$
    
    $RM -f $WORKDIR/pass.tmp.$$
    
    echo "/etc/passwd" > $WORKDIR/etc_passwd.$$.src
    echo $WORKDIR/etc_passwd.$$ >> $outfile
    
    [ -n "$YPCAT"] && {
      $YPCAT passwd |
      $SED -e 's/:$/: /' |
      $SORT |
      echo "NIS" > $WORKDIR/nis_passwd.$$.src
      echo $WORKDIR/nis_passwd.$$ >> $outfile
    }
    tiger-3.2.3/systems/AIX/4/gen_services0000644000175000017500000000213107756435010016155 0ustar  pacopaco#!/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 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.
    #
    # AIX/3/gen_services - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    $GREP -v '^#' /etc/services > $WORKDIR/etc_services.$$
    echo "/etc/services" > $WORKDIR/etc_services.$$.src
    echo $WORKDIR/etc_services.$$
    
    [ -n "$YPCAT" ] && {
      $YPCAT services > $WORKDIR/nis_services.$$
      echo "NIS" > $WORKDIR/nis_services.$$.src
      echo $WORKDIR/nis_services.$$
    }
    
    tiger-3.2.3/systems/AIX/4/gendlclients0000644000175000017500000000314710045247304016154 0ustar  pacopaco#!/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 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.
    #
    # AIX/3/gendlclients - 06/14/93
    #
    # 05/02/2004 jfs  Try to avoid eval problems if handling variables with
    #                 special characters (such as space)
    #
    #-----------------------------------------------------------------------------
    #
    
    
    parse_bootparam()
    {
      $AWK '
           BEGIN {LINE="";}
           $0 ~ /\\$/ {printf("%s ", substr($0, 1, length($0)-1));}
           $0 !~ /\\$/ {printf("%s\n", $0);}
           END {printf("\n");}
       ' |
      $AWK '{
               for(i=2;i<=NF;i++)
                 if(substr($i, 1,5) == "root="){
    	       x=substr($i, 6, length($i));
                   split(x, ar, ":");
                   print $1, ar[1], ar[2];
       	     }
            }'
    }
    
    $GEN_BOOTPARAM_SETS | 
    while read bootparam_set
    do
      parse_bootparam < $bootparam_set
      
      $RM -f $bootparam_set $bootparam_set.src
    done |
    $SORT -u |
    while read client server filesys
    do
      eval "case \"$server\" in $HOSTNAMESLIST) echo \"$client $filesys\";; esac"
    done
    tiger-3.2.3/systems/AIX/4/inetd0000644000175000017500000000257407502327223014612 0ustar  pacopacochargen	dgram	udp	wait	root	internal 
    chargen	stream	tcp	nowait	root	internal 
    comsat	dgram	udp	wait	root	/etc/comsat comsat
    daytime	dgram	udp	wait	root	internal 
    daytime	stream	tcp	nowait	root	internal 
    discard	dgram	udp	wait	root	internal 
    discard	stream	tcp	nowait	root	internal 
    echo	dgram	udp	wait	root	internal 
    echo	stream	tcp	nowait	root	internal 
    exec	stream	tcp	nowait	root	/etc/rexecd rexecd
    finger	stream	tcp	nowait	nobody	/etc/fingerd fingerd
    ftp	stream	tcp	nowait	root	/etc/ftpd ftpd
    instsrv	stream	tcp	nowait	netinst	/u/netinst/bin/instsrv instsrv -r /tmp/netinstalllog /u/netinst/scripts
    login	stream	tcp	nowait	root	/etc/rlogind rlogind
    ntalk	dgram	udp	wait	root	/etc/talkd talkd
    pcnfsd	sunrpc_udp udp	wait	root	/etc/rpc.pcnfsd pcnfsd 150001 1
    rexd	sunrpc_tcp tcp	wait	root	/usr/etc/rpc.rexd rexd 100017 1
    rstatd	sunrpc_udp udp	wait	root	/usr/etc/rpc.rstatd rstatd 100001 1-3
    rusersd	sunrpc_udp udp	wait	root	/usr/etc/rpc.rusersd rusersd 100002 1-2
    rwalld	sunrpc_udp udp	wait	root	/usr/etc/rpc.rwalld rwalld 100008 1
    shell	stream	tcp	nowait	root	/etc/rshd rshd
    sprayd	sunrpc_udp udp	wait	root	/usr/etc/rpc.sprayd sprayd 100012 1
    talk	dgram	udp	wait	root	/etc/talkd talkd
    telnet	stream	tcp	nowait	root	/etc/telnetd telnetd
    tftp	dgram	udp	wait	nobody	/etc/tftpd tftpd -n
    time	dgram	udp	wait	root	internal 
    time	stream	tcp	nowait	root	internal 
    uucp	stream	tcp	nowait	root	/etc/uucpd uucpd
    tiger-3.2.3/systems/AIX/4/mkshells0000644000175000017500000000250507502327223015323 0ustar  pacopaco#!/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 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.
    #
    # AIX/3/mkshells - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    #
    # Parse the AIX /etc/security/login.cfg file and create something
    # that looks like the normal /etc/shells file.
    #
    outputfile=$1
    
    [ -r /etc/security/login.cfg ] && {
      $AWK '/^[ 	]*shells[ ]*=[ ]*.*/ {
        for(i=1;i $1
    }  
    tiger-3.2.3/systems/AIX/4/services0000644000175000017500000000212707502327223015324 0ustar  pacopacoecho		7/tcp
    echo		7/udp
    discard		9/tcp
    discard		9/udp
    systat		11/tcp
    daytime		13/tcp
    daytime		13/udp		 
    netstat		15/tcp
    qotd		17/tcp
    chargen		19/tcp
    chargen		19/udp
    ftp-data	20/tcp
    ftp		21/tcp		 
    telnet		23/tcp
    smtp		25/tcp
    time		37/tcp
    time		37/udp
    rlp		39/udp
    nameserver	42/udp
    whois		43/tcp
    domain		53/tcp
    domain		53/udp
    mtp		57/tcp
    bootps		67/udp
    bootpc		68/udp
    tftp		69/udp
    rje		77/tcp
    finger		79/tcp
    link		87/tcp
    supdup		95/tcp
    hostnames	101/tcp
    iso_tsap	102/tcp
    x400		103/tcp
    x400-snd	104/tcp
    csnet-ns	105/tcp
    pop		109/tcp
    sunrpc		111/tcp
    sunrpc		111/udp
    auth		113/tcp
    sftp		115/tcp
    uucp-path	117/tcp
    nntp		119/tcp
    ntp		123/tcp
    NeWS		144/tcp
    snmp		161/udp
    snmp-trap	162/udp
    smux		199/tcp
    src		200/udp
    exec		512/tcp
    login		513/tcp
    who		513/udp
    shell		514/tcp
    syslog		514/udp
    printer		515/tcp
    talk		517/udp
    ntalk		518/udp
    efs		520/tcp
    route		520/udp
    timed		525/udp
    tempo		526/tcp
    courier		530/tcp
    conference	531/tcp
    netnews		532/tcp
    netwall		533/udp
    uucp		540/tcp
    new-rwho	550/udp
    remotefs	556/tcp
    rmonitor	560/udp
    monitor		561/udp
    instsrv		1234/tcp
    ingreslock	1524/tcp
    writesrv	2401/tcp
    graPHIGS	8000/tcp
    tiger-3.2.3/systems/AIX/getuserhome0000755000175000017500000000027707502327223015674 0ustar  pacopaco#!/bin/sh
    
    #
    # cd to / in case we are down in a directory we don't have read
    # access to.  /bin/csh will barf if that is the case.
    #
    cd /
    
    user="$1"
    
    /bin/csh -c "echo ~$user" 2> /dev/null
    
    
    tiger-3.2.3/systems/HPUX/0000755000175000017500000000000011306441027013550 5ustar  pacopacotiger-3.2.3/systems/HPUX/check_cron0000755000175000017500000000160707502327223015604 0ustar  pacopaco#!/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 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.
    #
    # HPUX/check_cron - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    if [ -f /usr/spool/cron/crontabs/$1 ]; then
      echo "YES"
    else
      echo "NO"
    fi
    tiger-3.2.3/systems/HPUX/check0000644000175000017500000000440207720454472014565 0ustar  pacopaco#!/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.
    #
    # HPUX/check - 06/25/2003
    # 
    # Checks for HPUX systems.
    # 
    # 06/25/2003 - rbradetich@uswest.net - Initial version
    # 06/26/2003 - jfs - Moved the definition of the configuration variable to
    #              tigerrc and capitalise it.
    #
    #-----------------------------------------------------------------------------
    #
    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/HPUX
    #
    # The following scripts have been added to provide platform
    # specific checks for HP-UX.  This script was modified from
    # the systems/Linux/2/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.3/systems/HPUX/10/0000755000175000017500000000000011306441027013770 5ustar  pacopacotiger-3.2.3/systems/HPUX/10/10.20/0000755000175000017500000000000011306441027014430 5ustar  pacopacotiger-3.2.3/systems/HPUX/10/10.20/9000/0000755000175000017500000000000011306441027015020 5ustar  pacopacotiger-3.2.3/systems/HPUX/10/10.20/9000/signatures0000644000175000017500000005623607575375105017163 0ustar  pacopaco#     tiger - A UN*X security checking system
    #     Copyright (C) 2000 Ellen L. Mitchell, Douglas Lee Schales
    #
    #     Please see the file `COPYING' for the complete copyright notice.
    #
    # HPUX 10.20 signatures - 09/07/2000
    #
    #-----------------------------------------------------------------------------
    #
    #@DEST=HPUX/10/10.20/9000
    #@CONFIG=HPUX/10
    #
    # Generated 2000/09/07 ellenm
    #
    Y .       /sbin/awk cd41f8bda826309e9b777abd053a94a2 HP-UX 10.20 9000/800
    Y .       /sbin/cat 9fc9e4541f40ba4516a33ea88737076c HP-UX 10.20 9000/800
    Y .       /sbin/chmod 5ba528a4c1bf749cf3490130e4333d6c HP-UX 10.20 9000/800
    Y .       /sbin/chown ba7cfe85c86461ab0d0758163673b4ab HP-UX 10.20 9000/800
    Y .       /sbin/convertfs a38a2ab8d81fd4e08fb998b096744940 HP-UX 10.20 9000/800
    Y .       /sbin/crashconf c9343612b3cb721019b94d2fdd1499b1 HP-UX 10.20 9000/800
    Y .       /sbin/dasetup 636b677601486e5048891341148f3388 HP-UX 10.20 9000/800
    Y .       /sbin/date 3de559ff6debd2b5f897b06fe5f75d55 HP-UX 10.20 9000/800
    Y .       /sbin/download 849cfabfbb918e3f8a90c1e6e5d0da3c HP-UX 10.20 9000/800
    Y .       /sbin/eisa_config 0c1ce9014a8f1f53c5c392ece7e51e78 HP-UX 10.20 9000/800
    Y .       /sbin/frecover 33e37006da7ae3fd87407338a3e0be37 HP-UX 10.20 9000/800
    Y .       /sbin/fs/cdfs/mount 254cf70a4aa6c907b6ad1d24faec4a21 HP-UX 10.20 9000/800
    Y .       /sbin/fs/hfs/fsck 98d42080072e393b7c5555ddf81f2d26 HP-UX 10.20 9000/800
    Y .       /sbin/fs/hfs/fsdb b731d416ada80dd63c419b494501bc0a HP-UX 10.20 9000/800
    Y .       /sbin/fs/hfs/mkfs 01a907ff85939dd8d44754b1f5954afd HP-UX 10.20 9000/800
    Y .       /sbin/fs/hfs/mount effabda3d689288b3866b248caff29a1 HP-UX 10.20 9000/800
    Y .       /sbin/fs/hfs/newfs b557f17836f7436fcc8ccd447eaf4539 HP-UX 10.20 9000/800
    Y .       /sbin/fs/hfs/umount 1e98225a5bd71fe949e89f80d013d5a7 HP-UX 10.20 9000/800
    Y .       /sbin/fs/lofs/mount 0b7f5a95dfdf196792cb636f82f4e53b HP-UX 10.20 9000/800
    Y .       /sbin/fs_wrapper 3f31464ad76139d1d6371943badd9487 HP-UX 10.20 9000/800
    Y .       /sbin/fsclean 8b76a7e5c7af319dc805a847b5ebd768 HP-UX 10.20 9000/800
    Y .       /sbin/fstyp 396ce61b91dd391e21f661551bc701a5 HP-UX 10.20 9000/800
    Y .       /sbin/init 4979030bbb7f709b3ac85e1c79ed3303 HP-UX 10.20 9000/800
    Y .       /sbin/insf 089a5d8b2d307bb390e69bd7470826ef HP-UX 10.20 9000/800
    Y .       /sbin/ioinit d1e2ee32f942bf6770e570d3ddb290ac HP-UX 10.20 9000/800
    Y .       /sbin/ioscan 4e06d92d360b9506c10e31391dca487c HP-UX 10.20 9000/800
    Y .       /sbin/is_local_root 4ea2653377b235ab783032e860d0b37f HP-UX 10.20 9000/800
    Y .       /sbin/itemap d8d858a5d4352e5fe0da87090a7fc207 HP-UX 10.20 9000/800
    Y .       /sbin/line 3bd7b4f3a8a85c991c2f8f3f0fc7c2dd HP-UX 10.20 9000/800
    Y .       /sbin/link 71debf1c1053dd9a2cc9a8d825da2752 HP-UX 10.20 9000/800
    Y .       /sbin/ln cd92cf6a76231bb63f9d4af05bb433ac HP-UX 10.20 9000/800
    Y .       /sbin/ls e2fdc4c0464ef43093f7cd0e8b9977c5 HP-UX 10.20 9000/800
    Y .       /sbin/mkboot 46fe7017c39ba235682077dbb9f67430 HP-UX 10.20 9000/800
    Y .       /sbin/mkdir 00edaeac9104bd356c492481aa07d836 HP-UX 10.20 9000/800
    Y .       /sbin/mknod 6863ede4014e6bdfed4f6424b69d39d4 HP-UX 10.20 9000/800
    Y .       /sbin/mount fe4ec2563ed5642455bd55c102a770b5 HP-UX 10.20 9000/800
    Y .       /sbin/mountall 8b4dd963655f3e9050e5d9003845ad6b HP-UX 10.20 9000/800
    Y .       /sbin/mtinit 5be9774861c37a6f96e1c9ce65d4d903 HP-UX 10.20 9000/800
    Y .       /sbin/mv c9a848d42a7cf8e0458ce5e6701d6971 HP-UX 10.20 9000/800
    Y .       /sbin/passwd d102cf8c6b0e41afc9588935c748fe95 HP-UX 10.20 9000/800
    Y .       /sbin/pax e6170d37465f3f4fa7f66569961e9778 HP-UX 10.20 9000/800
    Y .       /sbin/reboot 29dd3015e10d079c69e3c31fdee9ea6a HP-UX 10.20 9000/800
    Y .       /sbin/rm a3036ea11a1cd53dbed73daef1ac49c4 HP-UX 10.20 9000/800
    Y .       /sbin/savecrash 7ffe642d504fd779d85031743ce259e8 HP-UX 10.20 9000/800
    Y .       /sbin/shutdown 83bbb223fdb401e65bc77c21e5ff0add HP-UX 10.20 9000/800
    Y .       /sbin/stty e47736137e8ed3c6182405ee8ed68c07 HP-UX 10.20 9000/800
    Y .       /sbin/tar 629238abe4a342e068b6cc481dd4b116 HP-UX 10.20 9000/800
    Y .       /sbin/ttytype 5fb52bed12467069039304c724e96011 HP-UX 10.20 9000/800
    Y .       /sbin/umount 17f3b1fd8a532c9a58faf352d6ab3ba9 HP-UX 10.20 9000/800
    Y .       /sbin/umountall 9fdf6f6820bf8ca4289dfde1414647f6 HP-UX 10.20 9000/800
    Y .       /sbin/uname a55ed0530e5d5f4a3b915d0bc5d78d80 HP-UX 10.20 9000/800
    Y .       /usr/bin/awk deb41cbbb03a1364c77e60208f886869 HP-UX 10.20 9000/800
    Y .       /usr/bin/basename f21f307787268c1810ece4b7a588784e HP-UX 10.20 9000/800
    Y .       /usr/bin/cat f7a2277eb11d7f9fae780856b5270b09 HP-UX 10.20 9000/800
    Y .       /usr/bin/chfn a6c51a15d48cbc7a6f704bc5f32fa999 HP-UX 10.20 9000/800
    Y .       /usr/bin/chgrp a4feed4458fd38cd876b9775975192ec HP-UX 10.20 9000/800
    Y .       /usr/bin/chmod de14365ca985b65bd1c9f520f884bc1e HP-UX 10.20 9000/800
    Y .       /usr/bin/chown 91810e22d4ab1e962d30268b3ee59bba HP-UX 10.20 9000/800
    Y .       /usr/bin/cksum e1949e29f48daafb1dcba3fcf948e224 HP-UX 10.20 9000/800
    Y .       /usr/bin/cmp 40ab9e3fa295205bf31802bd2bb33685 HP-UX 10.20 9000/800
    Y .       /usr/bin/comm 333f91bc60163e0b2d4de9fe7733d645 HP-UX 10.20 9000/800
    Y .       /usr/bin/cp b5d9ee33cacc960af0358b454bc2c605 HP-UX 10.20 9000/800
    Y .       /usr/bin/cpio 0ec3a988d30dc7e13d824fdb4302b59a HP-UX 10.20 9000/800
    Y .       /usr/bin/cut e6a940fe39a49d07addad39e36d11444 HP-UX 10.20 9000/800
    Y .       /usr/bin/date 73ecd84b82da5c85a47d6df25410c167 HP-UX 10.20 9000/800
    Y .       /usr/bin/dd 46c9c563a07537261ed2ddf9e736c17d HP-UX 10.20 9000/800
    Y .       /usr/bin/df 9430697210432f27dc2ce10b9ce4f80b HP-UX 10.20 9000/800
    Y .       /usr/bin/dirname c8186985332a6b68111683d20e51fffd HP-UX 10.20 9000/800
    Y .       /usr/bin/echo 02801e6e210c95ad140308e6504bb98b HP-UX 10.20 9000/800
    Y .       /usr/bin/egrep b368cc670b7ffd5d169a608757cfa65a HP-UX 10.20 9000/800
    Y .       /usr/bin/eucset 446c4693961f4c31a0117ba92d6c02da HP-UX 10.20 9000/800
    Y .       /usr/bin/expr 91bfa489e58c2b8f5832a819c76e1530 HP-UX 10.20 9000/800
    Y .       /usr/bin/hostname ddde38416321618a9cf033e6f060be30 HP-UX 10.20 9000/800
    Y .       /usr/bin/kill da19911ac11e2f838f206e2842560a30 HP-UX 10.20 9000/800
    Y .       /usr/bin/ksh 27521d2b647e5539e88284a67554ca52 HP-UX 10.20 9000/800
    Y .       /usr/bin/l 41a43a074561ea9448da3847d032dea7 HP-UX 10.20 9000/800
    Y .       /usr/bin/line 5eaa8534daf78273665cd043a52010ca HP-UX 10.20 9000/800
    Y .       /usr/bin/ln 555288c81bca898dcacb565922ef4abd HP-UX 10.20 9000/800
    Y .       /usr/bin/login 78fca9919125277b49f4f062ac3f91c6 HP-UX 10.20 9000/800
    Y .       /usr/bin/mkdir c8e9b5c2d7234b2fcc9b168330d3001e HP-UX 10.20 9000/800
    Y .       /usr/bin/model a02e8ac7a7a125a0dd6bd0013f52c2ea HP-UX 10.20 9000/800
    Y .       /usr/bin/mv 1bec32184964a205ba2db393ec22df3b HP-UX 10.20 9000/800
    Y .       /usr/bin/pax 67475a94ccb1893c434b863e1c538fcb HP-UX 10.20 9000/800
    Y .       /usr/bin/ps 6d404da18c23b949b24bd4dfcbe32534 HP-UX 10.20 9000/800
    Y .       /usr/bin/pty ff059c747b355e0bbd0c141fe35cd812 HP-UX 10.20 9000/800
    Y .       /usr/bin/pwd cc68c234f750f5fe4a031bbed4ca8d11 HP-UX 10.20 9000/800
    Y .       /usr/bin/rm 1c6324cb71ae8aa37eadcea334cbb956 HP-UX 10.20 9000/800
    Y .       /usr/bin/rsh 754ccdf09ad1f0c685656f0ab9013935 HP-UX 10.20 9000/800
    Y .       /usr/bin/rtprio d59003ef37149a893d2faa0e0051ff45 HP-UX 10.20 9000/800
    Y .       /usr/bin/rtsched 3122c18ad88a862ac604b0ae90b5fe40 HP-UX 10.20 9000/800
    Y .       /usr/bin/sed 9b82f71b921869514517dbed747a6046 HP-UX 10.20 9000/800
    Y .       /usr/bin/sleep 0b81e3ec1d66799bc7eb29ac85525a2f HP-UX 10.20 9000/800
    Y .       /usr/bin/sort 063693f3a7e09ee37e496b33968ede77 HP-UX 10.20 9000/800
    Y .       /usr/bin/stty 00090a75b036ab493a2f1c50045927f0 HP-UX 10.20 9000/800
    Y .       /usr/bin/su 7bd7c3fd7360731b8d68eb28370057d2 HP-UX 10.20 9000/800
    Y .       /usr/bin/tar a1601431afdde754a3a32dc123f85e0e HP-UX 10.20 9000/800
    Y .       /usr/bin/touch 781747a17e08808b0668996b9bcad02d HP-UX 10.20 9000/800
    Y .       /usr/bin/ttytype 49a3f8c7818bf84eeee7e0f892869234 HP-UX 10.20 9000/800
    Y .       /usr/bin/uname 9d4cb107af3522eaa0abd3f069c3f273 HP-UX 10.20 9000/800
    Y .       /usr/bin/wc 7661bc2c961e36e5d065ccdcb7866cc1 HP-UX 10.20 9000/800
    Y .       /usr/bin/what 76ce7a85f93096559f27bac6a38ce62d HP-UX 10.20 9000/800
    Y .       /usr/bin/zmuxdiag 0a968da0c3f39c15040c9c4c2e89749a HP-UX 10.20 9000/800
    Y .       /usr/ccs/bin/make ce583d27c993ea24fcc4f97620a3e1be HP-UX 10.20 9000/800
    Y .       /usr/lbin/chgpt 941ab4490b3930e63282f77beaf7b632 HP-UX 10.20 9000/800
    Y .       /usr/lbin/fs/hfs/ff d4b03f792dd32f59b7fe8fbfadfd6c7d HP-UX 10.20 9000/800
    Y .       /usr/lbin/fs/hfs/fsadm f7ccbb8b644c8e7ac21a169ecca5f798 HP-UX 10.20 9000/800
    Y .       /usr/lbin/fs/hfs/labelit da1272902d421d6e49d12ad2c1dad877 HP-UX 10.20 9000/800
    Y .       /usr/lbin/fs/hfs/ncheck 6e11eb1242836943f3e0f7156d2918e5 HP-UX 10.20 9000/800
    Y .       /usr/lbin/fs/hfs/quot 0b1d9be8e604393960aeec2ec2cb4f35 HP-UX 10.20 9000/800
    Y .       /usr/lbin/fs/hfs/volcopy 0509d7126e0adcd4efad2bc74baca214 HP-UX 10.20 9000/800
    Y .       /usr/lbin/protect_pty 1ea0a6ce182e433f1c61fce2a613582a HP-UX 10.20 9000/800
    Y .       /usr/newconfig/sbin/sh 82f62e54063bbaeaf4e84ab2ebb08a10 HP-UX 10.20 9000/800
    Y .       /usr/old/bin/passwd 4b440401cc5fb1d8581916b36be20198 HP-UX 10.20 9000/800
    Y .       /usr/old/bin/sh 8ecd62599041c1c61aa79d8853ef5390 HP-UX 10.20 9000/800
    Y .       /usr/old/etc/fsck 5b4be28d04d7657e623b960ed68f4f3a HP-UX 10.20 9000/800
    Y .       /usr/old/etc/mount 86c35b47e3469769e49f8f52810a7075 HP-UX 10.20 9000/800
    Y .       /usr/old/etc/ncheck 55a2e9b9f4d756faa9d0ecfde831b373 HP-UX 10.20 9000/800
    Y .       /usr/old/etc/newfs 3dd73c16c8e7c898dbd9e4dc671746a0 HP-UX 10.20 9000/800
    Y .       /usr/old/sbin/savecore d4f145840d99d875be62b40f37119efe HP-UX 10.20 9000/800
    Y .       /usr/old/usr/bin/cksum 7d40144e7c3a3f108a8ef45947814efb HP-UX 10.20 9000/800
    Y .       /usr/old/usr/bin/mkpdf 8a71a6fa332deea47a2dc67169e3701f HP-UX 10.20 9000/800
    Y .       /usr/sbin/ch_exports 89969b795ec7fd37cc9120f7381141e8 HP-UX 10.20 9000/800
    Y .       /usr/sbin/ch_rc 710574e33131fb258d9091d34553ea2a HP-UX 10.20 9000/800
    Y .       /usr/sbin/crashutil a52f359e9f0f31c8b8821f11f5ee8327 HP-UX 10.20 9000/800
    Y .       /usr/sbin/dcopy 67b03c988215a8f49c019da3119b10c8 HP-UX 10.20 9000/800
    Y .       /usr/sbin/devnm fb0999c3bb86101a02013a85c7d77122 HP-UX 10.20 9000/800
    Y .       /usr/sbin/diskinfo 3d78020c05f57844523bea5fdc4e1898 HP-UX 10.20 9000/800
    Y .       /usr/sbin/envd 4e465ccda2909f6b35e2a9da004c25e7 HP-UX 10.20 9000/800
    Y .       /usr/sbin/getty 2af529021d0adb7f737a7dba95f2fa9d HP-UX 10.20 9000/800
    Y .       /usr/sbin/mvdir c2361ca623db1335f0a8c577c190f012 HP-UX 10.20 9000/800
    Y .       /usr/sbin/pfs_exportfs afddc8dfe578edb71ce6cfa3b73593ab HP-UX 10.20 9000/800
    Y .       /usr/sbin/pfs_mount 75e320709fa75c0faca62f416c7a6846 HP-UX 10.20 9000/800
    Y .       /usr/sbin/pfs_mountd 08767ffb49ad149d93fc3d4bc5460f3a HP-UX 10.20 9000/800
    Y .       /usr/sbin/pfs_mountd.rpc c6690386d044370e0390e11986883802 HP-UX 10.20 9000/800
    Y .       /usr/sbin/pfs_umount df15c1664402cebff2f865ca674c1a3e HP-UX 10.20 9000/800
    Y .       /usr/sbin/pfsd c2608993a7970343ce5a1c6eabf7590f HP-UX 10.20 9000/800
    Y .       /usr/sbin/pfsd.rpc 352dcdbf1b288233a46780cea49ae12e HP-UX 10.20 9000/800
    Y .       /usr/sbin/pwgr_stat 83172595d69831d14f8ecb164e953046 HP-UX 10.20 9000/800
    Y .       /usr/sbin/pwgrd 499e6e1f78b307642d8db5e3d9bb13be HP-UX 10.20 9000/800
    Y .       /usr/sbin/scsictl 176714ba33d10d877a7b7df557ac6373 HP-UX 10.20 9000/800
    Y .       /usr/sbin/setboot 13f76b8bd5ec5eaaa3ad3aa5357d3edb HP-UX 10.20 9000/800
    Y .       /usr/sbin/setmnt 8e96ea6cea0a41cc9ea9ca1d099f4a22 HP-UX 10.20 9000/800
    Y .       /usr/sbin/setuname 738448770839355784d70f2cd9418816 HP-UX 10.20 9000/800
    Y .       /usr/sbin/swapon 5d36c9d46c962d4e70e3f31eabc99716 HP-UX 10.20 9000/800
    Y .       /usr/sbin/sync a03323f6b9100921516bf4a1e31701c3 HP-UX 10.20 9000/800
    Y .       /usr/sbin/syncer c260353dc44295792824dfc138d68a8a HP-UX 10.20 9000/800
    Y .       /usr/sbin/syslogd 511c29e3bfa17510b6d5b75d1acf1d74 HP-UX 10.20 9000/800
    Y .       /usr/sbin/wall ced332d6358488b09367a95eec4698c0 HP-UX 10.20 9000/800
    Y .       /sbin/awk ca035ceefcb299b93e433c908484c5d1 HP-UX 10.20 9000/800
    Y .       /sbin/cat 45963fdf1730a41f866d0ede76331395 HP-UX 10.20 9000/800
    Y .       /sbin/chmod 2ec83d87e8e4557c14e1c7517bc578d8 HP-UX 10.20 9000/800
    Y .       /sbin/chown 3c83b51f18ad22bdeeac01372987c7ed HP-UX 10.20 9000/800
    Y .       /sbin/convertfs 18fd65b0cb0ab2cd803e7e02b26a2524 HP-UX 10.20 9000/800
    Y .       /sbin/dasetup 6d16ea08aa53038381201aef8779b3ef HP-UX 10.20 9000/800
    Y .       /sbin/date 9427a648ce22f228d122325f4373cc00 HP-UX 10.20 9000/800
    Y .       /sbin/download b2d697ae6a6c487f10bab175573c9402 HP-UX 10.20 9000/800
    Y .       /sbin/eisa_config 83527d8ec68415120f699b00c22180f9 HP-UX 10.20 9000/800
    Y .       /sbin/frecover adbc55e71f4ec9166b11a9d0578c67ff HP-UX 10.20 9000/800
    Y .       /sbin/fs/cdfs/mount c4142f24926e131ff9f94ad5104d0066 HP-UX 10.20 9000/800
    Y .       /sbin/fs/hfs/fsck 2ba5702034fefd017e9c60310a2ae98d HP-UX 10.20 9000/800
    Y .       /sbin/fs/hfs/fsdb 48de12a7437ec0c4b37b31d3399a9e80 HP-UX 10.20 9000/800
    Y .       /sbin/fs/hfs/mkfs 9fe72556ae355745a11e8e4af5cbb0af HP-UX 10.20 9000/800
    Y .       /sbin/fs/hfs/mount 3d506ca37e66f2d2b80d158129a13012 HP-UX 10.20 9000/800
    Y .       /sbin/fs/hfs/newfs e7fcf5dc8da0cead53101a87b12ea4d4 HP-UX 10.20 9000/800
    Y .       /sbin/fs/hfs/umount fc335a75331b08035f310fa673d15077 HP-UX 10.20 9000/800
    Y .       /sbin/fs/lofs/mount f28a60c0a32e0e6927afb86b30941601 HP-UX 10.20 9000/800
    Y .       /sbin/fs/nfs/mount d22a66b3ed92905e7ab89e815b8fb390 HP-UX 10.20 9000/800
    Y .       /sbin/fs/nfs/umount 2d879fac8d9066be2a5fe5ff66d5e3e5 HP-UX 10.20 9000/800
    Y .       /sbin/fs_wrapper a91b07f24e882efbf915ba4159aa3de7 HP-UX 10.20 9000/800
    Y .       /sbin/fsclean 3b07520a98cfffeadb175aa090aac460 HP-UX 10.20 9000/800
    Y .       /sbin/fstyp 9675abea4ac5a8c4ec423433dfebd06d HP-UX 10.20 9000/800
    Y .       /sbin/init f8d627c46052bf3a352fd417841fcf2c HP-UX 10.20 9000/800
    Y .       /sbin/insf 1e8bf428e8b3b07b77d4e1c2db218c92 HP-UX 10.20 9000/800
    Y .       /sbin/ioinit e87b9eadaa6945bf824dbb01d358671d HP-UX 10.20 9000/800
    Y .       /sbin/ioscan 13f4b5e739ba9cdb42e6720f30a77ed7 HP-UX 10.20 9000/800
    Y .       /sbin/is_local_root 38086e83dd9d3d168c3f3c3a0b58255c HP-UX 10.20 9000/800
    Y .       /sbin/itemap 48261f360ed9571f1221d183f53a40a3 HP-UX 10.20 9000/800
    Y .       /sbin/line 457f0b1382db5750fff701c832e762c1 HP-UX 10.20 9000/800
    Y .       /sbin/link e41ed08dce77caf2a99670d6d600fe50 HP-UX 10.20 9000/800
    Y .       /sbin/ln 8b53eb2f964f3eaebfe22048f3e4991e HP-UX 10.20 9000/800
    Y .       /sbin/ls c1ca88d795cc224f1b1cd63ca9200dd1 HP-UX 10.20 9000/800
    Y .       /sbin/mkboot 5350e1ac7f46d17138f26f088d9e4729 HP-UX 10.20 9000/800
    Y .       /sbin/mkdir 26d0389a794d6748145ce638a59c14a8 HP-UX 10.20 9000/800
    Y .       /sbin/mknod 141bcf03b7a42b1aeaa8a18f0e14f162 HP-UX 10.20 9000/800
    Y .       /sbin/mount eee7d020420c962d4da3c5fed0f05a78 HP-UX 10.20 9000/800
    Y .       /sbin/mountall 151e4aa26b85c0032d5dc9f8d7550867 HP-UX 10.20 9000/800
    Y .       /sbin/mtinit 2ab7459965d65fb8d6b011cafb137b8d HP-UX 10.20 9000/800
    Y .       /sbin/mv 189cd1c79e10bb47dc816f6749f79bcf HP-UX 10.20 9000/800
    Y .       /sbin/passwd 063e7eaa304177989cb5ddf5c1e8ae48 HP-UX 10.20 9000/800
    Y .       /sbin/pax 0cc6e435dd699244ca7b581e72d7855c HP-UX 10.20 9000/800
    Y .       /sbin/reboot 44504025e96a15abd309c7388a82ccf7 HP-UX 10.20 9000/800
    Y .       /sbin/rm 001a85d92b28631c00a10fc66c20b672 HP-UX 10.20 9000/800
    Y .       /sbin/savecore f12d3aa6aedead917295815833c68feb HP-UX 10.20 9000/800
    Y .       /sbin/shutdown 181445d376b0261ec638a48c234dbb9d HP-UX 10.20 9000/800
    Y .       /sbin/stty 02669264849116c5e6e3038d69406b79 HP-UX 10.20 9000/800
    Y .       /sbin/tar 0c38335f0bb6dee7d21612c0a16c1705 HP-UX 10.20 9000/800
    Y .       /sbin/ttytype 17625c762fbbc1e22f21d5543e7c1ffd HP-UX 10.20 9000/800
    Y .       /sbin/umount 310881739881cccd8892d57aabb0f898 HP-UX 10.20 9000/800
    Y .       /sbin/umountall 6d9c4def63d49fef12ea3a3ce0297cbb HP-UX 10.20 9000/800
    Y .       /usr/bin/awk 8b1801069eb9851d32acd14fe462c489 HP-UX 10.20 9000/800
    Y .       /usr/bin/basename 37efe579733a1cf4241d63f559dde30f HP-UX 10.20 9000/800
    Y .       /usr/bin/cat 3ff98eeb287ba5b1c3d27fb26d489954 HP-UX 10.20 9000/800
    Y .       /usr/bin/chgrp e34bee5c6ebdf4ef5dcf38e8c7fb4884 HP-UX 10.20 9000/800
    Y .       /usr/bin/chmod 1f71790a25f6b1b4e45383dfd47e24f1 HP-UX 10.20 9000/800
    Y .       /usr/bin/chown 176946c79d178c6cc98e4cc3484a5c81 HP-UX 10.20 9000/800
    Y .       /usr/bin/cksum ed7f932c934508160eb1db93259f96cf HP-UX 10.20 9000/800
    Y .       /usr/bin/cmp 7830270ad18c18ea9c1bb49f9058ca55 HP-UX 10.20 9000/800
    Y .       /usr/bin/comm 9d77eabdd34732a5adcf3b3b5ba37292 HP-UX 10.20 9000/800
    Y .       /usr/bin/cp c97f1b7f3316f1f203e3311883c1a390 HP-UX 10.20 9000/800
    Y .       /usr/bin/cpio c0f560c9b60a58901c7c1b53cbb223eb HP-UX 10.20 9000/800
    Y .       /usr/bin/cut c0340007e1d95b8c861915c5838be4d1 HP-UX 10.20 9000/800
    Y .       /usr/bin/date 1bf033c78c01ab3cf707f3d3ab500800 HP-UX 10.20 9000/800
    Y .       /usr/bin/dcnodes 9731c029fbdaa8901a8c8c5252696a9d HP-UX 10.20 9000/800
    Y .       /usr/bin/dd d3c6227966024d3479f043f306b0336c HP-UX 10.20 9000/800
    Y .       /usr/bin/df 61af0bab0d85f613f7d2b8f8d4174f3b HP-UX 10.20 9000/800
    Y .       /usr/bin/dirname 816067a8551cf1527c7d6868f6ea0100 HP-UX 10.20 9000/800
    Y .       /usr/bin/echo a9a0cd7de38c738bfa61683d05a319a5 HP-UX 10.20 9000/800
    Y .       /usr/bin/egrep aaee413f4ee021aae3e50318f2e77d71 HP-UX 10.20 9000/800
    Y .       /usr/bin/eucset 164f7b7873130bcf07141df1b52bbc5e HP-UX 10.20 9000/800
    Y .       /usr/bin/expr 74b5e6439003053959404260ae808569 HP-UX 10.20 9000/800
    Y .       /usr/bin/hostname 6d694ebd7e3c23879319ad94efdbddf3 HP-UX 10.20 9000/800
    Y .       /usr/bin/kill 56d3db974cdd8587e833a70f8ebaed03 HP-UX 10.20 9000/800
    Y .       /usr/bin/ksh cb4bb310ce59927337f130a3a11a4826 HP-UX 10.20 9000/800
    Y .       /usr/bin/l e40aa0a34e3944b2b0b082ac56b07900 HP-UX 10.20 9000/800
    Y .       /usr/bin/line 245cf059585e477b5525fdec45fc6876 HP-UX 10.20 9000/800
    Y .       /usr/bin/ln 50b55f47db2388faa0934f7448edc9ee HP-UX 10.20 9000/800
    Y .       /usr/bin/login 948d57dce83e2bb274b72feaacc7db1e HP-UX 10.20 9000/800
    Y .       /usr/bin/mkdir 72fd183252ab3d099bd159d3541c4769 HP-UX 10.20 9000/800
    Y .       /usr/bin/model d525a7ed9cead59790f990642ff7a0fb HP-UX 10.20 9000/800
    Y .       /usr/bin/mv 29e0f6d52bf534b1f018e8330de13d62 HP-UX 10.20 9000/800
    Y .       /usr/bin/passwd 62c49353a3291040036af9aadc1d407e HP-UX 10.20 9000/800
    Y .       /usr/bin/pax 2af98a4eff64a93395c4303fcf5aefa3 HP-UX 10.20 9000/800
    Y .       /usr/bin/ps 5832b60e50bd1c8f16a4af84963af2dd HP-UX 10.20 9000/800
    Y .       /usr/bin/pty 1e0039cccc7980c142cea77e4a967ec4 HP-UX 10.20 9000/800
    Y .       /usr/bin/pwd 7c84272281c51f46d9c8280732917393 HP-UX 10.20 9000/800
    Y .       /usr/bin/rm 26cedfae74fa179d16d28b4d3e77d209 HP-UX 10.20 9000/800
    Y .       /usr/bin/rsh 5e83fdc0cd011e7c65df09d43a665af1 HP-UX 10.20 9000/800
    Y .       /usr/bin/rtprio bbea1e8a3bf774babc79c129833d5da9 HP-UX 10.20 9000/800
    Y .       /usr/bin/rtsched f160a73a58b832b5cff8dbd2930fb3e8 HP-UX 10.20 9000/800
    Y .       /usr/bin/sed ebf4abb9829c2ab7d69c9a55204faf41 HP-UX 10.20 9000/800
    Y .       /usr/bin/sleep df7191c61d75c5cea6bbd114c3ad3d1e HP-UX 10.20 9000/800
    Y .       /usr/bin/sort e721c79bb96f75a12f847292b894635f HP-UX 10.20 9000/800
    Y .       /usr/bin/stty 2a26ebe602b99e290acc0d8b850b1de9 HP-UX 10.20 9000/800
    Y .       /usr/bin/su a285ca801d361884c0e6ad2e8fb38c47 HP-UX 10.20 9000/800
    Y .       /usr/bin/tar 923a46723f225c729faf90c8fd9fce57 HP-UX 10.20 9000/800
    Y .       /usr/bin/touch 1c963307220096ef1f8cbc0ea9140091 HP-UX 10.20 9000/800
    Y .       /usr/bin/ttytype b9f96b9d0d7e981bfe1ce9c5c1ab90c6 HP-UX 10.20 9000/800
    Y .       /usr/bin/uname 2dd3b19dd7657af520584d161e8d0596 HP-UX 10.20 9000/800
    Y .       /usr/bin/wc c2367a3ddc1e911a167a92d47aa03147 HP-UX 10.20 9000/800
    Y .       /usr/bin/what 2d86e0489a69b3874fc15a2bcdc30309 HP-UX 10.20 9000/800
    Y .       /usr/ccs/bin/make baa09a4a84fc658fd94faa5cff9354e4 HP-UX 10.20 9000/800
    Y .       /usr/lbin/chgpt 512694fdc9cbdadb84a6dee9646171b4 HP-UX 10.20 9000/800
    Y .       /usr/lbin/dcnodesd 6f61dd3571dc1450ff77b59ce5bfbe56 HP-UX 10.20 9000/800
    Y .       /usr/lbin/dhcpdb2conf 1c410585f2aeccbd2a8641d14c43bb75 HP-UX 10.20 9000/800
    Y .       /usr/lbin/fs/hfs/ff 81ccfdcbf91b4def77bd35472ec7b373 HP-UX 10.20 9000/800
    Y .       /usr/lbin/fs/hfs/fsadm 57422274fb758fff32cc96a9bbc1289c HP-UX 10.20 9000/800
    Y .       /usr/lbin/fs/hfs/labelit 60eb64233f73ed0800396539b8f79645 HP-UX 10.20 9000/800
    Y .       /usr/lbin/fs/hfs/ncheck 69f4a5875862b73277ca30ccb9767f9b HP-UX 10.20 9000/800
    Y .       /usr/lbin/fs/hfs/quot e4464ab47b1575476d23b247d50ce381 HP-UX 10.20 9000/800
    Y .       /usr/lbin/fs/hfs/volcopy 91b41310df12bc1e16a6fb9b9d968ffa HP-UX 10.20 9000/800
    Y .       /usr/lbin/protect_pty cf5183aa8910be7ee878d836f57a4647 HP-UX 10.20 9000/800
    Y .       /usr/newconfig/sbin/sh a9bcfbf2dd1d699a6d79a321e5dad227 HP-UX 10.20 9000/800
    Y .       /usr/old/bin/passwd a3010fe4f354b4af1f8e2f2685f3998a HP-UX 10.20 9000/800
    Y .       /usr/old/bin/sh 7c8b78c4cad61e35d2a7e0f9ecd8e5ce HP-UX 10.20 9000/800
    Y .       /usr/old/etc/fsck 371f0035e9ec381663e420c001a9faee HP-UX 10.20 9000/800
    Y .       /usr/old/etc/mount 9c92b1308906c8bb610bd600c95e8fc1 HP-UX 10.20 9000/800
    Y .       /usr/old/etc/ncheck 3ec0896b3d31852a1986295d84f9a15e HP-UX 10.20 9000/800
    Y .       /usr/old/etc/newfs eb999aa820adc9aeddc8c3c8490624c9 HP-UX 10.20 9000/800
    Y .       /usr/old/usr/bin/cksum 585e2ea50edc125b8367eca792e6aa98 HP-UX 10.20 9000/800
    Y .       /usr/old/usr/bin/mkpdf 28aef5efaa9066613f4c49aa3e3891ce HP-UX 10.20 9000/800
    Y .       /usr/sbin/ch_exports 2145a145befc15fb77c3a51f459f6cc1 HP-UX 10.20 9000/800
    Y .       /usr/sbin/ch_rc 5e7796f0c21326aad302b7d764a1f626 HP-UX 10.20 9000/800
    Y .       /usr/sbin/dcopy f9202fd0b67800916cf823a8febc31c8 HP-UX 10.20 9000/800
    Y .       /usr/sbin/devnm 722111ffa27b9d4ae4e98dbb3f04a512 HP-UX 10.20 9000/800
    Y .       /usr/sbin/diskinfo 6e6ddec4aa614b4daf58997fef6bcb86 HP-UX 10.20 9000/800
    Y .       /usr/sbin/getty 19444f5371a192a37fe6d43b68730186 HP-UX 10.20 9000/800
    Y .       /usr/sbin/mvdir b8de2858be0ba3a6d4e11b119d73497b HP-UX 10.20 9000/800
    Y .       /usr/sbin/pfs_exportfs 6f59f925c558b1e3c9f1ad239a172c19 HP-UX 10.20 9000/800
    Y .       /usr/sbin/pfs_mount 256d72e37b5e2e3023bf159af68a4ed1 HP-UX 10.20 9000/800
    Y .       /usr/sbin/pfs_mountd bc2154e6ba0c52cdc0dc8492902e5850 HP-UX 10.20 9000/800
    Y .       /usr/sbin/pfs_mountd.rpc cbcd1d714d9dbaf640d55d5824cf46d0 HP-UX 10.20 9000/800
    Y .       /usr/sbin/pfs_umount 6636ad9c9b553041146f504da7471065 HP-UX 10.20 9000/800
    Y .       /usr/sbin/pfsd ac2e9f0c711c67c9d670bdd06b9dec5b HP-UX 10.20 9000/800
    Y .       /usr/sbin/pfsd.rpc a78d81ef70a0044107f889d5907b012a HP-UX 10.20 9000/800
    Y .       /usr/sbin/scsictl 1f10ec0573bcff062f5d554f57ab1600 HP-UX 10.20 9000/800
    Y .       /usr/sbin/setboot ad46a2e858ee5c0aae7a73776adb603a HP-UX 10.20 9000/800
    Y .       /usr/sbin/setmnt e506d1f433e95bf596dcf337df07810d HP-UX 10.20 9000/800
    Y .       /usr/sbin/setuname 0f35a8c04d1abfaf57364c84a7da2905 HP-UX 10.20 9000/800
    Y .       /usr/sbin/swapon 049b664f31fc6d9e674fcafd55a89bef HP-UX 10.20 9000/800
    Y .       /usr/sbin/sync f69d5a8a93cbd467fec3316997451a68 HP-UX 10.20 9000/800
    Y .       /usr/sbin/syncer 7778500074ede3e1ba9ca8631b704f93 HP-UX 10.20 9000/800
    Y .       /usr/sbin/syslogd c3c2579a788dd7d0d7cbd81d0ad67141 HP-UX 10.20 9000/800
    Y .       /usr/sbin/wall 82dd4e05f4d1b249048e558589bdde08 HP-UX 10.20 9000/800
    tiger-3.2.3/systems/HPUX/10/10.20/9000/config0000644000175000017500000000714007575375105016232 0ustar  pacopaco# -*- 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.
    #
    # HPUX/config - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    UUID=`/usr/bin/id | /bin/sed -e 's/uid=\([0-9][0-9]*\).*$/\1/'`
    
    export UNAME
    
    [ "$UUID" != "0" -a "$Tiger_TESTMODE" != 'Y' ] && {
      echo " " 1>&2
      echo "This script must be run from a super-user account." 1>&2
      echo " " 1>&2
      exit 1
    }
    
    CAT=/bin/cat
    LS=/bin/ls
    # To show group ownership
    LSGROUP=
    # -L to show file instead of symlink
    LSLINK="-L"
    RM=/bin/rm
    AWK=/usr/bin/awk
    GREP=/bin/grep
    EGREP=/bin/egrep
    # Silent grep
    SGREP="$BASEDIR/util/sgrep"
    SED=/bin/sed
    SORT=/bin/sort
    COMM=/usr/bin/comm
    TAIL=/bin/tail
    MV=/bin/mv
    TR=/usr/bin/tr
    JOIN=/usr/bin/join
    GROUPSS=/usr/bin/groups
    FILECMD=/usr/bin/file
    UNIQ=/usr/bin/uniq
    PASTE=/usr/bin/paste
    BASENAME=/bin/basename
    CHOWN=/bin/chown
    CHMOD=/bin/chmod
    LN=/bin/ln
    WC=/bin/wc
    #
    # Disable diff because it doesn't support -D... so we can not
    # use diff... this will cause reports to be mailed as is... future
    # refinement will handle this.
    #
    #DIFF=/bin/diff
    MAILER=/usr/bin/mailx
    SENDMAILS="/usr/lib/sendmail"
    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
    #
    UNAME=/bin/uname
    GETHOSTNAME=/bin/hostname
    EXPR=/bin/expr
    STRINGS=/usr/bin/strings
    FIND=/bin/find
    FINDXDEV=-xdev
    FMT=$CAT
    CC=/bin/cc
    PS=/bin/ps
    DATE=/bin/date
    DATECMD="$DATE +%y%m%d"
    TIMECMD="$DATE +%H:%M"
    TESTLINK=-h
    TESTEXEC=-x
    #
    #
    export UNAME GETHOSTNAME EXPR STRINGS FIND FINDXDEV
    export FMT CC PS DATE DATECMD TIMECMD TESTLINK TESTEXEC
    #
    WAIT=wait
    #
    # Using NIS (YP)?
    YPCAT=/usr/bin/ypcat
    #
    #
    YPSERVER="NO"
    ($PS -el | $GREP ypserv | $SGREP -v $GREP) && YPSERVER="YES"
    export WAIT YPCAT YPSERVER
    #
    MAILSPOOL=/usr/mail
    #
    CRONSPOOL=/usr/spool/cron/crontabs
    #
    ETCSHELLS=/etc/shells
    #
    export MAILSPOOL CRONSPOOL ETCSHELLS
    #
    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 genpasswd
    GEN_GROUP_SETS gengroups
    GEN_CRON_FILES gen_cron
    GEN_ALIAS_SETS genaliases
    CHECK_CRON check_cron
    GEN_BOOTPARAM_SETS genbootparam
    GEN_EXPORT_SETS genexports
    GEN_SERVICES_SETS genservices
    GET_MOUNTS genmounts
    SIGNATURE_FILE signatures
    SERVICESFILE services
    INETDFILE inetd
    FILE_ACL fal.db
    SUID_LIST suid_list
    REL_FILE_EXCP suidpath.db
    GETCLIENTDIRS genclients
    GEN_INETD_SETS gen_inetd
    GETDISKS getdisks
    EMBEDDEDLIST embedlist
    GETUSERHOME getuserhome
    EOL
    `
    tiger-3.2.3/systems/HPUX/10/config0000644000175000017500000001025610000431767015164 0ustar  pacopaco# -*- 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.
    #
    # 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
    #
    #-----------------------------------------------------------------------------
    #
    UUID=`/usr/bin/id | /bin/sed -e 's/uid=\([0-9][0-9]*\).*$/\1/'`
    
    export UNAME
    
    [ "$UUID" != "0" -a "$Tiger_TESTMODE" != 'Y' ] && {
      echo " " 1>&2
      echo "This script must be run from a super-user account." 1>&2
      echo " " 1>&2
      exit 1
    }
    
    CAT=/bin/cat
    LS=/bin/ls
    # To show group ownership
    LSGROUP=
    # -L to show file instead of symlink
    LSLINK="-L"
    RM=/bin/rm
    AWK=/usr/bin/awk
    GREP=/bin/grep
    EGREP=/bin/egrep
    # Silent grep
    SGREP="$BASEDIR/util/sgrep"
    SED=/bin/sed
    SORT=/bin/sort
    COMM=/usr/bin/comm
    TAIL=/bin/tail
    HEAD=/bin/head
    MV=/bin/mv
    TR=/usr/bin/tr
    JOIN=/usr/bin/join
    GROUPSS=/usr/bin/groups
    FILECMD=/usr/bin/file
    UNIQ=/usr/bin/uniq
    PASTE=/usr/bin/paste
    BASENAME=/bin/basename
    CHOWN=/bin/chown
    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
    # refinement will handle this.
    #
    #DIFF=/bin/diff
    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 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
    EXPR=/bin/expr
    STRINGS=/usr/bin/strings
    FIND=/bin/find
    FINDXDEV=-xdev
    FMT=$CAT
    CC=/bin/cc
    PS=/bin/ps
    DATE=/bin/date
    DATECMD="$DATE +%y%m%d"
    TIMECMD="$DATE +%H:%M"
    TESTLINK=-h
    TESTEXEC=-x
    #
    #
    export UNAME GETHOSTNAME EXPR STRINGS FIND FINDXDEV
    export FMT CC PS DATE DATECMD TIMECMD TESTLINK TESTEXEC
    #
    WAIT=wait
    #
    # Using NIS (YP)?
    YPCAT=/usr/bin/ypcat
    #
    #
    YPSERVER="NO"
    ($PS -el | $GREP ypserv | $SGREP -v $GREP) && YPSERVER="YES"
    export WAIT YPCAT YPSERVER
    #
    MAILSPOOL=/usr/mail
    #
    CRONSPOOL=/usr/spool/cron/crontabs
    #
    ETCSHELLS=/etc/shells
    #
    export MAILSPOOL CRONSPOOL ETCSHELLS
    #
    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 genpasswd
    GEN_GROUP_SETS gengroups
    GEN_CRON_FILES gen_cron
    GEN_ALIAS_SETS genaliases
    CHECK_CRON check_cron
    GEN_BOOTPARAM_SETS genbootparam
    GEN_EXPORT_SETS genexports
    GEN_SERVICES_SETS genservices
    GET_MOUNTS genmounts
    SIGNATURE_FILE signatures
    SERVICESFILE services
    INETDFILE inetd
    FILE_ACL fal.db
    SUID_LIST suid_list
    REL_FILE_EXCP suidpath.db
    GETCLIENTDIRS genclients
    GEN_INETD_SETS gen_inetd
    GETDISKS getdisks
    EMBEDDEDLIST embedlist
    GETUSERHOME getuserhome
    EOL
    `
    tiger-3.2.3/systems/HPUX/11/0000755000175000017500000000000011306441027013771 5ustar  pacopacotiger-3.2.3/systems/HPUX/11/ndd_parms0000644000175000017500000000401407720446312015671 0ustar  pacopaco# This file contains the necessary ndd information for the check_ndd module.
    # Blank lines and lines starting with '#' in this file are ignored by the check_ndd module.
    #
    # The fields are defined as:
    #   device file:   This is the /dev files used by ndd.
    #   ndd parameter: This is the parameter checked by ndd.
    #   good values:   This is the '|' seperated lists of "good" values returned by ndd
    #   message label: This is the label associated with the check if the value returned by ndd is "bad".
    #   message id:    This is the message id used with the check if the value returned by ndd is "bad".
    #   message:       This is the message used with the check if the value returned by ndd is "bad".
    
    /dev/ip  ip_forward_directed_broadcasts       0   FAIL ndd001f The system is configured to forward directed broadcasts.
    /dev/ip  ip_forward_src_routed                0   FAIL ndd002f The system is configured to forward packets with source route options.
    /dev/ip  ip_forwarding                        0   WARN ndd003w The system has IP forwarding enabled.
    /dev/ip  ip_pmtu_strategy                     0|1 FAIL ndd004f The system has echo-request PMTU strategy enabled.
    /dev/ip  ip_send_redirects                    0   WARN ndd005w The system has ICMP redirect messages enabled.
    /dev/ip  ip_send_source_quench                0   WARN ndd006w The system has ICMP source quench messages enabled.
    /dev/ip  ip_respond_to_address_mask_broadcast 0   FAIL ndd007f The system is configured to respond to ICMP address mask request broadcasts.
    /dev/ip  ip_respond_to_echo_broadcast         0   FAIL ndd008f The system is configured to respond to ICMP echo request broadcasts.
    /dev/ip  ip_respond_to_timestamp_broadcast    0   FAIL ndd009f The system is configured to respond to ICMP timestamp request broadcasts.
    /dev/ip  ip_respond_to_timestamp              0   FAIL ndd010f The system is configured to respond to ICMP timestamp requests.
    /dev/tcp tcp_text_in_resets                   0   WARN ndd011w The system is configured to allow text messages in TCP RST segments.
    tiger-3.2.3/systems/HPUX/11/check0000755000175000017500000000371307720454472015015 0ustar  pacopaco#!/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.
    #
    # HPUX/11/check - 08/09/2003
    # 
    # Specific checks for HPUX systems
    # 
    #-----------------------------------------------------------------------------
    #
    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 CAT GREP RM SGREP STRINGS || exit 1
      haveallfiles BASEDIR WORKDIR || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    
    haveallcmds CAT GREP RM SGREP STRINGS || exit 1
    haveallfiles BASEDIR WORKDIR || exit 1
    
    
    # Generic check_ndd check
    [ "$Tiger_Check_NETWORKCONFIG" != 'N' ] && {
    #  echo "`$TIMECMD`> Checking for network (ndd) configuration..."
    	$BASEDIR/systems/default/check_ndd
    }
    
    tiger-3.2.3/systems/HPUX/11/config0000644000175000017500000001226510000431767015167 0ustar  pacopaco# -*- 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.
    #
    # 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
    #
    #-----------------------------------------------------------------------------
    #
    UUID=`/usr/bin/id | /bin/sed -e 's/uid=\([0-9][0-9]*\).*$/\1/'`
    
    export UNAME
    
    [ "$UUID" != "0" -a "$Tiger_TESTMODE" != 'Y' ] && {
      echo " " 1>&2
      echo "This script must be run from a super-user account." 1>&2
      echo " " 1>&2
      exit 1
    }
    
    CAT=/bin/cat
    LS=/bin/ls
    # To show group ownership
    LSGROUP=
    # -L to show file instead of symlink
    LSLINK="-L"
    RM=/bin/rm
    AWK=/usr/bin/awk
    GREP=/bin/grep
    EGREP=/bin/egrep
    # Silent grep
    SGREP="$BASEDIR/util/sgrep"
    SED=/bin/sed
    SORT=/bin/sort
    COMM=/usr/bin/comm
    TAIL=/bin/tail
    HEAD=/bin/head
    MV=/bin/mv
    TR=/usr/bin/tr
    JOIN=/usr/bin/join
    GROUPSS=/usr/bin/groups
    FILECMD=/usr/bin/file
    UNIQ=/usr/bin/uniq
    PASTE=/usr/bin/paste
    BASENAME=/bin/basename
    CHOWN=/bin/chown
    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
    if [ $? -ne 4 ] ; then
           PWCK="/usr/sbin/pwck -s"
    else
           PWCK=/usr/sbin/pwck
    fi
    GRPCK=/usr/sbin/grpck
    #
    # Disable diff because it doesn't support -D... so we can not
    # use diff... this will cause reports to be mailed as is... future
    # refinement will handle this.
    #
    #DIFF=/bin/diff
    #
    # For check_trusted
    GETPRDEF=/usr/lbin/getprdef
    #
    # For SSH Daemon configuration
    if [ -f /opt/ssh/etc/sshd_config ]
    then
            SSHD_CONFIG="/opt/ssh/etc/sshd_config"
    else
            SSHD_CONFIG="/etc/opt/openssh/sshd_config"
    fi
    #
    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 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
    EXPR=/bin/expr
    STRINGS=/usr/bin/strings
    FIND=/bin/find
    FINDXDEV=-xdev
    FMT=$CAT
    CC=/bin/cc
    PS=/bin/ps
    DATE=/bin/date
    DATECMD="$DATE +%y%m%d"
    TIMECMD="$DATE +%H:%M"
    TESTLINK=-h
    TESTEXEC=-x
    #
    #
    export UNAME GETHOSTNAME EXPR STRINGS FIND FINDXDEV
    export FMT CC PS DATE DATECMD TIMECMD TESTLINK TESTEXEC
    #
    WAIT=wait
    #
    # Using NIS (YP)?
    YPCAT=/usr/bin/ypcat
    #
    #
    YPSERVER="NO"
    ($PS -el | $GREP ypserv | $SGREP -v $GREP) && YPSERVER="YES"
    export WAIT YPCAT YPSERVER
    #
    MAILSPOOL=/usr/mail
    #
    CRONSPOOL=/usr/spool/cron/crontabs
    #
    ETCSHELLS=/etc/shells
    #
    export MAILSPOOL CRONSPOOL ETCSHELLS
    #
    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 genpasswd
    GEN_GROUP_SETS gengroups
    GEN_CRON_FILES gen_cron
    GEN_ALIAS_SETS genaliases
    CHECK_CRON check_cron
    GEN_BOOTPARAM_SETS genbootparam
    GEN_EXPORT_SETS genexports
    GEN_SERVICES_SETS genservices
    GET_MOUNTS genmounts
    SIGNATURE_FILE signatures
    SERVICESFILE services
    INETDFILE inetd
    FILE_ACL fal.db
    SUID_LIST suid_list
    REL_FILE_EXCP suidpath.db
    GETCLIENTDIRS genclients
    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.3/systems/HPUX/11/inetd0000644000175000017500000000361207557262126015037 0ustar  pacopacobootps       dgram  udp wait   root /etc/bootpd   bootpd
    chargen      dgram  udp nowait root internal
    chargen      stream tcp nowait root internal
    daytime      dgram  udp nowait root internal
    daytime      stream tcp nowait root internal
    discard      dgram  udp nowait root internal
    discard      stream tcp nowait root internal
    echo         dgram  udp nowait root internal
    echo         stream tcp nowait root internal
    exec         stream tcp nowait root /usr/lbin/rexecd   rexecd
    finger       stream tcp nowait bin /usr/lbin/fingerd  fingerd
    ftp          stream tcp nowait root /usr/lbin/ftpd	  ftpd -l
    lanmgrx.osB  stream tcp nowait root /usr/lib/lm/lmsess.osB  lmsess.osB
    login        stream tcp nowait root /usr/lbin/rlogind  rlogind
    printer     stream tcp nowait root /usr/sbin/rlpdaemon  rlpdaemon -i
    rpc dgram udp wait root /usr/dt/bin/rpc.cmsd 100068 2-5 rpc.cmsd
    rpc xti tcp swait root /usr/dt/bin/rpc.ttdbserver 100083 1 /usr/dt/bin/rpc.ttdbserver
    rpc  dgram  udp  wait    root  /usr/sbin/rpc.mountd   100005  1    rpc.mountd
    rpc  dgram  udp  wait    root  /usr/sbin/rpc.rquotad  100011  1    rpc.rquotad
    rpc  dgram  udp  wait    root  /usr/lib/netsvc/rstat/rpc.rstatd   100001  1-3  rpc.rstatd
    rpc  dgram  udp  wait    root  /usr/lib/netsvc/rstat/rpc.rusersd  100002  1-2  rpc.rusersd
    rpc  dgram  udp  wait    root  /usr/lib/netsvc/rstat/rpc.rwalld   100008  1    rpc.rwalld
    rpc  dgram  udp  wait    root  /usr/lib/netsvc/rstat/rpc.sprayd   100012  1    rpc.sprayd
    rpc  stream tcp  nowait  root  /usr/lib/netsvc/rstat/rpc.rexd     100017  1    rpc.rexd
    shell        stream tcp nowait root /usr/lbin/remshd   remshd
    telnet       stream tcp nowait root /usr/lbin/telnetd  telnetd 
    tftp         dgram  udp wait   root /usr/lbin/tftpd    tftpd
    time         dgram  udp nowait root internal
    time         stream tcp nowait root internal
    spc     stream tcp  nowait  root  /usr/softbench/bin/softspcd  /usr/softbench/bin/softspcd
    tiger-3.2.3/systems/HPUX/11/11.00/0000755000175000017500000000000011306441027014430 5ustar  pacopacotiger-3.2.3/systems/HPUX/11/11.00/9000/0000755000175000017500000000000011306441027015020 5ustar  pacopacotiger-3.2.3/systems/HPUX/11/11.00/9000/signatures0000644000175000017500000002760307575375105017157 0ustar  pacopaco#     tiger - A UN*X security checking system
    #     Copyright (C) 2000 Ellen L. Mitchell, Douglas Lee Schales
    #
    #     Please see the file `COPYING' for the complete copyright notice.
    #
    # HPUX 11.00 signatures - 09/07/2000
    #
    #-----------------------------------------------------------------------------
    #
    #@DEST=HPUX/11/11.00/9000
    #@CONFIG=HPUX/11
    #
    # Generated 2000/09/07 ellenm
    #
    Y .       /sbin/awk cd41f8bda826309e9b777abd053a94a2 HP-UX 11.00 9000/800
    Y .       /sbin/cat 9fc9e4541f40ba4516a33ea88737076c HP-UX 11.00 9000/800
    Y .       /sbin/chmod 5ba528a4c1bf749cf3490130e4333d6c HP-UX 11.00 9000/800
    Y .       /sbin/chown ba7cfe85c86461ab0d0758163673b4ab HP-UX 11.00 9000/800
    Y .       /sbin/convertfs a38a2ab8d81fd4e08fb998b096744940 HP-UX 11.00 9000/800
    Y .       /sbin/crashconf c9343612b3cb721019b94d2fdd1499b1 HP-UX 11.00 9000/800
    Y .       /sbin/dasetup 636b677601486e5048891341148f3388 HP-UX 11.00 9000/800
    Y .       /sbin/date 3de559ff6debd2b5f897b06fe5f75d55 HP-UX 11.00 9000/800
    Y .       /sbin/download 849cfabfbb918e3f8a90c1e6e5d0da3c HP-UX 11.00 9000/800
    Y .       /sbin/eisa_config 0c1ce9014a8f1f53c5c392ece7e51e78 HP-UX 11.00 9000/800
    Y .       /sbin/frecover 33e37006da7ae3fd87407338a3e0be37 HP-UX 11.00 9000/800
    Y .       /sbin/fs/cdfs/mount 254cf70a4aa6c907b6ad1d24faec4a21 HP-UX 11.00 9000/800
    Y .       /sbin/fs/hfs/fsck 98d42080072e393b7c5555ddf81f2d26 HP-UX 11.00 9000/800
    Y .       /sbin/fs/hfs/fsdb b731d416ada80dd63c419b494501bc0a HP-UX 11.00 9000/800
    Y .       /sbin/fs/hfs/mkfs 01a907ff85939dd8d44754b1f5954afd HP-UX 11.00 9000/800
    Y .       /sbin/fs/hfs/mount effabda3d689288b3866b248caff29a1 HP-UX 11.00 9000/800
    Y .       /sbin/fs/hfs/newfs b557f17836f7436fcc8ccd447eaf4539 HP-UX 11.00 9000/800
    Y .       /sbin/fs/hfs/umount 1e98225a5bd71fe949e89f80d013d5a7 HP-UX 11.00 9000/800
    Y .       /sbin/fs/lofs/mount 0b7f5a95dfdf196792cb636f82f4e53b HP-UX 11.00 9000/800
    Y .       /sbin/fs_wrapper 3f31464ad76139d1d6371943badd9487 HP-UX 11.00 9000/800
    Y .       /sbin/fsclean 8b76a7e5c7af319dc805a847b5ebd768 HP-UX 11.00 9000/800
    Y .       /sbin/fstyp 396ce61b91dd391e21f661551bc701a5 HP-UX 11.00 9000/800
    Y .       /sbin/init 4979030bbb7f709b3ac85e1c79ed3303 HP-UX 11.00 9000/800
    Y .       /sbin/insf 089a5d8b2d307bb390e69bd7470826ef HP-UX 11.00 9000/800
    Y .       /sbin/ioinit d1e2ee32f942bf6770e570d3ddb290ac HP-UX 11.00 9000/800
    Y .       /sbin/ioscan 4e06d92d360b9506c10e31391dca487c HP-UX 11.00 9000/800
    Y .       /sbin/is_local_root 4ea2653377b235ab783032e860d0b37f HP-UX 11.00 9000/800
    Y .       /sbin/itemap d8d858a5d4352e5fe0da87090a7fc207 HP-UX 11.00 9000/800
    Y .       /sbin/line 3bd7b4f3a8a85c991c2f8f3f0fc7c2dd HP-UX 11.00 9000/800
    Y .       /sbin/link 71debf1c1053dd9a2cc9a8d825da2752 HP-UX 11.00 9000/800
    Y .       /sbin/ln cd92cf6a76231bb63f9d4af05bb433ac HP-UX 11.00 9000/800
    Y .       /sbin/ls e2fdc4c0464ef43093f7cd0e8b9977c5 HP-UX 11.00 9000/800
    Y .       /sbin/mkboot 46fe7017c39ba235682077dbb9f67430 HP-UX 11.00 9000/800
    Y .       /sbin/mkdir 00edaeac9104bd356c492481aa07d836 HP-UX 11.00 9000/800
    Y .       /sbin/mknod 6863ede4014e6bdfed4f6424b69d39d4 HP-UX 11.00 9000/800
    Y .       /sbin/mount fe4ec2563ed5642455bd55c102a770b5 HP-UX 11.00 9000/800
    Y .       /sbin/mountall 8b4dd963655f3e9050e5d9003845ad6b HP-UX 11.00 9000/800
    Y .       /sbin/mtinit 5be9774861c37a6f96e1c9ce65d4d903 HP-UX 11.00 9000/800
    Y .       /sbin/mv c9a848d42a7cf8e0458ce5e6701d6971 HP-UX 11.00 9000/800
    Y .       /sbin/passwd d102cf8c6b0e41afc9588935c748fe95 HP-UX 11.00 9000/800
    Y .       /sbin/pax e6170d37465f3f4fa7f66569961e9778 HP-UX 11.00 9000/800
    Y .       /sbin/reboot 29dd3015e10d079c69e3c31fdee9ea6a HP-UX 11.00 9000/800
    Y .       /sbin/rm a3036ea11a1cd53dbed73daef1ac49c4 HP-UX 11.00 9000/800
    Y .       /sbin/savecrash 7ffe642d504fd779d85031743ce259e8 HP-UX 11.00 9000/800
    Y .       /sbin/shutdown 83bbb223fdb401e65bc77c21e5ff0add HP-UX 11.00 9000/800
    Y .       /sbin/stty e47736137e8ed3c6182405ee8ed68c07 HP-UX 11.00 9000/800
    Y .       /sbin/tar 629238abe4a342e068b6cc481dd4b116 HP-UX 11.00 9000/800
    Y .       /sbin/ttytype 5fb52bed12467069039304c724e96011 HP-UX 11.00 9000/800
    Y .       /sbin/umount 17f3b1fd8a532c9a58faf352d6ab3ba9 HP-UX 11.00 9000/800
    Y .       /sbin/umountall 9fdf6f6820bf8ca4289dfde1414647f6 HP-UX 11.00 9000/800
    Y .       /sbin/uname a55ed0530e5d5f4a3b915d0bc5d78d80 HP-UX 11.00 9000/800
    Y .       /usr/bin/awk deb41cbbb03a1364c77e60208f886869 HP-UX 11.00 9000/800
    Y .       /usr/bin/basename f21f307787268c1810ece4b7a588784e HP-UX 11.00 9000/800
    Y .       /usr/bin/cat f7a2277eb11d7f9fae780856b5270b09 HP-UX 11.00 9000/800
    Y .       /usr/bin/chfn a6c51a15d48cbc7a6f704bc5f32fa999 HP-UX 11.00 9000/800
    Y .       /usr/bin/chgrp a4feed4458fd38cd876b9775975192ec HP-UX 11.00 9000/800
    Y .       /usr/bin/chmod de14365ca985b65bd1c9f520f884bc1e HP-UX 11.00 9000/800
    Y .       /usr/bin/chown 91810e22d4ab1e962d30268b3ee59bba HP-UX 11.00 9000/800
    Y .       /usr/bin/cksum e1949e29f48daafb1dcba3fcf948e224 HP-UX 11.00 9000/800
    Y .       /usr/bin/cmp 40ab9e3fa295205bf31802bd2bb33685 HP-UX 11.00 9000/800
    Y .       /usr/bin/comm 333f91bc60163e0b2d4de9fe7733d645 HP-UX 11.00 9000/800
    Y .       /usr/bin/cp b5d9ee33cacc960af0358b454bc2c605 HP-UX 11.00 9000/800
    Y .       /usr/bin/cpio 0ec3a988d30dc7e13d824fdb4302b59a HP-UX 11.00 9000/800
    Y .       /usr/bin/cut e6a940fe39a49d07addad39e36d11444 HP-UX 11.00 9000/800
    Y .       /usr/bin/date 73ecd84b82da5c85a47d6df25410c167 HP-UX 11.00 9000/800
    Y .       /usr/bin/dd 46c9c563a07537261ed2ddf9e736c17d HP-UX 11.00 9000/800
    Y .       /usr/bin/df 9430697210432f27dc2ce10b9ce4f80b HP-UX 11.00 9000/800
    Y .       /usr/bin/dirname c8186985332a6b68111683d20e51fffd HP-UX 11.00 9000/800
    Y .       /usr/bin/echo 02801e6e210c95ad140308e6504bb98b HP-UX 11.00 9000/800
    Y .       /usr/bin/egrep b368cc670b7ffd5d169a608757cfa65a HP-UX 11.00 9000/800
    Y .       /usr/bin/eucset 446c4693961f4c31a0117ba92d6c02da HP-UX 11.00 9000/800
    Y .       /usr/bin/expr 91bfa489e58c2b8f5832a819c76e1530 HP-UX 11.00 9000/800
    Y .       /usr/bin/hostname ddde38416321618a9cf033e6f060be30 HP-UX 11.00 9000/800
    Y .       /usr/bin/kill da19911ac11e2f838f206e2842560a30 HP-UX 11.00 9000/800
    Y .       /usr/bin/ksh 27521d2b647e5539e88284a67554ca52 HP-UX 11.00 9000/800
    Y .       /usr/bin/l 41a43a074561ea9448da3847d032dea7 HP-UX 11.00 9000/800
    Y .       /usr/bin/line 5eaa8534daf78273665cd043a52010ca HP-UX 11.00 9000/800
    Y .       /usr/bin/ln 555288c81bca898dcacb565922ef4abd HP-UX 11.00 9000/800
    Y .       /usr/bin/login 78fca9919125277b49f4f062ac3f91c6 HP-UX 11.00 9000/800
    Y .       /usr/bin/mkdir c8e9b5c2d7234b2fcc9b168330d3001e HP-UX 11.00 9000/800
    Y .       /usr/bin/model a02e8ac7a7a125a0dd6bd0013f52c2ea HP-UX 11.00 9000/800
    Y .       /usr/bin/mv 1bec32184964a205ba2db393ec22df3b HP-UX 11.00 9000/800
    Y .       /usr/bin/pax 67475a94ccb1893c434b863e1c538fcb HP-UX 11.00 9000/800
    Y .       /usr/bin/ps 6d404da18c23b949b24bd4dfcbe32534 HP-UX 11.00 9000/800
    Y .       /usr/bin/pty ff059c747b355e0bbd0c141fe35cd812 HP-UX 11.00 9000/800
    Y .       /usr/bin/pwd cc68c234f750f5fe4a031bbed4ca8d11 HP-UX 11.00 9000/800
    Y .       /usr/bin/rm 1c6324cb71ae8aa37eadcea334cbb956 HP-UX 11.00 9000/800
    Y .       /usr/bin/rsh 754ccdf09ad1f0c685656f0ab9013935 HP-UX 11.00 9000/800
    Y .       /usr/bin/rtprio d59003ef37149a893d2faa0e0051ff45 HP-UX 11.00 9000/800
    Y .       /usr/bin/rtsched 3122c18ad88a862ac604b0ae90b5fe40 HP-UX 11.00 9000/800
    Y .       /usr/bin/sed 9b82f71b921869514517dbed747a6046 HP-UX 11.00 9000/800
    Y .       /usr/bin/sleep 0b81e3ec1d66799bc7eb29ac85525a2f HP-UX 11.00 9000/800
    Y .       /usr/bin/sort 063693f3a7e09ee37e496b33968ede77 HP-UX 11.00 9000/800
    Y .       /usr/bin/stty 00090a75b036ab493a2f1c50045927f0 HP-UX 11.00 9000/800
    Y .       /usr/bin/su 7bd7c3fd7360731b8d68eb28370057d2 HP-UX 11.00 9000/800
    Y .       /usr/bin/tar a1601431afdde754a3a32dc123f85e0e HP-UX 11.00 9000/800
    Y .       /usr/bin/touch 781747a17e08808b0668996b9bcad02d HP-UX 11.00 9000/800
    Y .       /usr/bin/ttytype 49a3f8c7818bf84eeee7e0f892869234 HP-UX 11.00 9000/800
    Y .       /usr/bin/uname 9d4cb107af3522eaa0abd3f069c3f273 HP-UX 11.00 9000/800
    Y .       /usr/bin/wc 7661bc2c961e36e5d065ccdcb7866cc1 HP-UX 11.00 9000/800
    Y .       /usr/bin/what 76ce7a85f93096559f27bac6a38ce62d HP-UX 11.00 9000/800
    Y .       /usr/bin/zmuxdiag 0a968da0c3f39c15040c9c4c2e89749a HP-UX 11.00 9000/800
    Y .       /usr/ccs/bin/make ce583d27c993ea24fcc4f97620a3e1be HP-UX 11.00 9000/800
    Y .       /usr/lbin/chgpt 941ab4490b3930e63282f77beaf7b632 HP-UX 11.00 9000/800
    Y .       /usr/lbin/fs/hfs/ff d4b03f792dd32f59b7fe8fbfadfd6c7d HP-UX 11.00 9000/800
    Y .       /usr/lbin/fs/hfs/fsadm f7ccbb8b644c8e7ac21a169ecca5f798 HP-UX 11.00 9000/800
    Y .       /usr/lbin/fs/hfs/labelit da1272902d421d6e49d12ad2c1dad877 HP-UX 11.00 9000/800
    Y .       /usr/lbin/fs/hfs/ncheck 6e11eb1242836943f3e0f7156d2918e5 HP-UX 11.00 9000/800
    Y .       /usr/lbin/fs/hfs/quot 0b1d9be8e604393960aeec2ec2cb4f35 HP-UX 11.00 9000/800
    Y .       /usr/lbin/fs/hfs/volcopy 0509d7126e0adcd4efad2bc74baca214 HP-UX 11.00 9000/800
    Y .       /usr/lbin/protect_pty 1ea0a6ce182e433f1c61fce2a613582a HP-UX 11.00 9000/800
    Y .       /usr/newconfig/sbin/sh 82f62e54063bbaeaf4e84ab2ebb08a10 HP-UX 11.00 9000/800
    Y .       /usr/old/bin/passwd 4b440401cc5fb1d8581916b36be20198 HP-UX 11.00 9000/800
    Y .       /usr/old/bin/sh 8ecd62599041c1c61aa79d8853ef5390 HP-UX 11.00 9000/800
    Y .       /usr/old/etc/fsck 5b4be28d04d7657e623b960ed68f4f3a HP-UX 11.00 9000/800
    Y .       /usr/old/etc/mount 86c35b47e3469769e49f8f52810a7075 HP-UX 11.00 9000/800
    Y .       /usr/old/etc/ncheck 55a2e9b9f4d756faa9d0ecfde831b373 HP-UX 11.00 9000/800
    Y .       /usr/old/etc/newfs 3dd73c16c8e7c898dbd9e4dc671746a0 HP-UX 11.00 9000/800
    Y .       /usr/old/sbin/savecore d4f145840d99d875be62b40f37119efe HP-UX 11.00 9000/800
    Y .       /usr/old/usr/bin/cksum 7d40144e7c3a3f108a8ef45947814efb HP-UX 11.00 9000/800
    Y .       /usr/old/usr/bin/mkpdf 8a71a6fa332deea47a2dc67169e3701f HP-UX 11.00 9000/800
    Y .       /usr/sbin/ch_exports 89969b795ec7fd37cc9120f7381141e8 HP-UX 11.00 9000/800
    Y .       /usr/sbin/ch_rc 710574e33131fb258d9091d34553ea2a HP-UX 11.00 9000/800
    Y .       /usr/sbin/crashutil a52f359e9f0f31c8b8821f11f5ee8327 HP-UX 11.00 9000/800
    Y .       /usr/sbin/dcopy 67b03c988215a8f49c019da3119b10c8 HP-UX 11.00 9000/800
    Y .       /usr/sbin/devnm fb0999c3bb86101a02013a85c7d77122 HP-UX 11.00 9000/800
    Y .       /usr/sbin/diskinfo 3d78020c05f57844523bea5fdc4e1898 HP-UX 11.00 9000/800
    Y .       /usr/sbin/envd 4e465ccda2909f6b35e2a9da004c25e7 HP-UX 11.00 9000/800
    Y .       /usr/sbin/getty 2af529021d0adb7f737a7dba95f2fa9d HP-UX 11.00 9000/800
    Y .       /usr/sbin/mvdir c2361ca623db1335f0a8c577c190f012 HP-UX 11.00 9000/800
    Y .       /usr/sbin/pfs_exportfs afddc8dfe578edb71ce6cfa3b73593ab HP-UX 11.00 9000/800
    Y .       /usr/sbin/pfs_mount 75e320709fa75c0faca62f416c7a6846 HP-UX 11.00 9000/800
    Y .       /usr/sbin/pfs_mountd 08767ffb49ad149d93fc3d4bc5460f3a HP-UX 11.00 9000/800
    Y .       /usr/sbin/pfs_mountd.rpc c6690386d044370e0390e11986883802 HP-UX 11.00 9000/800
    Y .       /usr/sbin/pfs_umount df15c1664402cebff2f865ca674c1a3e HP-UX 11.00 9000/800
    Y .       /usr/sbin/pfsd c2608993a7970343ce5a1c6eabf7590f HP-UX 11.00 9000/800
    Y .       /usr/sbin/pfsd.rpc 352dcdbf1b288233a46780cea49ae12e HP-UX 11.00 9000/800
    Y .       /usr/sbin/pwgr_stat 83172595d69831d14f8ecb164e953046 HP-UX 11.00 9000/800
    Y .       /usr/sbin/pwgrd 499e6e1f78b307642d8db5e3d9bb13be HP-UX 11.00 9000/800
    Y .       /usr/sbin/scsictl 176714ba33d10d877a7b7df557ac6373 HP-UX 11.00 9000/800
    Y .       /usr/sbin/setboot 13f76b8bd5ec5eaaa3ad3aa5357d3edb HP-UX 11.00 9000/800
    Y .       /usr/sbin/setmnt 8e96ea6cea0a41cc9ea9ca1d099f4a22 HP-UX 11.00 9000/800
    Y .       /usr/sbin/setuname 738448770839355784d70f2cd9418816 HP-UX 11.00 9000/800
    Y .       /usr/sbin/swapon 5d36c9d46c962d4e70e3f31eabc99716 HP-UX 11.00 9000/800
    Y .       /usr/sbin/sync a03323f6b9100921516bf4a1e31701c3 HP-UX 11.00 9000/800
    Y .       /usr/sbin/syncer c260353dc44295792824dfc138d68a8a HP-UX 11.00 9000/800
    Y .       /usr/sbin/syslogd 511c29e3bfa17510b6d5b75d1acf1d74 HP-UX 11.00 9000/800
    Y .       /usr/sbin/wall ced332d6358488b09367a95eec4698c0 HP-UX 11.00 9000/800
    tiger-3.2.3/systems/HPUX/11/11.00/9000/config0000644000175000017500000000714007575375105016232 0ustar  pacopaco# -*- 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.
    #
    # HPUX/config - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    UUID=`/usr/bin/id | /bin/sed -e 's/uid=\([0-9][0-9]*\).*$/\1/'`
    
    export UNAME
    
    [ "$UUID" != "0" -a "$Tiger_TESTMODE" != 'Y' ] && {
      echo " " 1>&2
      echo "This script must be run from a super-user account." 1>&2
      echo " " 1>&2
      exit 1
    }
    
    CAT=/bin/cat
    LS=/bin/ls
    # To show group ownership
    LSGROUP=
    # -L to show file instead of symlink
    LSLINK="-L"
    RM=/bin/rm
    AWK=/usr/bin/awk
    GREP=/bin/grep
    EGREP=/bin/egrep
    # Silent grep
    SGREP="$BASEDIR/util/sgrep"
    SED=/bin/sed
    SORT=/bin/sort
    COMM=/usr/bin/comm
    TAIL=/bin/tail
    MV=/bin/mv
    TR=/usr/bin/tr
    JOIN=/usr/bin/join
    GROUPSS=/usr/bin/groups
    FILECMD=/usr/bin/file
    UNIQ=/usr/bin/uniq
    PASTE=/usr/bin/paste
    BASENAME=/bin/basename
    CHOWN=/bin/chown
    CHMOD=/bin/chmod
    LN=/bin/ln
    WC=/bin/wc
    #
    # Disable diff because it doesn't support -D... so we can not
    # use diff... this will cause reports to be mailed as is... future
    # refinement will handle this.
    #
    #DIFF=/bin/diff
    MAILER=/usr/bin/mailx
    SENDMAILS="/usr/lib/sendmail"
    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
    #
    UNAME=/bin/uname
    GETHOSTNAME=/bin/hostname
    EXPR=/bin/expr
    STRINGS=/usr/bin/strings
    FIND=/bin/find
    FINDXDEV=-xdev
    FMT=$CAT
    CC=/bin/cc
    PS=/bin/ps
    DATE=/bin/date
    DATECMD="$DATE +%y%m%d"
    TIMECMD="$DATE +%H:%M"
    TESTLINK=-h
    TESTEXEC=-x
    #
    #
    export UNAME GETHOSTNAME EXPR STRINGS FIND FINDXDEV
    export FMT CC PS DATE DATECMD TIMECMD TESTLINK TESTEXEC
    #
    WAIT=wait
    #
    # Using NIS (YP)?
    YPCAT=/usr/bin/ypcat
    #
    #
    YPSERVER="NO"
    ($PS -el | $GREP ypserv | $SGREP -v $GREP) && YPSERVER="YES"
    export WAIT YPCAT YPSERVER
    #
    MAILSPOOL=/usr/mail
    #
    CRONSPOOL=/usr/spool/cron/crontabs
    #
    ETCSHELLS=/etc/shells
    #
    export MAILSPOOL CRONSPOOL ETCSHELLS
    #
    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 genpasswd
    GEN_GROUP_SETS gengroups
    GEN_CRON_FILES gen_cron
    GEN_ALIAS_SETS genaliases
    CHECK_CRON check_cron
    GEN_BOOTPARAM_SETS genbootparam
    GEN_EXPORT_SETS genexports
    GEN_SERVICES_SETS genservices
    GET_MOUNTS genmounts
    SIGNATURE_FILE signatures
    SERVICESFILE services
    INETDFILE inetd
    FILE_ACL fal.db
    SUID_LIST suid_list
    REL_FILE_EXCP suidpath.db
    GETCLIENTDIRS genclients
    GEN_INETD_SETS gen_inetd
    GETDISKS getdisks
    EMBEDDEDLIST embedlist
    GETUSERHOME getuserhome
    EOL
    `
    tiger-3.2.3/systems/HPUX/11/ndd_parms_local0000644000175000017500000000152407720446312017046 0ustar  pacopaco# This file contains the local, custom checks performed by the check_ndd module.  This file is
    # available to place additional, site specific checks that are not directly related to security.
    # i.e. Performance enhancements, etc.
    #
    # Blank lines and lines starting with '#' in this file are ignored by the check_ndd module.
    #
    # The fields are defined as:
    #   device file:   This is the /dev files used by ndd.
    #   ndd parameter: This is the parameter checked by ndd.
    #   good values:   This is the '|' seperated lists of "good" values returned by ndd
    #   message label: This is the label associated with the check if the value returned by ndd is "bad".
    #   message id:    This is the message id used with the check if the value returned by ndd is "bad".
    #   message:       This is the message used with the check if the value returned by ndd is "bad".
    tiger-3.2.3/systems/HPUX/11/services0000644000175000017500000000211007557262126015547 0ustar  pacopacoecho 7/tcp
    echo 7/udp
    discard 9/tcp
    discard 9/udp
    systat 11/tcp
    daytime 13/tcp
    daytime 13/udp
    qotd 17/tcp
    chargen 19/tcp
    chargen 19/udp
    ftp-data 20/tcp
    ftp 21/tcp
    telnet 23/tcp
    smtp 25/tcp
    time 37/tcp
    time 37/udp
    rlp 39/udp
    whois 43/tcp
    domain 53/tcp
    domain 53/udp
    bootps 67/udp
    bootpc 68/udp
    tftp 69/udp
    finger 79/tcp
    supdup 95/tcp
    hostnames 101/tcp
    pop 109/tcp
    portmap 111/tcp
    portmap 111/udp
    ident 113/tcp
    sftp 115/tcp
    uucp-path 117/tcp
    nntp 119/tcp
    ntp 123/udp
    netbios_ns 137/tcp
    netbios_ns 137/udp
    netbios_dgm 138/tcp
    netbios_dgm 138/udp
    netbios_ssn 139/tcp
    netbios_ssn 139/udp
    bftp 152/tcp
    snmp 161/udp
    snmp-trap 162/udp
    biff 512/udp
    exec 512/tcp
    login 513/tcp
    who 513/udp
    shell 514/tcp
    syslog 514/udp
    printer 515/tcp
    talk 517/udp
    ntalk 518/udp
    route 520/udp
    timed 525/udp
    lansrm 570/udp
    DAServer 987/tcp
    rlb 1260/tcp
    nft 1536/tcp
    nfsd 2049/udp
    netdist 2106/tcp
    rfa 4672/tcp
    lanmgrx.osB 5696/tcp
    hcserver 5710/tcp
    grmd 5999/tcp
    spc 6111/tcp
    iasqlsvr 7489/tcp
    klogin 543/tcp
    kshell 544/tcp
    ekshell 545/tcp
    kerberos 750/udp
    kerberos 750/tcp
    krbupdate 760/tcp
    kpasswd 761/tcp
    eklogin 2105/tcp
    tiger-3.2.3/systems/HPUX/check_passwdspec0000755000175000017500000000726607760471306017036 0ustar  pacopaco#!/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.
    #
    # check_passwdspec: Perform system specific password checks here like
    #               password aging checks, etc.
    #
    # 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
    #
    #-----------------------------------------------------------------------------
    #
    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
      haveallcmds AWK GEN_PASSWD_SETS || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    #------------------------------------------------------------------------
    haveallfiles BASEDIR WORKDIR || exit 1
    haveallcmds AWK GEN_PASSWD_SETS || exit 1
    
    echo
    echo "# Verifying system specific password checks..."
    
    safe_temp $WORKDIR/pass.list.$$
    trap 'delete $WORKDIR/pass.list.$$ ; exit 1' 1 2 3 15
    
    # Generate the password sets with the passwords.
    $GEN_PASSWD_SETS -p $WORKDIR/pass.list.$$
    
    #
    # Check for password aging.  Accounts with /bin/false for a shell or non-valid
    # characters in the password hash are not checked.
    #
    while read passwd_set
    do
      $AWK -F: '{print $1, $2, $7}' $passwd_set |
      while read login hash shell
      do
        # Ignore password aging check if the shell is /bin/false.
        [ "$shell" = /bin/false ] && continue
    
        # Get the age and password field from the tcbfile if it exists.
        tcbfile="/tcb/files/auth/${login%${login#?}}/$login"
        [ -f $tcbfile ] && {
          age=`$AWK -F: '/u_exp\#[0-9]/ {print $0}' $tcbfile`
          [ -n "$age" ] && continue
    
          # Make sure the password hash only contains valid characters.
          hash=`$AWK -F: '/u_pwd=/ { print substr($2,7) }' $tcbfile`
          [[ "$hash" != +([a-zA-Z0-9\./]) ]] && continue
    
          # Valid password hash without an password expiration date.
          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 pass19w "" "Login ID $login does not have password aging enabled."
        }
      done 
    done < $WORKDIR/pass.list.$$
    
    delete $WORKDIR/pass.list.$$
    exit 0
    tiger-3.2.3/systems/HPUX/check_path0000644000175000017500000003002110045247305015562 0ustar  pacopaco#!/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.3/systems/HPUX/check_trusted0000644000175000017500000000575507720454472016353 0ustar  pacopaco#!/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.
    #
    # check_trusted: Verifies the system is running in trusted mode.
    # For more information on trusted mode in HP-UX please read
    # http://docs.hp.com/hpux/onlinedocs/B2355-90121/B2355-90121.html 
    # Tested on HP-UX 11.11, HP-UX 11.00, and HP-UX 10.20.
    #
    # 06/25/2003 rbradetich@uswest.net - Initial release
    # 06/26/2003 jfs - Added a TODO item, added a check to see if GETPRDEF is
    #                  available.
    # 08/09/2003 jfs - Patch from Ryan Bradetich which adds a check to determine
    #                  system will lock accounts after a number of failed attempts.
    #
    #-----------------------------------------------------------------------------
    # TODO:
    # - HP documentation says that only HP-UX Release 10.10 and later support
    # enabling trusted mode. Consider including a check to determine we
    # are not in an _ancient_ system
    #
    # - This check can be improved in the future to possibly specify the 
    #   number of failed login attempts, etc.
    #
    #-----------------------------------------------------------------------------
    #
    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 GETPRDEF || exit 1
    
    echo
    echo "# Verifying trusted mode..."
    
    $GETPRDEF -r 2>&1 >/dev/null
    if [ $? -eq 4 ]; then
      message WARN trust001w "" "The system is not running in trusted mode."
      exit 0
    fi
    
    # Verify the number of login attempts are limited.
    num=`$GETPRDEF -m umaxlntr`
    ( [ -z "$num" ] || (( ${num#umaxlntr=} < 1 ))) && {
      message WARN trust002w "" "The system is not configured to limit the number of login attempts."
    }
    
    exit 0
    tiger-3.2.3/systems/HPUX/config0000644000175000017500000001163407760447753014772 0ustar  pacopaco# -*- 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.
    #
    # 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
    #                    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.
    # 11/18/2003 - jfs - Add EXPAND (patch from  Ryan Bradetich)
    # 11/19/2003 - jfs - Add REALPATH and SNEFRU (patch from  Ryan Bradetich)
    #
    #-----------------------------------------------------------------------------
    #
    UUID=`/usr/bin/id | /bin/sed -e 's/uid=\([0-9][0-9]*\).*$/\1/'`
    
    export UUID
    
    [ "$UUID" != "0" -a "$Tiger_TESTMODE" != 'Y' ] && {
      echo " " 1>&2
      echo "This script must be run from a super-user account." 1>&2
      echo " " 1>&2
      exit 1
    }
    
    CAT=/bin/cat
    LS=/bin/ls
    # To show group ownership
    LSGROUP=
    # -L to show file instead of symlink
    LSLINK="-L"
    RM=/bin/rm
    AWK=/usr/bin/awk
    GREP=/bin/grep
    EGREP=/bin/egrep
    # Silent grep
    SGREP="$BASEDIR/util/sgrep"
    SED=/bin/sed
    SORT=/bin/sort
    COMM=/usr/bin/comm
    TAIL=/bin/tail
    HEAD=/bin/head
    MV=/bin/mv
    TR=/usr/bin/tr
    JOIN=/usr/bin/join
    GROUPSS=/usr/bin/groups
    FILECMD=/usr/bin/file
    UNIQ=/usr/bin/uniq
    PASTE=/usr/bin/paste
    BASENAME=/bin/basename
    CHOWN=/bin/chown
    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
    if [ $? -ne 4 ] ; then
           PWCK="/usr/sbin/pwck -s"
    else
           PWCK=/usr/sbin/pwck
    fi
    GRPCK=/usr/sbin/grpck
    #
    # Disable diff because it doesn't support -D... so we can not
    # use diff... this will cause reports to be mailed as is... future
    # refinement will handle this.
    #
    #DIFF=/bin/diff
    #
    # For check_trusted
    GETPRDEF=/usr/lbin/getprdef
    #
    # For SSH Daemon configuration
    if [ -f /opt/ssh/etc/sshd_config ]
    then
    	SSHD_CONFIG="/opt/ssh/etc/sshd_config"
    else
    	SSHD_CONFIG="/etc/opt/openssh/sshd_config"
    fi
    #
    MAILER=/usr/bin/mailx
    SENDMAILS="/usr/lib/sendmail"
    SENDMAILCF="/usr/lib/sendmail.cf"
    #
    export CAT LS LSGROUP LSLINK RM AWK GREP EGREP SGREP SED
    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
    EXPR=/bin/expr
    STRINGS=/usr/bin/strings
    FIND=/bin/find
    FINDXDEV=-xdev
    FMT=$CAT
    CC=/bin/cc
    PS=/bin/ps
    DATE=/bin/date
    DATECMD="$DATE +%y%m%d"
    TIMECMD="$DATE +%H:%M"
    TESTLINK=-h
    TESTEXEC=-x
    #
    #
    export UNAME GETHOSTNAME EXPR STRINGS FIND FINDXDEV
    export FMT CC PS DATE DATECMD TIMECMD TESTLINK TESTEXEC
    #
    WAIT=wait
    #
    # Using NIS (YP)?
    YPCAT=/usr/bin/ypcat
    #
    #
    YPSERVER="NO"
    ($PS -el | $GREP ypserv | $SGREP -v $GREP) && YPSERVER="YES"
    export WAIT YPCAT YPSERVER
    #
    MAILSPOOL=/usr/mail
    #
    CRONSPOOL=/usr/spool/cron/crontabs
    #
    ETCSHELLS=/etc/shells
    #
    export MAILSPOOL CRONSPOOL ETCSHELLS
    #
    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 genpasswd
    GEN_GROUP_SETS gengroups
    GEN_CRON_FILES gen_cron
    GEN_ALIAS_SETS genaliases
    CHECK_CRON check_cron
    GEN_BOOTPARAM_SETS genbootparam
    GEN_EXPORT_SETS genexports
    GEN_SERVICES_SETS genservices
    GET_MOUNTS genmounts
    SIGNATURE_FILE signatures
    SERVICESFILE services
    INETDFILE inetd
    FILE_ACL fal.db
    SUID_LIST suid_list
    REL_FILE_EXCP suidpath.db
    GETCLIENTDIRS genclients
    GEN_INETD_SETS gen_inetd
    GETDISKS getdisks
    EMBEDDEDLIST embedlist
    GETUSERHOME getuserhome
    EOL
    `
    tiger-3.2.3/systems/HPUX/fal.db0000644000175000017500000001276407502327223014637 0ustar  pacopaco#
    #     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.
    #
    # HPUX/file_access_list - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    #                           owner group r w x   r w x   r w xLVL MessageIDs
    #--------------------------------------------------------------------------
    /                           root  root  1 . 1   1 0 1   1 0 1 W 018 018 018
    /etc                        root  root  1 . 1   1 0 1   1 0 1 W 019 019 019
    /bin                        root  root  1 . 1   1 0 1   1 0 1 W 001 002 003
    /usr                        root  root  1 . 1   1 0 1   1 0 1 W 001 002 003
    /usr/news		    .     .     . . .   . . .   . . . . 001 002 003
    /usr/mail                   .     .     . . .   . . .   . . . . 001 002 003
    /usr/bin                    root  root  1 . 1   1 0 1   1 0 1 A 001 002 003
    /usr/lib                    root  root  1 . 1   1 0 1   1 0 1 . 001 002 003
    /usr/ucb                    root  root  1 . 1   1 0 1   1 0 1 A 001 002 003
    /usr/*                      .     .     . . .   . 0 .   . 0 . . 001 002 003
    /dev                        root  .     . . .   1 0 1   1 0 1 . 001 002 003
    #
    /hp-ux                      root  .     1 . 1   1 0 0   1 0 0 . 001 002 003
    /.cshrc                     root  .     1 . .   . 0 .   . 0 . W 006 006 006
    /.login                     root  .     1 . .   . 0 .   . 0 . W 006 006 006
    /.profile                   root  .     1 . .   . 0 .   . 0 . W 006 006 006
    /.forward                   root  .     1 . .   . 0 .   . 0 . W 006 006 006
    /.rhosts                    root  .     1 . 0   0 0 0   0 0 0 W 006 006 006
    #
    /usr/lib/aliases            root  .     1 . 0   1 0 0   1 0 0 F 007 007 007
    /usr/lib/aliases.dir        root  .     1 . 0   1 0 0   1 0 0 F 007 007 007
    /usr/lib/aliases.pag        root  .     1 . 0   1 0 0   1 0 0 F 007 007 007
    /etc/inittab		    root  .     1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/exports                root  .     1 . 0   . 0 0   . 0 0 W 008 008 008
    /etc/forward		    root  .     1 . 0   . 0 0   . 0 0 W 007 007 007
    /etc/checklist              root  .     1 . 0   . 0 0   . 0 0 W 001 002 003
    /etc/bootptab		    root  .     1 . 0   . 0 0   . 0 0 W 001 002 003
    /etc/group                  root  .     1 . 0   1 0 0   1 0 0 F 009 009 009
    /etc/hosts	            root  .     1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/hosts.allow            root  .     1 . 0   . 0 0   . 0 0 W 010 010 010
    /etc/hosts.deny		    root  .     1 . 0   . 0 0   . 0 0 W 010 010 010
    /etc/hosts.equiv            root  .     1 . 0   0 0 0   0 0 0 W 011 011 011
    /etc/hosts.lpd              root  .     1 . 0   . 0 0   . 0 0 W 011 011 011
    /etc/inetd.conf             root  .     1 . 0   . 0 0   . 0 0 W 012 012 012
    /etc/motd                   root  .     1 . 0   1 . 0   1 . 0 W 001 002 003
    /etc/mnttab                 root  .     1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/netgroup               root  .     1 . 0   0 0 0   0 0 0 F 013 013 013
    /etc/passwd                 root  .     1 . 0   1 0 0   1 0 0 A 014 014 014
    /etc/*rc                    root  .     1 . 0   . 0 .   . 0 . F 015 015 015
    /etc/resolv.conf            root  .     1 . 0   1 0 0   1 0 0 W 016 016 016
    /etc/rpc                    root  .     1 . 0   1 0 0   1 0 0 W 001 002 003
    /usr/lib/sendmail.cf        root  .     1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/services               root  .     1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/syslog.conf            root  .     1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/syslog.pid             root  .     1 . 0   . 0 0   . 0 0 W 001 002 003
    /etc/utmp                   root  .     1 . 0   1 0 0   1 0 0 W 017 017 017
    /etc/*                      .     .     . . .   . 0 .   . 0 . W 001 002 003
    /usr/etc/*		    .     .     . . .   . 0 .   . 0 . W 001 002 003
    /usr/lib/*		    .     .     . . .   . 0 .   . 0 . W 001 002 003
    /lib/*                      .     .     . . .   . 0 .   . 0 . W 001 002 003
    #
    #
    /usr/bin/uulog              .     .     . 0 1   . 0 1   . 0 . . 001 002 003
    /usr/bin/uuto               .     .     . 0 1   . 0 1   . 0 . . 001 002 003
    /usr/bin/uupick             .     .     . 0 1   . 0 1   . 0 . . 001 002 003
    /usr/bin/cu                 root  .     . 0 1   . 0 1   . 0 . . 001 002 003
    /usr/bin/uucp               uucp  .     . 0 1   . 0 1   . 0 . . 001 002 003
    /usr/bin/uux                uucp  .     . 0 1   . 0 1   . 0 . . 001 002 003
    /usr/bin/uuname             uucp  .     . 0 1   . 0 1   . 0 . . 001 002 003
    /usr/bin/uustat             uucp  .     . 0 1   . 0 1   . 0 . . 001 002 003
    /bin/write                  root  .     . . 1   . 0 .   . 0 . . 001 002 003
    /etc/wall                   root  .     . . 1   . 0 .   . 0 . . 001 002 003
    #
    /bin/login                  root  .     1 . 1   1 0 1   1 0 1 F 001 002 003
    /bin/su                     root  .     1 . 1   . 0 .   . 0 . F 001 002 003
    /usr/bin/*                  .     .     . . .   . 0 .   . 0 . W 001 002 003
    /bin/*                      .     .     . . .   . 0 .   . 0 . W 001 002 003
    
    
    tiger-3.2.3/systems/HPUX/gen_cron0000755000175000017500000000264307502327223015301 0ustar  pacopaco#!/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 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.
    #
    # gen_cron - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    outfile=$1
    > $outfile
    
    (
      cd $CRONSPOOL
      $LS -l $LSGROUP *
    ) |
    while read x y owner a b c d e file
    do
      [ "$owner" != "root" ] && {
        echo "--WARN-- CRON file \`$file' is owned by $owner."
      }
      case $file in
        *[!a-zA-Z0-9]*)
          echo "--WARN-- 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
    	echo "--WARN-- Found cron file for unknown user $file."
          fi
          ;;
        esac
    done
      
    tiger-3.2.3/systems/HPUX/gen_inetd0000755000175000017500000000170607502327223015442 0ustar  pacopaco#!/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 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.
    #
    # HPUX/gen_inetd - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    $GREP -v '^#' /etc/inetd.conf |
    $SORT > $WORKDIR/etc_inetd.$$
    echo "/etc/inetd.conf" > $WORKDIR/etc_inetd.$$.src
    echo $WORKDIR/etc_inetd.$$
    tiger-3.2.3/systems/HPUX/genaliases0000755000175000017500000000260107756435010015621 0ustar  pacopaco#!/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 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.
    #
    # HPUX/gen_alias_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    aliasfile=`$GREP '^A' /usr/lib/sendmail.cf 2>/dev/null | $SED -e 's/^.//'`
    
    [ ! -n "$aliasfile" ] && aliasfile=/usr/lib/aliases
    
    [ -r $aliasfile ] && {
      $GREP -v '^#' $aliasfile |
      $SORT > $WORKDIR/etc_aliases.$$
      echo "$aliasfile" > $WORKDIR/etc_aliases.$$.src
      echo $WORKDIR/etc_aliases.$$
    }
    
    [ -n "$YPCAT" ] && {
      $YPCAT -k aliases 2>/dev/null >/dev/null && {
        $YPCAT -k aliases |
        $SED -e 's/ /:/' | 
        $SORT |
        $COMM -23 - $WORKDIR/etc_aliases.$$ > $WORKDIR/nis_aliases.$$
        echo "NIS" > $WORKDIR/nis_aliases.$$.src
        echo $WORKDIR/nis_aliases.$$
      }
    }
    tiger-3.2.3/systems/HPUX/genbootparam0000755000175000017500000000004407502327223016156 0ustar  pacopaco#!/bin/sh
    #
    # Nothing to do here.
    #
    tiger-3.2.3/systems/HPUX/genclients0000755000175000017500000000001207502327223015626 0ustar  pacopaco#!/bin/sh
    tiger-3.2.3/systems/HPUX/genexports0000755000175000017500000000271707502327223015707 0ustar  pacopaco#!/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 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.
    #
    # HPUX/genexports - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    [ -r /etc/exports ] && {
      $SED -e 's/#.*$//' -e '/^$/d' /etc/exports |
      while read dir options
      do
        sep=
        hsep=
        optstr=
        hostlist=
        for opt in $options
        do
          case $opt in
    	-*) optstr="$optstr$sep`echo $opt | $SED -e 's/^-//'`"; sep=",";;
    	*) hostlist="$hostlist$hsep$opt";hsep=":";;
          esac
        done
        [ -n "$hostlist" ] && hostlist="-access=$hostlist"
        [ ! -n "$hostlist" -a -n "$optstr" ] && optstr="-$optstr"
        sep=
        [ -n "$hostlist" -a -n "$optstr" ] && sep=","
        echo "$dir $hostlist$sep$optstr"
      done > $WORKDIR/etc_exports.$$
      echo "/etc/exports" > $WORKDIR/etc_exports.$$.src
      echo $WORKDIR/etc_exports.$$
    }
    tiger-3.2.3/systems/HPUX/gengroups0000755000175000017500000000265607756435010015531 0ustar  pacopaco#!/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 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.
    #
    # HPUX/gen_group_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    $GREP -v '^[-+]' /etc/group |
    $SORT > $WORKDIR/etc_group.$$
    echo "/etc/group" > $WORKDIR/etc_group.$$.src
    echo $WORKDIR/etc_group.$$
    
    [ -n "$YPCAT" ] && {
      $YPCAT group |
      $SORT |
      $COMM -23 - $WORKDIR/etc_group.$$ > $WORKDIR/nis_group.$$
      echo "NIS" > $WORKDIR/nis_group.$$.src
      echo $WORKDIR/nis_group.$$
    }
    
    [ "$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.3/systems/HPUX/genmounts0000755000175000017500000000263107760450537015536 0ustar  pacopaco#!/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 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.
    #
    # HPUX/genmounts - 06/14/93
    # HPUX/genmounts - 11/19/2003 - Applied patch from Ryan Bradetich which adds
    #           hfs and vxfs as valid local filesystems.
    #
    #-----------------------------------------------------------------------------
    #
    
    
    LOCAL_ONLY=$1
    CHKRO=$2
    
    ronly()
    {
      RO=1
      case "$1" in
        *,ro,*|ro,*|ro|*,ro) RO=0
          ;;
      esac
      return $RO
    }
    
    localfs()
    {
      LOCAL=1
      [ "$1" = "hfs" ] && LOCAL=0
      [ "$1" = "vxfs" ] && LOCAL=0
    
      return $LOCAL
    }
    
    /bin/cat /etc/mnttab |
    while read fs mtpoint fstype opts time
    do
      PRINT=1
      [ "$CHKRO" = "rw" ] && { ronly "$opts" && PRINT=0; }
      [ "$LOCAL_ONLY" = "local" ] && { localfs "$fstype" || PRINT=0; }
      [ "$PRINT" = "1" ] && echo "$mtpoint $fstype $fs"
    done
    
    tiger-3.2.3/systems/HPUX/genpasswd0000755000175000017500000000477407756435010015516 0ustar  pacopaco#!/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 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.
    #
    # HPUX/genpasswd - 06/14/93
    # HPUX/genpasswd - 06/26/2003 - jfs - Patch to identify password hashes
    #
    #-----------------------------------------------------------------------------
    #
    
    local=0
    for parm
    do
      case "$parm" in
        -p) passwordflag=Y;;
        -l) local=1;;
        *)	outfile="$parm";;
      esac
    done
    
    zappasswd()
    {
      IFS=:
      while read user passwd rest
      do
        tcbfile="/tcb/files/auth/${user%${user#?}}/$user"
        if [ -f $tcbfile ]; then
          passwd=`$AWK -F: '/u_pwd=/ { print substr($2, 7) }' $tcbfile`
        fi
    
        case $passwd in
          # bigcrypt passwords used in trusted mode. (13 + (x * 11))
          [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\./][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="bigcrypt"
               ;;
          # 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\./]?(,[a-zA-Zo-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 "$YPCAT" ] && {
      $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.3/systems/HPUX/genservices0000755000175000017500000000212707756435010016026 0ustar  pacopaco#!/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 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.
    #
    # HPUX/genservices - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    $GREP -v '^#' /etc/services > $WORKDIR/etc_services.$$
    echo "/etc/services" > $WORKDIR/etc_services.$$.src
    echo $WORKDIR/etc_services.$$
    
    [ -n "$YPCAT" ] && {
      $YPCAT services > $WORKDIR/nis_services.$$
      echo "NIS" > $WORKDIR/nis_services.$$.src
      echo $WORKDIR/nis_services.$$
    }
    
    tiger-3.2.3/systems/HPUX/getdisks0000644000175000017500000000156607760450626015336 0ustar  pacopaco#!/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.3/systems/HPUX/getuserhome0000755000175000017500000000027707502327223016037 0ustar  pacopaco#!/bin/sh
    
    #
    # cd to / in case we are down in a directory we don't have read
    # access to.  /bin/csh will barf if that is the case.
    #
    cd /
    
    user="$1"
    
    /bin/csh -c "echo ~$user" 2> /dev/null
    
    
    tiger-3.2.3/systems/HPUX/inetd0000644000175000017500000000321407502327223014602 0ustar  pacopacobootps       dgram  udp wait   root /etc/bootpd   bootpd
    chargen      dgram  udp nowait root internal
    chargen      stream tcp nowait root internal
    daytime      dgram  udp nowait root internal
    daytime      stream tcp nowait root internal
    discard      dgram  udp nowait root internal
    discard      stream tcp nowait root internal
    echo         dgram  udp nowait root internal
    echo         stream tcp nowait root internal
    exec         stream tcp nowait root /etc/rexecd   rexecd
    finger       stream tcp nowait bin /etc/fingerd  fingerd
    ftp          stream tcp nowait root /etc/ftpd	  ftpd -l
    lanmgrx.osB  stream tcp nowait root /usr/lib/lm/lmsess.osB  lmsess.osB
    login        stream tcp nowait root /etc/rlogind  rlogind
    printer     stream tcp nowait root /usr/lib/rlpdaemon  rlpdaemon -i
    rpc  dgram  udp  wait    root  /usr/etc/rpc.mountd   100005  1    rpc.mountd
    rpc  dgram  udp  wait    root  /usr/etc/rpc.rquotad  100011  1    rpc.rquotad
    rpc  dgram  udp  wait    root  /usr/etc/rpc.rstatd   100001  1-3  rpc.rstatd
    rpc  dgram  udp  wait    root  /usr/etc/rpc.rusersd  100002  1-2  rpc.rusersd
    rpc  dgram  udp  wait    root  /usr/etc/rpc.rwalld   100008  1    rpc.rwalld
    rpc  dgram  udp  wait    root  /usr/etc/rpc.sprayd   100012  1    rpc.sprayd
    rpc  stream tcp  nowait  root  /usr/etc/rpc.rexd     100017  1    rpc.rexd
    shell        stream tcp nowait root /etc/remshd   remshd
    telnet       stream tcp nowait root /etc/telnetd  telnetd 
    tftp         dgram  udp wait   root /etc/tftpd    tftpd
    time         dgram  udp nowait root internal
    time         stream tcp nowait root internal
    spc     stream tcp  nowait  root  /usr/softbench/bin/softspcd  /usr/softbench/bin/softspcd
    tiger-3.2.3/systems/HPUX/services0000644000175000017500000000210707502327223015322 0ustar  pacopacoecho 7/tcp
    echo 7/udp
    discard 9/tcp
    discard 9/udp
    systat 11/tcp
    daytime 13/tcp
    daytime 13/udp
    qotd 17/tcp
    chargen 19/tcp
    chargen 19/udp
    ftp-data 20/tcp
    ftp 21/tcp
    telnet 23/tcp
    smtp 25/tcp
    time 37/tcp
    time 37/udp
    rlp 39/udp
    whois 43/tcp
    domain 53/tcp
    domain 53/udp
    bootps 67/udp
    bootpc 68/udp
    tftp 69/udp
    finger 79/tcp
    supdup 95/tcp
    hostnames 101/tcp
    pop 109/tcp
    portmap 111/tcp
    portmap 111/udp
    auth 113/tcp
    sftp 115/tcp
    uucp-path 117/tcp
    nntp 119/tcp
    ntp 123/udp
    netbios_ns 137/tcp
    netbios_ns 137/udp
    netbios_dgm 138/tcp
    netbios_dgm 138/udp
    netbios_ssn 139/tcp
    netbios_ssn 139/udp
    bftp 152/tcp
    snmp 161/udp
    snmp-trap 162/udp
    biff 512/udp
    exec 512/tcp
    login 513/tcp
    who 513/udp
    shell 514/tcp
    syslog 514/udp
    printer 515/tcp
    talk 517/udp
    ntalk 518/udp
    route 520/udp
    timed 525/udp
    lansrm 570/udp
    DAServer 987/tcp
    rlb 1260/tcp
    nft 1536/tcp
    nfsd 2049/udp
    netdist 2106/tcp
    rfa 4672/tcp
    lanmgrx.osB 5696/tcp
    hcserver 5710/tcp
    grmd 5999/tcp
    spc 6111/tcp
    iasqlsvr 7489/tcp
    klogin 543/tcp
    kshell 544/tcp
    ekshell 545/tcp
    kerberos 750/udp
    kerberos 750/tcp
    krbupdate 760/tcp
    kpasswd 761/tcp
    eklogin 2105/tcp
    tiger-3.2.3/systems/HPUX/suid_list0000644000175000017500000000000007502327223015464 0ustar  pacopacotiger-3.2.3/systems/HPUX/suidpath.db0000644000175000017500000000000007502327223015672 0ustar  pacopacotiger-3.2.3/systems/IRIX/0000755000175000017500000000000011306441030013531 5ustar  pacopacotiger-3.2.3/systems/IRIX/gen_mounts0000644000175000017500000000240707502327223015647 0ustar  pacopaco#!/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 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.
    #
    # IRIX/gen_mounts - 07/31/97
    #
    #-----------------------------------------------------------------------------
    #
    
    
    LOCAL_ONLY=$1
    CHKRO=$2
    
    ronly()
    {
      RO=1
      case "$1" in
        *[\(,]ro[,\)]*) RO=0
          ;;
      esac
      return $RO
    }
    
    localfs()
    {
      LOCAL=1
      [ "$1" = "efs" ] && LOCAL=0
      [ "$1" = "xfs" ] && LOCAL=0
    
      return $LOCAL
    }
    
    /etc/mount |
    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" ] && echo "$mtpoint $fstype $fs"
    done
    
    tiger-3.2.3/systems/IRIX/config0000644000175000017500000001136507732610214014741 0ustar  pacopaco#
    #     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.
    #
    # IRIX/config - 06/14/93
    #
    # Thanks to Steve Rikli for the revised config file
    # 
    # 09/19/2003 - jfs - Added UUID definition (untested)
    #
    #-----------------------------------------------------------------------------
    #
    #UUID=`/usr/bin/id | /bin/sed -e 's/uid=\([0-9][0-9]*\).*$/\1/'`
    UUID=`id -u`
    USERNAME=`whoami`
    # This will work in most shells
    [ "$UUID" = "" ] && UUID=$UID
    [ "$USERNAME" = "" ] && USERNAME=$USER
    # Last resort
    [ "$UUID" = "" -a ! "$USERNAME" = "" ] && {
            # Try this and see it works
            UUID=`grep  ^$USERNAME: /etc/passwd  |awk -F : '{print $3}'`
    }
    export UUID
    AWK=/usr/bin/awk
    export AWK
    BASENAME=/bin/basename
    export BASENAME
    CAT=/bin/cat
    export CAT
    CC=/usr/bin/cc
    export CC
    CHMOD=/bin/chmod
    export CHMOD
    CHOWN=/bin/chown
    export CHOWN
    COMM=/usr/bin/comm
    export COMM
    DATE=/bin/date
    export DATE
    EGREP=/usr/bin/egrep
    export EGREP
    EXPR=/bin/expr
    export EXPR
    FILECMD=/bin/file
    export FILECMD
    FIND=/bin/find
    export FIND
    FMT=/bin/cat
    export FMT
    GETHOSTNAME='/bin/uname -n'
    export GETHOSTNAME
    GREP=/bin/grep
    export GREP
    GROUPSS=/usr/bin/groups
    export GROUPSS
    JOIN=/usr/bin/join
    export JOIN
    LN=/bin/ln
    export LN
    LS=/bin/ls
    export LS
    MV=/bin/mv
    export MV
    PS=/bin/ps
    export PS
    RM=/bin/rm
    export RM
    SED=/bin/sed
    export SED
    SORT=/bin/sort
    export SORT
    STRINGS=/bin/strings
    export STRINGS
    TAIL=/bin/tail
    export TAIL
    TR=/usr/bin/tr
    export TR
    UNAME=/bin/uname
    export UNAME
    UNIQ=/usr/bin/uniq
    export UNIQ
    PASTE=/usr/bin/paste
    export PASTE
    YPCAT=/usr/bin/ypcat
    export YPCAT
    #
    YP=
    ($PS -elf | $GREP ypbind | $GREP -v $GREP) >/dev/null 2>&1 && YP=YES
    export YP
    #
    YPSERVER="NO"
    ($PS -elf | $GREP ypserv | $GREP -v $GREP) >/dev/null 2>&1 && YPSERVER="YES"
    export YPSERVER
    #
    WAIT=wait
    export WAIT
    DIFF=/bin/diff
    export DIFF
    MAILER=/usr/sbin/Mail
    export MAILER
    SENDMAILS="/usr/lib/sendmail"
    SENDMAILCF="/usr/lib/sendmail.cf"
    export SENDMAILS SENDMAILCF
    #
    # How to get different effects
    #
    DATECMD="$DATE +%y%m%d"
    TIMECMD="$DATE +%H:%M"
    export DATECMD TIMECMD
    SGREP="$EGREP -s"
    export SGREP
    LSGROUP=-l
    export LSGROUP
    LSLINK=-L
    export LSLINK
    TESTLINK=-l
    export TESTLINK
    TESTEXEC=-x
    export TESTEXEC
    FINDXDEV="-mount -local"
    export FINDXDEV
    #
    # Geez... how can you compile anything in SGI's default mode
    #
    CFLAGS=-cckr
    export CFLAGS
    CLIBS=-lsun
    export CLIBS
    #
    if [ -d /usr/mail ]; then
      MAILSPOOL=/usr/mail
    elif [ -d /var/mail ]; then
      MAILSPOOL=/var/mail
    elif [ -d /usr/spool/mail ]; then
      MAILSPOOL=/usr/spool/mail
    elif [ -d /var/spool/mail ]; then
      MAILSPOOL=/var/spool/mail
    else
      MAILSPOOL=
    fi
    export MAILSPOOL
    #
    if [ -d /var/spool/cron/crontabs ]; then
      CRONSPOOL=/var/spool/cron/crontabs
    elif [ -d /usr/spool/cron/crontabs ]; then
      CRONSPOOL=/usr/spool/cron/crontabs
    elif [ -d /etc/cron/crontabs ]; then
      CRONSPOOL=/etc/cron/crontabs
    elif [ -d /usr/lib/cron/crontabs ]; then
      CRONSPOOL=/usr/lib/cron/crontabs
    else
      CRONSPOOL=
    fi
    export CRONSPOOL
    
    # This isn't implemented in IRIX.  -sr.
    #ETCSHELLS=/etc/shell
    #export ETCSHELLS
    
    #
    # Segment of code to find system specific tiger parts
    #
    
    CDIR="$BASEDIR/systems"
    eval `
      while read var file
      do
        if [ -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"
        elif [ -f "$CDIR/default/$file" ]; then
          loc="$CDIR/default"
        else
          loc=""
        fi
        if [ "$loc" != "" ]; then
          echo $var="$loc/$file;"
        else
          echo "$var=;"
        fi
        echo "export $var;"
      done << EOL
    GETFS gen_mounts
    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
    EOL
    `
    tiger-3.2.3/systems/IRIX/4/0000755000175000017500000000000011306441030013674 5ustar  pacopacotiger-3.2.3/systems/IRIX/4/4.0.5/0000755000175000017500000000000011306441027014346 5ustar  pacopacotiger-3.2.3/systems/IRIX/4/4.0.5/IP12/0000755000175000017500000000000011306441027015021 5ustar  pacopacotiger-3.2.3/systems/IRIX/4/4.0.5/IP12/signatures0000644000175000017500000000711507722677041017152 0ustar  pacopaco#
    # Signature file for IRIX 4.0.5 IP17, generated Mon Aug  2 15:19:38 CDT 1993
    # Thanks to Steve Rikli for the sig file
    #@DEST=IRIX/4/4.0.5/IP17
    #@CONFIG=IRIX/4
    #
    Y .       /bin/sh bf8a7a26 25f92549 64876302 bc39cae3 764a960c bca9ddf3 216b8463 92cf59ee IRIX 4.0.5
    Y .       /bin/csh 753670a3 0221d421 7dd26a9f d2db1ec1 7e1ca582 398643f6 6956fb7f 8076892f IRIX 4.0.5
    Y .       /bin/ksh 2f6f01d3 de5656c7 ab9fd453 81c904da 4f9d6275 8ad38511 0f92d16e 01cc06dd IRIX 4.0.5
    Y .       /bin/login 4207a042 f124c767 e58708e7 d75921b0 facbaf54 163189c0 85c00c9c e65feb40 IRIX 4.0.5
    Y .       /bin/su 64637103 034f2526 89e4a871 9a095194 3f0f975d 0570cef8 cb6eb10a 46d9c9b4 IRIX 4.0.5
    Y .       /bin/passwd 356231a9 f85cb909 64c7d997 81928022 16bb14ca e1a24fb9 f092f864 81a0b270 IRIX 4.0.5
    # in.fingerd not found.
    Y .       /usr/etc/fingerd 1ac7c159 8c17711e 1c48d262 d7a238af 3477b793 4bbedb2d 7bf98681 206e260e IRIX 4.0.5
    # in.ftpd not found.
    Y .       /usr/etc/ftpd a4c77809 469eb456 b50542f6 f15439c1 83e4daeb b5e1bc26 9c0675b9 bbc70146 IRIX 4.0.5
    # in.rexecd not found.
    Y .       /usr/etc/rexecd 6aa117fb 2b2ae5c4 0e920d68 555f8d7f 0ed4bb6e 3ddfe989 b698c323 76ad9f98 IRIX 4.0.5
    # in.rlogind not found.
    Y .       /usr/etc/rlogind 1392f9aa 8ee62491 1f031102 8e3ecf92 bee67807 3be5ab6f 1675dadd 7d29fc61 IRIX 4.0.5
    # in.rshd not found.
    Y .       /usr/etc/rshd 4e9f0078 c2ebba82 2ff2f4f7 acd52b9d 4b5d737e 5220effe 0b1ffd80 23820672 IRIX 4.0.5
    # in.telnetd not found.
    Y .       /usr/etc/telnetd 9ced165c c71d3578 96d0eaa2 deb83c70 278b3fa2 4a86e1f0 cc4a7466 b076cc26 IRIX 4.0.5
    # in.tftpd not found.
    Y .       /usr/etc/tftpd 91218ed5 3ab27857 f1c1492b 97de0241 d3584936 dd334c29 9fe2d6e0 4cca2107 IRIX 4.0.5
    # in.uucpd not found.
    # uucpd not found.
    # rpc.yppasswdd not found.
    Y .       /usr/etc/rpc.passwd 4d0b9664 1da9847e 029581ae ee3872ef 66adfdc4 294191f1 7c4ef4c9 02078d98 IRIX 4.0.5
    Y .       /usr/etc/portmap c1f40503 e8f40761 068ea7f3 43c494f5 4b8a2e17 a67cf278 93d3b238 dfb5f439 IRIX 4.0.5
    Y .       /usr/etc/ypserv d8e28f30 f6775ddc 4af015ff 090d85e6 b43ffc83 41c3db82 d7e690c9 f3e1bd9a IRIX 4.0.5
    # ypxfrd not found.
    Y .       /usr/etc/ypbind 8c4ac371 5ac77fba 1c7b9936 bbd8f3ee 9cadad79 f03e50f8 964eefd8 2a75ada9 IRIX 4.0.5
    Y .       /usr/lib/sendmail b0059dde 5d91f291 98b9585f cda29e26 fdac49f4 e09b88f3 3a3b0a75 0bba3919 IRIX 4.0.5
    # sendmail.mx not found.
    Y .       /usr/bsd/rdist 052bd66d 7e39a068 88ed9c8a 491b0965 ecaa7823 3adeae2a ef1be1ef ead66096 IRIX 4.0.5
    Y .       /usr/bsd/rlogin a97a1128 6044469f a1593174 1c4e5a93 05e0e716 283a1433 e56138b9 55d7f1e2 IRIX 4.0.5
    Y .       /usr/bsd/rsh 2bae22e1 a406780f 8d76bdff 3cabe7bc 722e27a9 bee5d8e8 d36b7203 de51719c IRIX 4.0.5
    Y .       /usr/bsd/telnet 7df23ddf 469c7d61 a3b4d48e 545736ec 10bbad49 10613f23 a109a571 9e485e6e IRIX 4.0.5
    Y .       /usr/bin/lpstat a8e6aa80 f7670273 bdf50568 a2fe1f48 9ee6fbce 2390ac30 380a9614 0fdef748 IRIX 4.0.5
    Y .       /usr/etc/lpc 796af71a 1e27cb59 50ed19bf 131916b1 173f3d0e 86daeaf2 981293d4 d9cedf1a IRIX 4.0.5
    Y .       /usr/etc/lpd ce552c9b 179a852d 4ffba698 4e2c60d1 cf9ac531 3a2eb381 e5119c2b d55c8a26 IRIX 4.0.5
    Y .       /usr/bsd/lpr 46461f69 97438f2d 1e913d81 d9386324 37e44f66 04863dac f656b7cc b32b22c1 IRIX 4.0.5
    Y .       /usr/bsd/lprm 25b8b72c 53d6b3ae 70a3dc4b a7c92571 ad098a40 d9d3a921 e3863fba 645ba23a IRIX 4.0.5
    Y .       /usr/etc/lpd ce552c9b 179a852d 4ffba698 4e2c60d1 cf9ac531 3a2eb381 e5119c2b d55c8a26 IRIX 4.0.5
    Y .       /usr/etc/rpc.mountd 41c1d87c 42242f19 e58fae92 b7084886 f336ff87 2a761424 373fc80e 8a3ffee1 IRIX 4.0.5
    Y .       /usr/lib/expreserve acab543d 043dcd58 ac5a4806 5dc75bec bbbbb079 8cac820b 0a0187d4 27c66cfa IRIX 4.0.5
    tiger-3.2.3/systems/IRIX/4/4.0.5/IP12/config0000644000175000017500000000725007732610214016221 0ustar  pacopaco#
    #     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.
    #
    #
    # IRIX/4/config - 06/14/93
    #
    # Thanks to Steve Rikli for the revised config file
    #
    # jfs - 09/19/2003 - Added UUID and USERNAME definition
    #
    # ----------------------------------------------------------------------
    #
    UUID=`id -u`
    USERNAME=`whoami`
    export UUID USERNAME
    AWK=/usr/bin/awk
    export AWK
    BASENAME=/bin/basename
    export BASENAME
    CAT=/bin/cat
    export CAT
    CC=/usr/bin/cc
    export CC
    CHMOD=/bin/chmod
    export CHMOD
    CHOWN=/bin/chown
    export CHOWN
    COMM=/usr/bin/comm
    export COMM
    DATE=/bin/date
    export DATE
    EGREP=/usr/bin/egrep
    export EGREP
    EXPR=/bin/expr
    export EXPR
    FILECMD=/bin/file
    export FILECMD
    FIND=/bin/find
    export FIND
    FMT=/bin/cat
    export FMT
    GETHOSTNAME='/bin/uname -n'
    export GETHOSTNAME
    GREP=/bin/grep
    export GREP
    GROUPSS=/usr/bin/groups
    export GROUPSS
    JOIN=/usr/bin/join
    export JOIN
    LN=/bin/ln
    export LN
    LS=/bin/ls
    export LS
    MV=/bin/mv
    export MV
    PS=/bin/ps
    export PS
    RM=/bin/rm
    export RM
    SED=/bin/sed
    export SED
    SORT=/bin/sort
    export SORT
    STRINGS=/bin/strings
    export STRINGS
    TAIL=/bin/tail
    export TAIL
    TR=/usr/bin/tr
    export TR
    UNAME=/bin/uname
    export UNAME
    UNIQ=/usr/bin/uniq
    export UNIQ
    PASTE=/usr/bin/paste
    export PASTE
    YPCAT=/usr/bin/ypcat
    export YPCAT
    WAIT=wait
    export WAIT
    DIFF=/bin/diff
    export DIFF
    MAILER=/usr/sbin/Mail
    export MAILER
    SENDMAILS="/usr/lib/sendmail"
    SENDMAILCF="/usr/lib/sendmail.cf"
    export SENDMAILS SENDMAILCF
    #
    # How to get different effects
    #
    DATECMD="$DATE +%y%m%d"
    TIMECMD="$DATE +%H:%M"
    export DATECMD TIMECMD
    SGREP="$EGREP -s"
    export SGREP
    LSGROUP=-l
    export LSGROUP
    LSLINK=-L
    export LSLINK
    TESTLINK=-l
    export TESTLINK
    TESTEXEC=-x
    export TESTEXEC
    FINDXDEV=-mount
    export FINDXDEV
    #
    # Geez... how can you compile anything in SGI's default mode
    #
    CFLAGS=-cckr
    export CFLAGS
    CLIBS=-lsun
    export CLIBS
    #
    MAILSPOOL=/usr/mail
    export MAILSPOOL
    CRONTAB=/usr/spool/cron/crontabs
    export CRONTAB
    # This isn't implemented in IRIX.  -sr.
    #ETCSHELLS=/etc/shell
    #export ETCSHELLS
    
    #
    # Segment of code to find system specific tiger parts
    #
    
    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 gen_mounts
    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_INETD_SETS gen_inetd
    GETDISKS getdisks
    EMBEDDEDLIST embedlist
    GETUSERHOME getuserhome
    EOL
    `
    tiger-3.2.3/systems/IRIX/4/4.0.5/IP17/0000755000175000017500000000000011306441027015026 5ustar  pacopacotiger-3.2.3/systems/IRIX/4/4.0.5/IP17/signatures0000644000175000017500000000711507722677041017157 0ustar  pacopaco#
    # Signature file for IRIX 4.0.5 IP17, generated Mon Aug  2 15:19:38 CDT 1993
    # Thanks to Steve Rikli for the sig file
    #@DEST=IRIX/4/4.0.5/IP17
    #@CONFIG=IRIX/4
    #
    Y .       /bin/sh bf8a7a26 25f92549 64876302 bc39cae3 764a960c bca9ddf3 216b8463 92cf59ee IRIX 4.0.5
    Y .       /bin/csh 753670a3 0221d421 7dd26a9f d2db1ec1 7e1ca582 398643f6 6956fb7f 8076892f IRIX 4.0.5
    Y .       /bin/ksh 2f6f01d3 de5656c7 ab9fd453 81c904da 4f9d6275 8ad38511 0f92d16e 01cc06dd IRIX 4.0.5
    Y .       /bin/login 4207a042 f124c767 e58708e7 d75921b0 facbaf54 163189c0 85c00c9c e65feb40 IRIX 4.0.5
    Y .       /bin/su 64637103 034f2526 89e4a871 9a095194 3f0f975d 0570cef8 cb6eb10a 46d9c9b4 IRIX 4.0.5
    Y .       /bin/passwd 356231a9 f85cb909 64c7d997 81928022 16bb14ca e1a24fb9 f092f864 81a0b270 IRIX 4.0.5
    # in.fingerd not found.
    Y .       /usr/etc/fingerd 1ac7c159 8c17711e 1c48d262 d7a238af 3477b793 4bbedb2d 7bf98681 206e260e IRIX 4.0.5
    # in.ftpd not found.
    Y .       /usr/etc/ftpd a4c77809 469eb456 b50542f6 f15439c1 83e4daeb b5e1bc26 9c0675b9 bbc70146 IRIX 4.0.5
    # in.rexecd not found.
    Y .       /usr/etc/rexecd 6aa117fb 2b2ae5c4 0e920d68 555f8d7f 0ed4bb6e 3ddfe989 b698c323 76ad9f98 IRIX 4.0.5
    # in.rlogind not found.
    Y .       /usr/etc/rlogind 1392f9aa 8ee62491 1f031102 8e3ecf92 bee67807 3be5ab6f 1675dadd 7d29fc61 IRIX 4.0.5
    # in.rshd not found.
    Y .       /usr/etc/rshd 4e9f0078 c2ebba82 2ff2f4f7 acd52b9d 4b5d737e 5220effe 0b1ffd80 23820672 IRIX 4.0.5
    # in.telnetd not found.
    Y .       /usr/etc/telnetd 9ced165c c71d3578 96d0eaa2 deb83c70 278b3fa2 4a86e1f0 cc4a7466 b076cc26 IRIX 4.0.5
    # in.tftpd not found.
    Y .       /usr/etc/tftpd 91218ed5 3ab27857 f1c1492b 97de0241 d3584936 dd334c29 9fe2d6e0 4cca2107 IRIX 4.0.5
    # in.uucpd not found.
    # uucpd not found.
    # rpc.yppasswdd not found.
    Y .       /usr/etc/rpc.passwd 4d0b9664 1da9847e 029581ae ee3872ef 66adfdc4 294191f1 7c4ef4c9 02078d98 IRIX 4.0.5
    Y .       /usr/etc/portmap c1f40503 e8f40761 068ea7f3 43c494f5 4b8a2e17 a67cf278 93d3b238 dfb5f439 IRIX 4.0.5
    Y .       /usr/etc/ypserv d8e28f30 f6775ddc 4af015ff 090d85e6 b43ffc83 41c3db82 d7e690c9 f3e1bd9a IRIX 4.0.5
    # ypxfrd not found.
    Y .       /usr/etc/ypbind 8c4ac371 5ac77fba 1c7b9936 bbd8f3ee 9cadad79 f03e50f8 964eefd8 2a75ada9 IRIX 4.0.5
    Y .       /usr/lib/sendmail b0059dde 5d91f291 98b9585f cda29e26 fdac49f4 e09b88f3 3a3b0a75 0bba3919 IRIX 4.0.5
    # sendmail.mx not found.
    Y .       /usr/bsd/rdist 052bd66d 7e39a068 88ed9c8a 491b0965 ecaa7823 3adeae2a ef1be1ef ead66096 IRIX 4.0.5
    Y .       /usr/bsd/rlogin a97a1128 6044469f a1593174 1c4e5a93 05e0e716 283a1433 e56138b9 55d7f1e2 IRIX 4.0.5
    Y .       /usr/bsd/rsh 2bae22e1 a406780f 8d76bdff 3cabe7bc 722e27a9 bee5d8e8 d36b7203 de51719c IRIX 4.0.5
    Y .       /usr/bsd/telnet 7df23ddf 469c7d61 a3b4d48e 545736ec 10bbad49 10613f23 a109a571 9e485e6e IRIX 4.0.5
    Y .       /usr/bin/lpstat a8e6aa80 f7670273 bdf50568 a2fe1f48 9ee6fbce 2390ac30 380a9614 0fdef748 IRIX 4.0.5
    Y .       /usr/etc/lpc 796af71a 1e27cb59 50ed19bf 131916b1 173f3d0e 86daeaf2 981293d4 d9cedf1a IRIX 4.0.5
    Y .       /usr/etc/lpd ce552c9b 179a852d 4ffba698 4e2c60d1 cf9ac531 3a2eb381 e5119c2b d55c8a26 IRIX 4.0.5
    Y .       /usr/bsd/lpr 46461f69 97438f2d 1e913d81 d9386324 37e44f66 04863dac f656b7cc b32b22c1 IRIX 4.0.5
    Y .       /usr/bsd/lprm 25b8b72c 53d6b3ae 70a3dc4b a7c92571 ad098a40 d9d3a921 e3863fba 645ba23a IRIX 4.0.5
    Y .       /usr/etc/lpd ce552c9b 179a852d 4ffba698 4e2c60d1 cf9ac531 3a2eb381 e5119c2b d55c8a26 IRIX 4.0.5
    Y .       /usr/etc/rpc.mountd 41c1d87c 42242f19 e58fae92 b7084886 f336ff87 2a761424 373fc80e 8a3ffee1 IRIX 4.0.5
    Y .       /usr/lib/expreserve acab543d 043dcd58 ac5a4806 5dc75bec bbbbb079 8cac820b 0a0187d4 27c66cfa IRIX 4.0.5
    tiger-3.2.3/systems/IRIX/4/4.0.5/IP17/config0000644000175000017500000000724407732610214016231 0ustar  pacopaco#
    #     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.
    #
    # IRIX/4/config - 06/14/93
    #
    # Thanks to Steve Rikli for the revised config file
    # jfs - 09/19/2003 - Added UUID and USERNAME definition
    #
    # ----------------------------------------------------------------------
    #
    UUID=`id -u`
    USERNAME=`whoami`
    export UUID USERNAME
    AWK=/usr/bin/awk
    export AWK
    BASENAME=/bin/basename
    export BASENAME
    CAT=/bin/cat
    export CAT
    CC=/usr/bin/cc
    export CC
    CHMOD=/bin/chmod
    export CHMOD
    CHOWN=/bin/chown
    export CHOWN
    COMM=/usr/bin/comm
    export COMM
    DATE=/bin/date
    export DATE
    EGREP=/usr/bin/egrep
    export EGREP
    EXPR=/bin/expr
    export EXPR
    FILECMD=/bin/file
    export FILECMD
    FIND=/bin/find
    export FIND
    FMT=/bin/cat
    export FMT
    GETHOSTNAME='/bin/uname -n'
    export GETHOSTNAME
    GREP=/bin/grep
    export GREP
    GROUPSS=/usr/bin/groups
    export GROUPSS
    JOIN=/usr/bin/join
    export JOIN
    LN=/bin/ln
    export LN
    LS=/bin/ls
    export LS
    MV=/bin/mv
    export MV
    PS=/bin/ps
    export PS
    RM=/bin/rm
    export RM
    SED=/bin/sed
    export SED
    SORT=/bin/sort
    export SORT
    STRINGS=/bin/strings
    export STRINGS
    TAIL=/bin/tail
    export TAIL
    TR=/usr/bin/tr
    export TR
    UNAME=/bin/uname
    export UNAME
    UNIQ=/usr/bin/uniq
    export UNIQ
    PASTE=/usr/bin/paste
    export PASTE
    YPCAT=/usr/bin/ypcat
    export YPCAT
    WAIT=wait
    export WAIT
    DIFF=/bin/diff
    export DIFF
    MAILER=/usr/sbin/Mail
    export MAILER
    SENDMAILS="/usr/lib/sendmail"
    SENDMAILCF="/usr/lib/sendmail.cf"
    export SENDMAILS SENDMAILCF
    #
    # How to get different effects
    #
    DATECMD="$DATE +%y%m%d"
    TIMECMD="$DATE +%H:%M"
    export DATECMD TIMECMD
    SGREP="$EGREP -s"
    export SGREP
    LSGROUP=-l
    export LSGROUP
    LSLINK=-L
    export LSLINK
    TESTLINK=-l
    export TESTLINK
    TESTEXEC=-x
    export TESTEXEC
    FINDXDEV=-mount
    export FINDXDEV
    #
    # Geez... how can you compile anything in SGI's default mode
    #
    CFLAGS=-cckr
    export CFLAGS
    CLIBS=-lsun
    export CLIBS
    #
    MAILSPOOL=/usr/mail
    export MAILSPOOL
    CRONTAB=/usr/spool/cron/crontabs
    export CRONTAB
    # This isn't implemented in IRIX.  -sr.
    #ETCSHELLS=/etc/shell
    #export ETCSHELLS
    
    #
    # Segment of code to find system specific tiger parts
    #
    
    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 gen_mounts
    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_INETD_SETS gen_inetd
    GETDISKS getdisks
    EMBEDDEDLIST embedlist
    GETUSERHOME getuserhome
    EOL
    `
    tiger-3.2.3/systems/IRIX/4/check_cron0000755000175000017500000000161107502327223015731 0ustar  pacopaco#!/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 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.
    #
    # IRIX/4/check_cron - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    if [ -f /usr/spool/cron/crontabs/$1 ]; then
      echo "YES"
    else
      echo "NO"
    fi
    tiger-3.2.3/systems/IRIX/4/config0000644000175000017500000000724407732610214015105 0ustar  pacopaco#
    #     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.
    #
    # IRIX/4/config - 06/14/93
    #
    # Thanks to Steve Rikli for the revised config file
    #
    # 09/19/2003 - jfs - Added UUID and USERNAME definition
    #
    # ----------------------------------------------------------------------
    UUID=`id -u`
    USERNAME=`whoami`
    export UUID USERNAME
    AWK=/usr/bin/awk
    export AWK
    BASENAME=/bin/basename
    export BASENAME
    CAT=/bin/cat
    export CAT
    CC=/usr/bin/cc
    export CC
    CHMOD=/bin/chmod
    export CHMOD
    CHOWN=/bin/chown
    export CHOWN
    COMM=/usr/bin/comm
    export COMM
    DATE=/bin/date
    export DATE
    EGREP=/usr/bin/egrep
    export EGREP
    EXPR=/bin/expr
    export EXPR
    FILECMD=/bin/file
    export FILECMD
    FIND=/bin/find
    export FIND
    FMT=/bin/cat
    export FMT
    GETHOSTNAME='/bin/uname -n'
    export GETHOSTNAME
    GREP=/bin/grep
    export GREP
    GROUPSS=/usr/bin/groups
    export GROUPSS
    JOIN=/usr/bin/join
    export JOIN
    LN=/bin/ln
    export LN
    LS=/bin/ls
    export LS
    MV=/bin/mv
    export MV
    PS=/bin/ps
    export PS
    RM=/bin/rm
    export RM
    SED=/bin/sed
    export SED
    SORT=/bin/sort
    export SORT
    STRINGS=/bin/strings
    export STRINGS
    TAIL=/bin/tail
    export TAIL
    TR=/usr/bin/tr
    export TR
    UNAME=/bin/uname
    export UNAME
    UNIQ=/usr/bin/uniq
    export UNIQ
    PASTE=/usr/bin/paste
    export PASTE
    YPCAT=/usr/bin/ypcat
    export YPCAT
    WAIT=wait
    export WAIT
    DIFF=/bin/diff
    export DIFF
    MAILER=/usr/sbin/Mail
    export MAILER
    SENDMAILS="/usr/lib/sendmail"
    SENDMAILCF="/usr/lib/sendmail.cf"
    export SENDMAILS SENDMAILCF
    #
    # How to get different effects
    #
    DATECMD="$DATE +%y%m%d"
    TIMECMD="$DATE +%H:%M"
    export DATECMD TIMECMD
    SGREP="$EGREP -s"
    export SGREP
    LSGROUP=-l
    export LSGROUP
    LSLINK=-L
    export LSLINK
    TESTLINK=-l
    export TESTLINK
    TESTEXEC=-x
    export TESTEXEC
    FINDXDEV=-mount
    export FINDXDEV
    #
    # Geez... how can you compile anything in SGI's default mode
    #
    CFLAGS=-cckr
    export CFLAGS
    CLIBS=-lsun
    export CLIBS
    #
    MAILSPOOL=/usr/mail
    export MAILSPOOL
    CRONTAB=/usr/spool/cron/crontabs
    export CRONTAB
    # This isn't implemented in IRIX.  -sr.
    #ETCSHELLS=/etc/shell
    #export ETCSHELLS
    
    #
    # Segment of code to find system specific tiger parts
    #
    
    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 gen_mounts
    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_INETD_SETS gen_inetd
    GETDISKS getdisks
    EMBEDDEDLIST embedlist
    GETUSERHOME getuserhome
    EOL
    `
    tiger-3.2.3/systems/IRIX/4/file_access_list0000644000175000017500000002452607502327223017135 0ustar  pacopaco#
    #     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.
    #
    # IRIX/4/file_access_list - 11/06/93
    #
    #-----------------------------------------------------------------------------
    #
    #                           owner group s g r w x   r w x   r w xLVL MessageIDs
    #------------------------------------------------------------------------------
    /                           root  .     . . 1 . 1   1 0 1   1 0 1 W 018 018 018
    /etc                        root  .     . . 1 . 1   1 0 1   1 0 1 W 019 019 019
    /bin                        root  .     . . 1 . 1   1 0 1   1 0 1 W 001 002 003
    /usr                        root  .     . . 1 . 1   1 0 1   1 0 1 W 001 002 003
    #
    /dev                        root  .     . . . . .   1 0 1   1 0 1 . 001 002 003
    /dev/tty		    root  .     0 0 1 1 0   1 1 0   1 1 0 . 001 002 003
    /dev/null		    root  .     0 0 1 1 0   1 1 0   1 1 0 . 001 002 003
    /dev/zero		    root  .     0 0 1 1 0   1 1 0   1 1 0 . 001 002 003
    /dev/mem		    root  kmem  0 0 1 1 0   1 0 0   0 0 0 . 001 002 003
    /dev/kmem		    root  kmem  0 0 1 1 0   1 0 0   0 0 0 . 001 002 003
    /dev/audio		    .     .     0 0 . . .   . . .   . . . . 001 002 003
    /dev/console		    .     .     0 0 1 1 0   0 . .   0 . . . 001 002 003
    #
    /unix                       root  .     0 0 1 . 1   1 0 0   1 0 0 . 001 002 003
    /.cshrc                     root  .     0 0 1 . .   . 0 .   . 0 . W 006 006 006
    /.login                     root  .     0 0 1 . .   . 0 .   . 0 . W 006 006 006
    /.profile                   root  .     0 0 1 . .   . 0 .   . 0 . W 006 006 006
    /.forward                   root  .     . . 1 . .   . 0 .   . 0 . W 006 006 006
    /.rhosts                    root  .     . . 1 . 0   0 0 0   0 0 0 W 006 006 006
    #
    /usr/lib/aliases            root  .     . . 1 . 0   1 0 0   1 0 0 F 007 007 007
    /usr/lib/aliases.dir        root  .     . . 1 . 0   1 0 0   1 0 0 F 007 007 007
    /usr/lib/aliases.pag        root  .     . . 1 . 0   1 0 0   1 0 0 F 007 007 007
    #
    (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/4/file_access_list - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    #                           owner group s g r w x   r w x   r w xLVL MessageIDs
    #------------------------------------------------------------------------------
    /                           root  .     . . 1 . 1   1 0 1   1 0 1 W 018 018 018
    /etc                        root  .     . . 1 . 1   1 0 1   1 0 1 W 019 019 019
    /bin                        root  .     . . 1 . 1   1 0 1   1 0 1 W 001 002 003
    /sbin                       root  .     . . 1 . 1   1 0 1   1 0 1 W 001 002 003
    /usr                        root  .     . . 1 . 1   1 0 1   1 0 1 W 001 002 003
    /usr/5include               root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/xpg2include            root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/xpg2lib                root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/xpg2bin                root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/hosts                  root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/sccs                   root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/share                  root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/export                 root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/lang                   root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/openwin		    root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/diag                   root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/demo                   root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/5lib                   root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/games                  root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/bin                    root  .     . . 1 . 1   1 0 1   1 0 1 A 001 002 003
    /usr/lib                    root  .     . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /usr/ucb                    root  .     . . 1 . 1   1 0 1   1 0 1 A 001 002 003
    /usr/*                      .     .     . . . . .   . 0 .   . 0 . . 001 002 003
    /var                        root  .     . . . . .   1 0 1   1 0 1 . 001 002 003
    /var/yp 		    root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /var/yp/*                   root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /var/yp/*/*                 root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /var/spool		    root  .     . . . . .   1 0 1   1 0 1 . 001 002 003
    /var/tmp		    root  .     . . 1 1 1   1 1 1   1 1 1 . 001 002 003
    /var/*			    root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /var/log/*                  root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /var/adm/messages*          root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /var/adm/pacct*             root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /tftpboot                   root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    #
    /dev                        root  .     . . . . .   1 0 1   1 0 1 . 001 002 003
    /dev/tty		    root  .     0 0 1 1 0   1 1 0   1 1 0 . 001 002 003
    /dev/null		    root  .     0 0 1 1 0   1 1 0   1 1 0 . 001 002 003
    /dev/zero		    root  .     0 0 1 1 0   1 1 0   1 1 0 . 001 002 003
    /dev/mem		    root  kmem  0 0 1 1 0   1 0 0   0 0 0 . 001 002 003
    /dev/kmem		    root  kmem  0 0 1 1 0   1 0 0   0 0 0 . 001 002 003
    /dev/mbio		    root  .     0 0 1 1 0   0 0 0   0 0 0 . 001 002 003
    /dev/mbmem		    root  .     0 0 1 1 0   0 0 0   0 0 0 . 001 002 003
    /dev/nit		    root  .     0 0 1 1 0   0 0 0   0 0 0 . 001 002 003
    /dev/audio		    .     .     0 0 . . .   . . .   . . . . 001 002 003
    /dev/audioctl		    .     .     0 0 . . .   . . .   . . . . 001 002 003
    /dev/console		    .     .     0 0 1 1 0   0 . .   0 . . . 001 002 003
    /dev/eeprom		    root  .     0 0 1 1 0   1 0 0   0 0 0 . 001 002 003
    /dev/openprom		    root  .     0 0 1 1 0   1 0 0   1 0 0 . 001 002 003
    /dev/sbus*                  root  .     0 0 . . 0   0 0 0   0 0 0 . 001 002 003
    /dev/vme*                   root  .     0 0 . . 0   0 0 0   0 0 0 . 001 002 003
    #
    /vmunix                     root  .     0 0 1 . 1   1 0 0   1 0 0 . 001 002 003
    /boot                       root  .     0 0 1 . .   . 0 .   . 0 . . 001 002 003
    /.cshrc                     root  .     0 0 1 . .   . 0 .   . 0 . W 006 006 006
    /.login                     root  .     0 0 1 . .   . 0 .   . 0 . W 006 006 006
    /.profile                   root  .     0 0 1 . .   . 0 .   . 0 . W 006 006 006
    /.forward                   root  .     . . 1 . .   . 0 .   . 0 . W 006 006 006
    /.rhosts                    root  .     . . 1 . 0   0 0 0   0 0 0 W 006 006 006
    #
    /usr/lib/aliases            root  .     . . 1 . 0   1 0 0   1 0 0 F 007 007 007
    /usr/lib/aliases.dir        root  .     . . 1 . 0   1 0 0   1 0 0 F 007 007 007
    /usr/lib/aliases.pag        root  .     . . 1 . 0   1 0 0   1 0 0 F 007 007 007
    #
    /etc/bootparams             root  .     . . 1 . 0   . 0 0   . 0 0 W 001 002 003
    /etc/exports                root  .     . . 1 . 0   0 0 0   0 0 0 W 008 008 008
    /etc/fstab                  root  .     . . 1 . 0   0 0 0   0 0 0 W 001 002 003
    /etc/inittab                root  .     . . 1 . 0   . 0 0   . 0 0 W 001 002 003
    /etc/group                  root  .     . . 1 . 0   1 0 0   1 0 0 F 009 009 009
    /etc/hosts                  root  .     . . 1 . 0   1 0 0   1 0 0 F 001 002 003
    /etc/hosts.allow            root  .     . . 1 . 0   . 0 0   . 0 0 W 010 010 010
    /etc/hosts.deny		    root  .     . . 1 . 0   . 0 0   . 0 0 W 010 010 010
    /etc/hosts.equiv            root  .     . . 1 . 0   0 0 0   0 0 0 W 011 011 011
    /etc/hosts.lpd              root  .     . . 1 . 0   0 0 0   0 0 0 W 011 011 011
    /etc/inetd.conf             root  .     . . 1 . 0   . 0 0   . 0 0 W 012 012 012
    /etc/motd                   root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/mtab                   root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/netgroup               root  .     . . 1 . 0   0 0 0   0 0 0 F 013 013 013
    /etc/passwd                 root  .     . . 1 . 0   1 0 0   1 0 0 A 014 014 014
    /etc/printcap               root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/rc?                    root  .     0 0 1 . 0   . 0 0   . 0 0 F 015 015 015
    /etc/rc?.d		    root  .     0 0 1 . 0   . 0 0   . 0 0 F 015 015 015
    /etc/rc?.d/*		    root  .     0 0 1 . 0   . 0 0   . 0 0 F 015 015 015
    /etc/init.d		    root  .     0 0 1 . 0   . 0 0   . 0 0 F 015 015 015
    /etc/init.d/*		    root  .     0 0 1 . 0   . 0 0   . 0 0 F 015 015 015
    /etc/resolv.conf            root  .     . . 1 . 0   1 0 0   1 0 0 W 016 016 016
    /etc/rpc                    root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /usr/lib/sendmail.cf        root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/services               root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/syslog.conf            root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/syslog.pid             root  .     . . 1 . 0   . 0 0   . 0 0 W 001 002 003
    /etc/utmp                   root  .     . . 1 . 0   1 0 0   1 0 0 W 017 017 017
    /etc/config/*		    root  .     0 0 1 . 0   . 0 0   . 0 0 W 001 002 003
    /etc/fstyp.d/*		    root  .     . . 1 . 1   . 0 .   . 0 . W 001 002 003
    /etc/transferDevice/*	    root  .     . . 1 . 1   . 0 .   . 0 . W 001 002 003
    /etc/*                      root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    tiger-3.2.3/systems/IRIX/4/gen_alias_sets0000755000175000017500000000225507756435010016625 0ustar  pacopaco#!/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 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.
    #
    # IRIX/4/gen_alias_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    $GREP -v '^#' /usr/lib/aliases |
    $SORT > $WORKDIR/etc_aliases.$$
    echo "/usr/lib/aliases" > $WORKDIR/etc_aliases.$$.src
    echo $WORKDIR/etc_aliases.$$
    
    [ -n "$YPCAT" ] && {
      $YPCAT -k aliases |
      $SED -e 's/ /:/' | 
      $SORT |
      $COMM -23 - $WORKDIR/etc_aliases.$$ > $WORKDIR/nis_aliases.$$
      echo "NIS" > $WORKDIR/nis_aliases.$$.src
      echo $WORKDIR/nis_aliases.$$
    }
    tiger-3.2.3/systems/IRIX/4/gen_bootparam_sets0000755000175000017500000000250507756435010017516 0ustar  pacopaco#!/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 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.
    #
    # IRIX/4/gen_bootparam_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    [ -r /etc/bootparams ] && {
      $SED -e 's/#.*$//' /etc/bootparams |
      $SED -e '/^[ \t]*$/d' |
      $AWK '
           BEGIN {LINE="";}
           /\\\\$/ {LINE=LINE " " substr($0, 1, length($0)-1);}
           !/\\\\$/ {print LINE $0; LINE="";}
      ' > $WORKDIR/etc_bootparams.$$
      echo "/etc/bootparams" > $WORKDIR/etc_bootparams.$$.src
      echo "$WORKDIR/etc_bootparams.$$"
    }
    
    [ -n "$YPCAT" ] && {
      $YPCAT bootparams > $WORKDIR/nis_bootparams.$$
      echo "NIS" > $WORKDIR/nis_bootparams.$$.src
      echo "$WORKDIR/nis_bootparams.$$"
    }
    tiger-3.2.3/systems/IRIX/4/gen_cron0000755000175000017500000000265207502327223015433 0ustar  pacopaco#!/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 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.
    #
    # IRIX/4/gen_cron - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    outfile=$1
    > $outfile
    
    (
      cd $CRONSPOOL
      $LS -l $LSGROUP *
    ) |
    while read x y owner a b c d e file
    do
      [ "$owner" != "root" ] && {
        echo "--WARN-- CRON file \`$file' is owned by $owner."
      }
      case $file in
        *[!a-zA-Z0-9]*)
          echo "--WARN-- 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
    	echo "--WARN-- Found cron file for unknown user $file."
          fi
          ;;
        esac
    done
      
    tiger-3.2.3/systems/IRIX/4/gen_export_sets0000755000175000017500000000230507502327223017044 0ustar  pacopaco#!/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 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.
    #
    # IRIX/4/gen_export_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    [ -r /etc/exports ] && {
      $SED -e 's/#.*$//' -e '/^[ 	]*/d' /etc/exports |
      $AWK '
        $2 ~ /^-/ {print}
        $2 !~ /^-/ {
          printf("%s -access=", $1);
          for(i=2;i<=NF;i++){
            printf("%s", $i);
    	if(i != NF)
    	  printf(":");
          }
          printf("\n");
        }
      ' > $WORKDIR/etc_exports.$$
      echo "/etc/exports" > $WORKDIR/etc_exports.$$.src
      echo $WORKDIR/etc_exports.$$
    }
    tiger-3.2.3/systems/IRIX/4/gen_group_sets0000755000175000017500000000217407756435010016670 0ustar  pacopaco#!/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 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.
    #
    # IRIX/4/gen_group_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    $GREP -v '^[-+]' /etc/group |
    $SORT > $WORKDIR/etc_group.$$
    echo "/etc/group" > $WORKDIR/etc_group.$$.src
    echo $WORKDIR/etc_group.$$
    
    [ -n "$YPCAT" ] && {
      $YPCAT group |
      $SORT |
      $COMM -23 - $WORKDIR/etc_group.$$ > $WORKDIR/nis_group.$$
      echo "NIS" > $WORKDIR/nis_group.$$.src
      echo $WORKDIR/nis_group.$$
    }
    
    tiger-3.2.3/systems/IRIX/4/gen_inetd0000755000175000017500000000172007502327223015570 0ustar  pacopaco#!/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 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.
    #
    # IRIX/4/gen_inetd - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    $GREP -v '^#' /usr/etc/inetd.conf |
    $SORT > $WORKDIR/etc_inetd.$$
    echo "/usr/etc/inetd.conf" > $WORKDIR/etc_inetd.$$.src
    echo $WORKDIR/etc_inetd.$$
    tiger-3.2.3/systems/IRIX/4/gen_mounts0000755000175000017500000000236307657026031016022 0ustar  pacopaco#!/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 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.
    #
    # IRIX/4/gen_mounts - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    
    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" = "4.2" ] && LOCAL=0
    
      return $LOCAL
    }
    
    /etc/mount |
    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" ] && echo "$mtpoint $fstype $fs"
    done
    
    tiger-3.2.3/systems/IRIX/4/gen_passwd_sets0000755000175000017500000000322707756435010017035 0ustar  pacopaco#!/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 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.
    #
    # 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
      case "$parm" in
        -p) ;;
        -l) local=1;;
        *)	outfile="$parm";;
      esac
    done
    
    $CAT /etc/passwd > $WORKDIR/etc_passwd.$$
    echo "/etc/passwd" > $WORKDIR/etc_passwd.$$.src
    echo $WORKDIR/etc_passwd.$$ >> $outfile
    
    [ -n "$YPCAT" ] && {
      $YPCAT passwd > $WORKDIR/nis_passwd.$$
      echo "NIS" > $WORKDIR/nis_passwd.$$.src
      echo $WORKDIR/nis_passwd.$$ >> $outfile
    }
    tiger-3.2.3/systems/IRIX/4/gen_services0000755000175000017500000000263407756435010016322 0ustar  pacopaco#!/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 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.
    #
    # IRIX/4/gen_services - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    $GREP -v '^#' /etc/services > $WORKDIR/etc_services.$$
    echo "/etc/services" > $WORKDIR/etc_services.$$.src
    echo $WORKDIR/etc_services.$$
    
    [ -n "$YPCAT" ] && {
      $YPCAT services > $WORKDIR/nis_services.$$
      echo "NIS" > $WORKDIR/nis_services.$$.src
      echo $WORKDIR/nis_services.$$
    }
    
    [ "$SERVERCHECK" = "Y" ] && {
      $GETCLIENTDIRS |
      while read client dir
      do
        [ -f "$dir/etc/services" ] && {
          $GREP -v '^#' $dir/etc/services |
          $SORT > $WORKDIR/services.$$.$client
          echo "$client:/etc/services" > $WORKDIR/services.$$.$client.src
          echo $WORKDIR/services.$$.$client
        }
      done
    }
    tiger-3.2.3/systems/IRIX/4/gendlclients0000755000175000017500000000274710045247305016317 0ustar  pacopaco#!/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 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.
    #
    # IRIX/4/gendlclients - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    parse_bootparam()
    {
      $AWK '
           BEGIN {LINE="";}
           $0 ~ /\\$/ {printf("%s ", substr($0, 1, length($0)-1));}
           $0 !~ /\\$/ {printf("%s\n", $0);}
           END {printf("\n");}
       ' |
      $AWK '{
               for(i=2;i<=NF;i++)
                 if(substr($i, 1,5) == "root="){
    	       x=substr($i, 6, length($i));
                   split(x, ar, ":");
                   print $1, ar[1], ar[2];
       	     }
            }'
    }
    
    $GEN_BOOTPARAM_SETS | 
    while read bootparam_set
    do
      parse_bootparam < $bootparam_set
      
      $RM -f $bootparam_set $bootparam_set.src
    done |
    $SORT -u |
    while read client server filesys
    do
      eval "case \"$server\" in $HOSTNAMESLIST) echo \"client $filesys\";; esac"
    done
    tiger-3.2.3/systems/IRIX/4/inetd0000644000175000017500000000430007502327223014731 0ustar  pacopacobootp	dgram	udp	wait	root	/usr/etc/bootp		bootp -f
    bootparam/1 dgram   rpc/udp wait    root    /usr/etc/rpc.bootparamd bootparam
    chargen	dgram	udp	wait	root	internal
    chargen	stream	tcp	nowait	root	internal
    daytime	dgram	udp	wait	root	internal
    daytime	stream	tcp	nowait	root	internal
    discard	dgram	udp	wait	root	internal
    discard	stream	tcp	nowait	root	internal
    echo	dgram	udp	wait	root	internal
    echo	stream	tcp	nowait	root	internal
    exec	stream	tcp	nowait	root	/usr/etc/rexecd		rexecd
    finger	stream	tcp	nowait	guest	/usr/etc/fingerd	fingerd
    ftp	stream	tcp	nowait	root	/usr/etc/ftpd		ftpd
    login	stream	tcp	nowait	root	/usr/etc/rlogind	rlogind
    mountd/1    dgram   rpc/udp wait    root    /usr/etc/rpc.mountd     mountd
    mountd/1    stream  rpc/tcp wait    root    /usr/etc/rpc.mountd     mountd
    ntalk	dgram	udp	wait	root	/usr/etc/talkd		talkd
    rexd/1     stream  rpc/tcp wait    root    /usr/etc/rpc.rexd       rexd
    rquotad/1   dgram   rpc/udp wait    root    /usr/etc/rpc.rquotad    rquotad
    rstatd/1-3  dgram   rpc/udp wait    root    /usr/etc/rpc.rstatd     rstatd
    rusersd/1   dgram   rpc/udp wait    root    /usr/etc/rpc.rusersd    rusersd
    sgi-dgl stream	tcp	nowait	root	/usr/etc/dgld	dgld -IM -tDGLTSOCKET
    sgi_fam/1   stream  rpc/tcp wait    root    /usr/etc/fam            famd  -t 180
    sgi_mountd/1 dgram  rpc/udp wait    root    /usr/etc/rpc.mountd     mountd
    sgi_mountd/1 stream rpc/tcp wait    root    /usr/etc/rpc.mountd     mountd
    sgi_pcsd/1  dgram   rpc/udp wait    root    /usr/etc/cvpcsd	    pcsd
    sgi_pod/1   stream  rpc/tcp wait    root    /usr/etc/podd           podd
    sgi_snoopd/1 stream rpc/tcp wait    root    /usr/etc/rpc.snoopd     snoopd
    sgi_toolkitbus/1 stream rpc/tcp wait root   /usr/etc/rpc.toolkitbus toolkitbusd
    shell	stream	tcp	nowait	root	/usr/etc/rshd		rshd
    sprayd/1    dgram   rpc/udp wait    root    /usr/etc/rpc.sprayd     sprayd
    tcpmux	stream	tcp	nowait	root	internal
    telnet	stream	tcp	nowait	root	/usr/etc/telnetd	telnetd
    tftp	dgram	udp	wait	guest	/usr/etc/tftpd	tftpd -s /usr/local/boot
    time	dgram	udp	wait	root	internal
    time	stream	tcp	nowait	root	internal
    walld/1     dgram   rpc/udp wait    root    /usr/etc/rpc.rwalld     rwalld
    ypupdated/1 stream  rpc/tcp wait    root    /usr/etc/rpc.ypupdated  ypupdated
    tiger-3.2.3/systems/IRIX/4/services0000644000175000017500000000246207502327223015460 0ustar  pacopacoNeWS		144/tcp	
    auth		113/tcp	
    biff		512/udp	
    bootp		67/udp	
    bootpc		68/udp	
    chargen		19/tcp	
    chargen		19/udp	
    conference	531/tcp
    courier		530/tcp
    csnet-ns	105/tcp
    daytime		13/tcp
    daytime		13/udp
    discard		9/tcp	
    discard		9/udp	
    domain		53/tcp	
    domain		53/udp	
    echo		7/tcp
    echo		7/udp
    eklogin		2105/tcp
    erpc		121/udp
    exec		512/tcp
    finger		79/tcp
    ftp		21/tcp
    ftp-data	20/tcp
    hostnames	101/tcp	
    imap2		143/tcp
    ingreslock	1524/tcp
    iso-tsap	102/tcp
    kerberos	750/tcp
    kerberos	750/udp
    klogin		543/tcp
    kpasswd		761/tcp
    krbupdate	760/tcp
    kshell		544/tcp
    link		87/tcp	
    loc-srv		135/tcp	
    loc-srv		135/udp
    login		513/tcp
    mtp		57/tcp	
    name		42/tcp	
    netnews		532/tcp
    netstat		15/tcp
    netwall		533/udp
    nntp		119/tcp	
    ntalk		518/udp
    ntp		123/udp	
    pop-2		109/tcp	
    pop-3		110/tcp
    printer		515/tcp
    qotd		17/tcp	
    remotefs	556/tcp
    rje		77/tcp	
    rlp		39/udp	
    route		520/udp
    sftp		115/tcp
    sgi-arena	5131/udp
    sgi-bznet       5133/udp
    sgi-dgl		5232/tcp
    sgi-dogfight	5130/udp
    shell		514/tcp	
    smtp		25/tcp	
    snmp		161/udp
    snmp-trap	162/udp	
    sunrpc		111/tcp
    sunrpc		111/udp
    supdup		95/tcp
    syslog		514/udp
    systat		11/tcp	
    talk		517/udp
    tcpmux		1/tcp
    telnet		23/tcp
    tempo		526/tcp
    tftp		69/udp
    time		37/tcp	
    time		37/udp	
    timed		525/udp
    uucp		540/tcp
    uucp-path	117/tcp
    who		513/udp	
    whois		43/tcp	
    x-server	6000/tcp
    x400		103/tcp	
    x400-snd	104/tcp
    xdmcp		177/udp	
    tiger-3.2.3/systems/IRIX/4/suid_list0000644000175000017500000000142607502327223015633 0ustar  pacopaco/bin/df
    /bin/login
    /bin/mail_att
    /bin/newgrp
    /bin/passwd
    /bin/su
    /etc/lvinfo
    /etc/suid_exec
    /usr/adm/mkpts
    /usr/bin/X11/cdplayer
    /usr/bin/X11/xterm
    /usr/bin/at
    /usr/bin/cancel
    /usr/bin/crontab
    /usr/bin/lp
    /usr/bin/lpstat
    /usr/bin/under
    /usr/bsd/lpq
    /usr/bsd/lpr
    /usr/bsd/lprm
    /usr/bsd/rcp
    /usr/bsd/rdist
    /usr/bsd/rlogin
    /usr/bsd/rsh
    /usr/etc/lpd
    /usr/etc/ping
    /usr/etc/route
    /usr/etc/timedc
    /usr/lib/envm/longinfo
    /usr/lib/lpsched
    /usr/lib/sendmail
    /usr/lib/vadmin/disks
    /usr/lib/vadmin/networking
    /usr/lib/vadmin/printers
    /usr/lib/vadmin/serial_ports
    /usr/lib/vadmin/users
    /usr/sbin/cdinstmgr
    /usr/sbin/datman
    /usr/sbin/eject
    /usr/sbin/gr_osview
    /usr/sbin/gr_top
    /usr/sbin/multitrack
    /usr/sbin/pandora
    /usr/sbin/startmidi
    /usr/sbin/systemdown
    /usr/sbin/top
    /usr/sbin/vadmin
    /usr/sbin/xwsh
    tiger-3.2.3/systems/IRIX/4/4.0.5F/0000755000175000017500000000000011306441030014446 5ustar  pacopacotiger-3.2.3/systems/IRIX/4/4.0.5F/IP12/0000755000175000017500000000000011306441030015121 5ustar  pacopacotiger-3.2.3/systems/IRIX/4/4.0.5F/IP12/signatures0000644000175000017500000000715107502327223017246 0ustar  pacopaco#
    # Signature file for IRIX 4.0.5F IP12, generated Mon Aug  2 14:07:04 CDT 1993
    # Thanks to Steve Rikli for the sigs
    #
    #@DEST=IRIX/4/4.0.5F/IP12
    #@CONFIG=IRIX/4
    Y .       /bin/sh fe4ab96b e2372c23 fe9646c1 5c684fc4 9817d0eb bcc4eba1 91aa6da5 a871ac85 IRIX 4.0.5F
    Y .       /bin/csh b3498c8e 84d64e08 4dfea768 264cba68 ca6e33a6 517f6c31 a9533183 0fbc554b IRIX 4.0.5F
    Y .       /bin/ksh 9cd7d8ba e09bc929 4dcf8848 f3403cd2 8e5b72ac 3fdd81e4 25eebc7d b8bed32b IRIX 4.0.5F
    Y .       /bin/login 37d389ec cffd633e 4a35ab48 69905e17 86249d3c a79cd6e1 18015eab 9ef9eef2 IRIX 4.0.5F
    Y .       /bin/su c266738b b8ecf580 439888d3 212aebcd c26ceb2a b5e91874 7028d1b6 7749083d IRIX 4.0.5F
    Y .       /bin/passwd d10e75a3 eaeffc07 314bb95f ff35c567 54065988 6a2a6e47 74162360 1d20faed IRIX 4.0.5F
    # in.fingerd not found.
    Y .       /usr/etc/fingerd 8bc48ef7 b04a3ed9 8f57f338 d21cf080 76c0d804 026bfff7 61b2be94 2e53840a IRIX 4.0.5F
    # in.ftpd not found.
    Y .       /usr/etc/ftpd b44b5357 64a9821f bf8bf1ef c3c133c7 4b4be01c 4a871c1f 1ccec55b 9f6e51a4 IRIX 4.0.5F
    # in.rexecd not found.
    Y .       /usr/etc/rexecd d10e42a4 d6c4f08d 89791e30 c30a88a0 bd58cfff 261cb82b afe9e1df d9076a41 IRIX 4.0.5F
    # in.rlogind not found.
    Y .       /usr/etc/rlogind da8d9025 4e26a70a e39ecb7e 67be1bf2 d6f1b067 342bca36 a5175309 b6b01c92 IRIX 4.0.5F
    # in.rshd not found.
    Y .       /usr/etc/rshd 87f411d9 85fe32a7 0710e3e8 82b50f6e 487ff752 74bd5dd5 1364bb67 314e9c8a IRIX 4.0.5F
    # in.telnetd not found.
    Y .       /usr/etc/telnetd 1bc74e61 08cbf602 fd2ce330 2c9fdcc4 a2d1663f fcc6caf9 4769940a 374d5e92 IRIX 4.0.5F
    # in.tftpd not found.
    Y .       /usr/etc/tftpd bb573298 adb0a494 198ed5bd 7dea774e 25027e11 c26b7c68 7751bc93 8b00ffff IRIX 4.0.5F
    # in.uucpd not found.
    # uucpd not found.
    # rpc.yppasswdd not found.
    Y .       /usr/etc/rpc.passwd 8240a8ab 088b73fc 7168ce79 f5a48f9c 7ec44069 3bc74173 a7980e51 8f0cca11 IRIX 4.0.5F
    Y .       /usr/etc/portmap 2e5d9d4b 5ee43c0d 0f10bd38 971c2cda eea747af ef0e75b6 5a7e10dc 1b83e2a9 IRIX 4.0.5F
    Y .       /usr/etc/ypserv caefbbb7 71d0c327 3305e5f3 5d03836d 9ef0b451 448844b2 a945788d c11c6be5 IRIX 4.0.5F
    # ypxfrd not found.
    Y .       /usr/etc/ypbind efc548aa 39248600 b7f4509a 9d9a11b1 795f4873 9a2a54fb 7102fc53 fb02ba7a IRIX 4.0.5F
    Y .       /usr/lib/sendmail 0a13a590 dd9f9fae 8f39f1c8 514c1217 f111b937 a4e3a7f3 160842ef 0fe5671d IRIX 4.0.5F
    # sendmail.mx not found.
    Y .       /usr/bsd/rdist f8a13592 0df1423e 8574c38a 765919d8 e2fa11e7 3ae74107 ec0c4e69 7c95966b IRIX 4.0.5F
    Y .       /usr/bsd/rlogin 2be0e89d 295eec03 9f9b173e c26d5d56 45fe9d1c c939cffb ed977e0e 511efc36 IRIX 4.0.5F
    Y .       /usr/bsd/rsh ec63d2a9 41bf7330 faa3182a 40ce53fd 019e8a10 48b36155 97339b4f 47a2b193 IRIX 4.0.5F
    Y .       /usr/bsd/telnet b64c3e5a 5821158a 8b22664a 48e68977 1e37764d e36f4707 d4a9ad10 773df50e IRIX 4.0.5F
    Y .       /usr/bin/lpstat f841da78 df180898 58dd63e5 e3a1e46b 542c45d7 34102bf0 bb39f4ab 90f2fb8c IRIX 4.0.5F
    Y .       /usr/etc/lpc e2dd5524 13f81b25 a6b2c9e9 01059bb0 2f072390 3c77a9ea f920aab7 5b126910 IRIX 4.0.5F
    Y .       /usr/etc/lpd 7f0330d6 e993d06a ce2e9aa5 df355731 3d5ace75 1d772639 0d4ce229 8ee75a00 IRIX 4.0.5F
    Y .       /usr/bsd/lpr c83f616b 9b9b816d eefdfc73 339ff491 5a33ee21 a025bfff e03438ee e334ba75 IRIX 4.0.5F
    Y .       /usr/bsd/lprm be68399c 3fa7db38 274b84b3 61532145 c703ef60 3a8ecb0e 512542a6 4f13c49b IRIX 4.0.5F
    Y .       /usr/etc/lpd 7f0330d6 e993d06a ce2e9aa5 df355731 3d5ace75 1d772639 0d4ce229 8ee75a00 IRIX 4.0.5F
    Y .       /usr/etc/rpc.mountd 9744d7ab 1002f9ff 34ece988 657b3b48 022112ea af73b08d 971bff5e a90d2da9 IRIX 4.0.5F
    Y .       /usr/lib/expreserve 6725c24d 3d11253e 5d020eaf 38caaa49 9106c461 829a86ab cacf30fa d4f850cf IRIX 4.0.5F
    tiger-3.2.3/systems/IRIX/4/4.0.5F/IP12/config0000644000175000017500000000724407732610214016332 0ustar  pacopaco#
    #     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.
    #
    # IRIX/4/config - 06/14/93
    #
    # Thanks to Steve Rikli for the revised config file
    # jfs - 09/19/2003 - Added UUID and USERNAME definition
    #
    # ----------------------------------------------------------------------
    #
    UUID=`id -u`
    USERNAME=`whoami`
    export UUID USERNAME
    AWK=/usr/bin/awk
    export AWK
    BASENAME=/bin/basename
    export BASENAME
    CAT=/bin/cat
    export CAT
    CC=/usr/bin/cc
    export CC
    CHMOD=/bin/chmod
    export CHMOD
    CHOWN=/bin/chown
    export CHOWN
    COMM=/usr/bin/comm
    export COMM
    DATE=/bin/date
    export DATE
    EGREP=/usr/bin/egrep
    export EGREP
    EXPR=/bin/expr
    export EXPR
    FILECMD=/bin/file
    export FILECMD
    FIND=/bin/find
    export FIND
    FMT=/bin/cat
    export FMT
    GETHOSTNAME='/bin/uname -n'
    export GETHOSTNAME
    GREP=/bin/grep
    export GREP
    GROUPSS=/usr/bin/groups
    export GROUPSS
    JOIN=/usr/bin/join
    export JOIN
    LN=/bin/ln
    export LN
    LS=/bin/ls
    export LS
    MV=/bin/mv
    export MV
    PS=/bin/ps
    export PS
    RM=/bin/rm
    export RM
    SED=/bin/sed
    export SED
    SORT=/bin/sort
    export SORT
    STRINGS=/bin/strings
    export STRINGS
    TAIL=/bin/tail
    export TAIL
    TR=/usr/bin/tr
    export TR
    UNAME=/bin/uname
    export UNAME
    UNIQ=/usr/bin/uniq
    export UNIQ
    PASTE=/usr/bin/paste
    export PASTE
    YPCAT=/usr/bin/ypcat
    export YPCAT
    WAIT=wait
    export WAIT
    DIFF=/bin/diff
    export DIFF
    MAILER=/usr/sbin/Mail
    export MAILER
    SENDMAILS="/usr/lib/sendmail"
    SENDMAILCF="/usr/lib/sendmail.cf"
    export SENDMAILS SENDMAILCF
    #
    # How to get different effects
    #
    DATECMD="$DATE +%y%m%d"
    TIMECMD="$DATE +%H:%M"
    export DATECMD TIMECMD
    SGREP="$EGREP -s"
    export SGREP
    LSGROUP=-l
    export LSGROUP
    LSLINK=-L
    export LSLINK
    TESTLINK=-l
    export TESTLINK
    TESTEXEC=-x
    export TESTEXEC
    FINDXDEV=-mount
    export FINDXDEV
    #
    # Geez... how can you compile anything in SGI's default mode
    #
    CFLAGS=-cckr
    export CFLAGS
    CLIBS=-lsun
    export CLIBS
    #
    MAILSPOOL=/usr/mail
    export MAILSPOOL
    CRONTAB=/usr/spool/cron/crontabs
    export CRONTAB
    # This isn't implemented in IRIX.  -sr.
    #ETCSHELLS=/etc/shell
    #export ETCSHELLS
    
    #
    # Segment of code to find system specific tiger parts
    #
    
    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 gen_mounts
    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_INETD_SETS gen_inetd
    GETDISKS getdisks
    EMBEDDEDLIST embedlist
    GETUSERHOME getuserhome
    EOL
    `
    tiger-3.2.3/systems/IRIX/4/4.0.5F/IP20/0000755000175000017500000000000011306441030015120 5ustar  pacopacotiger-3.2.3/systems/IRIX/4/4.0.5F/IP20/signatures0000644000175000017500000000715307502327223017247 0ustar  pacopaco#
    # Signature file for IRIX 4.0.5F IP20, generated Mon Aug  2 13:52:43 CDT 1993
    #
    # Thanks to Steve Rikli for the sigs
    #
    #@DEST=IRIX/4/4.0.5F/IP20
    #@CONFIG=IRIX/4
    Y .       /bin/sh fe4ab96b e2372c23 fe9646c1 5c684fc4 9817d0eb bcc4eba1 91aa6da5 a871ac85 IRIX 4.0.5F
    Y .       /bin/csh b3498c8e 84d64e08 4dfea768 264cba68 ca6e33a6 517f6c31 a9533183 0fbc554b IRIX 4.0.5F
    Y .       /bin/ksh 9cd7d8ba e09bc929 4dcf8848 f3403cd2 8e5b72ac 3fdd81e4 25eebc7d b8bed32b IRIX 4.0.5F
    Y .       /bin/login 37d389ec cffd633e 4a35ab48 69905e17 86249d3c a79cd6e1 18015eab 9ef9eef2 IRIX 4.0.5F
    Y .       /bin/su c266738b b8ecf580 439888d3 212aebcd c26ceb2a b5e91874 7028d1b6 7749083d IRIX 4.0.5F
    Y .       /bin/passwd d10e75a3 eaeffc07 314bb95f ff35c567 54065988 6a2a6e47 74162360 1d20faed IRIX 4.0.5F
    # in.fingerd not found.
    Y .       /usr/etc/fingerd 8bc48ef7 b04a3ed9 8f57f338 d21cf080 76c0d804 026bfff7 61b2be94 2e53840a IRIX 4.0.5F
    # in.ftpd not found.
    Y .       /usr/etc/ftpd b44b5357 64a9821f bf8bf1ef c3c133c7 4b4be01c 4a871c1f 1ccec55b 9f6e51a4 IRIX 4.0.5F
    # in.rexecd not found.
    Y .       /usr/etc/rexecd d10e42a4 d6c4f08d 89791e30 c30a88a0 bd58cfff 261cb82b afe9e1df d9076a41 IRIX 4.0.5F
    # in.rlogind not found.
    Y .       /usr/etc/rlogind da8d9025 4e26a70a e39ecb7e 67be1bf2 d6f1b067 342bca36 a5175309 b6b01c92 IRIX 4.0.5F
    # in.rshd not found.
    Y .       /usr/etc/rshd 87f411d9 85fe32a7 0710e3e8 82b50f6e 487ff752 74bd5dd5 1364bb67 314e9c8a IRIX 4.0.5F
    # in.telnetd not found.
    Y .       /usr/etc/telnetd 1bc74e61 08cbf602 fd2ce330 2c9fdcc4 a2d1663f fcc6caf9 4769940a 374d5e92 IRIX 4.0.5F
    # in.tftpd not found.
    Y .       /usr/etc/tftpd bb573298 adb0a494 198ed5bd 7dea774e 25027e11 c26b7c68 7751bc93 8b00ffff IRIX 4.0.5F
    # in.uucpd not found.
    # uucpd not found.
    # rpc.yppasswdd not found.
    Y .       /usr/etc/rpc.passwd 8240a8ab 088b73fc 7168ce79 f5a48f9c 7ec44069 3bc74173 a7980e51 8f0cca11 IRIX 4.0.5F
    Y .       /usr/etc/portmap 2e5d9d4b 5ee43c0d 0f10bd38 971c2cda eea747af ef0e75b6 5a7e10dc 1b83e2a9 IRIX 4.0.5F
    Y .       /usr/etc/ypserv caefbbb7 71d0c327 3305e5f3 5d03836d 9ef0b451 448844b2 a945788d c11c6be5 IRIX 4.0.5F
    # ypxfrd not found.
    Y .       /usr/etc/ypbind efc548aa 39248600 b7f4509a 9d9a11b1 795f4873 9a2a54fb 7102fc53 fb02ba7a IRIX 4.0.5F
    Y .       /usr/lib/sendmail 0a13a590 dd9f9fae 8f39f1c8 514c1217 f111b937 a4e3a7f3 160842ef 0fe5671d IRIX 4.0.5F
    # sendmail.mx not found.
    Y .       /usr/bsd/rdist f8a13592 0df1423e 8574c38a 765919d8 e2fa11e7 3ae74107 ec0c4e69 7c95966b IRIX 4.0.5F
    Y .       /usr/bsd/rlogin 2be0e89d 295eec03 9f9b173e c26d5d56 45fe9d1c c939cffb ed977e0e 511efc36 IRIX 4.0.5F
    Y .       /usr/bsd/rsh ec63d2a9 41bf7330 faa3182a 40ce53fd 019e8a10 48b36155 97339b4f 47a2b193 IRIX 4.0.5F
    Y .       /usr/bsd/telnet b64c3e5a 5821158a 8b22664a 48e68977 1e37764d e36f4707 d4a9ad10 773df50e IRIX 4.0.5F
    Y .       /usr/bin/lpstat f841da78 df180898 58dd63e5 e3a1e46b 542c45d7 34102bf0 bb39f4ab 90f2fb8c IRIX 4.0.5F
    Y .       /usr/etc/lpc e2dd5524 13f81b25 a6b2c9e9 01059bb0 2f072390 3c77a9ea f920aab7 5b126910 IRIX 4.0.5F
    Y .       /usr/etc/lpd 7f0330d6 e993d06a ce2e9aa5 df355731 3d5ace75 1d772639 0d4ce229 8ee75a00 IRIX 4.0.5F
    Y .       /usr/bsd/lpr c83f616b 9b9b816d eefdfc73 339ff491 5a33ee21 a025bfff e03438ee e334ba75 IRIX 4.0.5F
    Y .       /usr/bsd/lprm be68399c 3fa7db38 274b84b3 61532145 c703ef60 3a8ecb0e 512542a6 4f13c49b IRIX 4.0.5F
    Y .       /usr/etc/lpd 7f0330d6 e993d06a ce2e9aa5 df355731 3d5ace75 1d772639 0d4ce229 8ee75a00 IRIX 4.0.5F
    Y .       /usr/etc/rpc.mountd 9744d7ab 1002f9ff 34ece988 657b3b48 022112ea af73b08d 971bff5e a90d2da9 IRIX 4.0.5F
    Y .       /usr/lib/expreserve 6725c24d 3d11253e 5d020eaf 38caaa49 9106c461 829a86ab cacf30fa d4f850cf IRIX 4.0.5F
    tiger-3.2.3/systems/IRIX/4/4.0.5F/IP20/config0000644000175000017500000000724607732610214016333 0ustar  pacopaco#
    #     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.
    #
    # IRIX/4/config - 06/14/93
    #
    # Thanks to Steve Rikli for the revised config file
    #
    # jfs - 09/19/2003 - Added UUID and USERNAME definition
    #
    # ----------------------------------------------------------------------
    #
    UUID=`id -u`
    USERNAME=`whoami`
    export UUID USERNAME
    AWK=/usr/bin/awk
    export AWK
    BASENAME=/bin/basename
    export BASENAME
    CAT=/bin/cat
    export CAT
    CC=/usr/bin/cc
    export CC
    CHMOD=/bin/chmod
    export CHMOD
    CHOWN=/bin/chown
    export CHOWN
    COMM=/usr/bin/comm
    export COMM
    DATE=/bin/date
    export DATE
    EGREP=/usr/bin/egrep
    export EGREP
    EXPR=/bin/expr
    export EXPR
    FILECMD=/bin/file
    export FILECMD
    FIND=/bin/find
    export FIND
    FMT=/bin/cat
    export FMT
    GETHOSTNAME='/bin/uname -n'
    export GETHOSTNAME
    GREP=/bin/grep
    export GREP
    GROUPSS=/usr/bin/groups
    export GROUPSS
    JOIN=/usr/bin/join
    export JOIN
    LN=/bin/ln
    export LN
    LS=/bin/ls
    export LS
    MV=/bin/mv
    export MV
    PS=/bin/ps
    export PS
    RM=/bin/rm
    export RM
    SED=/bin/sed
    export SED
    SORT=/bin/sort
    export SORT
    STRINGS=/bin/strings
    export STRINGS
    TAIL=/bin/tail
    export TAIL
    TR=/usr/bin/tr
    export TR
    UNAME=/bin/uname
    export UNAME
    UNIQ=/usr/bin/uniq
    export UNIQ
    PASTE=/usr/bin/paste
    export PASTE
    YPCAT=/usr/bin/ypcat
    export YPCAT
    WAIT=wait
    export WAIT
    DIFF=/bin/diff
    export DIFF
    MAILER=/usr/sbin/Mail
    export MAILER
    SENDMAILS="/usr/lib/sendmail"
    SENDMAILCF="/usr/lib/sendmail.cf"
    export SENDMAILS SENDMAILCF
    #
    # How to get different effects
    #
    DATECMD="$DATE +%y%m%d"
    TIMECMD="$DATE +%H:%M"
    export DATECMD TIMECMD
    SGREP="$EGREP -s"
    export SGREP
    LSGROUP=-l
    export LSGROUP
    LSLINK=-L
    export LSLINK
    TESTLINK=-l
    export TESTLINK
    TESTEXEC=-x
    export TESTEXEC
    FINDXDEV=-mount
    export FINDXDEV
    #
    # Geez... how can you compile anything in SGI's default mode
    #
    CFLAGS=-cckr
    export CFLAGS
    CLIBS=-lsun
    export CLIBS
    #
    MAILSPOOL=/usr/mail
    export MAILSPOOL
    CRONTAB=/usr/spool/cron/crontabs
    export CRONTAB
    # This isn't implemented in IRIX.  -sr.
    #ETCSHELLS=/etc/shell
    #export ETCSHELLS
    
    #
    # Segment of code to find system specific tiger parts
    #
    
    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 gen_mounts
    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_INETD_SETS gen_inetd
    GETDISKS getdisks
    EMBEDDEDLIST embedlist
    GETUSERHOME getuserhome
    EOL
    `
    tiger-3.2.3/systems/IRIX/4/4.0.5H/0000755000175000017500000000000011306441030014450 5ustar  pacopacotiger-3.2.3/systems/IRIX/4/4.0.5H/IP22/0000755000175000017500000000000011306441030015124 5ustar  pacopacotiger-3.2.3/systems/IRIX/4/4.0.5H/IP22/signatures0000644000175000017500000000716307502327223017254 0ustar  pacopaco#
    # Signature file for IRIX 4.0.5H IP22, generated Mon Aug  2 11:20:45 CDT 1993
    #
    # Thanks to Steve Rikli for the signatures
    #
    #@DEST=IRIX/4/4.0.5H/IP22
    #@CONFIG=IRIX/4
    #
    Y .       /bin/sh 1e0da511 a75dfb3d 66f55ba0 57c43beb 4af67ed1 17a97d14 bac98f96 1e150b6f IRIX 4.0.5H
    Y .       /bin/csh 242ff688 aec9141b 9b03c4cf c264010f de49446d a822a00f ed96b577 c6f7d09f IRIX 4.0.5H
    Y .       /bin/ksh f521cf6e 5b3b2d59 d39d221c 4eb33ba7 2960961d 28fa2806 bcc5b15e 4608560b IRIX 4.0.5H
    Y .       /bin/login bb037ef9 057d80b0 a042f0b6 e9a872a5 e6730fa5 bef7758f 4018c1cb 1929b069 IRIX 4.0.5H
    Y .       /bin/su fa581bbe e95792c4 75915e59 0dfa3c3a 7508c701 d7fbfb98 e5b6dee8 c3a9304e IRIX 4.0.5H
    Y .       /bin/passwd 1ff31199 4d9bed81 891ebd54 33436ae2 e5f80558 0384e397 4642780b 4b2ae89d IRIX 4.0.5H
    # in.fingerd not found.
    Y .       /usr/etc/fingerd e5eab45a 7e4200ce 56359e7e 740dc7fe 59b18e22 6fd1f74b 1bbf7909 9d222fc4 IRIX 4.0.5H
    # in.ftpd not found.
    Y .       /usr/etc/ftpd 4f067fda 72dc0a17 516080cf 9951156e be0feb11 c3f3d364 66726961 bd829633 IRIX 4.0.5H
    # in.rexecd not found.
    Y .       /usr/etc/rexecd bec7f7d5 06ecd32f c88d1b6e 5aecf76f c2ed1abd ed6e5fdf f8390d5f b908508e IRIX 4.0.5H
    # in.rlogind not found.
    Y .       /usr/etc/rlogind f303340c b4e105f5 0c509dca 82584a14 2415fa02 c65c27a6 f9bfc737 26f07b8b IRIX 4.0.5H
    # in.rshd not found.
    Y .       /usr/etc/rshd 2e132208 993b2eb7 ccf591bf 0e1f3a31 5931ca86 00426398 90df4b64 faac5e53 IRIX 4.0.5H
    # in.telnetd not found.
    Y .       /usr/etc/telnetd f353b6c4 916af50f 78b97c8f ef17b7d2 1160fd75 4720b018 67264663 033791d1 IRIX 4.0.5H
    # in.tftpd not found.
    Y .       /usr/etc/tftpd 0fc90a06 1b431f87 685fe37b 8202282f 4d28f07f 60eddd99 292941b3 effbf0e0 IRIX 4.0.5H
    # in.uucpd not found.
    # uucpd not found.
    # rpc.yppasswdd not found.
    Y .       /usr/etc/rpc.passwd 97ef0b65 a46d659c 1814fbdb 54282918 f982f0ae 8e4415d3 610fc9b2 76c407b1 IRIX 4.0.5H
    Y .       /usr/etc/portmap ab91a222 46adb91a a711943f fd6bfe7a 3373aefd 7817f4be 1f147592 8f301553 IRIX 4.0.5H
    Y .       /usr/etc/ypserv e994be40 ffac0550 b49c8757 6f6f379d 7ec1bdf6 5b0787df 8ab9aa9d 3cf692a7 IRIX 4.0.5H
    # ypxfrd not found.
    Y .       /usr/etc/ypbind fcc7b6a9 964de64c 0d7126e6 db05a706 f452de18 a8eabc4b 6cf95560 3fd21087 IRIX 4.0.5H
    Y .       /usr/lib/sendmail 1f3b5a9a 898e45f4 ea4f0089 d6084910 c4adf8a2 0f9ca03b 60d4ec5e fd125658 IRIX 4.0.5H
    # sendmail.mx not found.
    Y .       /usr/bsd/rdist 5019bad1 7c34cf7b 691482a2 1072c5cb ba3db29a 7153a233 b046f373 955ef3d4 IRIX 4.0.5H
    Y .       /usr/bsd/rlogin 7b1a3617 e96d8749 0561f212 f08b5541 49f1e45e c95b68ef e6baccae 3bc51f42 IRIX 4.0.5H
    Y .       /usr/bsd/rsh ae41cb4f 196e6e18 4897bf80 2d60b298 2041596d 4a35b807 83e5a5bd 33be4a05 IRIX 4.0.5H
    Y .       /usr/bsd/telnet 2d54bd5a 09eea948 e8a9845d 1e298bd1 b1b727dd b2a41263 1087c214 c86e81d1 IRIX 4.0.5H
    Y .       /usr/bin/lpstat 3ec33ee5 2cd4410a 3f035827 366e5338 a3d19215 5338b2a3 a6b28449 70973f3f IRIX 4.0.5H
    Y .       /usr/etc/lpc 878ca855 1ae2f42e 4539ca20 89e76d7f 80752541 5cf41322 02e3bb75 30af25ec IRIX 4.0.5H
    Y .       /usr/etc/lpd 62a431c3 d231d76d eb80141b 5ed6545f 68ce29db a1af6be8 a7ad300d 74e02bcc IRIX 4.0.5H
    Y .       /usr/bsd/lpr 91455b81 c0cd75a5 88268a77 8539bc4b 8fa52647 80f2a191 d000ca37 e9a23284 IRIX 4.0.5H
    Y .       /usr/bsd/lprm 6bc9466d ddfe6247 324ef92f b4da1ef6 5c908057 99f14e5b da4a99c6 ca2ccdcd IRIX 4.0.5H
    Y .       /usr/etc/lpd 62a431c3 d231d76d eb80141b 5ed6545f 68ce29db a1af6be8 a7ad300d 74e02bcc IRIX 4.0.5H
    Y .       /usr/etc/rpc.mountd 9c2aa2b6 ca7499dc c54d36f4 42247320 0906107b a6d98189 649781cc 74d0917f IRIX 4.0.5H
    Y .       /usr/lib/expreserve f444f119 661559d0 27f5701f 1395cf0c f83677f6 8fb1cd7a 61a4dce2 22d390c1 IRIX 4.0.5H
    tiger-3.2.3/systems/IRIX/4/4.0.5H/IP22/config0000644000175000017500000000724607732610214016337 0ustar  pacopaco#
    #     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.
    #
    # IRIX/4/config - 06/14/93
    #
    # Thanks to Steve Rikli for the revised config file
    #
    #
    # 09/19/2003 - jfs - Added UUID and USERNAME definition
    #
    # ----------------------------------------------------------------------
    UUID=`id -u`
    USERNAME=`whoami`
    export UUID USERNAME
    AWK=/usr/bin/awk
    export AWK
    BASENAME=/bin/basename
    export BASENAME
    CAT=/bin/cat
    export CAT
    CC=/usr/bin/cc
    export CC
    CHMOD=/bin/chmod
    export CHMOD
    CHOWN=/bin/chown
    export CHOWN
    COMM=/usr/bin/comm
    export COMM
    DATE=/bin/date
    export DATE
    EGREP=/usr/bin/egrep
    export EGREP
    EXPR=/bin/expr
    export EXPR
    FILECMD=/bin/file
    export FILECMD
    FIND=/bin/find
    export FIND
    FMT=/bin/cat
    export FMT
    GETHOSTNAME='/bin/uname -n'
    export GETHOSTNAME
    GREP=/bin/grep
    export GREP
    GROUPSS=/usr/bin/groups
    export GROUPSS
    JOIN=/usr/bin/join
    export JOIN
    LN=/bin/ln
    export LN
    LS=/bin/ls
    export LS
    MV=/bin/mv
    export MV
    PS=/bin/ps
    export PS
    RM=/bin/rm
    export RM
    SED=/bin/sed
    export SED
    SORT=/bin/sort
    export SORT
    STRINGS=/bin/strings
    export STRINGS
    TAIL=/bin/tail
    export TAIL
    TR=/usr/bin/tr
    export TR
    UNAME=/bin/uname
    export UNAME
    UNIQ=/usr/bin/uniq
    export UNIQ
    PASTE=/usr/bin/paste
    export PASTE
    YPCAT=/usr/bin/ypcat
    export YPCAT
    WAIT=wait
    export WAIT
    DIFF=/bin/diff
    export DIFF
    MAILER=/usr/sbin/Mail
    export MAILER
    SENDMAILS="/usr/lib/sendmail"
    SENDMAILCF="/usr/lib/sendmail.cf"
    export SENDMAILS SENDMAILCF
    #
    # How to get different effects
    #
    DATECMD="$DATE +%y%m%d"
    TIMECMD="$DATE +%H:%M"
    export DATECMD TIMECMD
    SGREP="$EGREP -s"
    export SGREP
    LSGROUP=-l
    export LSGROUP
    LSLINK=-L
    export LSLINK
    TESTLINK=-l
    export TESTLINK
    TESTEXEC=-x
    export TESTEXEC
    FINDXDEV=-mount
    export FINDXDEV
    #
    # Geez... how can you compile anything in SGI's default mode
    #
    CFLAGS=-cckr
    export CFLAGS
    CLIBS=-lsun
    export CLIBS
    #
    MAILSPOOL=/usr/mail
    export MAILSPOOL
    CRONTAB=/usr/spool/cron/crontabs
    export CRONTAB
    # This isn't implemented in IRIX.  -sr.
    #ETCSHELLS=/etc/shell
    #export ETCSHELLS
    
    #
    # Segment of code to find system specific tiger parts
    #
    
    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 gen_mounts
    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_INETD_SETS gen_inetd
    GETDISKS getdisks
    EMBEDDEDLIST embedlist
    GETUSERHOME getuserhome
    EOL
    `
    tiger-3.2.3/systems/IRIX/5/0000755000175000017500000000000011306441030013675 5ustar  pacopacotiger-3.2.3/systems/IRIX/5/check_cron0000644000175000017500000000161107502327223015727 0ustar  pacopaco#!/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 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.
    #
    # IRIX/4/check_cron - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    if [ -f /usr/spool/cron/crontabs/$1 ]; then
      echo "YES"
    else
      echo "NO"
    fi
    tiger-3.2.3/systems/IRIX/5/config0000644000175000017500000002113607732610214015102 0ustar  pacopaco# -*- 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.
    #
    # default/config - 06/14/93
    # ARC config     - 04/27/99
    # ARC config     - 05/10/99  Fixed IRIX 6.5 bug
    # jfs - 09/19/2003 - Added UUID and USERNAME definition
    #
    # ----------------------------------------------------------------------
    UUID=`id -u`
    USERNAME=`whoami`
    export UUID USERNAME
    
    findcmd()
    {
      CMD=$1
    
      SRCH=/bin:/usr/bin:/etc:/usr/etc:/usr/ucb:/usr/sbin:/usr/bsd:/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 ] ) 2> $WORKDIR/te.$$
    [ -s $WORKDIR/te.$$ ] && TESTEXEC=-f
    export TESTEXEC
    
    RM=`findcmd rm`
    [ -n "$RM" ] && $RM $WORKDIR/te.$$
    AWK=`findcmd awk`
    CAT=`findcmd cat`
    LS=`findcmd ls`
    # -g to show group ownership
    # SysV systems don't need this... try to figure out whether we
    # need '-g' or not.
    LSGROUP="-lg"
    F1=`$LS $LSGROUP -d /etc | $AWK '{print NF}'`
    F2=`$LS -d /etc | $AWK '{print NF}'`
    [ $F1 -lt $F2 ] && LSGROUP="-l"
    # -L to show files
    LSLINK="-L"
    $LS $LSLINK 2>/dev/null >/dev/null || LSLINK=
    GREP=`findcmd grep`
    EGREP=`findcmd egrep`
    SED=`findcmd sed`
    SORT=`findcmd sort`
    COMM=`findcmd comm`
    TAIL=`findcmd tail`
    MV=`findcmd mv`
    TR=`findcmd tr`
    JOIN=`findcmd join`
    GROUPSS=`findcmd groups`
    FILECMD=`findcmd file`
    UNIQ=`findcmd uniq`
    BASENAME=`findcmd basename`
    CHMOD=`findcmd chmod`
    CHOWN=`findcmd chown`
    LN=`findcmd ln`
    PASTE=`findcmd paste`
    DIFF=`findcmd diff`
    TCPD=`findcmd tcpd`
    MAILER=`findcmd mail`
    [ ! -n "$MAILER" ] && MAILER=`findcmd mailx`
    [ ! -n "$MAILER" ] && MAILER=`findcmd Mail`
    [ ! -n "$MAILER" ] && MAILER=`findcmd sendmail`
    
    SGREP="$EGREP -s"
    X=`$EGREP -s : /etc/passwd 2>&1 | $TAIL -1`
    [ "$X" != "" ] && {
      SGREP="$GREP -s"
      X=`$GREP -s : /etc/passwd 2>&1 | $TAIL -1`
      [ "$X" != "" ] && {
        SGREP="$BASEDIR/util/sgrep"
      }
    }
    #
    export CAT LS LSGROUP LSLINK RM AWK GREP EGREP SGREP SED
    export SORT COMM TAIL MV TR JOIN GROUPSS FILECMD UNIQ BASENAME
    export CHMOD CHOWN LN PASTE TCPD
    #
    UNAME=`findcmd uname`
    HOSTNAME=`findcmd hostname`
    EXPR=`findcmd expr`
    STRINGS=`findcmd strings`
    FIND=`findcmd find`
    GETHOSTNAME=`findcmd hostname`
    [ ! -n "$GETHOSTNAME" ] && {
      GETHOSTNAME=`findcmd uname`
      [ -n "$GETHOSTNAME" ] && GETHOSTNAME="$GETHOSTNAME -n"
    }
    #
    # Try to intuit whether -xdev option is recognized
    #
    FINDXDEV=-xdev
    $FIND /etc/passwd -xdev -name /etc/passwd 2>/dev/null > /dev/null || FINDXDEV=
    #
    FMT=`findcmd fmt || echo $CAT`
    #
    # Command to get list of mounted filesystems
    #
    GETFS=`findcmd mount`
    CC=`findcmd cc || findcmd gcc || findcmd acc || findcmd xlc`
    PS=`findcmd ps`
    DATE=`findcmd date`
    #
    # To get date (MMDDYY or some form suitable for use in a filename)
    # If nothing useful, then just echo ''
    #DATECMD="echo ''"
    DATECMD="$DATE +%y%m%d"
    #
    # To get HH:MM
    # If no +% stuff, then use
    #TIMECMD="$DATE | $AWK '{print substr($4,1,5);}'"
    TIMECMD="$DATE +%H:%M"
    #
    # Try to figure out whether diff -D needs a space or not...
    # (or whether -D is supported at all)
    #
    DIFFD=
    $DIFF -DABCDEFGH /etc/passwd /etc/group > /dev/null 2>&1 || {
      DIFFD=' '
      $DIFF -D ABCDEFGH /etc/passwd /etc/group > /dev/null 2>&1 || {
        DIFF=
      }
    }
    export DIFFD
    #
    # Jump through hoops to figure out how to test for a symbolic link
    #
    
    file=X.$$
    $LN -s . $file
    temp=$WORKDIR/F.$$
    > $temp
    ( [ -h X.$file ] ) 2> $temp
    if [ ! -s $temp ]; then
      TESTLINK=-h
    else
      > $temp
      ( [ -l X.$file ] ) 2> $temp
      if [ ! -s $temp ]; then
        TESTLINK=-l
      else
        > $temp
        ( [ -L X.$file ] ) 2> $temp
        if [ ! -s $temp ]; then
          TESTLINK=-L
        else
          TESTLINK=
        fi
      fi
    fi
    $RM -f $temp $file
    unset temp
    unset file
    export TESTLINK
    #
    #
    export UNAME HOSTNAME EXPR STRINGS FIND FINDXDEV
    export FMT GETFS CC PS DATE DATECMD TIMECMD
    WAIT=wait
    
    SENDMAILS=""
    for dir in /usr/lib /usr/sbin /etc /usr/etc
    do
      for prog in sendmail sendmail.mx smail
      do
        [ ! $TESTLINK "$dir/$prog" ] && {
          SENDMAILS="$SENDMAILS $dir/$prog"
        }
      done
    done
    export SENDMAILS
    
    SENDMAILCF=
    if [ -f /usr/lib/sendmail.cf ]; then
      SENDMAILCF=/usr/lib/sendmail.cf
    elif [ -f /etc/sendmail.cf ]; then
      SENDMAILCF=/etc/sendmail.cf
    elif [ -f /etc/mail/sendmail.cf ]; then
      SENDMAILCF=/etc/mail/sendmail.cf
    elif [ -f /etc/sendmail/sendmail.cf ]; then
      SENDMAILCF=/etc/sendmail/sendmail.cf
    elif [ -f /usr/lib/mail/sendmail.cf ]; then
      SENDMAILCF=/usr/lib/mail/sendmail.cf
    elif [ -f /usr/lib/sendmail/sendmail.cf ]; then
      SENDMAILCF=/usr/lib/sendmail/sendmail.cf
    fi
    export SENDMAILCF
    #
    YPCAT=`findcmd ypcat`
    #
    YPSERVER="NO"
    (($PS -ef || $PS -aux ) 2>/dev/null |
    $GREP ypserv | $GREP -v -s $GREP) && YPSERVER="YES"
    
    export WAIT YPCAT YPSERVER
    #
    if [ -d /usr/mail ]; then
      MAILSPOOL=/usr/mail
    elif [ -d /var/mail ]; then
      MAILSPOOL=/var/mail
    elif [ -d /usr/spool/mail ]; then
      MAILSPOOL=/usr/spool/mail
    elif [ -d /var/spool/mail ]; then
      MAILSPOOL=/var/spool/mail
    else
      MAILSPOOL=
    fi
    #
    if [ -d /var/spool/cron/crontabs ]; then
      CRONSPOOL=/var/spool/cron/crontabs
    elif [ -d /usr/spool/cron/crontabs ]; then
      CRONSPOOL=/usr/spool/cron/crontabs
    elif [ -d /etc/cron/crontabs ]; then
      CRONSPOOL=/etc/cron/crontabs
    elif [ -d /usr/lib/cron/crontabs ]; then
      CRONSPOOL=/usr/lib/cron/crontabs
    else
      CRONSPOOL=
    fi
    #
    ETCSHELLS=/etc/shells
    #
    export MAILSPOOL CRONSPOOL ETCSHELLS
    #
    LOCFS="4.2|4.3|ufs|jfs|4.4"
    export LOCFS
    #
    CDIR="$BASEDIR/systems"
    #  Stuff below would not work on IRIX 6.5 
    #eval `
    #  while read var file 
    #  do
    #    if [ -f "$CONFIG_DIR/$file" ]; then
    #      loc="$CONFIG_DIR"
    #    fi
    #    if [ "$loc" != "" ]; then
    #      echo $var="$loc/$file;"
    #   else
    #      echo "echo $var=;"
    #    fi
    #    echo "export $var;"
    #  done << EOL
    if [ -f "$CONFIG_DIR/gen_passwd_sets" ]; then
      GEN_PASSWD_SETS=$CONFIG_DIR/gen_passwd_sets
    else
      GEN_PASSWD_SETS=""
    fi
    if [ -f "$CONFIG_DIR/gen_group_sets" ]; then
      GEN_GROUP_SETS=$CONFIG_DIR/gen_group_sets
    else
      GEN_GROUP_SETS=""
    fi
    if [ -f "$CONFIG_DIR/gen_alias_sets" ]; then
      GEN_ALIAS_SETS=$CONFIG_DIR/gen_alias_sets
    else
      GEN_ALIAS_SETS=""
    fi
    if [ -f "$CONFIG_DIR/check_cron" ]; then
      CHECK_CRON=$CONFIG_DIR/check_cron
    else
      CHECK_CRON=""
    fi
    if [ -f "$CONFIG_DIR/gen_bootparam_sets" ]; then
      GEN_BOOTPARAM_SETS=$CONFIG_DIR/gen_bootparam_sets
    else
      GEN_BOOTPARAM_SETS=""
    fi
    if [ -f "$CONFIG_DIR/gen_group_sets" ]; then
      GEN_EXPORT_SETS=$CONFIG_DIR/gen_export_sets
    else
      GEN_EXPORT_SETS=""
    fi
    if [ -f "$CONFIG_DIR/gen_services" ]; then
      GEN_SERVICES_SETS=$CONFIG_DIR/gen_services
    else
      GEN_SERVICES_SETS=""
    fi
    if [ -f "$CONFIG_DIR/gen_mounts" ]; then
      GET_MOUNTS=$CONFIG_DIR/gen_mounts
    else
      GET_MOUNTS=""
    fi
    if [ -f "$CONFIG_DIR/signatures" ]; then
      SIGNATURE_FILE=$CONFIG_DIR/signatures
    else
      SIGNATURES=""
    fi
    if [ -f "$CONFIG_DIR/services" ]; then
      SERVICESFILE=$CONFIG_DIR/services
    else
      SERVICESFILE=''
    fi
    if [ -f "$CONFIG_DIR/inetd" ]; then
      INETDFILE=$CONFIG_DIR/inetd
    else
      INETDFILE=""
    fi
    if [ -f "$CONFIG_DIR/file_access_list" ]; then
      FILE_ACL=$CONFIG_DIR/file_access_list
    else
      FILE_ACL=""
    fi
    if [ -f "$CONFIG_DIR/suid_list" ]; then
      SUID_LIST=$CONFIG_DIR/suid_list
    else
      SUID_LIST=""
    fi
    if [ -f "$CONFIG_DIR/rel_file_exp_list" ]; then
      REL_FILE_EXCP=$CONFIG_DIR/rel_file_exp_list
    else
      REL_FILE_EXCP=""
    fi
    if [ -f "$CONFIG_DIR/gen_cron" ]; then
      GEN_CRON_FILES=$CONFIG_DIR/gen_cron
    else
      GEN_CRON_FILES=""
    fi
    if [ -f "$CONFIG_DIR/gendlclients" ]; then
      GETCLIENTDIRS=$CONFIG_DIR/gendlclients
    else
      GETCLIENTDIRS=""
    fi
    if [ -f "$CONFIG_DIR/gen_inetd" ]; then
      GEN_INETD_SETS=$CONFIG_DIR/gen_inetd
    else
      GEN_INETD_SETS=""
    fi
    if [ -f "$CONFIG_DIR/getuserhome" ]; then
      GETUSERHOME=$CONFIG_DIR/getuserhome
    else
      GETUSERHOME=''
    fi
    if [ -f "$CONFIG_DIR/getdisks" ]; then
      GETDISKS=$CONFIG_DIR/getdisks
    else
      GETDISKS=""
    fi
    if [ -f "$CONFIG_DIR/embedlist" ]; then
      EMBEDDEDLIST=$CONFIG_DIR/embedlist
    else
      EMBEDDEDLIST=""
    fi
    export GEN_GROUP_SETS GEN_ALIAS_SETS CHECK_CRON GEN_BOOTPARAM_SETS 
    export GEN_EXPORT_SETS GEN_SERVICES_SETS GET_MOUNTS SIGNATURE_FILE 
    export SERVICESFILE INETDFILE FILE_ACL SUID_LIST REL_FILE_EXCP 
    export GEN_CRON_FILES GETCLIENTDIRS GEN_INETD_SETS GETUSERHOME 
    export GETDISKS EMBEDDEDLIST GEN_PASSWD_SETS
    
    tiger-3.2.3/systems/IRIX/5/file_access_list0000644000175000017500000002462407502327223017135 0ustar  pacopaco#
    #     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.
    #
    # IRIX/4/file_access_list - 11/06/93
    #
    #-----------------------------------------------------------------------------
    #
    #                           owner group s g r w x   r w x   r w xLVL MessageIDs
    #------------------------------------------------------------------------------
    /                           root  .     . . 1 . 1   1 0 1   1 0 1 W 018 018 018
    /etc                        root  .     . . 1 . 1   1 0 1   1 0 1 W 019 019 019
    /bin                        root  .     . . 1 . 1   1 0 1   1 0 1 W 001 002 003
    /usr                        root  .     . . 1 . 1   1 0 1   1 0 1 W 001 002 003
    #
    /hw			    root  .     . . . . .   1 0 1   1 0 1 . 001 002 003
    /dev                        root  .     . . . . .   1 0 1   1 0 1 . 001 002 003
    /dev/tty		    root  .     0 0 1 1 0   1 1 0   1 1 0 . 001 002 003
    /dev/null		    root  .     0 0 1 1 0   1 1 0   1 1 0 . 001 002 003
    /dev/zero		    root  .     0 0 1 1 0   1 1 0   1 1 0 . 001 002 003
    /dev/mem		    root  kmem  0 0 1 1 0   1 0 0   0 0 0 . 001 002 003
    /dev/kmem		    root  kmem  0 0 1 1 0   1 0 0   0 0 0 . 001 002 003
    /dev/audio		    .     .     0 0 . . .   . . .   . . . . 001 002 003
    /dev/console		    .     .     0 0 1 1 0   0 . .   0 . . . 001 002 003
    #
    /unix                       root  .     0 0 1 . 1   1 0 0   1 0 0 . 001 002 003
    /.cshrc                     root  .     0 0 1 . .   . 0 .   . 0 . W 006 006 006
    /.login                     root  .     0 0 1 . .   . 0 .   . 0 . W 006 006 006
    /.profile                   root  .     0 0 1 . .   . 0 .   . 0 . W 006 006 006
    /.forward                   root  .     . . 1 . .   . 0 .   . 0 . W 006 006 006
    /.rhosts                    root  .     . . 1 . 0   0 0 0   0 0 0 W 006 006 006
    #
    /usr/lib/aliases            root  .     . . 1 . 0   1 0 0   1 0 0 F 007 007 007
    /usr/lib/aliases.dir        root  .     . . 1 . 0   1 0 0   1 0 0 F 007 007 007
    /usr/lib/aliases.pag        root  .     . . 1 . 0   1 0 0   1 0 0 F 007 007 007
    #
    (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/4/file_access_list - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    #                           owner group s g r w x   r w x   r w xLVL MessageIDs
    #------------------------------------------------------------------------------
    /                           root  .     . . 1 . 1   1 0 1   1 0 1 W 018 018 018
    /etc                        root  .     . . 1 . 1   1 0 1   1 0 1 W 019 019 019
    /bin                        root  .     . . 1 . 1   1 0 1   1 0 1 W 001 002 003
    /sbin                       root  .     . . 1 . 1   1 0 1   1 0 1 W 001 002 003
    /usr                        root  .     . . 1 . 1   1 0 1   1 0 1 W 001 002 003
    /usr/5include               root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/xpg2include            root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/xpg2lib                root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/xpg2bin                root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/hosts                  root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/sccs                   root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/share                  root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/export                 root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/lang                   root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/openwin		    root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/diag                   root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/demo                   root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/5lib                   root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/games                  root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/bin                    root  .     . . 1 . 1   1 0 1   1 0 1 A 001 002 003
    /usr/lib                    root  .     . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /usr/ucb                    root  .     . . 1 . 1   1 0 1   1 0 1 A 001 002 003
    /usr/*                      .     .     . . . . .   . 0 .   . 0 . . 001 002 003
    /var                        root  .     . . . . .   1 0 1   1 0 1 . 001 002 003
    /var/yp 		    root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /var/yp/*                   root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /var/yp/*/*                 root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /var/spool		    root  .     . . . . .   1 0 1   1 0 1 . 001 002 003
    /var/tmp		    root  .     . . 1 1 1   1 1 1   1 1 1 . 001 002 003
    /var/*			    root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /var/log/*                  root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /var/adm/messages*          root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /var/adm/pacct*             root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /tftpboot                   root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    #
    /dev                        root  .     . . . . .   1 0 1   1 0 1 . 001 002 003
    /dev/tty		    root  .     0 0 1 1 0   1 1 0   1 1 0 . 001 002 003
    /dev/null		    root  .     0 0 1 1 0   1 1 0   1 1 0 . 001 002 003
    /dev/zero		    root  .     0 0 1 1 0   1 1 0   1 1 0 . 001 002 003
    /dev/mem		    root  kmem  0 0 1 1 0   1 0 0   0 0 0 . 001 002 003
    /dev/kmem		    root  kmem  0 0 1 1 0   1 0 0   0 0 0 . 001 002 003
    /dev/mbio		    root  .     0 0 1 1 0   0 0 0   0 0 0 . 001 002 003
    /dev/mbmem		    root  .     0 0 1 1 0   0 0 0   0 0 0 . 001 002 003
    /dev/nit		    root  .     0 0 1 1 0   0 0 0   0 0 0 . 001 002 003
    /dev/audio		    .     .     0 0 . . .   . . .   . . . . 001 002 003
    /dev/audioctl		    .     .     0 0 . . .   . . .   . . . . 001 002 003
    /dev/console		    .     .     0 0 1 1 0   0 . .   0 . . . 001 002 003
    /dev/eeprom		    root  .     0 0 1 1 0   1 0 0   0 0 0 . 001 002 003
    /dev/openprom		    root  .     0 0 1 1 0   1 0 0   1 0 0 . 001 002 003
    /dev/sbus*                  root  .     0 0 . . 0   0 0 0   0 0 0 . 001 002 003
    /dev/vme*                   root  .     0 0 . . 0   0 0 0   0 0 0 . 001 002 003
    #
    /vmunix                     root  .     0 0 1 . 1   1 0 0   1 0 0 . 001 002 003
    /boot                       root  .     0 0 1 . .   . 0 .   . 0 . . 001 002 003
    /.cshrc                     root  .     0 0 1 . .   . 0 .   . 0 . W 006 006 006
    /.login                     root  .     0 0 1 . .   . 0 .   . 0 . W 006 006 006
    /.profile                   root  .     0 0 1 . .   . 0 .   . 0 . W 006 006 006
    /.forward                   root  .     . . 1 . .   . 0 .   . 0 . W 006 006 006
    /.rhosts                    root  .     . . 1 . 0   0 0 0   0 0 0 W 006 006 006
    #
    /usr/lib/aliases            root  .     . . 1 . 0   1 0 0   1 0 0 F 007 007 007
    /usr/lib/aliases.dir        root  .     . . 1 . 0   1 0 0   1 0 0 F 007 007 007
    /usr/lib/aliases.pag        root  .     . . 1 . 0   1 0 0   1 0 0 F 007 007 007
    #
    /etc/bootparams             root  .     . . 1 . 0   . 0 0   . 0 0 W 001 002 003
    /etc/exports                root  .     . . 1 . 0   0 0 0   0 0 0 W 008 008 008
    /etc/fstab                  root  .     . . 1 . 0   0 0 0   0 0 0 W 001 002 003
    /etc/inittab                root  .     . . 1 . 0   . 0 0   . 0 0 W 001 002 003
    /etc/group                  root  .     . . 1 . 0   1 0 0   1 0 0 F 009 009 009
    /etc/hosts                  root  .     . . 1 . 0   1 0 0   1 0 0 F 001 002 003
    /etc/hosts.allow            root  .     . . 1 . 0   . 0 0   . 0 0 W 010 010 010
    /etc/hosts.deny		    root  .     . . 1 . 0   . 0 0   . 0 0 W 010 010 010
    /etc/hosts.equiv            root  .     . . 1 . 0   0 0 0   0 0 0 W 011 011 011
    /etc/hosts.lpd              root  .     . . 1 . 0   0 0 0   0 0 0 W 011 011 011
    /etc/inetd.conf             root  .     . . 1 . 0   . 0 0   . 0 0 W 012 012 012
    /etc/motd                   root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/mtab                   root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/netgroup               root  .     . . 1 . 0   0 0 0   0 0 0 F 013 013 013
    /etc/passwd                 root  .     . . 1 . 0   1 0 0   1 0 0 A 014 014 014
    /etc/printcap               root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/rc?                    root  .     0 0 1 . 0   . 0 0   . 0 0 F 015 015 015
    /etc/rc?.d		    root  .     0 0 1 . 0   . 0 0   . 0 0 F 015 015 015
    /etc/rc?.d/*		    root  .     0 0 1 . 0   . 0 0   . 0 0 F 015 015 015
    /etc/init.d		    root  .     0 0 1 . 0   . 0 0   . 0 0 F 015 015 015
    /etc/init.d/*		    root  .     0 0 1 . 0   . 0 0   . 0 0 F 015 015 015
    /etc/resolv.conf            root  .     . . 1 . 0   1 0 0   1 0 0 W 016 016 016
    /etc/rpc                    root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /usr/lib/sendmail.cf        root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/services               root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/syslog.conf            root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/syslog.pid             root  .     . . 1 . 0   . 0 0   . 0 0 W 001 002 003
    /etc/utmp                   root  .     . . 1 . 0   1 0 0   1 0 0 W 017 017 017
    /etc/config/*		    root  .     0 0 1 . 0   . 0 0   . 0 0 W 001 002 003
    /etc/fstyp.d/*		    root  .     . . 1 . 1   . 0 .   . 0 . W 001 002 003
    /etc/transferDevice/*	    root  .     . . 1 . 1   . 0 .   . 0 . W 001 002 003
    /etc/*                      root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    tiger-3.2.3/systems/IRIX/5/gen_alias_sets0000644000175000017500000000225507756435010016623 0ustar  pacopaco#!/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 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.
    #
    # IRIX/4/gen_alias_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    $GREP -v '^#' /usr/lib/aliases |
    $SORT > $WORKDIR/etc_aliases.$$
    echo "/usr/lib/aliases" > $WORKDIR/etc_aliases.$$.src
    echo $WORKDIR/etc_aliases.$$
    
    [ -n "$YPCAT" ] && {
      $YPCAT -k aliases |
      $SED -e 's/ /:/' | 
      $SORT |
      $COMM -23 - $WORKDIR/etc_aliases.$$ > $WORKDIR/nis_aliases.$$
      echo "NIS" > $WORKDIR/nis_aliases.$$.src
      echo $WORKDIR/nis_aliases.$$
    }
    tiger-3.2.3/systems/IRIX/5/gen_bootparam_sets0000644000175000017500000000250507756435010017514 0ustar  pacopaco#!/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 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.
    #
    # IRIX/4/gen_bootparam_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    [ -r /etc/bootparams ] && {
      $SED -e 's/#.*$//' /etc/bootparams |
      $SED -e '/^[ \t]*$/d' |
      $AWK '
           BEGIN {LINE="";}
           /\\\\$/ {LINE=LINE " " substr($0, 1, length($0)-1);}
           !/\\\\$/ {print LINE $0; LINE="";}
      ' > $WORKDIR/etc_bootparams.$$
      echo "/etc/bootparams" > $WORKDIR/etc_bootparams.$$.src
      echo "$WORKDIR/etc_bootparams.$$"
    }
    
    [ -n "$YPCAT" ] && {
      $YPCAT bootparams > $WORKDIR/nis_bootparams.$$
      echo "NIS" > $WORKDIR/nis_bootparams.$$.src
      echo "$WORKDIR/nis_bootparams.$$"
    }
    tiger-3.2.3/systems/IRIX/5/gen_cron0000644000175000017500000000265207502327223015431 0ustar  pacopaco#!/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 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.
    #
    # IRIX/4/gen_cron - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    outfile=$1
    > $outfile
    
    (
      cd $CRONSPOOL
      $LS -l $LSGROUP *
    ) |
    while read x y owner a b c d e file
    do
      [ "$owner" != "root" ] && {
        echo "--WARN-- CRON file \`$file' is owned by $owner."
      }
      case $file in
        *[!a-zA-Z0-9]*)
          echo "--WARN-- 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
    	echo "--WARN-- Found cron file for unknown user $file."
          fi
          ;;
        esac
    done
      
    tiger-3.2.3/systems/IRIX/5/gen_export_sets0000644000175000017500000000175007502327223017045 0ustar  pacopaco#!/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 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.
    #
    # default/gen_export_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    [ -r /etc/exports ] && {
      $GREP -v '^#' /etc/exports > $WORKDIR/etc_exports.$$
      echo "/etc/exports" > $WORKDIR/etc_exports.$$.src
      echo $WORKDIR/etc_exports.$$
    }
    tiger-3.2.3/systems/IRIX/5/gen_group_sets0000644000175000017500000000217407756435010016666 0ustar  pacopaco#!/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 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.
    #
    # IRIX/4/gen_group_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    $GREP -v '^[-+]' /etc/group |
    $SORT > $WORKDIR/etc_group.$$
    echo "/etc/group" > $WORKDIR/etc_group.$$.src
    echo $WORKDIR/etc_group.$$
    
    [ -n "$YPCAT" ] && {
      $YPCAT group |
      $SORT |
      $COMM -23 - $WORKDIR/etc_group.$$ > $WORKDIR/nis_group.$$
      echo "NIS" > $WORKDIR/nis_group.$$.src
      echo $WORKDIR/nis_group.$$
    }
    
    tiger-3.2.3/systems/IRIX/5/gen_inetd0000644000175000017500000000172007502327223015566 0ustar  pacopaco#!/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 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.
    #
    # IRIX/4/gen_inetd - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    $GREP -v '^#' /usr/etc/inetd.conf |
    $SORT > $WORKDIR/etc_inetd.$$
    echo "/usr/etc/inetd.conf" > $WORKDIR/etc_inetd.$$.src
    echo $WORKDIR/etc_inetd.$$
    tiger-3.2.3/systems/IRIX/5/gen_mounts0000644000175000017500000000236307502327223016014 0ustar  pacopaco#!/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 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.
    #
    # IRIX/4/gen_mounts - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    
    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" = "4.2" ] && LOCAL=0
    
      return $LOCAL
    }
    
    /etc/mount |
    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" ] && echo "$mtpoint $fstype $fs"
    done
    
    tiger-3.2.3/systems/IRIX/5/gen_passwd_sets0000644000175000017500000000311507756435010017027 0ustar  pacopaco#!/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 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.
    #
    # 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
      case "$parm" in
        -p) ;;
        -l) local=1;;
        *)	outfile="$parm";;
      esac
    done
    
    $CAT /etc/passwd > $WORKDIR/etc_passwd.$$
    echo "/etc/passwd" > $WORKDIR/etc_passwd.$$.src
    echo $WORKDIR/etc_passwd.$$ >> $outfile
    
    [ -n "$YPCAT" ]  && {
      $YPCAT passwd > $WORKDIR/nis_passwd.$$
      echo "NIS" > $WORKDIR/nis_passwd.$$.src
      echo $WORKDIR/nis_passwd.$$ >> $outfile
    }
    tiger-3.2.3/systems/IRIX/5/gen_services0000644000175000017500000000263407756435010016320 0ustar  pacopaco#!/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 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.
    #
    # IRIX/4/gen_services - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    $GREP -v '^#' /etc/services > $WORKDIR/etc_services.$$
    echo "/etc/services" > $WORKDIR/etc_services.$$.src
    echo $WORKDIR/etc_services.$$
    
    [ -n "$YPCAT" ] && {
      $YPCAT services > $WORKDIR/nis_services.$$
      echo "NIS" > $WORKDIR/nis_services.$$.src
      echo $WORKDIR/nis_services.$$
    }
    
    [ "$SERVERCHECK" = "Y" ] && {
      $GETCLIENTDIRS |
      while read client dir
      do
        [ -f "$dir/etc/services" ] && {
          $GREP -v '^#' $dir/etc/services |
          $SORT > $WORKDIR/services.$$.$client
          echo "$client:/etc/services" > $WORKDIR/services.$$.$client.src
          echo $WORKDIR/services.$$.$client
        }
      done
    }
    tiger-3.2.3/systems/IRIX/5/gendlclients0000644000175000017500000000314710045247305016310 0ustar  pacopaco#!/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 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.
    #
    # IRIX/4/gendlclients - 06/14/93
    #
    # 05/02/2004 jfs  Try to avoid eval problems if handling variables with
    #                 special characters (such as space)
    #
    #-----------------------------------------------------------------------------
    #
    
    parse_bootparam()
    {
      $AWK '
           BEGIN {LINE="";}
           $0 ~ /\\$/ {printf("%s ", substr($0, 1, length($0)-1));}
           $0 !~ /\\$/ {printf("%s\n", $0);}
           END {printf("\n");}
       ' |
      $AWK '{
               for(i=2;i<=NF;i++)
                 if(substr($i, 1,5) == "root="){
    	       x=substr($i, 6, length($i));
                   split(x, ar, ":");
                   print $1, ar[1], ar[2];
       	     }
            }'
    }
    
    $GEN_BOOTPARAM_SETS | 
    while read bootparam_set
    do
      parse_bootparam < $bootparam_set
      
      $RM -f $bootparam_set $bootparam_set.src
    done |
    $SORT -u |
    while read client server filesys
    do
      eval "case \"$server\" in $HOSTNAMESLIST) echo \"$client $filesys\";; esac"
    done
    tiger-3.2.3/systems/IRIX/5/getuserhome0000644000175000017500000000027707502327223016167 0ustar  pacopaco#!/bin/sh
    
    #
    # cd to / in case we are down in a directory we don't have read
    # access to.  /bin/csh will barf if that is the case.
    #
    cd /
    
    user="$1"
    
    /bin/csh -c "echo ~$user" 2> /dev/null
    
    
    tiger-3.2.3/systems/IRIX/5/inetd0000644000175000017500000000510607502327223014737 0ustar  pacopacobootp	dgram	udp	wait	root	/usr/etc/bootp		bootp -f
    bootparam/1 dgram   rpc/udp wait    root    /usr/etc/rpc.bootparamd bootparam
    chargen	dgram	udp	wait	root	internal
    chargen	stream	tcp	nowait	root	internal
    daytime	dgram	udp	wait	root	internal
    daytime	stream	tcp	nowait	root	internal
    discard	dgram	udp	wait	root	internal
    discard	stream	tcp	nowait	root	internal
    echo	dgram	udp	wait	root	internal
    echo	stream	tcp	nowait	root	internal
    exec	stream	tcp	nowait	root	/usr/etc/rexecd		rexecd
    finger	stream	tcp	nowait	guest	/usr/etc/fingerd	fingerd
    ftp	stream	tcp	nowait	root	/usr/etc/ftpd		ftpd
    login	stream	tcp	nowait	root	/usr/etc/rlogind	rlogind
    mountd/1    dgram   rpc/udp wait    root    /usr/etc/rpc.mountd     mountd
    mountd/1    stream  rpc/tcp wait    root    /usr/etc/rpc.mountd     mountd
    ntalk	dgram	udp	wait	root	/usr/etc/talkd		talkd
    rexd/1     stream  rpc/tcp wait    root    /usr/etc/rpc.rexd       rexd
    rquotad/1   dgram   rpc/udp wait    root    /usr/etc/rpc.rquotad    rquotad
    rstatd/1-3  dgram   rpc/udp wait    root    /usr/etc/rpc.rstatd     rstatd
    rusersd/1   dgram   rpc/udp wait    root    /usr/etc/rpc.rusersd    rusersd
    sgi-dgl stream	tcp	nowait	root	/usr/etc/dgld	dgld -IM -tDGLTSOCKET
    sgi_fam/1   stream  rpc/tcp wait    root    /usr/etc/fam            famd  -t 180
    sgi_mountd/1 dgram  rpc/udp wait    root    /usr/etc/rpc.mountd     mountd
    sgi_mountd/1 stream rpc/tcp wait    root    /usr/etc/rpc.mountd     mountd
    sgi_pcsd/1  dgram   rpc/udp wait    root    /usr/etc/cvpcsd	    pcsd
    sgi_pod/1   stream  rpc/tcp wait    root    /usr/etc/podd           podd
    sgi_snoopd/1 stream rpc/tcp wait    root    /usr/etc/rpc.snoopd     snoopd
    sgi_toolkitbus/1 stream rpc/tcp wait root   /usr/etc/rpc.toolkitbus toolkitbusd
    sgi_videod/1 stream rpc/tcp wait    root    ?/usr/etc/videod         videod
    sgi_xfsmd/1 stream  rpc/tcp wait    root    ?/usr/etc/xfsmd     xfsmd
    shell	stream	tcp	nowait	root	/usr/etc/rshd		rshd
    sprayd/1    dgram   rpc/udp wait    root    /usr/etc/rpc.sprayd     sprayd
    tcpmux	stream	tcp	nowait	root	internal
    tcpmux/sgi_printer stream tcp nowait root   ?/usr/lib/print/printerd printerd
    tcpmux/sgi_scanner stream tcp nowait root   ?/usr/lib/scan/net/scannerd scannerd
    telnet	stream	tcp	nowait	root	/usr/etc/telnetd	telnetd
    tftp	dgram	udp	wait	guest	/usr/etc/tftpd	tftpd -s /usr/local/boot
    time	dgram	udp	wait	root	internal
    time	stream	tcp	nowait	root	internal
    ttdbserverd/1   stream  rpc/tcp wait root ?/usr/etc/rpc.ttdbserverd rpc.ttdbserverd
    walld/1     dgram   rpc/udp wait    root    /usr/etc/rpc.rwalld     rwalld
    ypupdated/1 stream  rpc/tcp wait    root    /usr/etc/rpc.ypupdated  ypupdated
    
    tiger-3.2.3/systems/IRIX/5/services0000644000175000017500000000244007502327223015455 0ustar  pacopacoalbd 371/udp
    auth 113/tcp
    biff 512/udp
    bootp 67/udp
    bootpc 68/udp
    chargen 19/tcp
    chargen 19/udp
    conference 531/tcp
    courier 530/tcp
    csnet-ns 105/tcp
    daytime 13/tcp
    daytime 13/udp
    discard 9/tcp
    discard 9/udp
    domain 53/tcp
    domain 53/udp
    echo 7/tcp
    echo 7/udp
    eklogin 2105/tcp
    erpc 121/udp
    exec 512/tcp
    finger 79/tcp
    ftp 21/tcp
    ftp-data 20/tcp
    hostnames 101/tcp
    http 80/tcp
    imap2 143/tcp
    ingreslock 1524/tcp
    iso-tsap 102/tcp
    kerberos 750/tcp
    kerberos 750/udp
    klogin 543/tcp
    kpasswd 761/tcp
    krbupdate 760/tcp
    kshell 544/tcp
    link 87/tcp
    loc-srv 135/tcp
    loc-srv 135/udp
    login 513/tcp
    mtp 57/tcp
    name 42/tcp
    netnews 532/tcp
    netstat 15/tcp
    netwall 533/udp
    nfs 2049/tcp
    nfs 2049/udp
    nntp 119/tcp
    ntalk 518/udp
    ntp 123/udp
    pop-2 109/tcp
    pop-3 110/tcp
    printer 515/tcp
    qotd 17/tcp
    realaudio 7070/tcp
    remotefs 556/tcp
    rje 77/tcp
    rlp 39/udp
    route 520/udp
    sftp 115/tcp
    sgi-arrayd 5434/tcp
    sgi-dgl 5232/tcp
    sgi_iphone 32769/tcp
    shell 514/tcp
    smtp 25/tcp
    snmp 161/udp
    snmp-trap 162/udp
    sunrpc 111/tcp
    sunrpc 111/udp
    supdup 95/tcp
    syslog 514/udp
    systat 11/tcp
    ta-rauth 601/tcp
    talk 517/udp
    tcpmux 1/tcp
    telnet 23/tcp
    telnets 24/tcp
    tempo 526/tcp
    tftp 69/udp
    time 37/tcp
    time 37/udp
    timed 525/udp
    uucp 540/tcp
    uucp-path 117/tcp
    who 513/udp
    whois 43/tcp
    wn-http 8778/tcp
    x-server 6000/tcp
    x400 103/tcp
    x400-snd 104/tcp
    xdmcp 177/udp
    tiger-3.2.3/systems/IRIX/5/suid_list0000644000175000017500000000214407502327223015632 0ustar  pacopaco/usr/sbin/passmgmt
    /usr/etc/appletalk/psf
    /usr/pcp/bin/pmpost
    /usr/sbin/mkpts
    /usr/etc/appletalk/xkfs
    /usr/etc/appletalk/xktalk
    /usr/bsd/rsh
    /usr/bsd/rlogin
    /usr/etc/traceroute
    /usr/pcp/bin/pmbrand
    /usr/gfx/setmon
    /usr/bsd/rcp
    /usr/etc/ping
    /usr/etc/route
    /usr/bin/X11/xlock
    /usr/bin/X11/xterm
    /usr/bin/X11/xconsole
    /usr/lib/print/tagprinter
    /usr/lib/print/chkicons
    /usr/bin/lp
    /usr/bin/mail
    /usr/bin/passwd
    /usr/bin/X11/cdheadphone
    /usr/lib/regview
    /usr/etc/appletalk/xkas
    /usr/sbin/cview
    /usr/bin/newsess
    /usr/bin/newproj
    /usr/sbin/gr_osview
    /usr/bin/newgrp
    /usr/lib/print/netprint
    /usr/bin/cancel
    /usr/sbin/cpr
    /usr/sbin/ssplay
    /usr/etc/mediad
    /usr/sbin/printers
    /usr/bin/crontab
    /usr/bin/lpstat
    /usr/etc/timedc
    /usr/sbin/startmidi
    /usr/sbin/soundscheme
    /usr/sbin/cdplayer
    /usr/lib/WorkShop/cvconnect
    /usr/sbin/monpanel
    /usr/sbin/Confidence/cdrom
    /usr/lib/sendmail
    /usr/sbin/dmrecord
    /usr/bin/at
    /usr/sbin/gmemusage
    /usr/sbin/xwsh
    /usr/sbin/iwsh
    /usr/lib/iaf/scheme
    /usr/sbin/dmplay
    /usr/sbin/datman
    /usr/bsd/ordist
    /usr/lib/InPerson/inpview
    /usr/sbin/soundtrack
    /usr/sbin/ksyncset
    /usr/sbin/ksyncstat
    /usr/lib/addnetpr
    
    tiger-3.2.3/systems/IRIX/getdisks0000644000175000017500000000232707502327223015307 0ustar  pacopaco#!/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 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.
    #
    # getdisks - 06/24/93
    #
    #-----------------------------------------------------------------------------
    #
    
    /etc/mount |
    $AWK '$5 == "xfs" || $5 == "xfs" {print}' |
    $SORT |
    $AWK '
      BEGIN {lastdisk=""; fslist="";}
      {
        disk=substr($1, 1, length($1)-1);
        if(disk == lastdisk){
           fslist=fslist " " $3;
        }
        else {
    	if(lastdisk != ""){
               printf("%s\n", fslist);
            }
            lastdisk=disk;
            fslist = $3;
        }
      }
      END { if(lastdisk != ""){
              printf("%s\n", fslist);
            } 
      }'
    
    tiger-3.2.3/systems/IRIX/getuserhome0000755000175000017500000000027707502327223016026 0ustar  pacopaco#!/bin/sh
    
    #
    # cd to / in case we are down in a directory we don't have read
    # access to.  /bin/csh will barf if that is the case.
    #
    cd /
    
    user="$1"
    
    /bin/csh -c "echo ~$user" 2> /dev/null
    
    
    tiger-3.2.3/systems/IRIX/6/0000755000175000017500000000000011306441031013677 5ustar  pacopacotiger-3.2.3/systems/IRIX/6/6.2/0000755000175000017500000000000011306441031014204 5ustar  pacopacotiger-3.2.3/systems/IRIX/6/6.2/services0000644000175000017500000000245107502327223015765 0ustar  pacopacoalbd		371/udp
    auth		113/tcp
    biff		512/udp
    bootp		67/udp
    bootpc		68/udp
    chargen		19/tcp
    chargen		19/udp
    conference	531/tcp
    courier		530/tcp
    csnet-ns	105/tcp
    daytime		13/tcp
    daytime		13/udp
    discard		9/tcp
    discard		9/udp
    domain		53/tcp
    domain		53/udp
    echo		7/tcp
    echo		7/udp
    eklogin		2105/tcp
    erpc		121/udp
    exec		512/tcp
    finger		79/tcp
    ftp		21/tcp
    ftp-data	20/tcp
    hostnames	101/tcp
    http		80/tcp
    imap2		143/tcp
    ingreslock	1524/tcp
    iso-tsap	102/tcp
    kerberos	750/tcp
    kerberos	750/udp
    klogin		543/tcp
    kpasswd		761/tcp
    krbupdate	760/tcp
    kshell		544/tcp
    link		87/tcp
    loc-srv		135/tcp
    loc-srv		135/udp
    login		513/tcp
    mtp		57/tcp
    name		42/tcp
    netnews		532/tcp
    netstat		15/tcp
    netwall		533/udp
    nntp		119/tcp
    ntalk		518/udp
    ntp		123/udp
    pop-2		109/tcp
    pop-3		110/tcp
    printer		515/tcp
    qotd		17/tcp
    remotefs	556/tcp
    rje		77/tcp
    rlp		39/udp
    route		520/udp
    sftp		115/tcp
    sgi-arrayd	5434/tcp
    sgi-dgl		5232/tcp
    sgi_iphone	32769/tcp
    shell		514/tcp
    smtp		25/tcp
    snmp		161/udp
    snmp-trap	162/udp
    sunrpc		111/tcp
    sunrpc		111/udp
    supdup		95/tcp
    syslog		514/udp
    systat		11/tcp
    ta-rauth	601/tcp
    talk		517/udp
    tcpmux		1/tcp
    telnet		23/tcp
    tempo		526/tcp
    tftp		69/udp
    time		37/tcp
    time		37/udp
    timed		525/udp
    uucp		540/tcp
    uucp-path	117/tcp
    who		513/udp
    whois		43/tcp
    wn-http		8778/tcp
    x-server	6000/tcp
    x400		103/tcp
    x400-snd	104/tcp
    xdmcp		177/udp
    tiger-3.2.3/systems/IRIX/6/6.2/inetd0000644000175000017500000000500507502327223015243 0ustar  pacopacoftp	stream	tcp	nowait	root	/usr/etc/ftpd	ftpd -l
    telnet	stream	tcp	nowait	root	/usr/etc/telnetd	telnetd
    shell	stream	tcp	nowait	root	/usr/etc/rshd		rshd
    login	stream	tcp	nowait	root	/usr/etc/rlogind	rlogind
    exec	stream	tcp	nowait	root	/usr/etc/rexecd		rexecd
    finger	stream	tcp	nowait	guest	/usr/etc/fingerd	fingerd
    http	stream	tcp	nowait	nobody	?/var/www/server/httpd httpd
    wn-http	stream	tcp	nowait	nobody	?/var/www/server/wn-httpd -f /var/www/conf/httpd.conf
    bootp	dgram	udp	wait	root	/usr/etc/bootp		bootp
    tftp	dgram	udp	wait	guest	/usr/etc/tftpd	tftpd -s /usr/local/boot /usr/etc/boot
    ntalk	dgram	udp	wait	root	/usr/etc/talkd		talkd
    tcpmux	stream	tcp	nowait	root	internal
    echo	stream	tcp	nowait	root	internal
    discard	stream	tcp	nowait	root	internal
    chargen	stream	tcp	nowait	root	internal
    daytime	stream	tcp	nowait	root	internal
    time	stream	tcp	nowait	root	internal
    echo	dgram	udp	wait	root	internal
    discard	dgram	udp	wait	root	internal
    chargen	dgram	udp	wait	root	internal
    daytime	dgram	udp	wait	root	internal
    time	dgram	udp	wait	root	internal
    sgi-dgl stream	tcp	nowait	root/rcv	/usr/etc/dgld	dgld -IM -tDGLTSOCKET
    mountd/1    stream  rpc/tcp wait/lc    root    /usr/etc/rpc.mountd     mountd
    mountd/1    dgram   rpc/udp wait/lc    root    /usr/etc/rpc.mountd     mountd
    sgi_mountd/1 stream rpc/tcp wait/lc    root    /usr/etc/rpc.mountd     mountd
    sgi_mountd/1 dgram  rpc/udp wait/lc    root    /usr/etc/rpc.mountd     mountd
    rstatd/1-3  dgram   rpc/udp wait    root    /usr/etc/rpc.rstatd     rstatd
    walld/1     dgram   rpc/udp wait    root    /usr/etc/rpc.rwalld     rwalld
    rusersd/1   dgram   rpc/udp wait    root    /usr/etc/rpc.rusersd    rusersd
    rquotad/1   dgram   rpc/udp wait    root    /usr/etc/rpc.rquotad    rquotad
    sprayd/1    dgram   rpc/udp wait    root    /usr/etc/rpc.sprayd     sprayd
    bootparam/1 dgram   rpc/udp wait    root    /usr/etc/rpc.bootparamd bootparam
    sgi_videod/1 stream rpc/tcp wait    root    ?/usr/etc/videod         videod
    sgi_fam/1   stream  rpc/tcp wait    root    ?/usr/etc/fam            fam
    sgi_snoopd/1 stream rpc/tcp wait    root    ?/usr/etc/rpc.snoopd     snoopd
    sgi_pcsd/1  dgram   rpc/udp wait    root    ?/usr/etc/cvpcsd	    pcsd
    sgi_pod/1   stream  rpc/tcp wait    root    ?/usr/etc/podd           podd
    sgi_xfsmd/1 stream  rpc/tcp wait    root    ?/usr/etc/xfsmd	xfsmd
    ttdbserverd/1   stream  rpc/tcp wait root ?/usr/etc/rpc.ttdbserverd rpc.ttdbserverd
    tcpmux/sgi_scanner stream tcp nowait root   ?/usr/lib/scan/net/scannerd scannerd
    tcpmux/sgi_printer stream tcp nowait root   ?/usr/lib/print/printerd printerd
    tiger-3.2.3/systems/IRIX/6/6.3/0000755000175000017500000000000011306441031014205 5ustar  pacopacotiger-3.2.3/systems/IRIX/6/6.3/services0000644000175000017500000000247407502327223015773 0ustar  pacopacoalbd		371/udp
    auth		113/tcp
    biff		512/udp
    bootp		67/udp
    bootpc		68/udp
    chargen		19/tcp
    chargen		19/udp
    conference	531/tcp
    courier		530/tcp
    csnet-ns	105/tcp
    daytime		13/tcp
    daytime		13/udp
    discard		9/tcp
    discard		9/udp
    domain		53/tcp
    domain		53/udp
    echo		7/tcp
    echo		7/udp
    eklogin		2105/tcp
    erpc		121/udp
    exec		512/tcp
    finger		79/tcp
    ftp		21/tcp
    ftp-data	20/tcp
    hostnames	101/tcp
    http		80/tcp
    imap2		143/tcp
    ingreslock	1524/tcp
    iso-tsap	102/tcp
    kerberos	750/tcp
    kerberos	750/udp
    klogin		543/tcp
    kpasswd		761/tcp
    krbupdate	760/tcp
    kshell		544/tcp
    link		87/tcp
    loc-srv		135/tcp
    loc-srv		135/udp
    login		513/tcp
    mtp		57/tcp
    name		42/tcp
    netnews		532/tcp
    netstat		15/tcp
    netwall		533/udp
    nntp		119/tcp
    ntalk		518/udp
    ntp		123/udp
    pop-2		109/tcp
    pop-3		110/tcp
    printer		515/tcp
    qotd		17/tcp
    realaudio	7070/tcp
    remotefs	556/tcp
    rje		77/tcp
    rlp		39/udp
    route		520/udp
    sftp		115/tcp
    sgi-arrayd	5434/tcp
    sgi-dgl		5232/tcp
    sgi_iphone	32769/tcp
    shell		514/tcp
    smtp		25/tcp
    snmp		161/udp
    snmp-trap	162/udp
    sunrpc		111/tcp
    sunrpc		111/udp
    supdup		95/tcp
    syslog		514/udp
    systat		11/tcp
    ta-rauth	601/tcp
    talk		517/udp
    tcpmux		1/tcp
    telnet		23/tcp
    tempo		526/tcp
    tftp		69/udp
    time		37/tcp
    time		37/udp
    timed		525/udp
    uucp		540/tcp
    uucp-path	117/tcp
    who		513/udp
    whois		43/tcp
    wn-http		8778/tcp
    x-server	6000/tcp
    x400		103/tcp
    x400-snd	104/tcp
    xdmcp		177/udp
    tiger-3.2.3/systems/IRIX/6/6.3/inetd0000644000175000017500000000506307502327223015250 0ustar  pacopacoftp	stream	tcp	nowait	root	/usr/etc/ftpd	ftpd -l
    telnet	stream	tcp	nowait	root	/usr/etc/telnetd	telnetd
    shell	stream	tcp	nowait	root	/usr/etc/rshd		rshd -L
    login	stream	tcp	nowait	root	/usr/etc/rlogind	rlogind
    exec	stream	tcp	nowait	root	/usr/etc/rexecd		rexecd
    finger	stream	tcp	nowait	guest	/usr/etc/fingerd	fingerd
    http	stream	tcp	nowait	nobody	?/var/www/server/httpd httpd
    wn-http	stream	tcp	nowait	nobody	?/var/www/server/wn-httpd -f /var/www/conf/httpd.conf
    bootp	dgram	udp	wait	root	/usr/etc/dhcp_bootp dhcp_bootp -o /etc/config/dhcp_bootp.options
    tftp	dgram	udp	wait	guest	/usr/etc/tftpd	tftpd -s /usr/local/boot /usr/etc/boot
    ntalk	dgram	udp	wait	root	/usr/etc/talkd		talkd
    tcpmux	stream	tcp	nowait	root	internal
    echo	stream	tcp	nowait	root	internal
    discard	stream	tcp	nowait	root	internal
    chargen	stream	tcp	nowait	root	internal
    daytime	stream	tcp	nowait	root	internal
    time	stream	tcp	nowait	root	internal
    echo	dgram	udp	wait	root	internal
    discard	dgram	udp	wait	root	internal
    chargen	dgram	udp	wait	root	internal
    daytime	dgram	udp	wait	root	internal
    time	dgram	udp	wait	root	internal
    sgi-dgl stream	tcp	nowait	root/rcv	/usr/etc/dgld	dgld -IM -tDGLTSOCKET
    mountd/1    stream  rpc/tcp wait/lc    root    /usr/etc/rpc.mountd     mountd
    mountd/1    dgram   rpc/udp wait/lc    root    /usr/etc/rpc.mountd     mountd
    sgi_mountd/1 stream rpc/tcp wait/lc    root    /usr/etc/rpc.mountd     mountd
    sgi_mountd/1 dgram  rpc/udp wait/lc    root    /usr/etc/rpc.mountd     mountd
    rstatd/1-3  dgram   rpc/udp wait    root    /usr/etc/rpc.rstatd     rstatd
    walld/1     dgram   rpc/udp wait    root    /usr/etc/rpc.rwalld     rwalld
    rusersd/1   dgram   rpc/udp wait    root    /usr/etc/rpc.rusersd    rusersd
    rquotad/1   dgram   rpc/udp wait    root    /usr/etc/rpc.rquotad    rquotad
    sprayd/1    dgram   rpc/udp wait    root    /usr/etc/rpc.sprayd     sprayd
    bootparam/1 dgram   rpc/udp wait    root    /usr/etc/rpc.bootparamd bootparam
    sgi_videod/1 stream rpc/tcp wait    root    ?/usr/etc/videod         videod
    sgi_fam/1   stream  rpc/tcp wait    root    ?/usr/etc/fam            fam
    sgi_snoopd/1 stream rpc/tcp wait    root    ?/usr/etc/rpc.snoopd     snoopd
    sgi_pcsd/1  dgram   rpc/udp wait    root    ?/usr/etc/cvpcsd	    pcsd
    sgi_pod/1   stream  rpc/tcp wait    root    ?/usr/etc/podd           podd
    sgi_xfsmd/1 stream  rpc/tcp wait    root    ?/usr/etc/xfsmd	xfsmd
    ttdbserverd/1   stream  rpc/tcp wait root ?/usr/etc/rpc.ttdbserverd rpc.ttdbserverd
    tcpmux/sgi_scanner stream tcp nowait root   ?/usr/lib/scan/net/scannerd scannerd
    tcpmux/sgi_printer stream tcp nowait root   ?/usr/lib/print/printerd printerd
    tiger-3.2.3/systems/IRIX/6/check_cron0000644000175000017500000000157507722700674015752 0ustar  pacopaco#!/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 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.
    #
    # IRIX/6/check_cron - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    if [ -f "$CRONSPOOL/$1" ]; then
      echo "YES"
    else
      echo "NO"
    fi
    tiger-3.2.3/systems/IRIX/6/config0000644000175000017500000002114007732610214015076 0ustar  pacopaco# -*- 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.
    #
    # default/config - 06/14/93
    # ARC config     - 04/27/99
    # ARC config     - 05/10/99  Fixed IRIX 6.5 bug
    # jfs - 09/19/2003 - Added UUID and USERNAME definition
    #
    # ----------------------------------------------------------------------
    #
    UUID=`id -u`
    USERNAME=`whoami`
    export UUID USERNAME
    
    findcmd()
    {
      CMD=$1
    
      SRCH=/bin:/usr/bin:/etc:/usr/etc:/usr/ucb:/usr/sbin:/usr/bsd:/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 ] ) 2> $WORKDIR/te.$$
    [ -s $WORKDIR/te.$$ ] && TESTEXEC=-f
    export TESTEXEC
    
    RM=`findcmd rm`
    [ -n "$RM" ] && $RM $WORKDIR/te.$$
    AWK=`findcmd awk`
    CAT=`findcmd cat`
    LS=`findcmd ls`
    # -g to show group ownership
    # SysV systems don't need this... try to figure out whether we
    # need '-g' or not.
    LSGROUP="-lg"
    F1=`$LS $LSGROUP -d /etc | $AWK '{print NF}'`
    F2=`$LS -d /etc | $AWK '{print NF}'`
    [ $F1 -lt $F2 ] && LSGROUP="-l"
    # -L to show files
    LSLINK="-L"
    $LS $LSLINK 2>/dev/null >/dev/null || LSLINK=
    GREP=`findcmd grep`
    EGREP=`findcmd egrep`
    SED=`findcmd sed`
    SORT=`findcmd sort`
    COMM=`findcmd comm`
    TAIL=`findcmd tail`
    MV=`findcmd mv`
    TR=`findcmd tr`
    JOIN=`findcmd join`
    GROUPSS=`findcmd groups`
    FILECMD=`findcmd file`
    UNIQ=`findcmd uniq`
    BASENAME=`findcmd basename`
    CHMOD=`findcmd chmod`
    CHOWN=`findcmd chown`
    LN=`findcmd ln`
    PASTE=`findcmd paste`
    DIFF=`findcmd diff`
    TCPD=`findcmd tcpd`
    MAILER=`findcmd mail`
    [ ! -n "$MAILER" ] && MAILER=`findcmd mailx`
    [ ! -n "$MAILER" ] && MAILER=`findcmd Mail`
    [ ! -n "$MAILER" ] && MAILER=`findcmd sendmail`
    
    SGREP="$EGREP -s"
    X=`$EGREP -s : /etc/passwd 2>&1 | $TAIL -1`
    [ "$X" != "" ] && {
      SGREP="$GREP -s"
      X=`$GREP -s : /etc/passwd 2>&1 | $TAIL -1`
      [ "$X" != "" ] && {
        SGREP="$BASEDIR/util/sgrep"
      }
    }
    #
    export CAT LS LSGROUP LSLINK RM AWK GREP EGREP SGREP SED
    export SORT COMM TAIL MV TR JOIN GROUPSS FILECMD UNIQ BASENAME
    export CHMOD CHOWN LN PASTE TCPD
    #
    UNAME=`findcmd uname`
    HOSTNAME=`findcmd hostname`
    EXPR=`findcmd expr`
    STRINGS=`findcmd strings`
    FIND=`findcmd find`
    GETHOSTNAME=`findcmd hostname`
    [ ! -n "$GETHOSTNAME" ] && {
      GETHOSTNAME=`findcmd uname`
      [ -n "$GETHOSTNAME" ] && GETHOSTNAME="$GETHOSTNAME -n"
    }
    #
    # Try to intuit whether -xdev option is recognized
    #
    FINDXDEV=-xdev
    $FIND /etc/passwd -xdev -name /etc/passwd 2>/dev/null > /dev/null || FINDXDEV=
    #
    FMT=`findcmd fmt || echo $CAT`
    #
    # Command to get list of mounted filesystems
    #
    GETFS=`findcmd mount`
    CC=`findcmd cc || findcmd gcc || findcmd acc || findcmd xlc`
    PS=`findcmd ps`
    DATE=`findcmd date`
    #
    # To get date (MMDDYY or some form suitable for use in a filename)
    # If nothing useful, then just echo ''
    #DATECMD="echo ''"
    DATECMD="$DATE +%y%m%d"
    #
    # To get HH:MM
    # If no +% stuff, then use
    #TIMECMD="$DATE | $AWK '{print substr($4,1,5);}'"
    TIMECMD="$DATE +%H:%M"
    #
    # Try to figure out whether diff -D needs a space or not...
    # (or whether -D is supported at all)
    #
    DIFFD=
    $DIFF -DABCDEFGH /etc/passwd /etc/group > /dev/null 2>&1 || {
      DIFFD=' '
      $DIFF -D ABCDEFGH /etc/passwd /etc/group > /dev/null 2>&1 || {
        DIFF=
      }
    }
    export DIFFD
    #
    # Jump through hoops to figure out how to test for a symbolic link
    #
    
    file=X.$$
    $LN -s . $file
    temp=$WORKDIR/F.$$
    > $temp
    ( [ -h X.$file ] ) 2> $temp
    if [ ! -s $temp ]; then
      TESTLINK=-h
    else
      > $temp
      ( [ -l X.$file ] ) 2> $temp
      if [ ! -s $temp ]; then
        TESTLINK=-l
      else
        > $temp
        ( [ -L X.$file ] ) 2> $temp
        if [ ! -s $temp ]; then
          TESTLINK=-L
        else
          TESTLINK=
        fi
      fi
    fi
    $RM -f $temp $file
    unset temp
    unset file
    export TESTLINK
    #
    #
    export UNAME HOSTNAME EXPR STRINGS FIND FINDXDEV
    export FMT GETFS CC PS DATE DATECMD TIMECMD
    WAIT=wait
    
    SENDMAILS=""
    for dir in /usr/lib /usr/sbin /etc /usr/etc
    do
      for prog in sendmail sendmail.mx smail
      do
        [ ! $TESTLINK "$dir/$prog" ] && {
          SENDMAILS="$SENDMAILS $dir/$prog"
        }
      done
    done
    export SENDMAILS
    
    SENDMAILCF=
    if [ -f /usr/lib/sendmail.cf ]; then
      SENDMAILCF=/usr/lib/sendmail.cf
    elif [ -f /etc/sendmail.cf ]; then
      SENDMAILCF=/etc/sendmail.cf
    elif [ -f /etc/mail/sendmail.cf ]; then
      SENDMAILCF=/etc/mail/sendmail.cf
    elif [ -f /etc/sendmail/sendmail.cf ]; then
      SENDMAILCF=/etc/sendmail/sendmail.cf
    elif [ -f /usr/lib/mail/sendmail.cf ]; then
      SENDMAILCF=/usr/lib/mail/sendmail.cf
    elif [ -f /usr/lib/sendmail/sendmail.cf ]; then
      SENDMAILCF=/usr/lib/sendmail/sendmail.cf
    fi
    export SENDMAILCF
    #
    YPCAT=`findcmd ypcat`
    #
    YPSERVER="NO"
    (($PS -ef || $PS -aux ) 2>/dev/null |
    $GREP ypserv | $GREP -v -s $GREP) && YPSERVER="YES"
    
    export WAIT YPCAT YPSERVER
    #
    if [ -d /usr/mail ]; then
      MAILSPOOL=/usr/mail
    elif [ -d /var/mail ]; then
      MAILSPOOL=/var/mail
    elif [ -d /usr/spool/mail ]; then
      MAILSPOOL=/usr/spool/mail
    elif [ -d /var/spool/mail ]; then
      MAILSPOOL=/var/spool/mail
    else
      MAILSPOOL=
    fi
    #
    if [ -d /var/spool/cron/crontabs ]; then
      CRONSPOOL=/var/spool/cron/crontabs
    elif [ -d /usr/spool/cron/crontabs ]; then
      CRONSPOOL=/usr/spool/cron/crontabs
    elif [ -d /etc/cron/crontabs ]; then
      CRONSPOOL=/etc/cron/crontabs
    elif [ -d /usr/lib/cron/crontabs ]; then
      CRONSPOOL=/usr/lib/cron/crontabs
    else
      CRONSPOOL=
    fi
    #
    ETCSHELLS=/etc/shells
    #
    export MAILSPOOL CRONSPOOL ETCSHELLS
    #
    LOCFS="4.2|4.3|ufs|jfs|4.4"
    export LOCFS
    #
    CDIR="$BASEDIR/systems"
    #  Stuff below would not work on IRIX 6.5 
    #eval `
    #  while read var file 
    #  do
    #    if [ -f "$CONFIG_DIR/$file" ]; then
    #      loc="$CONFIG_DIR"
    #    fi
    #    if [ "$loc" != "" ]; then
    #      echo $var="$loc/$file;"
    #   else
    #      echo "echo $var=;"
    #    fi
    #    echo "export $var;"
    #  done << EOL
    if [ -f "$CONFIG_DIR/gen_passwd_sets" ]; then
      GEN_PASSWD_SETS=$CONFIG_DIR/gen_passwd_sets
    else
      GEN_PASSWD_SETS=""
    fi
    if [ -f "$CONFIG_DIR/gen_group_sets" ]; then
      GEN_GROUP_SETS=$CONFIG_DIR/gen_group_sets
    else
      GEN_GROUP_SETS=""
    fi
    if [ -f "$CONFIG_DIR/gen_alias_sets" ]; then
      GEN_ALIAS_SETS=$CONFIG_DIR/gen_alias_sets
    else
      GEN_ALIAS_SETS=""
    fi
    if [ -f "$CONFIG_DIR/check_cron" ]; then
      CHECK_CRON=$CONFIG_DIR/check_cron
    else
      CHECK_CRON=""
    fi
    if [ -f "$CONFIG_DIR/gen_bootparam_sets" ]; then
      GEN_BOOTPARAM_SETS=$CONFIG_DIR/gen_bootparam_sets
    else
      GEN_BOOTPARAM_SETS=""
    fi
    if [ -f "$CONFIG_DIR/gen_group_sets" ]; then
      GEN_EXPORT_SETS=$CONFIG_DIR/gen_export_sets
    else
      GEN_EXPORT_SETS=""
    fi
    if [ -f "$CONFIG_DIR/gen_services" ]; then
      GEN_SERVICES_SETS=$CONFIG_DIR/gen_services
    else
      GEN_SERVICES_SETS=""
    fi
    if [ -f "$CONFIG_DIR/gen_mounts" ]; then
      GET_MOUNTS=$CONFIG_DIR/gen_mounts
    else
      GET_MOUNTS=""
    fi
    if [ -f "$CONFIG_DIR/signatures" ]; then
      SIGNATURE_FILE=$CONFIG_DIR/signatures
    else
      SIGNATURES=""
    fi
    if [ -f "$CONFIG_DIR/services" ]; then
      SERVICESFILE=$CONFIG_DIR/services
    else
      SERVICESFILE=''
    fi
    if [ -f "$CONFIG_DIR/inetd" ]; then
      INETDFILE=$CONFIG_DIR/inetd
    else
      INETDFILE=""
    fi
    if [ -f "$CONFIG_DIR/file_access_list" ]; then
      FILE_ACL=$CONFIG_DIR/file_access_list
    else
      FILE_ACL=""
    fi
    if [ -f "$CONFIG_DIR/suid_list" ]; then
      SUID_LIST=$CONFIG_DIR/suid_list
    else
      SUID_LIST=""
    fi
    if [ -f "$CONFIG_DIR/rel_file_exp_list" ]; then
      REL_FILE_EXCP=$CONFIG_DIR/rel_file_exp_list
    else
      REL_FILE_EXCP=""
    fi
    if [ -f "$CONFIG_DIR/gen_cron" ]; then
      GEN_CRON_FILES=$CONFIG_DIR/gen_cron
    else
      GEN_CRON_FILES=""
    fi
    if [ -f "$CONFIG_DIR/gendlclients" ]; then
      GETCLIENTDIRS=$CONFIG_DIR/gendlclients
    else
      GETCLIENTDIRS=""
    fi
    if [ -f "$CONFIG_DIR/gen_inetd" ]; then
      GEN_INETD_SETS=$CONFIG_DIR/gen_inetd
    else
      GEN_INETD_SETS=""
    fi
    if [ -f "$CONFIG_DIR/getuserhome" ]; then
      GETUSERHOME=$CONFIG_DIR/getuserhome
    else
      GETUSERHOME=''
    fi
    if [ -f "$CONFIG_DIR/getdisks" ]; then
      GETDISKS=$CONFIG_DIR/getdisks
    else
      GETDISKS=""
    fi
    if [ -f "$CONFIG_DIR/embedlist" ]; then
      EMBEDDEDLIST=$CONFIG_DIR/embedlist
    else
      EMBEDDEDLIST=""
    fi
    export GEN_GROUP_SETS GEN_ALIAS_SETS CHECK_CRON GEN_BOOTPARAM_SETS 
    export GEN_EXPORT_SETS GEN_SERVICES_SETS GET_MOUNTS SIGNATURE_FILE 
    export SERVICESFILE INETDFILE FILE_ACL SUID_LIST REL_FILE_EXCP 
    export GEN_CRON_FILES GETCLIENTDIRS GEN_INETD_SETS GETUSERHOME 
    export GETDISKS EMBEDDEDLIST GEN_PASSWD_SETS
    
    tiger-3.2.3/systems/IRIX/6/file_access_list0000644000175000017500000002462407502327223017136 0ustar  pacopaco#
    #     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.
    #
    # IRIX/4/file_access_list - 11/06/93
    #
    #-----------------------------------------------------------------------------
    #
    #                           owner group s g r w x   r w x   r w xLVL MessageIDs
    #------------------------------------------------------------------------------
    /                           root  .     . . 1 . 1   1 0 1   1 0 1 W 018 018 018
    /etc                        root  .     . . 1 . 1   1 0 1   1 0 1 W 019 019 019
    /bin                        root  .     . . 1 . 1   1 0 1   1 0 1 W 001 002 003
    /usr                        root  .     . . 1 . 1   1 0 1   1 0 1 W 001 002 003
    #
    /hw			    root  .     . . . . .   1 0 1   1 0 1 . 001 002 003
    /dev                        root  .     . . . . .   1 0 1   1 0 1 . 001 002 003
    /dev/tty		    root  .     0 0 1 1 0   1 1 0   1 1 0 . 001 002 003
    /dev/null		    root  .     0 0 1 1 0   1 1 0   1 1 0 . 001 002 003
    /dev/zero		    root  .     0 0 1 1 0   1 1 0   1 1 0 . 001 002 003
    /dev/mem		    root  kmem  0 0 1 1 0   1 0 0   0 0 0 . 001 002 003
    /dev/kmem		    root  kmem  0 0 1 1 0   1 0 0   0 0 0 . 001 002 003
    /dev/audio		    .     .     0 0 . . .   . . .   . . . . 001 002 003
    /dev/console		    .     .     0 0 1 1 0   0 . .   0 . . . 001 002 003
    #
    /unix                       root  .     0 0 1 . 1   1 0 0   1 0 0 . 001 002 003
    /.cshrc                     root  .     0 0 1 . .   . 0 .   . 0 . W 006 006 006
    /.login                     root  .     0 0 1 . .   . 0 .   . 0 . W 006 006 006
    /.profile                   root  .     0 0 1 . .   . 0 .   . 0 . W 006 006 006
    /.forward                   root  .     . . 1 . .   . 0 .   . 0 . W 006 006 006
    /.rhosts                    root  .     . . 1 . 0   0 0 0   0 0 0 W 006 006 006
    #
    /usr/lib/aliases            root  .     . . 1 . 0   1 0 0   1 0 0 F 007 007 007
    /usr/lib/aliases.dir        root  .     . . 1 . 0   1 0 0   1 0 0 F 007 007 007
    /usr/lib/aliases.pag        root  .     . . 1 . 0   1 0 0   1 0 0 F 007 007 007
    #
    (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/4/file_access_list - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    #                           owner group s g r w x   r w x   r w xLVL MessageIDs
    #------------------------------------------------------------------------------
    /                           root  .     . . 1 . 1   1 0 1   1 0 1 W 018 018 018
    /etc                        root  .     . . 1 . 1   1 0 1   1 0 1 W 019 019 019
    /bin                        root  .     . . 1 . 1   1 0 1   1 0 1 W 001 002 003
    /sbin                       root  .     . . 1 . 1   1 0 1   1 0 1 W 001 002 003
    /usr                        root  .     . . 1 . 1   1 0 1   1 0 1 W 001 002 003
    /usr/5include               root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/xpg2include            root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/xpg2lib                root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/xpg2bin                root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/hosts                  root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/sccs                   root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/share                  root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/export                 root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/lang                   root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/openwin		    root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/diag                   root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/demo                   root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/5lib                   root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/games                  root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/bin                    root  .     . . 1 . 1   1 0 1   1 0 1 A 001 002 003
    /usr/lib                    root  .     . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /usr/ucb                    root  .     . . 1 . 1   1 0 1   1 0 1 A 001 002 003
    /usr/*                      .     .     . . . . .   . 0 .   . 0 . . 001 002 003
    /var                        root  .     . . . . .   1 0 1   1 0 1 . 001 002 003
    /var/yp 		    root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /var/yp/*                   root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /var/yp/*/*                 root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /var/spool		    root  .     . . . . .   1 0 1   1 0 1 . 001 002 003
    /var/tmp		    root  .     . . 1 1 1   1 1 1   1 1 1 . 001 002 003
    /var/*			    root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /var/log/*                  root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /var/adm/messages*          root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /var/adm/pacct*             root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /tftpboot                   root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    #
    /dev                        root  .     . . . . .   1 0 1   1 0 1 . 001 002 003
    /dev/tty		    root  .     0 0 1 1 0   1 1 0   1 1 0 . 001 002 003
    /dev/null		    root  .     0 0 1 1 0   1 1 0   1 1 0 . 001 002 003
    /dev/zero		    root  .     0 0 1 1 0   1 1 0   1 1 0 . 001 002 003
    /dev/mem		    root  kmem  0 0 1 1 0   1 0 0   0 0 0 . 001 002 003
    /dev/kmem		    root  kmem  0 0 1 1 0   1 0 0   0 0 0 . 001 002 003
    /dev/mbio		    root  .     0 0 1 1 0   0 0 0   0 0 0 . 001 002 003
    /dev/mbmem		    root  .     0 0 1 1 0   0 0 0   0 0 0 . 001 002 003
    /dev/nit		    root  .     0 0 1 1 0   0 0 0   0 0 0 . 001 002 003
    /dev/audio		    .     .     0 0 . . .   . . .   . . . . 001 002 003
    /dev/audioctl		    .     .     0 0 . . .   . . .   . . . . 001 002 003
    /dev/console		    .     .     0 0 1 1 0   0 . .   0 . . . 001 002 003
    /dev/eeprom		    root  .     0 0 1 1 0   1 0 0   0 0 0 . 001 002 003
    /dev/openprom		    root  .     0 0 1 1 0   1 0 0   1 0 0 . 001 002 003
    /dev/sbus*                  root  .     0 0 . . 0   0 0 0   0 0 0 . 001 002 003
    /dev/vme*                   root  .     0 0 . . 0   0 0 0   0 0 0 . 001 002 003
    #
    /vmunix                     root  .     0 0 1 . 1   1 0 0   1 0 0 . 001 002 003
    /boot                       root  .     0 0 1 . .   . 0 .   . 0 . . 001 002 003
    /.cshrc                     root  .     0 0 1 . .   . 0 .   . 0 . W 006 006 006
    /.login                     root  .     0 0 1 . .   . 0 .   . 0 . W 006 006 006
    /.profile                   root  .     0 0 1 . .   . 0 .   . 0 . W 006 006 006
    /.forward                   root  .     . . 1 . .   . 0 .   . 0 . W 006 006 006
    /.rhosts                    root  .     . . 1 . 0   0 0 0   0 0 0 W 006 006 006
    #
    /usr/lib/aliases            root  .     . . 1 . 0   1 0 0   1 0 0 F 007 007 007
    /usr/lib/aliases.dir        root  .     . . 1 . 0   1 0 0   1 0 0 F 007 007 007
    /usr/lib/aliases.pag        root  .     . . 1 . 0   1 0 0   1 0 0 F 007 007 007
    #
    /etc/bootparams             root  .     . . 1 . 0   . 0 0   . 0 0 W 001 002 003
    /etc/exports                root  .     . . 1 . 0   0 0 0   0 0 0 W 008 008 008
    /etc/fstab                  root  .     . . 1 . 0   0 0 0   0 0 0 W 001 002 003
    /etc/inittab                root  .     . . 1 . 0   . 0 0   . 0 0 W 001 002 003
    /etc/group                  root  .     . . 1 . 0   1 0 0   1 0 0 F 009 009 009
    /etc/hosts                  root  .     . . 1 . 0   1 0 0   1 0 0 F 001 002 003
    /etc/hosts.allow            root  .     . . 1 . 0   . 0 0   . 0 0 W 010 010 010
    /etc/hosts.deny		    root  .     . . 1 . 0   . 0 0   . 0 0 W 010 010 010
    /etc/hosts.equiv            root  .     . . 1 . 0   0 0 0   0 0 0 W 011 011 011
    /etc/hosts.lpd              root  .     . . 1 . 0   0 0 0   0 0 0 W 011 011 011
    /etc/inetd.conf             root  .     . . 1 . 0   . 0 0   . 0 0 W 012 012 012
    /etc/motd                   root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/mtab                   root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/netgroup               root  .     . . 1 . 0   0 0 0   0 0 0 F 013 013 013
    /etc/passwd                 root  .     . . 1 . 0   1 0 0   1 0 0 A 014 014 014
    /etc/printcap               root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/rc?                    root  .     0 0 1 . 0   . 0 0   . 0 0 F 015 015 015
    /etc/rc?.d		    root  .     0 0 1 . 0   . 0 0   . 0 0 F 015 015 015
    /etc/rc?.d/*		    root  .     0 0 1 . 0   . 0 0   . 0 0 F 015 015 015
    /etc/init.d		    root  .     0 0 1 . 0   . 0 0   . 0 0 F 015 015 015
    /etc/init.d/*		    root  .     0 0 1 . 0   . 0 0   . 0 0 F 015 015 015
    /etc/resolv.conf            root  .     . . 1 . 0   1 0 0   1 0 0 W 016 016 016
    /etc/rpc                    root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /usr/lib/sendmail.cf        root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/services               root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/syslog.conf            root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/syslog.pid             root  .     . . 1 . 0   . 0 0   . 0 0 W 001 002 003
    /etc/utmp                   root  .     . . 1 . 0   1 0 0   1 0 0 W 017 017 017
    /etc/config/*		    root  .     0 0 1 . 0   . 0 0   . 0 0 W 001 002 003
    /etc/fstyp.d/*		    root  .     . . 1 . 1   . 0 .   . 0 . W 001 002 003
    /etc/transferDevice/*	    root  .     . . 1 . 1   . 0 .   . 0 . W 001 002 003
    /etc/*                      root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    tiger-3.2.3/systems/IRIX/6/gen_alias_sets0000644000175000017500000000225507756435010016624 0ustar  pacopaco#!/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 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.
    #
    # IRIX/4/gen_alias_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    $GREP -v '^#' /usr/lib/aliases |
    $SORT > $WORKDIR/etc_aliases.$$
    echo "/usr/lib/aliases" > $WORKDIR/etc_aliases.$$.src
    echo $WORKDIR/etc_aliases.$$
    
    [ -n "$YPCAT" ] && {
      $YPCAT -k aliases |
      $SED -e 's/ /:/' | 
      $SORT |
      $COMM -23 - $WORKDIR/etc_aliases.$$ > $WORKDIR/nis_aliases.$$
      echo "NIS" > $WORKDIR/nis_aliases.$$.src
      echo $WORKDIR/nis_aliases.$$
    }
    tiger-3.2.3/systems/IRIX/6/gen_bootparam_sets0000644000175000017500000000250507756435011017516 0ustar  pacopaco#!/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 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.
    #
    # IRIX/4/gen_bootparam_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    [ -r /etc/bootparams ] && {
      $SED -e 's/#.*$//' /etc/bootparams |
      $SED -e '/^[ \t]*$/d' |
      $AWK '
           BEGIN {LINE="";}
           /\\\\$/ {LINE=LINE " " substr($0, 1, length($0)-1);}
           !/\\\\$/ {print LINE $0; LINE="";}
      ' > $WORKDIR/etc_bootparams.$$
      echo "/etc/bootparams" > $WORKDIR/etc_bootparams.$$.src
      echo "$WORKDIR/etc_bootparams.$$"
    }
    
    [ -n "$YPCAT" ] && {
      $YPCAT bootparams > $WORKDIR/nis_bootparams.$$
      echo "NIS" > $WORKDIR/nis_bootparams.$$.src
      echo "$WORKDIR/nis_bootparams.$$"
    }
    tiger-3.2.3/systems/IRIX/6/gen_cron0000644000175000017500000000265207502327223015432 0ustar  pacopaco#!/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 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.
    #
    # IRIX/4/gen_cron - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    outfile=$1
    > $outfile
    
    (
      cd $CRONSPOOL
      $LS -l $LSGROUP *
    ) |
    while read x y owner a b c d e file
    do
      [ "$owner" != "root" ] && {
        echo "--WARN-- CRON file \`$file' is owned by $owner."
      }
      case $file in
        *[!a-zA-Z0-9]*)
          echo "--WARN-- 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
    	echo "--WARN-- Found cron file for unknown user $file."
          fi
          ;;
        esac
    done
      
    tiger-3.2.3/systems/IRIX/6/gen_export_sets0000644000175000017500000000175007502327223017046 0ustar  pacopaco#!/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 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.
    #
    # default/gen_export_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    [ -r /etc/exports ] && {
      $GREP -v '^#' /etc/exports > $WORKDIR/etc_exports.$$
      echo "/etc/exports" > $WORKDIR/etc_exports.$$.src
      echo $WORKDIR/etc_exports.$$
    }
    tiger-3.2.3/systems/IRIX/6/gen_group_sets0000644000175000017500000000217407756435011016670 0ustar  pacopaco#!/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 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.
    #
    # IRIX/4/gen_group_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    $GREP -v '^[-+]' /etc/group |
    $SORT > $WORKDIR/etc_group.$$
    echo "/etc/group" > $WORKDIR/etc_group.$$.src
    echo $WORKDIR/etc_group.$$
    
    [ -n "$YPCAT" ] && {
      $YPCAT group |
      $SORT |
      $COMM -23 - $WORKDIR/etc_group.$$ > $WORKDIR/nis_group.$$
      echo "NIS" > $WORKDIR/nis_group.$$.src
      echo $WORKDIR/nis_group.$$
    }
    
    tiger-3.2.3/systems/IRIX/6/gen_inetd0000644000175000017500000000172007502327223015567 0ustar  pacopaco#!/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 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.
    #
    # IRIX/4/gen_inetd - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    $GREP -v '^#' /usr/etc/inetd.conf |
    $SORT > $WORKDIR/etc_inetd.$$
    echo "/usr/etc/inetd.conf" > $WORKDIR/etc_inetd.$$.src
    echo $WORKDIR/etc_inetd.$$
    tiger-3.2.3/systems/IRIX/6/gen_mounts0000644000175000017500000000236307502327223016015 0ustar  pacopaco#!/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 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.
    #
    # IRIX/4/gen_mounts - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    
    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" = "4.2" ] && LOCAL=0
    
      return $LOCAL
    }
    
    /etc/mount |
    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" ] && echo "$mtpoint $fstype $fs"
    done
    
    tiger-3.2.3/systems/IRIX/6/gen_passwd_sets0000644000175000017500000000304407756435011017032 0ustar  pacopaco#!/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 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.
    #
    # 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
      case "$parm" in
        -p) ;;
        -l) local=1;;
        *)	outfile="$parm";;
      esac
    done
    
    $CAT /etc/passwd > $WORKDIR/etc_passwd.$$
    echo "/etc/passwd" > $WORKDIR/etc_passwd.$$.src
    echo $WORKDIR/etc_passwd.$$ >> $outfile
    
    [ -n "$YPCAT" ] && {
      $YPCAT passwd > $WORKDIR/nis_passwd.$$
      echo "NIS" > $WORKDIR/nis_passwd.$$.src
      echo $WORKDIR/nis_passwd.$$ >> $outfile
    }
    tiger-3.2.3/systems/IRIX/6/gen_services0000644000175000017500000000263407756435011016322 0ustar  pacopaco#!/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 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.
    #
    # IRIX/4/gen_services - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    $GREP -v '^#' /etc/services > $WORKDIR/etc_services.$$
    echo "/etc/services" > $WORKDIR/etc_services.$$.src
    echo $WORKDIR/etc_services.$$
    
    [ -n "$YPCAT" ] && {
      $YPCAT services > $WORKDIR/nis_services.$$
      echo "NIS" > $WORKDIR/nis_services.$$.src
      echo $WORKDIR/nis_services.$$
    }
    
    [ "$SERVERCHECK" = "Y" ] && {
      $GETCLIENTDIRS |
      while read client dir
      do
        [ -f "$dir/etc/services" ] && {
          $GREP -v '^#' $dir/etc/services |
          $SORT > $WORKDIR/services.$$.$client
          echo "$client:/etc/services" > $WORKDIR/services.$$.$client.src
          echo $WORKDIR/services.$$.$client
        }
      done
    }
    tiger-3.2.3/systems/IRIX/6/gendlclients0000644000175000017500000000315110045247305016304 0ustar  pacopaco#!/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 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.
    #
    # IRIX/4/gendlclients - 06/14/93
    #
    # 05/02/2004 jfs  Try to avoid eval problems if handling variables with
    #                 special characters (such as space)
    #
    #
    #-----------------------------------------------------------------------------
    #
    
    parse_bootparam()
    {
      $AWK '
           BEGIN {LINE="";}
           $0 ~ /\\$/ {printf("%s ", substr($0, 1, length($0)-1));}
           $0 !~ /\\$/ {printf("%s\n", $0);}
           END {printf("\n");}
       ' |
      $AWK '{
               for(i=2;i<=NF;i++)
                 if(substr($i, 1,5) == "root="){
    	       x=substr($i, 6, length($i));
                   split(x, ar, ":");
                   print $1, ar[1], ar[2];
       	     }
            }'
    }
    
    $GEN_BOOTPARAM_SETS | 
    while read bootparam_set
    do
      parse_bootparam < $bootparam_set
      
      $RM -f $bootparam_set $bootparam_set.src
    done |
    $SORT -u |
    while read client server filesys
    do
      eval "case \"$server\" in $HOSTNAMESLIST) echo \"$client $filesys\";; esac"
    done
    tiger-3.2.3/systems/IRIX/6/getuserhome0000644000175000017500000000027707502327223016170 0ustar  pacopaco#!/bin/sh
    
    #
    # cd to / in case we are down in a directory we don't have read
    # access to.  /bin/csh will barf if that is the case.
    #
    cd /
    
    user="$1"
    
    /bin/csh -c "echo ~$user" 2> /dev/null
    
    
    tiger-3.2.3/systems/IRIX/6/inetd0000644000175000017500000000510607502327223014740 0ustar  pacopacobootp	dgram	udp	wait	root	/usr/etc/bootp		bootp -f
    bootparam/1 dgram   rpc/udp wait    root    /usr/etc/rpc.bootparamd bootparam
    chargen	dgram	udp	wait	root	internal
    chargen	stream	tcp	nowait	root	internal
    daytime	dgram	udp	wait	root	internal
    daytime	stream	tcp	nowait	root	internal
    discard	dgram	udp	wait	root	internal
    discard	stream	tcp	nowait	root	internal
    echo	dgram	udp	wait	root	internal
    echo	stream	tcp	nowait	root	internal
    exec	stream	tcp	nowait	root	/usr/etc/rexecd		rexecd
    finger	stream	tcp	nowait	guest	/usr/etc/fingerd	fingerd
    ftp	stream	tcp	nowait	root	/usr/etc/ftpd		ftpd
    login	stream	tcp	nowait	root	/usr/etc/rlogind	rlogind
    mountd/1    dgram   rpc/udp wait    root    /usr/etc/rpc.mountd     mountd
    mountd/1    stream  rpc/tcp wait    root    /usr/etc/rpc.mountd     mountd
    ntalk	dgram	udp	wait	root	/usr/etc/talkd		talkd
    rexd/1     stream  rpc/tcp wait    root    /usr/etc/rpc.rexd       rexd
    rquotad/1   dgram   rpc/udp wait    root    /usr/etc/rpc.rquotad    rquotad
    rstatd/1-3  dgram   rpc/udp wait    root    /usr/etc/rpc.rstatd     rstatd
    rusersd/1   dgram   rpc/udp wait    root    /usr/etc/rpc.rusersd    rusersd
    sgi-dgl stream	tcp	nowait	root	/usr/etc/dgld	dgld -IM -tDGLTSOCKET
    sgi_fam/1   stream  rpc/tcp wait    root    /usr/etc/fam            famd  -t 180
    sgi_mountd/1 dgram  rpc/udp wait    root    /usr/etc/rpc.mountd     mountd
    sgi_mountd/1 stream rpc/tcp wait    root    /usr/etc/rpc.mountd     mountd
    sgi_pcsd/1  dgram   rpc/udp wait    root    /usr/etc/cvpcsd	    pcsd
    sgi_pod/1   stream  rpc/tcp wait    root    /usr/etc/podd           podd
    sgi_snoopd/1 stream rpc/tcp wait    root    /usr/etc/rpc.snoopd     snoopd
    sgi_toolkitbus/1 stream rpc/tcp wait root   /usr/etc/rpc.toolkitbus toolkitbusd
    sgi_videod/1 stream rpc/tcp wait    root    ?/usr/etc/videod         videod
    sgi_xfsmd/1 stream  rpc/tcp wait    root    ?/usr/etc/xfsmd     xfsmd
    shell	stream	tcp	nowait	root	/usr/etc/rshd		rshd
    sprayd/1    dgram   rpc/udp wait    root    /usr/etc/rpc.sprayd     sprayd
    tcpmux	stream	tcp	nowait	root	internal
    tcpmux/sgi_printer stream tcp nowait root   ?/usr/lib/print/printerd printerd
    tcpmux/sgi_scanner stream tcp nowait root   ?/usr/lib/scan/net/scannerd scannerd
    telnet	stream	tcp	nowait	root	/usr/etc/telnetd	telnetd
    tftp	dgram	udp	wait	guest	/usr/etc/tftpd	tftpd -s /usr/local/boot
    time	dgram	udp	wait	root	internal
    time	stream	tcp	nowait	root	internal
    ttdbserverd/1   stream  rpc/tcp wait root ?/usr/etc/rpc.ttdbserverd rpc.ttdbserverd
    walld/1     dgram   rpc/udp wait    root    /usr/etc/rpc.rwalld     rwalld
    ypupdated/1 stream  rpc/tcp wait    root    /usr/etc/rpc.ypupdated  ypupdated
    
    tiger-3.2.3/systems/IRIX/6/services0000644000175000017500000000244007502327223015456 0ustar  pacopacoalbd 371/udp
    auth 113/tcp
    biff 512/udp
    bootp 67/udp
    bootpc 68/udp
    chargen 19/tcp
    chargen 19/udp
    conference 531/tcp
    courier 530/tcp
    csnet-ns 105/tcp
    daytime 13/tcp
    daytime 13/udp
    discard 9/tcp
    discard 9/udp
    domain 53/tcp
    domain 53/udp
    echo 7/tcp
    echo 7/udp
    eklogin 2105/tcp
    erpc 121/udp
    exec 512/tcp
    finger 79/tcp
    ftp 21/tcp
    ftp-data 20/tcp
    hostnames 101/tcp
    http 80/tcp
    imap2 143/tcp
    ingreslock 1524/tcp
    iso-tsap 102/tcp
    kerberos 750/tcp
    kerberos 750/udp
    klogin 543/tcp
    kpasswd 761/tcp
    krbupdate 760/tcp
    kshell 544/tcp
    link 87/tcp
    loc-srv 135/tcp
    loc-srv 135/udp
    login 513/tcp
    mtp 57/tcp
    name 42/tcp
    netnews 532/tcp
    netstat 15/tcp
    netwall 533/udp
    nfs 2049/tcp
    nfs 2049/udp
    nntp 119/tcp
    ntalk 518/udp
    ntp 123/udp
    pop-2 109/tcp
    pop-3 110/tcp
    printer 515/tcp
    qotd 17/tcp
    realaudio 7070/tcp
    remotefs 556/tcp
    rje 77/tcp
    rlp 39/udp
    route 520/udp
    sftp 115/tcp
    sgi-arrayd 5434/tcp
    sgi-dgl 5232/tcp
    sgi_iphone 32769/tcp
    shell 514/tcp
    smtp 25/tcp
    snmp 161/udp
    snmp-trap 162/udp
    sunrpc 111/tcp
    sunrpc 111/udp
    supdup 95/tcp
    syslog 514/udp
    systat 11/tcp
    ta-rauth 601/tcp
    talk 517/udp
    tcpmux 1/tcp
    telnet 23/tcp
    telnets 24/tcp
    tempo 526/tcp
    tftp 69/udp
    time 37/tcp
    time 37/udp
    timed 525/udp
    uucp 540/tcp
    uucp-path 117/tcp
    who 513/udp
    whois 43/tcp
    wn-http 8778/tcp
    x-server 6000/tcp
    x400 103/tcp
    x400-snd 104/tcp
    xdmcp 177/udp
    tiger-3.2.3/systems/IRIX/6/suid_list0000644000175000017500000000214407502327223015633 0ustar  pacopaco/usr/sbin/passmgmt
    /usr/etc/appletalk/psf
    /usr/pcp/bin/pmpost
    /usr/sbin/mkpts
    /usr/etc/appletalk/xkfs
    /usr/etc/appletalk/xktalk
    /usr/bsd/rsh
    /usr/bsd/rlogin
    /usr/etc/traceroute
    /usr/pcp/bin/pmbrand
    /usr/gfx/setmon
    /usr/bsd/rcp
    /usr/etc/ping
    /usr/etc/route
    /usr/bin/X11/xlock
    /usr/bin/X11/xterm
    /usr/bin/X11/xconsole
    /usr/lib/print/tagprinter
    /usr/lib/print/chkicons
    /usr/bin/lp
    /usr/bin/mail
    /usr/bin/passwd
    /usr/bin/X11/cdheadphone
    /usr/lib/regview
    /usr/etc/appletalk/xkas
    /usr/sbin/cview
    /usr/bin/newsess
    /usr/bin/newproj
    /usr/sbin/gr_osview
    /usr/bin/newgrp
    /usr/lib/print/netprint
    /usr/bin/cancel
    /usr/sbin/cpr
    /usr/sbin/ssplay
    /usr/etc/mediad
    /usr/sbin/printers
    /usr/bin/crontab
    /usr/bin/lpstat
    /usr/etc/timedc
    /usr/sbin/startmidi
    /usr/sbin/soundscheme
    /usr/sbin/cdplayer
    /usr/lib/WorkShop/cvconnect
    /usr/sbin/monpanel
    /usr/sbin/Confidence/cdrom
    /usr/lib/sendmail
    /usr/sbin/dmrecord
    /usr/bin/at
    /usr/sbin/gmemusage
    /usr/sbin/xwsh
    /usr/sbin/iwsh
    /usr/lib/iaf/scheme
    /usr/sbin/dmplay
    /usr/sbin/datman
    /usr/bsd/ordist
    /usr/lib/InPerson/inpview
    /usr/sbin/soundtrack
    /usr/sbin/ksyncset
    /usr/sbin/ksyncstat
    /usr/lib/addnetpr
    
    tiger-3.2.3/systems/IRIX/6/6.5/0000755000175000017500000000000011306441031014207 5ustar  pacopacotiger-3.2.3/systems/IRIX/6/6.5/signatures0000644000175000017500000000376107722701214016336 0ustar  pacopaco#
    # Signature file for IRIX 6.5 IP30, generated Tue Aug 13 08:54:00 EDT 2002
    #
    #@DEST=IRIX/6/6.5
    #@CONFIG=IRIX/6
    Y .       /sbin/sh c65e308ac305456c68074055835d0ea4 IRIX 6.5
    Y .       /sbin/csh 4b650df457b84bb4e0113f8342d9ee69 IRIX 6.5
    # ksh not found.
    # login not found.
    Y .       /sbin/su 651adeccde31e2faf9bd060b8b9c4aa1 IRIX 6.5
    Y .       /usr/bin/passwd b2d71a37f40d6e810681ea6ccefed6c3 IRIX 6.5
    # in.fingerd not found.
    Y .       /usr/etc/fingerd d0f0b5b5a8c61e2f8f4838db0905d3b5 IRIX 6.5
    Y .       /usr/sbin/in.ftpd cb4d23fa74c5f358262672a1adb0ead8 IRIX 6.5
    Y .       /usr/etc/ftpd 07569eb85f2c096cc6177e661d38c3cd IRIX 6.5
    # in.rexecd not found.
    Y .       /usr/etc/rexecd 6a4d08b73ef9419956e7a46963802d80 IRIX 6.5
    # in.rlogind not found.
    Y .       /usr/etc/rlogind 9887f021b660108bb404608d3736e97c IRIX 6.5
    # in.rshd not found.
    Y .       /usr/etc/rshd c82c4f13b763ef7c2b07c850cc1cde9c IRIX 6.5
    # in.telnetd not found.
    Y .       /usr/etc/telnetd 4c52e6e1db4df1fd0825222968677886 IRIX 6.5
    # in.tftpd not found.
    Y .       /usr/etc/tftpd 00d5eff6244da1a069233d162050be67 IRIX 6.5
    # in.uucpd not found.
    # uucpd not found.
    # rpc.yppasswdd not found.
    Y .       /usr/etc/rpc.passwd 514913b0ce89a85b0049b7096780cf23 IRIX 6.5
    Y .       /usr/etc/portmap 2335729fe0e0f239ecfe9617a626f5d1 IRIX 6.5
    # ypserv not found.
    # ypxfrd not found.
    # ypbind not found.
    Y .       /usr/lib/sendmail 13521b3874499a7a3d35a19a12832fc5 IRIX 6.5
    # sendmail.mx not found.
    Y .       /usr/bsd/rdist 79a72055c0640e940e2de09df15508fc IRIX 6.5
    Y .       /usr/bsd/rlogin 79b5851fc59a9d6e3caa36a28ae8b9a2 IRIX 6.5
    Y .       /usr/bsd/rsh d6ba03b99b638aad4c944d84d9c6da44 IRIX 6.5
    Y .       /usr/bsd/telnet d0944f8c0caa1dbbc54ec0926b06a926 IRIX 6.5
    Y .       /usr/bin/lpstat 55ff589c64b58dca9d1d240b7729ee53 IRIX 6.5
    # lpc not found.
    # lpd not found.
    # lpr not found.
    # lprm not found.
    # lpd not found.
    # in.lpd not found.
    Y .       /usr/etc/rpc.mountd 2ffb544986a2e5f177c83729bc1e8c81 IRIX 6.5
    Y .       /usr/lib/expreserve 1da23360572c00bb06a0001fb8561bca IRIX 6.5
    tiger-3.2.3/systems/IRIX/6/6.5/config0000644000175000017500000001057107722701540015416 0ustar  pacopaco# -*- 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.
    #
    # IRIX/6/6.5/config - 06/14/93
    # Updated for compiles, findcmd, and whoami
    #
    #-----------------------------------------------------------------------------
    #
    
    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 ] ) 2> $WORKDIR/te.$$
    [ -s $WORKDIR/te.$$ ] && TESTEXEC=-f
    export TESTEXEC
    WHOAMI=`findcmd whoami`
    CAT=`findcmd cat`
    LS=`findcmd ls`
    # With /usr/bin/ls, just '-l' to get group owner
    # For /usr/ucb/ls, use "-lg"
    LSGROUP="-l"
    # -L to show file instead of symlink
    LSLINK="-L"
    RM=`findcmd rm`
    AWK=`findcmd nawk`
    GREP=`findcmd grep`
    EGREP=`findcmd egrep`
    SGREP="$EGREP -s"
    SED=`findcmd sed`
    SORT=`findcmd sort`
    COMM=`findcmd comm`
    TAIL=`findcmd tail`
    MV=`findcmd mv`
    TR=`findcmd tr`
    IFCONFIG=`findcmd ifconfig`
    JOIN=`findcmd join`
    GROUPSS=`findcmd groups`
    FILECMD=`findcmd file`
    UNIQ=`findcmd uniq`
    BASENAME=`findcmd basename`
    CHMOD=`findcmd chmod`
    CHOWN=`findcmd chown`
    LN=`findcmd ln`
    PASTE=`findcmd paste`
    DIFF=`findcmd diff`
    DIFFD=' '
    MAILER=`findcmd mail`
    SENDMAILS="/usr/lib/sendmail /usr/lib/sendmail.mx"
    SENDMAILCF="/etc/mail/sendmail.cf"
    export SENDMAILS SENDMAILCF
    #
    export CAT LS LSGROUP LSLINK RM AWK GREP EGREP SGREP SED
    export SORT COMM TAIL MV TR JOIN GROUPSS FILECMD UNIQ BASENAME
    export CHMOD CHOWN LN PASTE DIFF DIFFD MAILER
    #
    UNAME=`findcmd uname`
    GETHOSTNAME="/usr/bin/uname -n"
    EXPR=`findcmd expr`
    STRINGS=`findcmd strings`
    FIND=`findcmd find`
    FINDXDEV=-xdev
    FMT=`findcmd fmt`
    CC=`findcmd gcc`
    if [ -z "$CC" ]; then
      CC=`findcmd cc`
    fi
    CFLAGS="-DNEEDGETWD"
    PS=`findcmd ps`
    DATE=`findcmd date`
    DATECMD="$DATE +%y%m%d"
    TIMECMD="$DATE +%H:%M"
    TESTLINK=-h
    TESTEXEC=-x
    #
    export UNAME GETHOSTNAME EXPR STRINGS FIND FINDXDEV
    export FMT CC PS DATE DATECMD TIMECMD TESTLINK CFLAGS TESTEXEC
    #
    WAIT=wait
    #
    #
    YPCAT=`findcmd ypcat`
    NISCAT=`findcmd niscat`
    TCPD=`findcmd tcpd`
    #
    export WAIT YPCAT NISCAT TCPD
    #
    #
    MAILSPOOL=/var/mail
    ETCSHELLS=/etc/shells
    CRONSPOOL=/var/spool/cron/crontabs
    #
    export MAILSPOOL ETCSHELLS CRONSPOOL
    # egrep regex that defines a local filesystem
    LOCFS="(ufs|tmpfs)"
    export LOCFS
    #
    # System dev directories...
    # 
    DEVDIRSYS="/dev/ /devices"
    #
    export DEVDIRSYS
    #
    SYSDEFAULTPATH="/usr/sbin:/usr/bin"
    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
    EOL
    `
    tiger-3.2.3/systems/Linux/0000755000175000017500000000000011306441032014057 5ustar  pacopacotiger-3.2.3/systems/Linux/0/0000755000175000017500000000000011306441031014215 5ustar  pacopacotiger-3.2.3/systems/Linux/0/check_cron0000755000175000017500000000161207502327223016252 0ustar  pacopaco#!/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 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/4/check_cron - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    if [ -f /var/spool/cron/crontabs/$1 ]; then
      echo "YES"
    else
      echo "NO"
    fi
    tiger-3.2.3/systems/Linux/0/check0000755000175000017500000000323307502327223015232 0ustar  pacopaco#!/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 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/4/check - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    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 CAT CC GREP RM SGREP STRINGS || exit 1
      haveallfiles BASEDIR WORKDIR || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    tiger-3.2.3/systems/Linux/0/embedlist0000644000175000017500000000063207502327223016122 0ustar  pacopaco#
    #  These are files which have any embedded pathnames in them checked.
    #  It does not need to include things like /etc/inetd.conf, etc, as
    #  these will be generated during the running of the security system.
    #  They *can* be included if you want to run check_embedded without
    #  running all the other scripts.  This will not cause duplicate output.
    #
    /etc/rc
    /etc/rc?
    /etc/init.d/*
    /.profile
    /.cshrc
    /.login
    tiger-3.2.3/systems/Linux/0/config0000644000175000017500000000765707531433121015432 0ustar  pacopaco# -*- 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/4/config - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    #   UUID=`/usr/bin/id | /usr/bin/sed -e 's/uid=\([0-9][0-9]*\).*$/\1/'`
    [ "$UUID" = "" ] &&
      UNAME=`whoami`
    
    export UNAME
    
    [ "$UNAME" != "root" ] && {
      echo " " 1>&2
      echo "This script should be run from a super-user account." 1>&2
      echo " " 1>&2
    #  exit 1
    }
    
    CAT=/usr/bin/cat
    LS=/bin/ls
    # -g to show group ownership
    LSGROUP="-lg"
    # -L to show file instead of symlink
    LSLINK="-L"
    RM=/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/bin/tail
    MV=/bin/mv
    TR=/usr/bin/tr
    JOIN=/usr/bin/join
    GROUPSS=/usr/bin/groups
    FILECMD=/usr/bin/file
    UNIQ=/usr/bin/uniq
    BASENAME=/usr/bin/basename
    CHMOD=/bin/chmod
    CHOWN=/bin/chown
    LN=/bin/ln
    PASTE=/usr/bin/paste
    DIFF=/usr/bin/diff
    MAILER=/usr/bin/mail
    ID=/usr/bin/id
    SENDMAILS="/usr/bin/smail"
    # I'm not sure what a SMAIL config file looks like...
    SENDMAILCF=""
    export SENDMAILS SENDMAILCF
    #
    export CAT LS LSGROUP LSLINK RM AWK GREP EGREP SGREP SED
    export SORT COMM TAIL MV TR JOIN GROUPSS FILECMD UNIQ BASENAME
    export CHMOD CHOWN LN PASTE DIFF MAILER
    #
    UNAME=/usr/bin/uname
    GETHOSTNAME=/bin/hostname
    EXPR=/usr/bin/expr
    STRINGS=/usr/bin/strings
    FIND=/usr/bin/find
    FINDXDEV=-xdev
    FMT=/usr/bin/fmt
    GETFS=/etc/mount
    CC=/usr/bin/cc
    PS=/bin/ps
    DATE=/usr/bin/date
    DATECMD="$DATE +%y%m%d"
    TIMECMD="$DATE +%H:%M"
    TESTLINK=-L
    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
    #
    YP=
    #($PS -auxww | $GREP ypbind | $SGREP -v $GREP) && YP=Y
    export YP
    #
    #
    YPSERVER="NO"
    #($PS -aux | $GREP ypserv | $SGREP -v $GREP) && YPSERVER="YES"
    export WAIT YPCAT YPSERVER
    #
    MAILSPOOL=/var/spool/mail
    #
    CRONSPOOL=/usr/spool/cron/crontabs
    #
    ETCSHELLS=/etc/shells
    #
    export MAILSPOOL CRONSPOOL ETCSHELLS
    #
    FS_WDIRSYS="/tmp/ /var/tmp/ /var/spool/mail/"
    export FS_WDIRSYS
    #
    SYSDEFAULTPATH="/bin:/usr/bin"
    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
    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
    EOL
    `
    tiger-3.2.3/systems/Linux/0/0.99.12/0000755000175000017500000000000011306441031015035 5ustar  pacopacotiger-3.2.3/systems/Linux/0/0.99.12/signatures0000644000175000017500000000326607502327223017164 0ustar  pacopaco#
    # Signature file for Linux 0.99.12 i486, generated Mon Oct  4 14:47:49 GMT 1993
    #
    #@DEST=Linux/0/0.99.12
    #@CONFIG=Linux/0
    #
    Y .       /bin/sh 86839708038627a0390c403d92b0f5f4 Linux 0.99.12
    # csh not found.
    # ksh not found.
    Y .       /bin/login 281101377ef9b81e0aa9de2c7749341f Linux 0.99.12
    Y .       /bin/su 526e2c8c7f4e1164554b007ec12e2ee9 Linux 0.99.12
    Y .       /bin/passwd 840eaf98cfaa3c72cb8e69332b6b07b2 Linux 0.99.12
    Y .       /etc/fingerd 7d99ef443d06c95cc363ab6862762c75 Linux 0.99.12
    Y .       /usr/etc/ftpd c8590321a1e8b2df75b49c9db7482555 Linux 0.99.12
    # in.rexecd not found.
    # rexecd not found.
    Y .       /usr/etc/rlogind da1dcec983a2e2a44f270497ff953351 Linux 0.99.12
    O sig021w /usr/etc/rshd f5116d8f94b3d11d279ac7dd1d88c803 Linux 0.99.12 (no security patch)
    Y .       /usr/etc/telnetd dea39b0c37b3c886b54b7e47eb7abdfb Linux 0.99.12
    Y .       /usr/etc/tftpd c64e6ee24b56465bbed4c673cd97997b Linux 0.99.12
    # in.uucpd not found.
    # uucpd not found.
    Y .       /usr/etc/portmap efc6ff4b9a79fbce18fbc3ec1101c56e Linux 0.99.12
    # sendmail not found.
    # sendmail.mx not found.
    # rdist not found.
    Y .       /usr/bin/rlogin 26a38db45e9b2f09a05ff14fc1b3182c Linux 0.99.12
    Y .       /usr/bin/rsh 9e032b49c4190f9059ab6a6979aafe8f Linux 0.99.12
    Y .       /usr/bin/telnet 693a512d3363b22234f67c4cfa2984df Linux 0.99.12
    Y .       /usr/etc/lpc f99ab7bdec8605802c21d7c0db4ad6e3 Linux 0.99.12
    Y .       /usr/etc/lpd ff98c0598bdbb75d96a2e3c0c6326b36 Linux 0.99.12
    Y .       /usr/bin/lpr 846676d8d13b68458e6a8e9f7c23e599 Linux 0.99.12
    Y .       /usr/bin/lprm e88164294c13f63d02a2f0995ea18b86 Linux 0.99.12
    Y .       /usr/etc/lpd ff98c0598bdbb75d96a2e3c0c6326b36 Linux 0.99.12
    # rpc.mountd not found.
    # expreserve not found.
    tiger-3.2.3/systems/Linux/0/0.99.12/config0000644000175000017500000000765707551007344016260 0ustar  pacopaco# -*- 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/4/config - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    #   UUID=`/usr/bin/id | /usr/bin/sed -e 's/uid=\([0-9][0-9]*\).*$/\1/'`
    [ "$UUID" = "" ] &&
      UNAME=`whoami`
    
    export UNAME
    
    [ "$UNAME" != "root" ] && {
      echo " " 1>&2
      echo "This script should be run from a super-user account." 1>&2
      echo " " 1>&2
    #  exit 1
    }
    
    CAT=/usr/bin/cat
    LS=/bin/ls
    # -g to show group ownership
    LSGROUP="-lg"
    # -L to show file instead of symlink
    LSLINK="-L"
    RM=/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/bin/tail
    MV=/bin/mv
    TR=/usr/bin/tr
    JOIN=/usr/bin/join
    GROUPSS=/usr/bin/groups
    FILECMD=/usr/bin/file
    UNIQ=/usr/bin/uniq
    BASENAME=/usr/bin/basename
    CHMOD=/bin/chmod
    CHOWN=/bin/chown
    LN=/bin/ln
    PASTE=/usr/bin/paste
    DIFF=/usr/bin/diff
    MAILER=/usr/bin/mail
    ID=/usr/bin/id
    SENDMAILS="/usr/bin/smail"
    # I'm not sure what a SMAIL config file looks like...
    SENDMAILCF=""
    export SENDMAILS SENDMAILCF
    #
    export CAT LS LSGROUP LSLINK RM AWK GREP EGREP SGREP SED
    export SORT COMM TAIL MV TR JOIN GROUPSS FILECMD UNIQ BASENAME
    export CHMOD CHOWN LN PASTE DIFF MAILER
    #
    UNAME=/usr/bin/uname
    GETHOSTNAME=/bin/hostname
    EXPR=/usr/bin/expr
    STRINGS=/usr/bin/strings
    FIND=/usr/bin/find
    FINDXDEV=-xdev
    FMT=/usr/bin/fmt
    GETFS=/etc/mount
    CC=/usr/bin/cc
    PS=/bin/ps
    DATE=/usr/bin/date
    DATECMD="$DATE +%y%m%d"
    TIMECMD="$DATE +%H:%M"
    TESTLINK=-L
    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
    #
    YP=
    #($PS -auxww | $GREP ypbind | $SGREP -v $GREP) && YP=Y
    export YP
    #
    #
    YPSERVER="NO"
    #($PS -aux | $GREP ypserv | $SGREP -v $GREP) && YPSERVER="YES"
    export WAIT YPCAT YPSERVER
    #
    MAILSPOOL=/var/spool/mail
    #
    CRONSPOOL=/usr/spool/cron/crontabs
    #
    ETCSHELLS=/etc/shells
    #
    export MAILSPOOL CRONSPOOL ETCSHELLS
    #
    FS_WDIRSYS="/tmp/ /var/tmp/ /var/spool/mail/"
    export FS_WDIRSYS
    #
    SYSDEFAULTPATH="/bin:/usr/bin"
    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
    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
    EOL
    `
    tiger-3.2.3/systems/Linux/0/facl.strict0000644000175000017500000001251107502327223016365 0ustar  pacopaco#
    #     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/4/file_access_list - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    #                           owner group s g r w x   r w x   r w xLVL MessageIDs
    #------------------------------------------------------------------------------
    /                           root  .     . . 1 . 1   1 0 1   1 0 1 W 018 018 018
    /etc                        root  .     . . 1 . 1   1 0 1   1 0 1 W 019 019 019
    /bin                        root  .     . . 1 . 1   1 0 1   1 0 1 W 001 002 003
    /usr                        root  .     . . 1 . 1   1 0 1   1 0 1 W 001 002 003
    /usr/bin                    root  .     . . 1 . 1   1 0 1   1 0 1 A 001 002 003
    /usr/lib                    root  .     . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /usr/*                      .     .     . . . . .   . 0 .   . 0 . . 001 002 003
    /var                        root  .     . . . . .   1 0 1   1 0 1 . 001 002 003
    /var/spool		    root  .     . . . . .   1 0 1   1 0 1 . 001 002 003
    #
    /dev                        root  .     . . . . .   1 0 1   1 0 1 . 001 002 003
    /dev/tty		    root  .     0 0 1 1 0   1 1 0   1 1 0 . 001 002 003
    /dev/null		    root  .     0 0 1 1 0   1 1 0   1 1 0 . 001 002 003
    /dev/zero		    root  .     0 0 1 1 0   1 1 0   1 1 0 . 001 002 003
    /dev/mem		    root  kmem  0 0 1 1 0   1 0 0   0 0 0 . 001 002 003
    /dev/kmem		    root  kmem  0 0 1 1 0   1 0 0   0 0 0 . 001 002 003
    /dev/console		    .     .     0 0 1 1 0   0 . .   0 . . . 001 002 003
    #
    /vmlinuz                    root  .     0 0 1 . 1   1 0 0   1 0 0 . 001 002 003
    /.cshrc                     root  .     0 0 1 . .   0 0 0   0 0 0 W 006 006 006
    /.login                     root  .     0 0 1 . .   0 0 0   0 0 0 W 006 006 006
    /.profile                   root  .     0 0 1 . .   0 0 0   0 0 0 W 006 006 006
    /.forward                   root  .     . . 1 . .   0 0 0   0 0 0 W 006 006 006
    /.rhosts                    root  .     . . 1 . 0   0 0 0   0 0 0 W 006 006 006
    #
    /usr/lib/aliases                root  .     . . 1 . 0   0 0 0   0 0 0 F 007 007 007
    /usr/lib/aliases.dir            root  .     . . 1 . 0   0 0 0   0 0 0 F 007 007 007
    /usr/lib/aliases.pag            root  .     . . 1 . 0   0 0 0   0 0 0 F 007 007 007
    /etc/exports                root  .     . . 1 . 0   0 0 0   0 0 0 W 008 008 008
    /etc/fstab                  root  .     . . 1 . 0   0 0 0   0 0 0 W 001 002 003
    /etc/group                  root  .     . . 1 . 0   1 0 0   1 0 0 F 009 009 009
    /etc/hosts                  root  .     . . 1 . 0   1 0 0   1 0 0 F 001 002 003
    /etc/hosts.allow            root  .     . . 1 . 0   . 0 0   . 0 0 W 010 010 010
    /etc/hosts.deny		    root  .     . . 1 . 0   . 0 0   . 0 0 W 010 010 010
    /etc/hosts.equiv            root  .     . . 1 . 0   0 0 0   0 0 0 W 011 011 011
    /etc/hosts.lpd              root  .     . . 1 . 0   0 0 0   0 0 0 W 011 011 011
    /etc/inetd.conf             root  .     . . 1 . 0   0 0 0   0 0 0 W 012 012 012
    /etc/motd                   root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/mtab                   root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/netgroup               root  .     . . 1 . 0   0 0 0   0 0 0 F 013 013 013
    /etc/passwd                 root  .     . . 1 . 0   1 0 0   1 0 0 A 014 014 014
    /etc/printcap               root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/rc                     root  .     0 0 1 . 0   0 0 0   0 0 0 F 015 015 015
    /etc/remote                 root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/resolv.conf            root  .     . . 1 . 0   1 0 0   1 0 0 W 016 016 016
    /etc/rpc                    root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /usr/lib/sendmail.cf            root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/services               root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/syslog.conf            root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/syslog.pid             root  .     . . 1 . 0   0 0 0   0 0 0 W 001 002 003
    /etc/utmp                   root  .     . . 1 . 0   1 0 0   1 0 0 W 017 017 017
    /etc/*                      root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    #
    /bin/write              root  tty   0 1 . . 1   . 0 .   . 0 . . 001 002 003
    /bin/wall               root  tty   0 1 . . 1   . 0 .   . 0 . . 001 002 003
    #
    /bin/login              root  .     1 0 1 . 1   1 0 1   1 0 1 F 001 002 003
    /bin/su                 root  .     1 0 1 . 1   . 0 .   . 0 . F 001 002 003
    /bin/passwd             root  .     1 0 1 . 1   . 0 .   . 0 . F 001 002 003
    /bin/sh                 root  .     0 0 1 . 1   1 0 1   1 0 1 W 001 002 003
    /usr/bin/*                  root  .     . . 1 . 1   . 0 .   . 0 . . 001 002 003
    /bin/*                  root  .     . . 1 . 1   . 0 .   . 0 . . 001 002 003
    
    
    tiger-3.2.3/systems/Linux/0/file_access_list0000644000175000017500000001407607502327223017454 0ustar  pacopaco#
    #     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/4/file_access_list - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    #                           owner group s g r w x   r w x   r w xLVL MessageIDs
    #------------------------------------------------------------------------------
    /                           root  .     . . 1 . 1   1 0 1   1 0 1 W 018 018 018
    /etc                        root  .     . . 1 . 1   1 0 1   1 0 1 W 019 019 019
    /bin                        root  .     . . 1 . 1   1 0 1   1 0 1 W 001 002 003
    /usr                        root  .     . . 1 . 1   1 0 1   1 0 1 W 001 002 003
    /usr/bin                    root  .     . . 1 . 1   1 0 1   1 0 1 A 001 002 003
    /usr/lib                    root  .     . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /usr/*                      .     .     . . . . .   . 0 .   . 0 . . 001 002 003
    /var                        root  .     . . . . .   1 0 1   1 0 1 . 001 002 003
    /var/spool		    root  .     . . . . .   1 0 1   1 0 1 . 001 002 003
    #
    /dev                        root  .     . . . . .   1 0 1   1 0 1 . 001 002 003
    /dev/tty		    root  .     0 0 1 1 0   1 1 0   1 1 0 . 001 002 003
    /dev/null		    root  .     0 0 1 1 0   1 1 0   1 1 0 . 001 002 003
    /dev/zero		    root  .     0 0 1 1 0   1 1 0   1 1 0 . 001 002 003
    /dev/mem		    root  kmem  0 0 1 1 0   1 0 0   0 0 0 . 001 002 003
    /dev/kmem		    root  kmem  0 0 1 1 0   1 0 0   0 0 0 . 001 002 003
    /dev/console		    .     .     0 0 1 1 0   0 . .   0 . . . 001 002 003
    #
    /boot/vmlinuz                    root  .     0 0 1 . 1   1 0 0   1 0 0 . 001 002 003
    /.bashrc                     root  .     0 0 1 . .   0 0 0   0 0 0 W 006 006 006
    /.cshrc                     root  .     0 0 1 . .   0 0 0   0 0 0 W 006 006 006
    /.kshrc                     root  .     0 0 1 . .   0 0 0   0 0 0 W 006 006 006
    /.login                     root  .     0 0 1 . .   0 0 0   0 0 0 W 006 006 006
    /.profile                   root  .     0 0 1 . .   0 0 0   0 0 0 W 006 006 006
    /.forward                   root  .     . . 1 . .   0 0 0   0 0 0 W 006 006 006
    /.rhosts                    root  .     . . 1 . 0   0 0 0   0 0 0 W 006 006 006
    /root/.bashrc                     root  .     0 0 1 . .   0 0 0   0 0 0 W 006 006 006
    /root/.cshrc                     root  .     0 0 1 . .   0 0 0   0 0 0 W 006 006 006
    /root/.kshrc                     root  .     0 0 1 . .   0 0 0   0 0 0 W 006 006 006
    /root/.login                     root  .     0 0 1 . .   0 0 0   0 0 0 W 006 006 006
    /root/.profile                   root  .     0 0 1 . .   0 0 0   0 0 0 W 006 006 006
    /root/.forward                   root  .     . . 1 . .   0 0 0   0 0 0 W 006 006 006
    /root/.rhosts                    root  .     . . 1 . 0   0 0 0   0 0 0 W 006 006 006
    #
    /etc/aliases                root  .     . . 1 . 0   0 0 0   0 0 0 F 007 007 007
    /etc/aliases.db            root  .     . . 1 . 0   0 0 0   0 0 0 F 007 007 007
    /etc/exports                root  .     . . 1 . 0   0 0 0   0 0 0 W 008 008 008
    /etc/fstab                  root  .     . . 1 . 0   0 0 0   0 0 0 W 001 002 003
    /etc/group                  root  .     . . 1 . 0   1 0 0   1 0 0 F 009 009 009
    /etc/hosts                  root  .     . . 1 . 0   1 0 0   1 0 0 F 001 002 003
    /etc/hosts.conf             root  .     . . 1 . 0   0 0 0   0 0 0 W 012 012 012
    /etc/hosts.allow            root  .     . . 1 . 0   . 0 0   . 0 0 W 010 010 010
    /etc/hosts.deny		    root  .     . . 1 . 0   . 0 0   . 0 0 W 010 010 010
    /etc/hosts.equiv            root  .     . . 1 . 0   0 0 0   0 0 0 W 011 011 011
    /etc/hosts.lpd              root  .     . . 1 . 0   0 0 0   0 0 0 W 011 011 011
    /etc/inetd.conf             root  .     . . 1 . 0   0 0 0   0 0 0 W 012 012 012
    /etc/motd                   root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/mtab                   root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/passwd                 root  .     . . 1 . 0   1 0 0   1 0 0 A 014 014 014
    /etc/printcap               root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/rc.d                     root  .     0 0 1 . 1   0 0 0   0 0 0 F 015 015 015
    /etc/remote                 root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/resolv.conf            root  .     . . 1 . 0   1 0 0   1 0 0 W 016 016 016
    /etc/rpc                    root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/sendmail.cf            root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/services               root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/syslog.conf            root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /var/run/syslog.pid             root  .     . . 1 . 0   0 0 0   0 0 0 W 001 002 003
    /var/run/utmp                   root  .     . . 1 . 0   1 0 0   1 0 0 W 017 017 017
    /etc/*                      root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    #
    /bin/write              root  tty   0 1 . . 1   . 0 .   . 0 . . 001 002 003
    /bin/wall               root  tty   0 1 . . 1   . 0 .   . 0 . . 001 002 003
    #
    /bin/login              root  .     1 0 1 . 1   1 0 1   1 0 1 F 001 002 003
    /bin/su                 root  .     1 0 1 . 1   . 0 .   . 0 . F 001 002 003
    /usr/bin/passwd             root  .     1 0 1 . 1   . 0 .   . 0 . F 001 002 003
    /bin/bash                 root  .     0 0 1 . 1   1 0 1   1 0 1 W 001 002 003
    /bin/sh                 root  .     0 0 1 . 1   1 0 1   1 0 1 W 001 002 003
    /usr/bin/*                  root  .     . . 1 . 1   . 0 .   . 0 . . 001 002 003
    /bin/*                  root  .     . . 1 . 1   . 0 .   . 0 . . 001 002 003
    
    
    tiger-3.2.3/systems/Linux/0/gen_alias_sets0000755000175000017500000000177407502327223017145 0ustar  pacopaco#!/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 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/4/gen_alias_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    [ -f /usr/lib/aliases ] && {
      $GREP -v '^#' /usr/lib/aliases |
      $SORT > $WORKDIR/etc_aliases.$$
      echo "/usr/lib/aliases" > $WORKDIR/etc_aliases.$$.src
      echo $WORKDIR/etc_aliases.$$
    }
    tiger-3.2.3/systems/Linux/0/gen_bootparam_sets0000755000175000017500000000250607756435011020040 0ustar  pacopaco#!/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 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/4/gen_bootparam_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    [ -r /etc/bootparams ] && {
      $SED -e 's/#.*$//' /etc/bootparams |
      $SED -e '/^[ \t]*$/d' |
      $AWK '
           BEGIN {LINE="";}
           /\\\\$/ {LINE=LINE " " substr($0, 1, length($0)-1);}
           !/\\\\$/ {print LINE $0; LINE="";}
      ' > $WORKDIR/etc_bootparams.$$
      echo "/etc/bootparams" > $WORKDIR/etc_bootparams.$$.src
      echo "$WORKDIR/etc_bootparams.$$"
    }
    
    [ -n "$YPCAT" ] && {
      $YPCAT bootparams > $WORKDIR/nis_bootparams.$$
      echo "NIS" > $WORKDIR/nis_bootparams.$$.src
      echo "$WORKDIR/nis_bootparams.$$"
    }
    tiger-3.2.3/systems/Linux/0/gen_cron0000755000175000017500000000265107502327223015752 0ustar  pacopaco#!/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 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/gen_cron - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    outfile=$1
    > $outfile
    
    (
      cd $CRONSPOOL
      $LS -l $LSGROUP *
    ) |
    while read x y owner a b c d e file
    do
      [ "$owner" != "root" ] && {
        echo "--WARN-- CRON file \`$file' is owned by $owner."
      }
      case $file in
        *[!a-zA-Z0-9]*)
          echo "--WARN-- 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
    	echo "--WARN-- Found cron file for unknown user $file."
          fi
          ;;
        esac
    done
      
    tiger-3.2.3/systems/Linux/0/gen_export_sets0000755000175000017500000000175007502327223017367 0ustar  pacopaco#!/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 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/4/gen_export_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    [ -r /etc/exports ] && {
      $GREP -v '^#' /etc/exports > $WORKDIR/etc_exports.$$
      echo "/etc/exports" > $WORKDIR/etc_exports.$$.src
      echo $WORKDIR/etc_exports.$$
    }
    tiger-3.2.3/systems/Linux/0/gen_group_sets0000755000175000017500000000273007756435011017207 0ustar  pacopaco#!/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 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/4/gen_group_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    $GREP -v '^[-+]' /etc/group |
    $SORT > $WORKDIR/etc_group.$$
    echo "/etc/group" > $WORKDIR/etc_group.$$.src
    echo $WORKDIR/etc_group.$$
    
    [ -n "$YPCAT" ] && {
      $YPCAT group |
      $SORT |
      $AWK '{print substr($0, 1, 255);}' |
      $COMM -23 - $WORKDIR/etc_group.$$ > $WORKDIR/nis_group.$$
      echo "NIS" > $WORKDIR/nis_group.$$.src
      echo $WORKDIR/nis_group.$$
    }
    
    [ "$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.3/systems/Linux/0/gen_inetd0000755000175000017500000000171107502327223016110 0ustar  pacopaco#!/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 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/4/gen_inetd - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    $GREP -v '^#' /etc/inetd.conf |
    $SORT > $WORKDIR/etc_inetd.$$
    echo "/etc/inetd.conf" > $WORKDIR/etc_inetd.$$.src
    echo $WORKDIR/etc_inetd.$$
    tiger-3.2.3/systems/Linux/0/gen_mounts0000755000175000017500000000332107502327223016331 0ustar  pacopaco#!/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 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/4/gen_mounts - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    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" = "ext2" ] && LOCAL=0
      [ "$1" = "minix" ] && LOCAL=0
      [ "$1" = "xiafs" ] && LOCAL=0
      [ "$1" = "ext" ] && LOCAL=0
      [ "$1" = "msdos" ] && LOCAL=1
    
      return $LOCAL
    }
    
    /etc/mount |
    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=`/usr/bin/basename $fs`
        rfs="$dir/r$file"
        echo "$mtpoint $fstype $fs"
      }
    done
    
    tiger-3.2.3/systems/Linux/0/gen_passwd_sets0000755000175000017500000000331407502327223017345 0ustar  pacopaco#!/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 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/gen_passwd_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    local=0
    for parm
    do
      case "$parm" in
        -p) passwordflag=Y;;
        -l) local=1;;
        *)	outfile="$parm";;
      esac
    done
    
    zappasswd()
    {
      IFS=:
      while read user passwd rest
      do
        case $passwd in
          [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="xxxxxxxxxxxxx"
    	   ;;
          " ") passwd=""
    	   ;;
    	*)
    	     passwd="*"
    	   ;;
        esac
        echo "$user:$passwd:$rest" 
      done
    }
    
    $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.$$ |
    {
      if [ "$passwordflag" = 'Y' ]; then
        $CAT
      else
        zappasswd
      fi
    } > $WORKDIR/etc_passwd.$$
    	   
    [ -s $WORKDIR/etc_passwd.$$ ] && {
      echo "/etc/passwd" > $WORKDIR/etc_passwd.$$.src
      echo $WORKDIR/etc_passwd.$$ >> $outfile
    }
    $RM -f $WORKDIR/p.$$
    tiger-3.2.3/systems/Linux/0/gen_services0000755000175000017500000000172207502327223016632 0ustar  pacopaco#!/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 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/4/gen_services - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    $GREP -v '^#' /etc/services |
    $SORT > $WORKDIR/etc_services.$$
    echo "/etc/services" > $WORKDIR/etc_services.$$.src
    echo $WORKDIR/etc_services.$$
    
    tiger-3.2.3/systems/Linux/0/gendlclients0000755000175000017500000000150007502327223016623 0ustar  pacopaco#!/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 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/4/gendlclients - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    tiger-3.2.3/systems/Linux/0/getdisks0000755000175000017500000000156607502327223016001 0ustar  pacopaco#!/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 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.
    #
    # getdisks - 06/24/93
    #
    #-----------------------------------------------------------------------------
    #
    
    $GET_MOUNTS local |
    $AWK '{printf("%s ",$1)}
    END {printf("\n")}' 
    tiger-3.2.3/systems/Linux/0/inetd0000644000175000017500000000224307502327223015255 0ustar  pacopacobootps	dgram	udp	wait	root	/usr/etc/bootpd
    chargen	dgram	udp	wait	root	internal
    chargen	stream	tcp	nowait	root	internal
    daytime	dgram	udp	wait	root	internal
    daytime	stream	tcp	nowait	root	internal
    discard	dgram	udp	wait	root	internal
    discard	stream	tcp	nowait	root	internal
    echo	dgram	udp	wait	root	internal
    echo	stream	tcp	nowait	root	internal
    exec	stream	tcp	nowait	root	/usr/etc/rexecd
    finger	stream	tcp	nowait	root	/usr/etc/fingerd
    ftp	stream	tcp	nowait	root	/usr/etc/ftpd	ftpd
    login	stream	tcp	nowait	root	/usr/etc/rlogind
    netstat	stream	tcp	nowait	guest	/bin/netstat	-f inet
    nntp	stream	tcp	nowait	root	/usr/etc/nntpd
    ntalk	dgram	udp	wait	root	/usr/etc/ntalkd
    pop-2	stream	tcp	nowait	root	/usr/etc/popd
    pop-3	stream	tcp	nowait	root	/usr/etc/popd
    shell	stream	tcp	nowait	root	/usr/etc/rshd
    smtp	stream  tcp     nowait  root    /usr/lib/umail/umail	-bS
    systat	stream	tcp	nowait	guest	/usr/bin/ps	-auwwx
    talk	dgram	udp	wait	root	/usr/etc/ntalkd
    telnet	stream  tcp     nowait  root    /usr/etc/telnetd telnetd
    tftp	dgram	udp	wait	root	/usr/etc/tftpd
    time	dgram	udp	wait	root	/usr/etc/timed
    time	stream	tcp	nowait	root	/usr/etc/timed
    uucp	stream	tcp	nowait	uucp	/usr/lib/uucp/uucico	-l
    tiger-3.2.3/systems/Linux/0/inetd.save0000644000175000017500000000263707502327223016221 0ustar  pacopacoecho	stream	tcp	nowait	root	internal
    echo	dgram	udp	wait	root	internal
    discard	stream	tcp	nowait	root	internal
    discard	dgram	udp	wait	root	internal
    daytime	stream	tcp	nowait	root	internal
    daytime	dgram	udp	wait	root	internal
    chargen	stream	tcp	nowait	root	internal
    chargen	dgram	udp	wait	root	internal
    ftp	stream	tcp	nowait	root	/usr/etc/tcpd	/usr/etc/ftpd	ftpd
    telnet	stream  tcp     nowait  root    /usr/etc/telnetd telnetd
    smtp	stream  tcp     nowait  root    /usr/etc/tcpd	/usr/lib/umail/umail	-bS
    nntp	stream	tcp	nowait	root	/usr/etc/tcpd	/usr/etc/nntpd
    shell	stream	tcp	nowait	root	/usr/etc/tcpd	/usr/etc/rshd
    login	stream	tcp	nowait	root	/usr/etc/tcpd	/usr/etc/rlogind
    exec	stream	tcp	nowait	root	/usr/etc/tcpd	/usr/etc/rexecd
    talk	dgram	udp	wait	root	/usr/etc/tcpd	/usr/etc/ntalkd
    ntalk	dgram	udp	wait	root	/usr/etc/tcpd	/usr/etc/ntalkd
    pop-2	stream	tcp	nowait	root	/usr/etc/tcpd	/usr/etc/popd
    pop-3	stream	tcp	nowait	root	/usr/etc/tcpd	/usr/etc/popd
    uucp	stream	tcp	nowait	uucp	/usr/etc/tcpd	/usr/lib/uucp/uucico	-l
    tftp	dgram	udp	wait	root	/usr/etc/tcpd	/usr/etc/tftpd
    bootps	dgram	udp	wait	root	/usr/etc/tcpd	/usr/etc/bootpd
    finger	stream	tcp	nowait	root	/usr/etc/tcpd	/usr/etc/fingerd
    systat	stream	tcp	nowait	guest	/usr/etc/tcpd	/usr/bin/ps	-auwwx
    netstat	stream	tcp	nowait	guest	/usr/etc/tcpd	/bin/netstat	-f inet
    time	stream	tcp	nowait	root	/usr/etc/tcpd	/usr/etc/timed
    time	dgram	udp	wait	root	/usr/etc/tcpd	/usr/etc/timed
    tiger-3.2.3/systems/Linux/0/rel_file_exp_list0000644000175000017500000000000107502327223017630 0ustar  pacopaco
    tiger-3.2.3/systems/Linux/0/services0000644000175000017500000000241007502327223015771 0ustar  pacopacoNeWS 144/tcp
    auth 113/tcp
    biff 512/udp
    bootpc 68/udp
    bootps 67/udp
    bwnfs 650/udp
    chargen 19/tcp
    chargen 19/udp
    conference 531/tcp
    courier 530/tcp
    csnet-ns 105/tcp
    daytime 13/tcp
    daytime 13/udp
    discard 9/tcp
    discard 9/udp
    domain 53/tcp
    domain 53/udp
    dos 7000/tcp
    echo 7/tcp
    echo 7/udp
    efs 520/tcp
    exec 512/tcp
    finger 79/tcp
    ftp 21/tcp
    ftp-data 20/tcp
    hostnames 101/tcp
    ingreslock 1524/tcp
    irc 6667/tcp
    iso-tsap 102/tcp
    link 87/tcp
    listen 1025/tcp
    login 513/tcp
    monitor 561/udp
    mount 635/udp
    mtp 57/tcp
    name 42/udp
    netbios-dgm 138/tcp
    netbios-dgm 138/udp
    netbios-ns 137/tcp
    netbios-ns 137/udp
    netbios-ssn 139/tcp
    netnews 532/tcp
    netstat 15/tcp
    netwall 533/udp
    new-rwho 550/udp
    nfs 2049/udp
    nntp 119/tcp
    ntalk 518/udp
    nterm 1026/tcp
    ntp 123/tcp
    ntp 123/udp
    pcnfs 640/udp
    pcserver 600/tcp
    pop-2 109/tcp
    pop-3 110/tcp
    printer 515/tcp
    qotd 17/tcp
    remotefs 556/tcp
    rje 77/tcp
    rlp 39/udp
    rmonitor 560/udp
    route 520/udp
    sftp 115/tcp
    shell 514/tcp
    smtp 25/tcp
    snmp 161/udp
    snmp-trap 162/udp
    sunrpc 111/tcp
    sunrpc 111/tcp
    sunrpc 111/udp
    sunrpc 111/udp
    supdup 95/tcp
    syslog 514/udp
    systat 11/tcp
    talk 517/udp
    tcpmux 1/tcp
    telnet 23/tcp
    tempo 526/tcp
    tftp 69/udp
    time 37/tcp
    time 37/udp
    timed 525/udp
    tnet 1600/tcp
    uucp 540/tcp
    uucp-path 117/tcp
    who 513/udp
    whois 43/tcp
    x400 103/tcp
    x400-snd 104/tcp
    tiger-3.2.3/systems/Linux/0/services.save0000644000175000017500000000267007502327223016736 0ustar  pacopacoNeWS		144/tcp
    auth		113/tcp
    biff		512/udp
    bootpc		68/udp
    bootps		67/udp
    bwnfs		650/udp
    chargen		19/tcp
    chargen		19/udp
    conference      531/tcp
    courier		530/tcp
    csnet-ns	105/tcp
    daytime		13/tcp
    daytime		13/udp
    discard		9/tcp
    discard		9/udp
    domain		53/tcp
    domain		53/udp
    dos		7000/tcp
    echo		7/tcp
    echo		7/udp
    efs             520/tcp
    exec		512/tcp
    finger		79/tcp
    ftp		21/tcp
    ftp-data	20/tcp
    hostnames	101/tcp
    ingreslock      1524/tcp
    irc		6667/tcp
    iso-tsap	102/tcp
    link		87/tcp
    listen		1025/tcp
    login		513/tcp 
    monitor		561/udp
    mount		635/udp
    mtp             57/tcp
    name		42/udp
    netbios-dgm     138/tcp
    netbios-dgm     138/udp
    netbios-ns      137/tcp
    netbios-ns      137/udp
    netbios-ssn     139/tcp
    netnews         532/tcp
    netstat		15/tcp
    netwall         533/udp
    new-rwho	550/udp
    nfs		2049/udp
    nntp            119/tcp
    ntalk		518/udp
    nterm		1026/tcp
    ntp		123/tcp
    ntp		123/udp
    pcnfs		640/udp
    pcserver	600/tcp
    pop-2		109/tcp
    pop-3		110/tcp
    printer		515/tcp
    qotd		17/tcp
    remotefs        556/tcp
    rje		77/tcp
    rlp		39/udp
    rmonitor	560/udp
    route		520/udp
    sftp		115/tcp
    shell		514/tcp
    smtp		25/tcp
    snmp		161/udp
    snmp-trap	162/udp
    sunrpc		111/tcp
    sunrpc		111/tcp
    sunrpc		111/udp
    sunrpc		111/udp
    supdup		95/tcp
    syslog		514/udp
    systat		11/tcp
    talk		517/udp
    tcpmux		1/tcp
    telnet		23/tcp
    tempo           526/tcp
    tftp		69/udp
    time		37/tcp
    time		37/udp
    timed		525/udp
    tnet            1600/tcp
    uucp		540/tcp
    uucp-path	117/tcp
    who		513/udp
    whois		43/tcp
    x400		103/tcp
    x400-snd	104/tcp
    tiger-3.2.3/systems/Linux/0/suid_list0000644000175000017500000000045707502327223016156 0ustar  pacopaco/bin/chfn
    /bin/chsh
    /bin/gpasswd
    /bin/login
    /bin/newgrp
    /bin/passwd
    /bin/sg
    /bin/su
    /etc/clock
    /usr/X386/bin/SuperProbe
    /usr/X386/bin/XF86_Mono
    /usr/X386/bin/XF86_SVGA
    /usr/X386/bin/vgaset
    /usr/X386/bin/xload
    /usr/X386/bin/xterm
    /usr/bin/elvprsv
    /usr/bin/elvrec
    /usr/bin/lpq
    /usr/bin/lpr
    /usr/bin/smail
    tiger-3.2.3/systems/Linux/1/0000755000175000017500000000000011306441032014217 5ustar  pacopacotiger-3.2.3/systems/Linux/1/check_cron0000755000175000017500000000161207502327223016253 0ustar  pacopaco#!/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 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/4/check_cron - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    if [ -f /usr/spool/cron/crontabs/$1 ]; then
      echo "YES"
    else
      echo "NO"
    fi
    tiger-3.2.3/systems/Linux/1/check0000644000175000017500000000323307502327223015230 0ustar  pacopaco#!/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 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/4/check - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    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 CAT CC GREP RM SGREP STRINGS || exit 1
      haveallfiles BASEDIR WORKDIR || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    tiger-3.2.3/systems/Linux/1/embedlist0000644000175000017500000000063207502327223016123 0ustar  pacopaco#
    #  These are files which have any embedded pathnames in them checked.
    #  It does not need to include things like /etc/inetd.conf, etc, as
    #  these will be generated during the running of the security system.
    #  They *can* be included if you want to run check_embedded without
    #  running all the other scripts.  This will not cause duplicate output.
    #
    /etc/rc
    /etc/rc?
    /etc/init.d/*
    /.profile
    /.cshrc
    /.login
    tiger-3.2.3/systems/Linux/1/config0000644000175000017500000001042207722702175015425 0ustar  pacopaco# -*- sh -*-
    #
    #     tiger - A UN*X security checking system
    #     Copyright (C) 1993 Douglas Lee Schales, David K. Hess, David R. Safford
    #
    #     Please see the file `COPYING' for the complete copyright notice.
    #
    #     Developed by Advanced Research Corporation (R)
    #
    # Linux/1/config - 04/20/99
    # Linux/2/config - 04/20/99
    # Linux/1/config - 09/14/01  Added test for ifconfig
    # Linux/2/config - 09/14/01  ditto
    # Linux/2/config - 10/09/01  Changed reserved word GROUPS to GROUPSS
    #
    #-----------------------------------------------------------------------------
    findcmd()
    {
      CMD=$1
    
      SRCH=/bin:/usr/bin:/etc:/usr/etc:/usr/ucb:/sbin:/usr/sbin:/usr/bsd:/usr/lib
      TESTEXEC="-x"
      SAVEIFS=$IFS
      IFS=:
      set $SRCH
      IFS=$SAVEIFS
      for dir
      do
        [ $TESTEXEC $dir/$CMD ] && {
          echo $dir/$CMD
    echo $dir/$CMD >> /tmp/zap
          return
        }
      done
    }      
    #
    #   UUID=`/usr/bin/id | /usr/bin/sed -e 's/uid=\([0-9][0-9]*\).*$/\1/'`
    [ "$UUID" = "" ] &&
      UNAME=`whoami`
    
    export UNAME
    
    [ "$UNAME" != "root" ] && {
      echo " " 1>&2
      echo "This script should be run from a super-user account." 1>&2
      echo " " 1>&2
      exit 1
    }
    
    CAT=`findcmd cat`
    LS=`findcmd ls`
    # -g to show group ownership
    LSGROUP="-lg"
    # -L to show file instead of symlink
    LSLINK="-L"
    RM=/bin/rm
    AWK=`findcmd awk`
    GREP=`findcmd grep`
    EGREP=`findcmd egrep`
    # Silent grep
    SGREP="$EGREP -s"
    SED=`findcmd sed`
    SORT=`findcmd sort`
    COMM=`findcmd comm`
    TAIL=`findcmd tail`
    TCPD=`findcmd tcpd`
    MV=`findcmd mv`
    TR=`findcmd tr`
    JOIN=`findcmd join`
    GROUPSS=`findcmd groups`
    FILECMD=`findcmd file`
    UNIQ=`findcmd uniq`
    BASENAME=`findcmd basename`
    CHMOD=`findcmd chmod`
    CHOWN=`findcmd chown`
    LN=`findcmd ln`
    PASTE=`findcmd paste`
    DIFF=`findcmd diff`
    MAILER=`findcmd mail`
    SENDMAILS=`findcmd sendmail`
    IFCONFIG=`findcmd ifconfig`
    # I'm not sure what a SMAIL config file looks like...
    SENDMAILCF=""
    export SENDMAILS SENDMAILCF
    #
    export CAT LS LSGROUP LSLINK RM AWK GREP EGREP SGREP SED
    export SORT COMM TAIL MV TR JOIN GROUPSS FILECMD UNIQ BASENAME
    export CHMOD CHOWN LN PASTE DIFF MAILER TCPD IFCONFIG
    #
    UNAME=`findcmd uname`
    GETHOSTNAME=`findcmd hostname`
    EXPR=`findcmd expr`
    STRINGS=`findcmd strings`
    FIND=`findcmd find`
    FINDXDEV=-xdev
    FMT=`findcmd fmt`
    GETFS=`findcmd mount`
    CC=`findcmd cc`
    PS=`findcmd ps`
    DATE=`findcmd date`
    DATECMD="$DATE +%y%m%d"
    TIMECMD="$DATE +%H:%M"
    TESTLINK=-L
    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=`findcmd ypcat`
    #
    #YP=
    #($PS -auxww | $GREP ypbind | $SGREP -v $GREP) && YP=Y
    export YP
    #
    #
    YPSERVER="NO"
    #($PS -aux | $GREP ypserv | $SGREP -v $GREP) && YPSERVER="YES"
    export WAIT YPCAT YPSERVER
    #
    MAILSPOOL=/var/spool/mail
    #
    if [ -d /usr/spool/cron/crontabs ]; then
      CRONSPOOL=/usr/spool/cron/crontabs
    elif [ -d /var/spool/cron/crontabs ]; then
      CRONSPOOL=/var/spool/cron/crontabs 
    elif [ -d /var/spool/cron ]; then
      CRONSPOOL=/var/spool/cron
    else
    CRONSPOOL=NULL
    fi
    #
    ETCSHELLS=/etc/shells
    #
    export MAILSPOOL CRONSPOOL ETCSHELLS
    #
    FS_WDIRSYS="/tmp/ /var/tmp/ /var/spool/mail/"
    export FS_WDIRSYS
    #
    SYSDEFAULTPATH="/bin:/usr/bin"
    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
    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
    EOL
    `
    tiger-3.2.3/systems/Linux/1/0.99.12/0000755000175000017500000000000011306441032015037 5ustar  pacopacotiger-3.2.3/systems/Linux/1/0.99.12/signatures0000644000175000017500000000326607502327223017165 0ustar  pacopaco#
    # Signature file for Linux 0.99.12 i486, generated Mon Oct  4 14:47:49 GMT 1993
    #
    #@DEST=Linux/0/0.99.12
    #@CONFIG=Linux/0
    #
    Y .       /bin/sh 86839708038627a0390c403d92b0f5f4 Linux 0.99.12
    # csh not found.
    # ksh not found.
    Y .       /bin/login 281101377ef9b81e0aa9de2c7749341f Linux 0.99.12
    Y .       /bin/su 526e2c8c7f4e1164554b007ec12e2ee9 Linux 0.99.12
    Y .       /bin/passwd 840eaf98cfaa3c72cb8e69332b6b07b2 Linux 0.99.12
    Y .       /etc/fingerd 7d99ef443d06c95cc363ab6862762c75 Linux 0.99.12
    Y .       /usr/etc/ftpd c8590321a1e8b2df75b49c9db7482555 Linux 0.99.12
    # in.rexecd not found.
    # rexecd not found.
    Y .       /usr/etc/rlogind da1dcec983a2e2a44f270497ff953351 Linux 0.99.12
    O sig021w /usr/etc/rshd f5116d8f94b3d11d279ac7dd1d88c803 Linux 0.99.12 (no security patch)
    Y .       /usr/etc/telnetd dea39b0c37b3c886b54b7e47eb7abdfb Linux 0.99.12
    Y .       /usr/etc/tftpd c64e6ee24b56465bbed4c673cd97997b Linux 0.99.12
    # in.uucpd not found.
    # uucpd not found.
    Y .       /usr/etc/portmap efc6ff4b9a79fbce18fbc3ec1101c56e Linux 0.99.12
    # sendmail not found.
    # sendmail.mx not found.
    # rdist not found.
    Y .       /usr/bin/rlogin 26a38db45e9b2f09a05ff14fc1b3182c Linux 0.99.12
    Y .       /usr/bin/rsh 9e032b49c4190f9059ab6a6979aafe8f Linux 0.99.12
    Y .       /usr/bin/telnet 693a512d3363b22234f67c4cfa2984df Linux 0.99.12
    Y .       /usr/etc/lpc f99ab7bdec8605802c21d7c0db4ad6e3 Linux 0.99.12
    Y .       /usr/etc/lpd ff98c0598bdbb75d96a2e3c0c6326b36 Linux 0.99.12
    Y .       /usr/bin/lpr 846676d8d13b68458e6a8e9f7c23e599 Linux 0.99.12
    Y .       /usr/bin/lprm e88164294c13f63d02a2f0995ea18b86 Linux 0.99.12
    Y .       /usr/etc/lpd ff98c0598bdbb75d96a2e3c0c6326b36 Linux 0.99.12
    # rpc.mountd not found.
    # expreserve not found.
    tiger-3.2.3/systems/Linux/1/0.99.12/config0000644000175000017500000000764007502327223016246 0ustar  pacopaco# -*- 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/4/config - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    #   UUID=`/usr/bin/id | /usr/bin/sed -e 's/uid=\([0-9][0-9]*\).*$/\1/'`
    [ "$UUID" = "" ] &&
      UNAME=`whoami`
    
    export UNAME
    
    [ "$UNAME" != "root" ] && {
      echo " " 1>&2
      echo "This script should be run from a super-user account." 1>&2
      echo " " 1>&2
    #  exit 1
    }
    
    CAT=/usr/bin/cat
    LS=/bin/ls
    # -g to show group ownership
    LSGROUP="-lg"
    # -L to show file instead of symlink
    LSLINK="-L"
    RM=/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/bin/tail
    MV=/bin/mv
    TR=/usr/bin/tr
    JOIN=/usr/bin/join
    GROUPSS=/usr/bin/groups
    FILECMD=/usr/bin/file
    UNIQ=/usr/bin/uniq
    BASENAME=/usr/bin/basename
    CHMOD=/bin/chmod
    CHOWN=/bin/chown
    LN=/bin/ln
    PASTE=/usr/bin/paste
    DIFF=/usr/bin/diff
    MAILER=/usr/bin/mail
    SENDMAILS="/usr/bin/smail"
    # I'm not sure what a SMAIL config file looks like...
    SENDMAILCF=""
    export SENDMAILS SENDMAILCF
    #
    export CAT LS LSGROUP LSLINK RM AWK GREP EGREP SGREP SED
    export SORT COMM TAIL MV TR JOIN GROUPSS FILECMD UNIQ BASENAME
    export CHMOD CHOWN LN PASTE DIFF MAILER
    #
    UNAME=/usr/bin/uname
    GETHOSTNAME=/bin/hostname
    EXPR=/usr/bin/expr
    STRINGS=/usr/bin/strings
    FIND=/usr/bin/find
    FINDXDEV=-xdev
    FMT=/usr/bin/fmt
    GETFS=/etc/mount
    CC=/usr/bin/cc
    PS=/bin/ps
    DATE=/usr/bin/date
    DATECMD="$DATE +%y%m%d"
    TIMECMD="$DATE +%H:%M"
    TESTLINK=-L
    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
    #
    YP=
    #($PS -auxww | $GREP ypbind | $SGREP -v $GREP) && YP=Y
    export YP
    #
    #
    YPSERVER="NO"
    #($PS -aux | $GREP ypserv | $SGREP -v $GREP) && YPSERVER="YES"
    export WAIT YPCAT YPSERVER
    #
    MAILSPOOL=/var/spool/mail
    #
    CRONSPOOL=/usr/spool/cron/crontabs
    #
    ETCSHELLS=/etc/shells
    #
    export MAILSPOOL CRONSPOOL ETCSHELLS
    #
    FS_WDIRSYS="/tmp/ /var/tmp/ /var/spool/mail/"
    export FS_WDIRSYS
    #
    SYSDEFAULTPATH="/bin:/usr/bin"
    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
    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
    EOL
    `
    tiger-3.2.3/systems/Linux/1/facl.strict0000644000175000017500000001251107502327223016366 0ustar  pacopaco#
    #     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/4/file_access_list - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    #                           owner group s g r w x   r w x   r w xLVL MessageIDs
    #------------------------------------------------------------------------------
    /                           root  .     . . 1 . 1   1 0 1   1 0 1 W 018 018 018
    /etc                        root  .     . . 1 . 1   1 0 1   1 0 1 W 019 019 019
    /bin                        root  .     . . 1 . 1   1 0 1   1 0 1 W 001 002 003
    /usr                        root  .     . . 1 . 1   1 0 1   1 0 1 W 001 002 003
    /usr/bin                    root  .     . . 1 . 1   1 0 1   1 0 1 A 001 002 003
    /usr/lib                    root  .     . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /usr/*                      .     .     . . . . .   . 0 .   . 0 . . 001 002 003
    /var                        root  .     . . . . .   1 0 1   1 0 1 . 001 002 003
    /var/spool		    root  .     . . . . .   1 0 1   1 0 1 . 001 002 003
    #
    /dev                        root  .     . . . . .   1 0 1   1 0 1 . 001 002 003
    /dev/tty		    root  .     0 0 1 1 0   1 1 0   1 1 0 . 001 002 003
    /dev/null		    root  .     0 0 1 1 0   1 1 0   1 1 0 . 001 002 003
    /dev/zero		    root  .     0 0 1 1 0   1 1 0   1 1 0 . 001 002 003
    /dev/mem		    root  kmem  0 0 1 1 0   1 0 0   0 0 0 . 001 002 003
    /dev/kmem		    root  kmem  0 0 1 1 0   1 0 0   0 0 0 . 001 002 003
    /dev/console		    .     .     0 0 1 1 0   0 . .   0 . . . 001 002 003
    #
    /vmlinuz                    root  .     0 0 1 . 1   1 0 0   1 0 0 . 001 002 003
    /.cshrc                     root  .     0 0 1 . .   0 0 0   0 0 0 W 006 006 006
    /.login                     root  .     0 0 1 . .   0 0 0   0 0 0 W 006 006 006
    /.profile                   root  .     0 0 1 . .   0 0 0   0 0 0 W 006 006 006
    /.forward                   root  .     . . 1 . .   0 0 0   0 0 0 W 006 006 006
    /.rhosts                    root  .     . . 1 . 0   0 0 0   0 0 0 W 006 006 006
    #
    /usr/lib/aliases                root  .     . . 1 . 0   0 0 0   0 0 0 F 007 007 007
    /usr/lib/aliases.dir            root  .     . . 1 . 0   0 0 0   0 0 0 F 007 007 007
    /usr/lib/aliases.pag            root  .     . . 1 . 0   0 0 0   0 0 0 F 007 007 007
    /etc/exports                root  .     . . 1 . 0   0 0 0   0 0 0 W 008 008 008
    /etc/fstab                  root  .     . . 1 . 0   0 0 0   0 0 0 W 001 002 003
    /etc/group                  root  .     . . 1 . 0   1 0 0   1 0 0 F 009 009 009
    /etc/hosts                  root  .     . . 1 . 0   1 0 0   1 0 0 F 001 002 003
    /etc/hosts.allow            root  .     . . 1 . 0   . 0 0   . 0 0 W 010 010 010
    /etc/hosts.deny		    root  .     . . 1 . 0   . 0 0   . 0 0 W 010 010 010
    /etc/hosts.equiv            root  .     . . 1 . 0   0 0 0   0 0 0 W 011 011 011
    /etc/hosts.lpd              root  .     . . 1 . 0   0 0 0   0 0 0 W 011 011 011
    /etc/inetd.conf             root  .     . . 1 . 0   0 0 0   0 0 0 W 012 012 012
    /etc/motd                   root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/mtab                   root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/netgroup               root  .     . . 1 . 0   0 0 0   0 0 0 F 013 013 013
    /etc/passwd                 root  .     . . 1 . 0   1 0 0   1 0 0 A 014 014 014
    /etc/printcap               root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/rc                     root  .     0 0 1 . 0   0 0 0   0 0 0 F 015 015 015
    /etc/remote                 root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/resolv.conf            root  .     . . 1 . 0   1 0 0   1 0 0 W 016 016 016
    /etc/rpc                    root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /usr/lib/sendmail.cf            root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/services               root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/syslog.conf            root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/syslog.pid             root  .     . . 1 . 0   0 0 0   0 0 0 W 001 002 003
    /etc/utmp                   root  .     . . 1 . 0   1 0 0   1 0 0 W 017 017 017
    /etc/*                      root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    #
    /bin/write              root  tty   0 1 . . 1   . 0 .   . 0 . . 001 002 003
    /bin/wall               root  tty   0 1 . . 1   . 0 .   . 0 . . 001 002 003
    #
    /bin/login              root  .     1 0 1 . 1   1 0 1   1 0 1 F 001 002 003
    /bin/su                 root  .     1 0 1 . 1   . 0 .   . 0 . F 001 002 003
    /bin/passwd             root  .     1 0 1 . 1   . 0 .   . 0 . F 001 002 003
    /bin/sh                 root  .     0 0 1 . 1   1 0 1   1 0 1 W 001 002 003
    /usr/bin/*                  root  .     . . 1 . 1   . 0 .   . 0 . . 001 002 003
    /bin/*                  root  .     . . 1 . 1   . 0 .   . 0 . . 001 002 003
    
    
    tiger-3.2.3/systems/Linux/1/file_access_list0000644000175000017500000001251107502327223017445 0ustar  pacopaco#
    #     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/4/file_access_list - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    #                           owner group s g r w x   r w x   r w xLVL MessageIDs
    #------------------------------------------------------------------------------
    /                           root  .     . . 1 . 1   1 0 1   1 0 1 W 018 018 018
    /etc                        root  .     . . 1 . 1   1 0 1   1 0 1 W 019 019 019
    /bin                        root  .     . . 1 . 1   1 0 1   1 0 1 W 001 002 003
    /usr                        root  .     . . 1 . 1   1 0 1   1 0 1 W 001 002 003
    /usr/bin                    root  .     . . 1 . 1   1 0 1   1 0 1 A 001 002 003
    /usr/lib                    root  .     . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /usr/*                      .     .     . . . . .   . 0 .   . 0 . . 001 002 003
    /var                        root  .     . . . . .   1 0 1   1 0 1 . 001 002 003
    /var/spool		    root  .     . . . . .   1 0 1   1 0 1 . 001 002 003
    #
    /dev                        root  .     . . . . .   1 0 1   1 0 1 . 001 002 003
    /dev/tty		    root  .     0 0 1 1 0   1 1 0   1 1 0 . 001 002 003
    /dev/null		    root  .     0 0 1 1 0   1 1 0   1 1 0 . 001 002 003
    /dev/zero		    root  .     0 0 1 1 0   1 1 0   1 1 0 . 001 002 003
    /dev/mem		    root  kmem  0 0 1 1 0   1 0 0   0 0 0 . 001 002 003
    /dev/kmem		    root  kmem  0 0 1 1 0   1 0 0   0 0 0 . 001 002 003
    /dev/console		    .     .     0 0 1 1 0   0 . .   0 . . . 001 002 003
    #
    /vmlinuz                    root  .     0 0 1 . 1   1 0 0   1 0 0 . 001 002 003
    /.cshrc                     root  .     0 0 1 . .   0 0 0   0 0 0 W 006 006 006
    /.login                     root  .     0 0 1 . .   0 0 0   0 0 0 W 006 006 006
    /.profile                   root  .     0 0 1 . .   0 0 0   0 0 0 W 006 006 006
    /.forward                   root  .     . . 1 . .   0 0 0   0 0 0 W 006 006 006
    /.rhosts                    root  .     . . 1 . 0   0 0 0   0 0 0 W 006 006 006
    #
    /usr/lib/aliases                root  .     . . 1 . 0   0 0 0   0 0 0 F 007 007 007
    /usr/lib/aliases.dir            root  .     . . 1 . 0   0 0 0   0 0 0 F 007 007 007
    /usr/lib/aliases.pag            root  .     . . 1 . 0   0 0 0   0 0 0 F 007 007 007
    /etc/exports                root  .     . . 1 . 0   0 0 0   0 0 0 W 008 008 008
    /etc/fstab                  root  .     . . 1 . 0   0 0 0   0 0 0 W 001 002 003
    /etc/group                  root  .     . . 1 . 0   1 0 0   1 0 0 F 009 009 009
    /etc/hosts                  root  .     . . 1 . 0   1 0 0   1 0 0 F 001 002 003
    /etc/hosts.allow            root  .     . . 1 . 0   . 0 0   . 0 0 W 010 010 010
    /etc/hosts.deny		    root  .     . . 1 . 0   . 0 0   . 0 0 W 010 010 010
    /etc/hosts.equiv            root  .     . . 1 . 0   0 0 0   0 0 0 W 011 011 011
    /etc/hosts.lpd              root  .     . . 1 . 0   0 0 0   0 0 0 W 011 011 011
    /etc/inetd.conf             root  .     . . 1 . 0   0 0 0   0 0 0 W 012 012 012
    /etc/motd                   root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/mtab                   root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/netgroup               root  .     . . 1 . 0   0 0 0   0 0 0 F 013 013 013
    /etc/passwd                 root  .     . . 1 . 0   1 0 0   1 0 0 A 014 014 014
    /etc/printcap               root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/rc                     root  .     0 0 1 . 1   0 0 0   0 0 0 F 015 015 015
    /etc/remote                 root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/resolv.conf            root  .     . . 1 . 0   1 0 0   1 0 0 W 016 016 016
    /etc/rpc                    root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /usr/lib/sendmail.cf            root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/services               root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/syslog.conf            root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/syslog.pid             root  .     . . 1 . 0   0 0 0   0 0 0 W 001 002 003
    /etc/utmp                   root  .     . . 1 . 0   1 0 0   1 0 0 W 017 017 017
    /etc/*                      root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    #
    /bin/write              root  tty   0 1 . . 1   . 0 .   . 0 . . 001 002 003
    /bin/wall               root  tty   0 1 . . 1   . 0 .   . 0 . . 001 002 003
    #
    /bin/login              root  .     1 0 1 . 1   1 0 1   1 0 1 F 001 002 003
    /bin/su                 root  .     1 0 1 . 1   . 0 .   . 0 . F 001 002 003
    /bin/passwd             root  .     1 0 1 . 1   . 0 .   . 0 . F 001 002 003
    /bin/sh                 root  .     0 0 1 . 1   1 0 1   1 0 1 W 001 002 003
    /usr/bin/*                  root  .     . . 1 . 1   . 0 .   . 0 . . 001 002 003
    /bin/*                  root  .     . . 1 . 1   . 0 .   . 0 . . 001 002 003
    
    
    tiger-3.2.3/systems/Linux/1/gen_alias_sets0000755000175000017500000000177407502327223017146 0ustar  pacopaco#!/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 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/4/gen_alias_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    [ -f /usr/lib/aliases ] && {
      $GREP -v '^#' /usr/lib/aliases |
      $SORT > $WORKDIR/etc_aliases.$$
      echo "/usr/lib/aliases" > $WORKDIR/etc_aliases.$$.src
      echo $WORKDIR/etc_aliases.$$
    }
    tiger-3.2.3/systems/Linux/1/gen_bootparam_sets0000755000175000017500000000250607756435011020041 0ustar  pacopaco#!/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 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/4/gen_bootparam_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    [ -r /etc/bootparams ] && {
      $SED -e 's/#.*$//' /etc/bootparams |
      $SED -e '/^[ \t]*$/d' |
      $AWK '
           BEGIN {LINE="";}
           /\\\\$/ {LINE=LINE " " substr($0, 1, length($0)-1);}
           !/\\\\$/ {print LINE $0; LINE="";}
      ' > $WORKDIR/etc_bootparams.$$
      echo "/etc/bootparams" > $WORKDIR/etc_bootparams.$$.src
      echo "$WORKDIR/etc_bootparams.$$"
    }
    
    [ -n "$YPCAT" ] && {
      $YPCAT bootparams > $WORKDIR/nis_bootparams.$$
      echo "NIS" > $WORKDIR/nis_bootparams.$$.src
      echo "$WORKDIR/nis_bootparams.$$"
    }
    tiger-3.2.3/systems/Linux/1/gen_cron0000755000175000017500000000265107502327223015753 0ustar  pacopaco#!/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 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/gen_cron - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    outfile=$1
    > $outfile
    
    (
      cd $CRONSPOOL
      $LS -l $LSGROUP *
    ) |
    while read x y owner a b c d e file
    do
      [ "$owner" != "root" ] && {
        echo "--WARN-- CRON file \`$file' is owned by $owner."
      }
      case $file in
        *[!a-zA-Z0-9]*)
          echo "--WARN-- 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
    	echo "--WARN-- Found cron file for unknown user $file."
          fi
          ;;
        esac
    done
      
    tiger-3.2.3/systems/Linux/1/gen_export_sets0000755000175000017500000000175007502327223017370 0ustar  pacopaco#!/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 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/4/gen_export_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    [ -r /etc/exports ] && {
      $GREP -v '^#' /etc/exports > $WORKDIR/etc_exports.$$
      echo "/etc/exports" > $WORKDIR/etc_exports.$$.src
      echo $WORKDIR/etc_exports.$$
    }
    tiger-3.2.3/systems/Linux/1/gen_group_sets0000755000175000017500000000273007756435011017210 0ustar  pacopaco#!/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 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/4/gen_group_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    $GREP -v '^[-+]' /etc/group |
    $SORT > $WORKDIR/etc_group.$$
    echo "/etc/group" > $WORKDIR/etc_group.$$.src
    echo $WORKDIR/etc_group.$$
    
    [ -n "$YPCAT" ] && {
      $YPCAT group |
      $SORT |
      $AWK '{print substr($0, 1, 255);}' |
      $COMM -23 - $WORKDIR/etc_group.$$ > $WORKDIR/nis_group.$$
      echo "NIS" > $WORKDIR/nis_group.$$.src
      echo $WORKDIR/nis_group.$$
    }
    
    [ "$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.3/systems/Linux/1/gen_inetd0000755000175000017500000000171107502327223016111 0ustar  pacopaco#!/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 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/4/gen_inetd - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    $GREP -v '^#' /etc/inetd.conf |
    $SORT > $WORKDIR/etc_inetd.$$
    echo "/etc/inetd.conf" > $WORKDIR/etc_inetd.$$.src
    echo $WORKDIR/etc_inetd.$$
    tiger-3.2.3/systems/Linux/1/gen_mounts0000755000175000017500000000332107502327223016332 0ustar  pacopaco#!/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 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/4/gen_mounts - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    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" = "ext2" ] && LOCAL=0
      [ "$1" = "minix" ] && LOCAL=0
      [ "$1" = "xiafs" ] && LOCAL=0
      [ "$1" = "ext" ] && LOCAL=0
      [ "$1" = "msdos" ] && LOCAL=1
    
      return $LOCAL
    }
    
    /etc/mount |
    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=`/usr/bin/basename $fs`
        rfs="$dir/r$file"
        echo "$mtpoint $fstype $fs"
      }
    done
    
    tiger-3.2.3/systems/Linux/1/gen_passwd_sets0000755000175000017500000000331407502327223017346 0ustar  pacopaco#!/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 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/gen_passwd_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    local=0
    for parm
    do
      case "$parm" in
        -p) passwordflag=Y;;
        -l) local=1;;
        *)	outfile="$parm";;
      esac
    done
    
    zappasswd()
    {
      IFS=:
      while read user passwd rest
      do
        case $passwd in
          [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="xxxxxxxxxxxxx"
    	   ;;
          " ") passwd=""
    	   ;;
    	*)
    	     passwd="*"
    	   ;;
        esac
        echo "$user:$passwd:$rest" 
      done
    }
    
    $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.$$ |
    {
      if [ "$passwordflag" = 'Y' ]; then
        $CAT
      else
        zappasswd
      fi
    } > $WORKDIR/etc_passwd.$$
    	   
    [ -s $WORKDIR/etc_passwd.$$ ] && {
      echo "/etc/passwd" > $WORKDIR/etc_passwd.$$.src
      echo $WORKDIR/etc_passwd.$$ >> $outfile
    }
    $RM -f $WORKDIR/p.$$
    tiger-3.2.3/systems/Linux/1/gen_services0000755000175000017500000000172207502327223016633 0ustar  pacopaco#!/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 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/4/gen_services - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    $GREP -v '^#' /etc/services |
    $SORT > $WORKDIR/etc_services.$$
    echo "/etc/services" > $WORKDIR/etc_services.$$.src
    echo $WORKDIR/etc_services.$$
    
    tiger-3.2.3/systems/Linux/1/gendlclients0000644000175000017500000000150007502327223016621 0ustar  pacopaco#!/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 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/4/gendlclients - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    tiger-3.2.3/systems/Linux/1/getdisks0000644000175000017500000000156607502327223015777 0ustar  pacopaco#!/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 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.
    #
    # getdisks - 06/24/93
    #
    #-----------------------------------------------------------------------------
    #
    
    $GET_MOUNTS local |
    $AWK '{printf("%s ",$1)}
    END {printf("\n")}' 
    tiger-3.2.3/systems/Linux/1/inetd0000644000175000017500000000224307502327223015256 0ustar  pacopacobootps	dgram	udp	wait	root	/usr/etc/bootpd
    chargen	dgram	udp	wait	root	internal
    chargen	stream	tcp	nowait	root	internal
    daytime	dgram	udp	wait	root	internal
    daytime	stream	tcp	nowait	root	internal
    discard	dgram	udp	wait	root	internal
    discard	stream	tcp	nowait	root	internal
    echo	dgram	udp	wait	root	internal
    echo	stream	tcp	nowait	root	internal
    exec	stream	tcp	nowait	root	/usr/etc/rexecd
    finger	stream	tcp	nowait	root	/usr/etc/fingerd
    ftp	stream	tcp	nowait	root	/usr/etc/ftpd	ftpd
    login	stream	tcp	nowait	root	/usr/etc/rlogind
    netstat	stream	tcp	nowait	guest	/bin/netstat	-f inet
    nntp	stream	tcp	nowait	root	/usr/etc/nntpd
    ntalk	dgram	udp	wait	root	/usr/etc/ntalkd
    pop-2	stream	tcp	nowait	root	/usr/etc/popd
    pop-3	stream	tcp	nowait	root	/usr/etc/popd
    shell	stream	tcp	nowait	root	/usr/etc/rshd
    smtp	stream  tcp     nowait  root    /usr/lib/umail/umail	-bS
    systat	stream	tcp	nowait	guest	/usr/bin/ps	-auwwx
    talk	dgram	udp	wait	root	/usr/etc/ntalkd
    telnet	stream  tcp     nowait  root    /usr/etc/telnetd telnetd
    tftp	dgram	udp	wait	root	/usr/etc/tftpd
    time	dgram	udp	wait	root	/usr/etc/timed
    time	stream	tcp	nowait	root	/usr/etc/timed
    uucp	stream	tcp	nowait	uucp	/usr/lib/uucp/uucico	-l
    tiger-3.2.3/systems/Linux/1/inetd.save0000644000175000017500000000263707502327223016222 0ustar  pacopacoecho	stream	tcp	nowait	root	internal
    echo	dgram	udp	wait	root	internal
    discard	stream	tcp	nowait	root	internal
    discard	dgram	udp	wait	root	internal
    daytime	stream	tcp	nowait	root	internal
    daytime	dgram	udp	wait	root	internal
    chargen	stream	tcp	nowait	root	internal
    chargen	dgram	udp	wait	root	internal
    ftp	stream	tcp	nowait	root	/usr/etc/tcpd	/usr/etc/ftpd	ftpd
    telnet	stream  tcp     nowait  root    /usr/etc/telnetd telnetd
    smtp	stream  tcp     nowait  root    /usr/etc/tcpd	/usr/lib/umail/umail	-bS
    nntp	stream	tcp	nowait	root	/usr/etc/tcpd	/usr/etc/nntpd
    shell	stream	tcp	nowait	root	/usr/etc/tcpd	/usr/etc/rshd
    login	stream	tcp	nowait	root	/usr/etc/tcpd	/usr/etc/rlogind
    exec	stream	tcp	nowait	root	/usr/etc/tcpd	/usr/etc/rexecd
    talk	dgram	udp	wait	root	/usr/etc/tcpd	/usr/etc/ntalkd
    ntalk	dgram	udp	wait	root	/usr/etc/tcpd	/usr/etc/ntalkd
    pop-2	stream	tcp	nowait	root	/usr/etc/tcpd	/usr/etc/popd
    pop-3	stream	tcp	nowait	root	/usr/etc/tcpd	/usr/etc/popd
    uucp	stream	tcp	nowait	uucp	/usr/etc/tcpd	/usr/lib/uucp/uucico	-l
    tftp	dgram	udp	wait	root	/usr/etc/tcpd	/usr/etc/tftpd
    bootps	dgram	udp	wait	root	/usr/etc/tcpd	/usr/etc/bootpd
    finger	stream	tcp	nowait	root	/usr/etc/tcpd	/usr/etc/fingerd
    systat	stream	tcp	nowait	guest	/usr/etc/tcpd	/usr/bin/ps	-auwwx
    netstat	stream	tcp	nowait	guest	/usr/etc/tcpd	/bin/netstat	-f inet
    time	stream	tcp	nowait	root	/usr/etc/tcpd	/usr/etc/timed
    time	dgram	udp	wait	root	/usr/etc/tcpd	/usr/etc/timed
    tiger-3.2.3/systems/Linux/1/rel_file_exp_list0000644000175000017500000000000107502327223017631 0ustar  pacopaco
    tiger-3.2.3/systems/Linux/1/services0000644000175000017500000000241007502327223015772 0ustar  pacopacoNeWS 144/tcp
    auth 113/tcp
    biff 512/udp
    bootpc 68/udp
    bootps 67/udp
    bwnfs 650/udp
    chargen 19/tcp
    chargen 19/udp
    conference 531/tcp
    courier 530/tcp
    csnet-ns 105/tcp
    daytime 13/tcp
    daytime 13/udp
    discard 9/tcp
    discard 9/udp
    domain 53/tcp
    domain 53/udp
    dos 7000/tcp
    echo 7/tcp
    echo 7/udp
    efs 520/tcp
    exec 512/tcp
    finger 79/tcp
    ftp 21/tcp
    ftp-data 20/tcp
    hostnames 101/tcp
    ingreslock 1524/tcp
    irc 6667/tcp
    iso-tsap 102/tcp
    link 87/tcp
    listen 1025/tcp
    login 513/tcp
    monitor 561/udp
    mount 635/udp
    mtp 57/tcp
    name 42/udp
    netbios-dgm 138/tcp
    netbios-dgm 138/udp
    netbios-ns 137/tcp
    netbios-ns 137/udp
    netbios-ssn 139/tcp
    netnews 532/tcp
    netstat 15/tcp
    netwall 533/udp
    new-rwho 550/udp
    nfs 2049/udp
    nntp 119/tcp
    ntalk 518/udp
    nterm 1026/tcp
    ntp 123/tcp
    ntp 123/udp
    pcnfs 640/udp
    pcserver 600/tcp
    pop-2 109/tcp
    pop-3 110/tcp
    printer 515/tcp
    qotd 17/tcp
    remotefs 556/tcp
    rje 77/tcp
    rlp 39/udp
    rmonitor 560/udp
    route 520/udp
    sftp 115/tcp
    shell 514/tcp
    smtp 25/tcp
    snmp 161/udp
    snmp-trap 162/udp
    sunrpc 111/tcp
    sunrpc 111/tcp
    sunrpc 111/udp
    sunrpc 111/udp
    supdup 95/tcp
    syslog 514/udp
    systat 11/tcp
    talk 517/udp
    tcpmux 1/tcp
    telnet 23/tcp
    tempo 526/tcp
    tftp 69/udp
    time 37/tcp
    time 37/udp
    timed 525/udp
    tnet 1600/tcp
    uucp 540/tcp
    uucp-path 117/tcp
    who 513/udp
    whois 43/tcp
    x400 103/tcp
    x400-snd 104/tcp
    tiger-3.2.3/systems/Linux/1/services.save0000644000175000017500000000267007502327223016737 0ustar  pacopacoNeWS		144/tcp
    auth		113/tcp
    biff		512/udp
    bootpc		68/udp
    bootps		67/udp
    bwnfs		650/udp
    chargen		19/tcp
    chargen		19/udp
    conference      531/tcp
    courier		530/tcp
    csnet-ns	105/tcp
    daytime		13/tcp
    daytime		13/udp
    discard		9/tcp
    discard		9/udp
    domain		53/tcp
    domain		53/udp
    dos		7000/tcp
    echo		7/tcp
    echo		7/udp
    efs             520/tcp
    exec		512/tcp
    finger		79/tcp
    ftp		21/tcp
    ftp-data	20/tcp
    hostnames	101/tcp
    ingreslock      1524/tcp
    irc		6667/tcp
    iso-tsap	102/tcp
    link		87/tcp
    listen		1025/tcp
    login		513/tcp 
    monitor		561/udp
    mount		635/udp
    mtp             57/tcp
    name		42/udp
    netbios-dgm     138/tcp
    netbios-dgm     138/udp
    netbios-ns      137/tcp
    netbios-ns      137/udp
    netbios-ssn     139/tcp
    netnews         532/tcp
    netstat		15/tcp
    netwall         533/udp
    new-rwho	550/udp
    nfs		2049/udp
    nntp            119/tcp
    ntalk		518/udp
    nterm		1026/tcp
    ntp		123/tcp
    ntp		123/udp
    pcnfs		640/udp
    pcserver	600/tcp
    pop-2		109/tcp
    pop-3		110/tcp
    printer		515/tcp
    qotd		17/tcp
    remotefs        556/tcp
    rje		77/tcp
    rlp		39/udp
    rmonitor	560/udp
    route		520/udp
    sftp		115/tcp
    shell		514/tcp
    smtp		25/tcp
    snmp		161/udp
    snmp-trap	162/udp
    sunrpc		111/tcp
    sunrpc		111/tcp
    sunrpc		111/udp
    sunrpc		111/udp
    supdup		95/tcp
    syslog		514/udp
    systat		11/tcp
    talk		517/udp
    tcpmux		1/tcp
    telnet		23/tcp
    tempo           526/tcp
    tftp		69/udp
    time		37/tcp
    time		37/udp
    timed		525/udp
    tnet            1600/tcp
    uucp		540/tcp
    uucp-path	117/tcp
    who		513/udp
    whois		43/tcp
    x400		103/tcp
    x400-snd	104/tcp
    tiger-3.2.3/systems/Linux/1/suid_list0000644000175000017500000000045707502327223016157 0ustar  pacopaco/bin/chfn
    /bin/chsh
    /bin/gpasswd
    /bin/login
    /bin/newgrp
    /bin/passwd
    /bin/sg
    /bin/su
    /etc/clock
    /usr/X386/bin/SuperProbe
    /usr/X386/bin/XF86_Mono
    /usr/X386/bin/XF86_SVGA
    /usr/X386/bin/vgaset
    /usr/X386/bin/xload
    /usr/X386/bin/xterm
    /usr/bin/elvprsv
    /usr/bin/elvrec
    /usr/bin/lpq
    /usr/bin/lpr
    /usr/bin/smail
    tiger-3.2.3/systems/Linux/getuserhome0000755000175000017500000000030007502327223016335 0ustar  pacopaco#!/bin/sh
    
    #
    # cd to / in case we are down in a directory we don't have read
    # access to.  /bin/csh will barf if that is the case.
    #
    cd /
    
    user="$1"
    
    /bin/bash -c "echo ~$user" 2> /dev/null
    
    
    tiger-3.2.3/systems/Linux/2/0000755000175000017500000000000011306441043014222 5ustar  pacopacotiger-3.2.3/systems/Linux/2/check_cron0000755000175000017500000000164507650720225016265 0ustar  pacopaco#!/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/4/check_cron - 06/14/93
    # Linux/2/check_cron - 08/12/2002
    #
    #-----------------------------------------------------------------------------
    #
    if [ -f "/var/spool/cron/$1" ]; then
      echo "YES"
    else
      echo "NO"
    fi
    tiger-3.2.3/systems/Linux/2/check0000755000175000017500000001065307743243726015254 0ustar  pacopaco#!/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.
    #
    # Linux/2/check - 08/12/2002
    # 
    # 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
    #       (that file should be user-only)
    # Linux/2/check - 05/09/2003 - jfs
    # 	Removed ambiguous redirect
    #       Fixed SCRIPTDIR to SYSTEMDIR
    # Linux/2/check - 06/26/2003 - jfs
    #       Commented out the first call to CHECK_PATCH since it is done
    #       only if running on Debian GNU/Linux
    # Linux/2/check - 08/28/2003 - jfs
    #       Removed Debian specific checks from header since they are
    #       already called for below
    #-----------------------------------------------------------------------------
    # TODO:
    #
    # - Checks should also be done based on Debian distribution
    #
    #-----------------------------------------------------------------------------
    #
    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 CAT GREP RM SGREP STRINGS || exit 1
      haveallfiles BASEDIR WORKDIR || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    
    haveallcmds CAT GREP RM SGREP STRINGS || exit 1
    haveallfiles BASEDIR WORKDIR || exit 1
    
    SYSTEMDIR=$BASEDIR/systems/Linux/2
    #
    # The following scripts have been added to provide new checks 
    # for any Linux system, written by Paul Telford and
    # Javier Fernandez-Sanguino
    # 
    # Note: cannot echo TIMECMD since we lose the handle to the tmplog
    
    
    [ "$Tiger_Check_SINGLE" != 'N' ] && {
    #  echo "`$TIMECMD`> Checking for single user mode password..."
      $SYSTEMDIR/check_single 
    }
    
    [ "$Tiger_Check_BOOT" != 'N' ] && {
    #  echo "`$TIMECMD`> Checking boot loader file permissions..."
      $SYSTEMDIR/check_lilo 
    }
    
    [ "$Tiger_Check_INITTAB" != 'N' ] && {
    #  echo "`$TIMECMD`> Checking inittab definitions..."
      $SYSTEMDIR/check_inittab
    }
    
    [ "$Tiger_Check_RCUMASK" != 'N' ] && {
    #  echo "`$TIMECMD`> Checking umask definitions..."
      $SYSTEMDIR/check_rcumask
    }
    
    [ "$Tiger_Check_NEVERLOG" != 'N' ] && {
    #  echo "`$TIMECMD`> Checking for users which have not logged in..."
      $SYSTEMDIR/check_neverlogin
    }
    
    [ "$Tiger_Check_NETWORKCONFIG" != 'N' ] && {
    # echo "`$TIMECMD`> Checking for values of the network configuration."
      $SYSTEMDIR/check_network_config
    }
    
    [ "$Tiger_Check_PASSWD" != 'N' -a "$Tiger_Check_PASSWD_SHADOW" != 'N' ] && {
      $SYSTEMDIR/check_passwdspec
    }
    
    # The following scripts have been added to provide new checks 
    # specific to the Debian system, written by Javier Fernandez-Sanguino
    #
    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_Check_OS" != 'N' ] && {
    #  echo "`$TIMECMD`> Checking for correct OS version..."
      $SYSTEMDIR/check_release 
    }
    
    [ "$Tiger_Check_PATCH" != 'N' ] && {
    #  echo "`$TIMECMD`> Checking for up-to-date patches..."
      $SYSTEMDIR/check_patches
    }
    
    # No tigerrc variables defined for these, but they are only 
    # Debian specific
    $SYSTEMDIR/deb_checkadvisories 
    $SYSTEMDIR/deb_checkmd5sums 
    $SYSTEMDIR/deb_nopackfiles 
    # End of Debian-specific checks
    
    fi 
    tiger-3.2.3/systems/Linux/2/check_inittab0000755000175000017500000000505607744525322016763 0ustar  pacopaco#!/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.
    #
    # check_ctrlaltdel: looks for 'ctraltdel' line in /etc/inittab which would
    # 		indicate that users can reboot the system
    # 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 .
    #
    #-----------------------------------------------------------------------------
    #
    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 GREP || exit 1
      haveallfiles BASEDIR WORKDIR || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    #------------------------------------------------------------------------
    
    echo
    echo "# Checking for vulnerabilities in inittab configuration..."
    haveallcmds AWK GREP || exit 1
    haveallfiles BASEDIR WORKDIR || exit 1
    
    if [ -r /etc/inittab ] ; then
    	$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 in runlevels $runlevels"
    	fi
    	done
    fi
    tiger-3.2.3/systems/Linux/2/check_lilo0000755000175000017500000001077410664614365016274 0ustar  pacopaco#!/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.
    #
    # check_lilo:  checks permissions on boot loader config files
    #		grub.conf and lilo.conf
    # 10.26.2001
    # Paul Telford 
    # 04.25.2002  Javier Fernandez-Sanguino 
    # Expanded to check also if there are passwords in the boot loader
    # 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)
    # 06/22/2007 jfs   Run if on amd64 (Debian bug #412669)
    #
    #-----------------------------------------------------------------------------
    #
    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 GREP RM UNAME EGREP || exit 1
      haveallfiles BASEDIR WORKDIR || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    #------------------------------------------------------------------------
    haveallcmds GREP RM UNAME EGREP || exit 1
    haveallfiles BASEDIR WORKDIR || exit 1
    
    machine=`$UNAME -m`
    # Only applies to the x86 or amd64 architectures:
    [ -z "`echo $machine | $EGREP 'i.86$|^x86_64$'`" ] && exit 0
    
    echo
    echo "# Checking boot loader file permissions..."
    found="N"
    
    file=/etc/lilo.conf
    if [ -r $file ]
    then
    
    	found="Y"
    	getpermit $file |
    	   while read filename rowner rgroup rur ruw rux rgr rgw rgx ror row rox rsuid rsgid rstk
    	do
    
    	if [ $rgr -eq 1 -o $rgw -eq 1 -o $rgx -eq 1 ]
    	then
                    message WARN boot01 "" "The configuration file lilo.conf has group permissions"
    	fi
    	if [ $ror -eq 1 -o $row -eq 1 -o $rox -eq 1 ]
    	then
                    message FAIL boot01 "" "The configuration file lilo.conf has other permissions"
            fi
    
    	done
    
    	# Lilo password checks
    	if [ -n "`$GREP ^restricted $file`" ] ; then
                if [ -z "`$GREP ^password $file`" ] ; then
                    message WARN boot05 "" "The bootloader is restricted but does not seem to have a password configured."
    	    fi 
    	else
                    message WARN boot04 "" "The bootloader lilo is not configured with a password"
    	fi
    
    fi
    
    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"
    	getpermit $file |
    	   while read filename rowner rgroup rur ruw rux rgr rgw rgx ror row rox rsuid rsgid rstk
    	do
    
    	if [ $rgr -eq 1 -o $rgw -eq 1 -o $rgx -eq 1 ]
    	then
                    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 $file has world permissions.  Should be 0600"
            fi
    
    	done
    	# GRUB password checks
            if [ -z "`$GREP ^password $file`" ] ; then
                    message WARN boot06 "" "The Grub bootloader does not have a password configured."
    	fi 
    fi
    
    [ "$found" != 'Y' ] && {
    	message WARN boot03w "" "Could not access LILO's or Grub's configuration file"
    }
    
    exit 0
    tiger-3.2.3/systems/Linux/2/check_listeningprocs0000755000175000017500000001330010664614406020360 0ustar  pacopaco#!/bin/sh
    #
    #     tiger - A UN*X security checking system
    #     Copyright (C) 2000, 2001 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 - 08/23/2001
    #
    # 07/05/2006 jfs  Try not to botch when udp6 services are being read
    #                 (Debian Bug #375165)
    # 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
    #   the same block to generated the report.
    #   Reordered changelog.
    # 04/23/2003 - jfs - Changed TigerInstallDir to '.'
    # 10/16/2002 - jfs - Changed the case statement into an eval in order
    #   to properly work for more than two processes or users
    #   (i.e. with "process1|process2")
    #         
    #
    # TODO:
    # - this script seems to have problems if a program opens an UDP socket
    #   expecting a reply from a remote host. This might lead to sockets reported
    #   as open spuriously (see Debian Bug#136991). Should this be fixed?
    #   (the socket is in fact open and could be accessed remotely)
    #
    #-----------------------------------------------------------------------------
    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 CUT GREP || exit 1
    # Just netstat is needed to run this program, lsof is an addon
      haveallcmds LSOF || haveallcmds NETSTAT || exit 1
      haveallfiles BASEDIR WORKDIR || exit 1
      haveallvars TESTLINK HOSTNAME
      
      message CONFIG init003c "" "$0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    echo
    echo "# Checking listening processes "
    
    haveallcmds GREP CUT AWK SORT UNIQ || exit 1
    haveallcmds LSOF || haveallcmds NETSTAT || exit 1
    
    okprocessusers=${Tiger_Listening_ValidUsers-"root"}
    okprocess=${Tiger_Listening_ValidProcs-""}
    export okprocess okprocessusers
    
    [ ! -x "$LSOF" ] && message INFO lin004i "" "Using $NETSTAT instead of lsof, information regarding processes will be more limited"
    
    if [ -x "$LSOF" ] 
    then
    	$AWK '
    	BEGIN {
    		cmd = "$LSOF -FpPcnLt -nPi"
    
    		while ((cmd | getline field) > 0){
    			fieldtype = substr(field,1,1)
    			sub("^.","",field)
    			if      ("p" == fieldtype) {
    			}
    			else if ("c" == fieldtype) {
    				command = field
    			}
    			else if ("L" == fieldtype) {
    				user = field
    			}
    			else if ("t" == fieldtype) {
    				type = field
    			}
    			else if ("P" == fieldtype) {
    				proto = field
    			}
    			else if ("n" == fieldtype) {
    				addr = field
    				if (( type == "IPv4" ) && ( addr !~ "->" )) {
    					printf ("%s %s %s %s\n", user, proto, addr, command)
    				}
    			}
    		}
    		close(cmd)
    	}'
    else
    	$NETSTAT -lpeutw --numeric-hosts --numeric-ports |
    	# remove header
    	$SED -e '1d;2d' |
    	while read type x y local remote listen user inode proc
    	do
    		[ "$type" = "udp" ] || [ "$type" = "upd6" ] && {
    			# there is no listen filed, every field are shifted left
    			user=$listen
    			proc="$inode $proc"
    			type="UDP"
    		}
    
    		[ "$type" = "tcp" ] && type="TCP"
    		[ "$type" = "tcp6" ] && type="TCP"
    
    		echo $user $type $local "`echo $proc | $CUT -f 2 -d /`"
    	done
    fi |
    # sort on process and remove duplicates
    $SORT -k 4 | $UNIQ |
    while read user type asocket proc
    do
    	socket=`echo $asocket |  $CUT -f 2 -d :`
    	address=`echo $asocket | $CUT -f 1 -d :`
    # Should address = 127.0.0.1 be considered harmful?
    # TODO: This could be an option
    	[ "$address" = "127.0.0.1" ] && address="loopback"
    	[ "$address" = "0.0.0.0" -o "$address" = "*" ] && address="every"
    	isokprocess="no"
    	isokuser="no"
    	# 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\" ;; \
    	*) echo \"no\" ;; esac"`
    	# Probably redundant since this is done already at the top
    	[ -n "$okprocessusers" ] && \
    	isokuser=`eval "case \"$user\" in ${okprocessusers})  echo \"yes\" ;; \
    	*) echo \"no\" ;; esac"`
    	if [ "$isokprocess" = "no" ] ; then
    		if [ "$isokuser" = "yes" ] ; then
    			[ "$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." 
    		else
    			[ "$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
    	fi # of if okprocess
    
    done 
    
    exit 0 
    tiger-3.2.3/systems/Linux/2/check_network_config0000755000175000017500000001530710230310122020315 0ustar  pacopaco#!/bin/sh
    #
    #     tiger - A UN*X security checking system
    #     Copyright (C) 2002 Javier Fernandez-Sanguino 
    #
    #    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_network_config: checks for security configuration paramenters of the
    #                network environment (using /proc)
    #
    # 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
    # http://linux.oreillynet.com/pub/a/linux/2000/11/16/LinuxAdmin.html
    # 
    #-----------------------------------------------------------------------------
    # TODO
    # 
    # - Check if conf/all have the same information as conf/default, conf/ethX...
    #   (since a given interface might be different from the others)
    #
    #-----------------------------------------------------------------------------
    #
    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 CAT || exit 1
      haveallfiles PROCDIR BASEDIR WORKDIR || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    #------------------------------------------------------------------------
    haveallcmds CAT || exit 1
    haveallfiles BASEDIR WORKDIR || exit 1
    haveallfiles PROCDIR || {
            message ERROR lin008e "" "The $PROCDIR filesystem is not available. Please make sure you have configured support for this pseudo-filesystem."
    	exit 1
    }
    echo
    echo "# Checking network configuration"
    
    # Instead of using the sysctl interface we are going to $CAT from the
    # specified locations
    
    read_if_exist() {
    # Reads a file if it exists
    # Otherwise returns 1
    	file=$1
    	value=1
    	[ -f $1 ] && value=`$CAT $file`
    	return $value
    }
    
    read_if_exist /proc/sys/net/ipv4/icmp_echo_ignore_all
    icmp_echo_ignore=$?
    read_if_exist /proc/sys/net/ipv4/icmp_echo_ignore_broadcasts
    icmp_broadcast_ignore=$?
    read_if_exist /proc/sys/net/ipv4/icmp_bogus_error_responses
    icmp_bogus_error=$?
    read_if_exist /proc/sys/net/ipv4/conf/all/accept_redirects
    icmp_redirect=$?
    read_if_exist /proc/sys/net/ipv4/conf/default/accept_redirects
    icmp_redirect_def=$?
    read_if_exist /proc/sys/net/ipv4/tcp_syncookies
    tcp_syncookies=$?
    read_if_exist /proc/sys/net/ipv4/conf/all/rp_filter
    rp_filter_all=$?
    read_if_exist /proc/sys/net/ipv4/default/all/rp_filter
    rp_filter_def=$?
    read_if_exist /proc/sys/net/ipv4/ip_forward
    ip_fwd=$?
    read_if_exist /proc/sys/net/ipv4/conf/all/accept_source_route
    ip_source_route_all=$?
    read_if_exist /proc/sys/net/ipv4/conf/default/accept_source_route
    ip_source_route_def=$?
    read_if_exist /proc/sys/net/ipv4/conf/all/log_martians
    log_martian_all=$?
    read_if_exist /proc/sys/net/ipv4/conf/default/log_martians
    log_martian_def=$?
    # Only useful for kernel's 2.2 and previous
    read_if_exist /proc/sys/net/ipv4/conf/all/hidden
    ip_weak_end=$?
    
    # Aff info on this
    read_if_exist /proc/sys/net/ipv4/ip_always_defrag
    ip_always_defrag=$?
    read_if_exist /proc/sys/net/ipv4/conf/all/bootp_relay
    bootp_relay=$?
    read_if_exist /proc/sys/net/ipv4/conf/all/mc_forwarding
    mc_forwarding=$?
    read_if_exist /proc/sys/net/ipv4/conf/all/proxy_arp
    proxy_arp=$?
    read_if_exist /proc/sys/net/ipv4/conf/all/secure_redirects
    secure_redirects=$?
    
    # Now start checking and sending messages
    
    [ $icmp_echo_ignore -eq 0 ] && \
    	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"
    [ $icmp_bogus_error -eq 0 ] && \
    	message FAIL lin011f "" "The system is configured to answer bogus errors"
    
    [ $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"
    
    [ $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"
    
    [ $ip_fwd -eq 1 ]  && \
    	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"
    
    [ $log_martian_all -eq 0 -o $log_martian_def -eq 0 ] && \
    	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"
    
    # 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 < (developed for SuSE
    # security checks) checks for accounts which have got a password set
    # but were logged on to. Meaning that they might still have their 
    # initial weak password!
    #
    # 17/08/2006 jfs  Handle users prepended with domains (DOMAIN\user) properly
    #                 (Debian bug #344890)
    # 10/01/2003 jfs  Modified to do better error checking on the use of 
    #                 Tiger_PasswdFiles. Also added code to remove temporary
    #                 files created by the script.
    # 10/09/2002 jfs  Adapted for Tiger
    #
    #-----------------------------------------------------------------------------
    #
    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 SED AWK GREP LASTLOG TEST GEN_PASSWD_SETS || exit 1
    	haveallfiles BASEDIR WORKDIR ETCSHELLS || exit 1
    
    	echo "--CONFIG-- [init003c] $0: Configuration ok..."
    	exit 0
    }
    #------------------------------------------------------------------------
    
    echo
    echo "# Checking Logins not used on the system ..."
    haveallcmds SED AWK GREP LASTLOG TEST GEN_PASSWD_SETS || exit 1
    haveallfiles BASEDIR WORKDIR ETCSHELLS || exit 1
    
    {
    	> $WORKDIR/pass.list.$$
    	if [ -n "$Tiger_PasswdFiles" -a -f "$Tiger_PasswdFiles" ]; then
      		$CAT $Tiger_PasswdFiles |
    		while read passfile 
    		do
    			[ -f "$passfile" ] && echo "$passfile" >>$WORKDIR/pass.list.$$
    		done
    	fi
    	if [ ! -s "$WORKDIR/pass.list.$$" ] 
    	then
    		$GEN_PASSWD_SETS $WORKDIR/pass.list.$$
    	fi
    }
    # Just make this check just in case
    if [ ! -r $WORKDIR/pass.list.$$ ]
    then
    	message ERROR pass008e "" "File $WORKDIR/pass.list.$$ is not readable"
    	exit 1
    fi
    
    
    for user in `$LASTLOG | $AWK '/Never logged in/ {print$1}'`; do
      result=0
      $CAT $WORKDIR/pass.list.$$  |
      while read passwd_set ; do
    	# Substitute '/' in user definitions in case we encounter a
    	# username of the form DOMAIN\user (might happen if the system
    	#  is configured to use winbindd for AD connectivity)
    	user=`echo $user | $SED -e 's|\\\|\\\\\\\|g'`
      	SHELL=`$GREP "^$user:" $passwd_set | $AWK -F: '{print$7}'`
    	$TEST -z "$SHELL" && SHELL="/bin/sh"
    	$GREP -q "^$SHELL" $ETCSHELLS && export result=1
    	$TEST "$result" = 1 && result=`$AWK -F:  "/^$user:/ "'{ if (length($2) > 12) printf("2\n"); if ($2 == "") printf("3\n"); }' $passwd_set` 
    	# Note: if length is less than 2 then the account is locked (system
    	# account)
    
    	# Only add for debugging:
    	#echo "Checking $user $SHELL $result"
    	$TEST "$result" = 2 && \
    		message FAIL acc024f "" "User $user has got a password and a valid shell ($SHELL) but never logged in."
    	$TEST "$result" = 3  && \
    		message FAIL acc024f "" "User $user has got NO password and a valid shell ($SHELL)."
       done 
    done
    
    
    if [ -f $WORKDIR/pass.list.$$ ] ; then
       if [ -z "$Tiger_PasswdFiles" ] ; then
             for passwd_set in `$CAT $WORKDIR/pass.list.$$`; do
                     delete $passwd_set $passwd_set.src
             done
       fi
       delete $WORKDIR/pass.list.$$
    fi
    
    exit 0
    tiger-3.2.3/systems/Linux/2/check_passwdspec0000755000175000017500000000645210241361052017466 0ustar  pacopaco#!/bin/sh
    #
    #     tiger - A UN*X security checking system
    #     Copyright (C) 2003 Javier Fernandez-Sanguino
    #
    #    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.
    # 
    # 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
    #
    #-----------------------------------------------------------------------------
    #
    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 CUT CHAGE || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    #------------------------------------------------------------------------
    haveallfiles BASEDIR || exit 1
    haveallcmds CUT CHAGE || exit 1
    
    echo
    echo "# Verifying system specific password checks..."
    
    saveifs=$IFS
    IFS=:
    # Check for password aging
    [ -r /etc/passwd ] && {
      $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.3/systems/Linux/2/check_patches0000755000175000017500000000704711076607640016757 0ustar  pacopaco#!/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.
    #
    # check_patches: uses autorpm or apt-get to verify if software is up-to-date
    # 10.26.2001
    # Paul Telford 
    #
    # 07/25/2002 jfs Fixed so it suggests that there might be errors if running
    #                as a non-root user.
    #                Changed TigerInstallDir to .
    # 04/15/2003 jfs Added some TODOS
    # 01/15/2004 jfs Fixed dependancies
    # 10/19/2008 jfs Use UUID instead of UID since UID is not defined in all shells
    #                and config already setis UUID 
    #
    #-----------------------------------------------------------------------------
    # TODO:
    #
    # - If APT is not configured for timeouts (see apt.conf(5)) Tiger might get
    #   stalled when running this check.
    #
    #-----------------------------------------------------------------------------
    #
    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 GREP JOIN RM  || exit 1
      havelallcmds APT || haveallcmds AUTORPM || exit 1
      haveallfiles BASEDIR WORKDIR || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    #------------------------------------------------------------------------
    echo
    echo "# Checking for up-to-date patches..."
    
    haveallcmds GREP JOIN RM || exit 1
    # TODO: How can we check fo one command *or* other ?? (jfs)
    #havelallcmds APT || haveallcmds AUTORPM || exit 1
    haveallfiles BASEDIR WORKDIR || exit 1
    
    
    if [ -n "$AUTORPM" -a -x "$AUTORPM" ]
    then
    	tmplog="$WORKDIR/autorpm.out.tmp.$$"
           	$AUTORPM --print | $GREP "is an updated RPM and could be upgraded" |\
    		awk '{print $1}' > $tmplog
    
    	if [ -s $tmplog ]
    	then
    		message FAIL ptch01f "" "Following packages not up to date:"
    		while read filename
    		do
    			echo "		$filename"
    		done < $tmplog
    		delete $tmplog
    	fi
    
    
    elif [ -n "$APT" -a -x "$APT" ]
    then
    	tmplog="$WORKDIR/apt-get.out.tmp.$$"
    	[ "$UUID" -gt 0  ] && message ERROR ptch05e "" "This script is not running as super-user, it will probably be unable to update the package database from it's sources."
    
           	$APT update 1> /dev/null
           	$APT -s upgrade | $GREP "^Inst" | awk '{print $2}' > $tmplog
    	if [ -s $tmplog ]
    	then
                   	message FAIL ptch02f "" "apt-get reports following packages not up to date:"    
    		while read filename
    		do
    			echo "		$filename"
    		done < $tmplog
    		delete $tmplog
           	fi
    else
    	message WARN ptch04w "" "Can't find patch management tool."
    fi
    
    tiger-3.2.3/systems/Linux/2/check_rcumask0000755000175000017500000001105510664614471016771 0ustar  pacopaco#!/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 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_rcumask - Sat May 18 17:50:00 CEST 2002
    #
    # check_rcumask - 06/23/2007 - jfs - Fix syntax error (Debian bug #430224)
    # check_rcumask - 06/21/2007 - jfs - Skip comment lines (Debian bug #418531)
    # check_rcumask - 05/20/2006 - jfs - Use TAIL properly (POSIX 1003.2-1992)
    # 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
    #	Fixed to work in sh properly (and added necessary checks)
    # check_rcumask - 08/09/2003 - jfs
    #       Included patch to check for more source files
    #
    # Checks if there is a umask setting for the init.d scripts (rc) so that
    # these create files with a proper mode (644).
    # Done based on scripts/check_logfiles (since the code to look for umasks
    # is there already). The code is included only on Linux scripts since it
    # has not been tested in other environments.
    #
    #-----------------------------------------------------------------------------
    #
    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  HEAD TAIL GREP EXPAND SED CAT SORT AWK LS RM || exit 1
      haveallfiles BASEDIR WORKDIR || exit 1
      haveallvars TESTLINK HOSTNAME
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    
    echo
    echo "# Checking for correct umask settings for init scripts..."
    
    haveallcmds HEAD TAIL GREP EXPAND SED CAT SORT LS AWK || exit 1
    
    
    #####
    # Check various possible files
    #####
    
    Foundumask=0
    
    # Files include Debian's rcS, Titan's umask.sh file and Red Hat default 
    # source for initscripts
    # /etc/rc.d/init.d/functions, C-Shell's /etc/csh.login, Bash's /etc/profile
    # and PAM's /etc/login.defs 
    # (deprecated, but for backward compatibility)
    for file in '/etc/init.d/rcS' '/etc/rc.d/init.d/umask.sh' '/etc/init.d/umask.sh' '/etc/rc.d/init.d/functions' '/etc/csh.login' '/etc/profile'
    do
       [ -r $file ] && {
    
       Occurance=`$GREP umask $file |$GREP -v ^# | $WC -l`
    
       if [ $Occurance -eq 1 ]; then
    	Foundumask=1
    	UMASK1=`$GREP umask $file  \
               | $GREP -v ^\# \
               | $EXPAND  \
               | $SED -e "s/^.*umask//"\
               | $CUT -d" " -f2`
    
    	[ "$UMASK1" != "002" -a "$UMASK1" != "022" ] && 
    		message FAIL misc017f '' "The umask setting in $file for the init scripts is insecure"
    
    
        elif [ "$Occurance" = 2 ]; then
    	Foundumask=1
    	UMASK1=`$GREP umask $file  \
                 | $GREP -v ^# \
                 | $EXPAND \
                 | $HEAD -n 1 \
                 | $SED -e "s/^.*umask//" \
                 | $CUT -d" "  -f2`
    	UMASK2=`$GREP umask $file  \
                 | $GREP -v ^# \
                 | $EXPAND \
                 | $TAIL -n 1 \
                 | $SED -e "s/^.*umask//" \
                 | $CUT -d" "  -f2`
    
     	[ "$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"
    
    fi
    
    }
    
    done
    
    if [ "$Foundumask" -eq 0 ]; then
    	message WARN misc019w "" "There are no umask settings for init.d scripts"
    fi
    tiger-3.2.3/systems/Linux/2/check_release0000755000175000017500000001121710217661040016730 0ustar  pacopaco#!/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.
    #
    # check_release: verifies that system meets minimum release requirements
    # 10.26.2001
    # 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?
    #
    #-----------------------------------------------------------------------------
    #
    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 CUT EGREP RM  || exit 1
      haveallfiles BASEDIR WORKDIR || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    #------------------------------------------------------------------------
    
    echo
    echo "# Checking OS release..."
    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`
            $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 ]
    then
    	# 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`
            $EGREP "hamm|bo|rex|buzz" /etc/debian_version 2> /dev/null
            if [ $? -eq 0 ]
            then
                    message FAIL osv002f "" "Out of date Debian GNU/Linux version"
            else
                $CUT -f1 -d' ' /etc/debian_version | $EGREP "[A-Za-z]" 1> /dev/null
                if [ $? -eq 1 ]
                then
                    MAJOR=`echo $DEBIAN_VERSION | $CUT -d \. -f 1`
                    MINOR=`echo $DEBIAN_VERSION | $CUT -d \. -f 2`
                    if [ "$MAJOR" -lt 3 ]
                    then
                            message FAIL osv002f "" "Out of date Debian GNU/Linux version \`$DEBIAN_VERSION'"
                    elif [ "$MAJOR" -eq 3 -a "$MINOR" -lt 0 ]
                    then
                            message FAIL osv002f "" "Out of date Debian GNU/Linux version \`$DEBIAN_VERSION'"
                    fi
                else
                            message WARN osv004w "" "Unreleased Debian GNU/Linux version \`$DEBIAN_VERSION'"
    	     fi
    	    
            fi
    else
            message WARN osv003w "" "This check only works for Redhat and Debian"
    fi
     
    tiger-3.2.3/systems/Linux/2/check_single0000755000175000017500000000551310217667700016604 0ustar  pacopaco#!/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.
    #
    # check_single: looks for 'sulogin' line in /etc/inittab which would
    # 		indicate a password requirement on single user mode
    # 10.26.2001
    # 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)
    #
    #-----------------------------------------------------------------------------
    #
    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 GREP RM UNAME EGREP || exit 1
      haveallfiles BASEDIR WORKDIR || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    #------------------------------------------------------------------------
    
    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..."
    
    # if we find a boot-loader password, great. 
    # If not, look for single-user mode password in inittab 
    
    if [ -r /etc/lilo.conf ]
    then
    	$GREP "password=" /etc/lilo.conf 1> /dev/null
    	if [ $? -eq 0 ]
    	then
    		exit 0
    	fi
    elif [ -e /boot/grub/menu.lst ]
    then
    	$GREP "password" /boot/grub/menu.lst 1> /dev/null
    	if [ $? -eq 0 ]
    	then
    		exit 0
    	fi
    else		
    	SULOGIN_STRING="~~:S:wait:/sbin/sulogin"
    	$GREP "$SULOGIN_STRING" /etc/inittab 1> /dev/null
    	if [ $? -eq 1 ]
    	then
    		message FAIL sum001f "" "Recommend addition to /etc/inittab:  $SULOGIN_STRING"
    	fi
    fi
    tiger-3.2.3/systems/Linux/2/check_xinetd0000755000175000017500000002000210045247305016576 0ustar  pacopaco#!/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.3/systems/Linux/2/config0000644000175000017500000002263010664614512015426 0ustar  pacopaco# -*- 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.
    #
    # Linux/2/config - (based on Sun/5/config) 06/14/93
    #     Developed by Advanced Research Corporation (R)
    # 
    #-----------------------------------------------------------------------------
    # Linux/1/config - 04/20/99
    # Linux/2/config - 04/20/99
    # Linux/2/config - 10/09/99
    #  Added the new check_neverlogin script
    # Linux/2/config - 08/07/2002 - jfs change in LSGROUPS
    # Linux/2/config - 11/25/2002 - jfs added PROCDIR and APACHECONFDIR
    #                               also added code to determine Linux distribution
    # Linux/2/config - 04/15/2002 - jfs added check for LSGROUP variable based
    #				on fileutils version
    # Linux/2/config - 06/20/2002 - jfs
    #   Added patch provided by Ryan Bradetich to consider the 
    #   case of RedHat's 7.1 fileutils:
    #   $ ls --version
    #   ls (GNU fileutils) 4.0.36
    # Linux/2/config - 08/11/2003 - jfs - Added TCPD to exported variables and
    #                  included HOSTALLOW and HOSTDENY
    # Linux/2/config - 08/13/2003 - jfs - Removed LSCRIPTDIR since it is no 
    #                  longer needed.
    # Linux/2/config - 08/14/2003 - jfs - Added IFCONFIG
    # Linux/2/config - 08/29/2003 - jfs - TESTEXEC needs to be defined first 
    #                  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
    # Linux/2/config - 05/20/2006 - jfs - Use TAIL properly (POSIX 1003.2-1992)
    #
    #-----------------------------------------------------------------------------
     
    
    
    #UUID=`/usr/bin/id | /bin/sed -e 's/uid=\([0-9][0-9]*\).*$/\1/'`
    UUID=`id -u`
    USERNAME=`whoami`
    # This will work in most shells
    [ "$UUID" = "" ] && UUID=$UID
    [ "$USERNAME" = "" ] && USERNAME=$USER
    # Last resort 
    [ "$UUID" = "" -a ! "$USERNAME" = "" ] && {
    	# Try this and see it works
    	UUID=`grep  ^$USERNAME: /etc/passwd  |awk -F : '{print $3}'`
    }
    export UUID
    
    [ "$USERNAME" != "root" ] && {
      echo " " 1>&2
      echo "This script should be run from a super-user account." 1>&2
      echo " " 1>&2
    # We don't need to bail out here, but most scripts will not run
    # properly, however
    #  exit 1
    }
    
    findcmd()
    {
      CMD=$1
    
      SRCH=/bin:/usr/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/local/sbin
    
      SAVEIFS=$IFS
      IFS=:
      set $SRCH
      IFS=$SAVEIFS
      for dir
      do
        [ $TESTEXEC $dir/$CMD ] && {
          echo $dir/$CMD
          return
        }
      done
    }
    
    # First of all, determine our distribution (might affect tests
    # below)
    LXDISTRIBUTION="unknown"
    [ -f /etc/redhat-release ] && LXDISTRIBUTION="redhat"
    [ -f /etc/debian_version ] && LXDISTRIBUTION="debian"
    [ -f /etc/SuSE-release ] && LXDISTRIBUTION="redhat"
    [ -f /etc/immunix-release ] && LXDISTRIBUTION="inmunix"
    [ -f /etc/mandrake-release ] && LXDISTRIBUTION="mandrake"
    [ -f /etc/turbolinux-release ] && LXDISTRIBUTION="turbolinux"
    export LXDISTRIBUTION
    
    TESTEXEC=-x
    TESTLINK=-L
    export TESTLINK TESTEXEC
    
    RM=`findcmd rm`
    
    AWK=`findcmd awk`
    CAT=`findcmd cat`
    LS=`findcmd ls`
    CUT=`findcmd cut`
    WC=`findcmd wc`
    TEE=`findcmd tee`
    COLUMN=`findcmd column`
    CMP=`findcmd cmp`
    
    GREP=`findcmd grep`
    EGREP=`findcmd egrep`
    SED=`findcmd sed`
    SORT=`findcmd sort`
    COMM=`findcmd comm`
    TAIL=`findcmd tail`
    TCPD=`findcmd tcpd`
    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`
    GROUPSS=`findcmd groups`
    FILECMD=`findcmd file`
    UNIQ=`findcmd uniq`
    BASENAME=`findcmd basename`
    CHMOD=`findcmd chmod`
    CHOWN=`findcmd chown`
    LN=`findcmd ln`
    PASTE=`findcmd paste`
    DIFF=`findcmd diff`
    ID=`findcmd id`
    EXPAND=`findcmd expand`
    # We use sendmail better than mail since we use it to
    # send appropiate headers
    MAILER=`findcmd sendmail`
    [ -z "$MAILER" ] && MAILER=`findcmd mail`
    LSOF=`findcmd lsof`
    MD5SUM=`findcmd md5sum`
    if [ -f "$BINDIR/realpath" ]; then
    	REALPATH=$BINDIR/realpath
    else 
    	REALPATH=`findcmd realpath`
    fi
    PWD=`findcmd pwd`
    # 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 -n 1`
    [ "$X" != "" ] && {
      SGREP="$GREP -s"
      X=`$GREP -s : /etc/passwd 2>&1 | $TAIL -n 1`
      [ "$X" != "" ] && {
        SGREP="$BASEDIR/util/sgrep"
      }
    }
    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`
    [  -n "$PWCK" ] && PWCK="$PWCK -r"
    GRPCK=`findcmd grpck`
    [  -n "$GRPCK" ] && GRPCK="$GRPCK -r"
    CHAGE=`findcmd chage`
    MESG=`findcmd mesg`
    LASTLOG=`findcmd lastlog`
    TEST=`findcmd test`
    
    LSGROUP="-l"
    # -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 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 DPKG RPM AUTORPM APT ID EXPAND LASTLOG TEST TEE 
    export TCPD HOSTALLOW HOSTDENY IFCONFIG IP IPTABLES NETSTAT
    
    
    UNAME=`findcmd uname`
    HOSTNAME=`findcmd hostname`
    GETHOSTNAME=`findcmd hostname`
    EXPR=`findcmd expr`
    STRINGS=`findcmd strings`
    FIND=`findcmd find`
    
    FINDXDEV=-xdev
    FMT=`findcmd fmt`
    GETFS=`findcmd mount`
    CC=`findcmd cc || findcmd gcc`
    PS=`findcmd ps`
    DATE=`findcmd date`
    DATECMD="$DATE +%y%m%d"
    TIMECMD="$DATE +%H:%M"
    
    
    export UNAME HOSTNAME EXPR STRINGS FIND FINDXDEV GETHOSTNAME
    export FMT GETFS CC PS DATE DATECMD TIMECMD 
    
    WAIT=wait
    
    # 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"
    PAMLOGINDEF="/etc/pam.d/login"
    export LOGINDEF PAMLOGINDEF
    
    # For Apache server configuration
    APACHECONFDIR="/etc/httpd/conf/"
    [ "$LXDISTRIBUTION" = "debian" ] && APACHECONFDIR="/etc/apache/"
    [ "$LXDISTRIBUTION" = "suse" ] && APACHECONFDIR="/etc/httpd/"
    # For SSHd configuration
    if [ -f /etc/ssh/sshd_config ]
    then
            SSHD_CONFIG="/etc/ssh/sshd_config"
    	export SSHD_CONFIG
    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`
    
    YP=
    ($PS aux | $GREP ypbind | $SGREP -v $GREP) && YP=Y
    export YP
    
    YPSERVER="NO"
    ($PS aux | $GREP ypserv | $SGREP -v $GREP) && YPSERVER="YES"
    
    # To check databases
    GETENT=`findcmd getent`
    
    export WAIT YPCAT YPSERVER GETENT
    
    # Directories
    MAILSPOOL=/var/spool/mail
    #
    if [ -d /var/spool/cron/crontabs ]; then
      CRONSPOOL=/var/spool/cron/crontabs
    elif [ -d /usr/spool/cron/crontabs ]; then
      CRONSPOOL=/usr/spool/cron/crontabs
    elif [ -d /var/spool/cron ]; then
      CRONSPOOL=/var/spool/cron
    else
      CRONSPOOL=NULL
    fi
    #
    ETCSHELLS=/etc/shells
    CRONALLOW=/etc/cron.allow
    CRONDENY=/etc/cron.deny
    #
    export MAILSPOOL CRONSPOOL ETCSHELLS CRONALLOW CRONDENY
    
    LOCFS=ext2
    export LOCFS
    
    FS_WDIRSYS="/tmp/ /var/tmp/ /var/spool/mail/"
    export FS_WDIRSYS
    #
    SYSDEFAULTPATH="/bin:/usr/bin"
    export SYSDEFAULTPATH
    
    # For check_network
    PROCDIR="/proc"
    export PROCDIR
    
    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
    ISSUEFILE issue
    ISSUENETFILE issue.net
    FILE_ACL file_access_list
    SUID_LIST suid_list
    SGID_LIST sgid_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
    EOL
    `
    tiger-3.2.3/systems/Linux/2/deb_checkadvisories0000755000175000017500000000750207650720057020150 0ustar  pacopaco#!/bin/sh
    #
    #     tiger - A UN*X security checking system
    #     Copyright (C) 2000, 2001 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.
    #
    # Linux/deb_checkadvisories - 08/24/2001
    #
    # Check Debian advisories and determine which ones affect the system.
    # Notice that the file containing the submitted Debian advisories is
    # 'deb_advisories', which needs to be updated using the sources at 
    # cvs.debian.org.  These are available at
    # http://www.debian.org/devel/website/using_cvs
    # The problem is that that script has been thought so that the maintainer
    # can update the information, it's not so easy to update it yourself.
    # You can use  the 'retrieve-advisories.pl' script to update it, however.
    #
    # If there are no updates for this file, you are probably better off
    # configuring your system to use the 'check_patches' script instead. 
    # This script, like cron-apt does, uses apt to download the package 
    # list and determine which packages need to be updated.
    # Please read the following:
    # http://www.debian.org/doc/manuals/securing-debian-howto/ch9.en.html#s-keep-up-to-date
    # deb_checkadvisories might probably be removed in the future or change it
    # to use the RDF feed from the website.
    #
    # Linux/deb_checkadvisories - 08/24/2001 - jfs - initial version
    # Linux/deb_checkadvisories - 04/15/2003 - jfs - Added notes to the script
    #-----------------------------------------------------------------------------
    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 DPKG CAT HEAD CUT GREP UNAME || exit 1
      haveallfiles BASEDIR WORKDIR || exit 1
      haveallvars TESTLINK HOSTNAME
      
      message CONFIG init003c "" "$0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    echo
    echo "# Checking installed packages vs Debian Security Advisories..."
    
    haveallcmds DPKG CAT HEAD CUT GREP UNAME SED || exit 1
    
    
    currentarch=`$UNAME -m | $SED -e "s/i.86/i386/"`
    [ -f $CONFIG_DIR/debian_advisories ] && $CAT $CONFIG_DIR/debian_advisories | {
    	while read package version arch advisory date 
    	do
    # TODO: only check if arch is the same otherwise we are checking more
    # than once and might give out false positives
    		[ "$currentarch" = "$arch" ] && {
    		if [ "$Tiger_DPKG_Optimize" = "N" ]
    		then
    			installed=`$DPKG --status $package | $GREP Version` 
    		else
    			installed=`$GREP -A 10 "^Package: ${i}$" /var/lib/dpkg/status | $GREP ^Version: | $HEAD -1 | $CUT -d : -f 2 `
    		fi
    		if [ "$installed" != "" ] 
    		then 
    			installed=`echo $installed | $CUT -d : -f 2`
    			[ "$version" = "$installed" ] && {
    			message ERROR deb001e "" "Installed version of package $package has a security problem as described in Debian Security Advisory of date $date: \`$advisory'. Upgrade from security.debian.org"
    		}
    		fi
    		}
    	done 
    }
    tiger-3.2.3/systems/Linux/2/deb_checkmd5sums0000755000175000017500000001573211061334740017370 0ustar  pacopaco#!/bin/sh
    #
    #     tiger - A UN*X security checking system
    #     Copyright (C) 2000, 2001 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.
    #
    # Linux/deb_checkmd5sums - 24/08/2001
    #
    # 09/09/2008 - jfs - Use prelink to calculate checksums if present (Debian bug #445531)
    # 06/22/2007 - jfs - Fix Debian bug 50611 by properly reading md5sum's output
    # 08/17/2006 - jfs - Fix Ubuntu bug 50611 by excluding dev/ and 
    #        lib/udev/devices/ from the md5sum test, thanks to Richard Laager 
    #        for the patch (also Debian bug #383400)
    # 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).
    #      Also added some minor changes so the package in question
    #      is printed when files don't match and avoid printing
    #      errors related to conffiles (Debian Bug #211329)
    #      
    #
    # TODO:
    # - Consider using a single file instead of calling MD5sum
    #   each time.
    # - Add an option to Tiger so some directories might be excluded from this
    #   check.
    #
    #-----------------------------------------------------------------------------
    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 MD5SUM CAT CUT SED GREP BASENAME || exit 1
      haveallfiles BASEDIR WORKDIR || exit 1
      haveallvars TESTLINK HOSTNAME
      
      message CONFIG init003c "" "$0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    echo
    echo "# Checking md5sums of installed files"
    
    haveallcmds MD5SUM CAT CUT SED GREP BASENAME || exit 1
    
    # Prelink
    PRELINK=/usr/sbin/prelink
    if [ -x "$PRELINK" ] ; then
        MD5SUM="$PRELINK -y --md5"
    fi
    
    # From the localepurge binary:
    LOCALEDIR=/usr/share/locale
    MANDIR=/usr/share/man
    LOCALEPURGE=/etc/locale.nopurge
    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;/  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
    do
    [ -f $md5file ] && [ ! -L $md5file  ] && {
    # Note: We  do not check things in  /usr/share/doc
    # to speed things up
    	$GREP -v " usr/share/doc/" "$md5file" |
    	$GREP -v " dev/" |
    	$GREP -v " lib/udev/devices/" |
    # 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 file err
    		do
    			package=`$BASENAME "$md5file" ".md5sums"`
                            file=`echo $file | sed -e "s/:$//"`
    			case $err in
    			DIFF|FAILED)
    				# don't check diverted now
    				[ -z "`$GREP -sxF \"$file\" $DIVERSIONS`" ] &&
    				# and conffiles should not be checked either
    				[ -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)
    # 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 
    	}
    }
    done
    # 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/' \
         -e 's/local diversion of \(\/.*\) to \(\/.*\)$/\1;\2;LOCAL/' | {
      saveIFS=$IFS
      IFS=";"
      while read file tofile bypackage
      do
        IFS=":" ; set X `$DPKG -S "$file" | $GREP -v "^diversion by "`
        IFS=", " ; set X $2
        while [ "$2" != "" ]
        do
          if [ "$2" = "$bypackage" ]
          then
            currentfile=$file
          else
            currentfile=$tofile
          fi
          [ -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" ]
              then
                md5sum=`$MD5SUM "$currentfile" | $CUT -f 1 -d " "`
                [ "$md5pck" != "$md5sum" ] &&
                  message FAIL lin005f "" "Installed file \`$currentfile' checksum differs from installed packages."
              else
                message FAIL lin006f "" "Cannot check file \"$currentfile\" provided by \"$2\" since it does not exist"
              fi
            }
          }
          shift
        done
        IFS=";"
      done
    
      # restore IFS
      IFS=$saveIFS
    }
    
    else
    	message WARN lin006w "" "This check cannot be done since we seem not to be running on a Debian GNU/Linux system"
    fi
    tiger-3.2.3/systems/Linux/2/deb_nopackfiles0000755000175000017500000001265210664615047017303 0ustar  pacopaco#!/bin/sh
    #
    #     tiger - A UN*X security checking system
    #     Copyright (C) 2000, 2001, 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.
    #
    # Linux/deb_nopackfiles - 23/08/2001
    # 
    # 05/07/2006 - jfs - Skip directories that are symbolic links, this happens
    #              with /usr/X11R6/bin as the latest Xorg package
    #              versions just symlink this to /usr/bin/  (Debian bug #367931)
    # 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.
    #            Send FIND errors to /dev/null just in case some of the
    #            directories do not exist.
    # 08/08/2003 - jfs - Improved temporary file creation and removed RM dependancy.
    # 08/08/2003 - jfs - Applied patch from Nicolas François. 
    #              Instead of grepping each file all the files are appended to
    #              a single file and removed a redundant check.
    # 11/05/2002 - jfs - Changed from a 'for' statement to a 'find'
    #
    # TODO:
    # - Consider if the the path '/bin/ /usr/bin/ /sbin/ /usr/sbin/
    # /lib/ /usr/X11R6/bin/' should be customizable in tigerrc.
    # Also, the maxpath could be set in another option.
    # - Consider the use of 'dlocate' which will be faster than DPKG. Notice
    # however that it's priority "optional"
    # dlocate could be faster
    # DLOCATE=`which dlocate`
    # DLOCATE=${DLOCATE:-$DPKG}
    #
    #-----------------------------------------------------------------------------
    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 FIND GREP || exit 1
      if [ "$Tiger_DPKG_Optimize" = "N" ]
      then
      	haveallcmds DPKG || exit 1
      fi
      haveallfiles BASEDIR WORKDIR || exit 1
      haveallvars TESTLINK HOSTNAME
      
      message CONFIG init003c "" "$0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    echo
    echo "# Checking installed files against packages..."
    
    haveallcmds FIND GREP || exit 1
    if [ "$Tiger_DPKG_Optimize" = "N" ]
    then
    	haveallcmds DPKG || exit 1
    fi
    
    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 ] && [ ! -L $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 $dirlist -type f 2>/dev/null|
            # We are not using -maxdepth here, but we could...
            while read file
            do
                    pack=`$DPKG -S $file 2>/dev/null`
                    [ "$pack" = "" ] && {
                    message WARN lin001w "" "File \`$file' does not belong to any package." 
                    }
            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 "/^\($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
            $GREP -x -F -v -f /var/lib/dpkg/diversions |
            while read file
            do
              message WARN lin001w "" "File \`$file' does not belong to any package."
            done
            delete $WORKDIR/dpkg-packages.list
    fi
    
    exit 0
    tiger-3.2.3/systems/Linux/2/debian_advisories0000644000175000017500000242322211061321303017620 0ustar  pacopacoaffix	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
    mantis	0.19.2-4.1	all	DSA-905-1 mantis	2005-11-22
    eric	3.6.2-2	all	DSA-869-1 eric	2005-10-21
    gaim-data	1.2.1-1.4	all	DSA-769-1 gaim	2005-7-29
    gaim	1.2.1-1.4	alpha	DSA-769-1 gaim	2005-7-29
    gaim-dev	1.2.1-1.4	alpha	DSA-769-1 gaim	2005-7-29
    gaim	1.2.1-1.4	arm	DSA-769-1 gaim	2005-7-29
    gaim-dev	1.2.1-1.4	arm	DSA-769-1 gaim	2005-7-29
    gaim	1.2.1-1.4	i386	DSA-769-1 gaim	2005-7-29
    gaim-dev	1.2.1-1.4	i386	DSA-769-1 gaim	2005-7-29
    gaim	1.2.1-1.4	ia64	DSA-769-1 gaim	2005-7-29
    gaim-dev	1.2.1-1.4	ia64	DSA-769-1 gaim	2005-7-29
    gaim	1.2.1-1.4	hppa	DSA-769-1 gaim	2005-7-29
    gaim-dev	1.2.1-1.4	hppa	DSA-769-1 gaim	2005-7-29
    gaim	1.2.1-1.4	m68k	DSA-769-1 gaim	2005-7-29
    gaim-dev	1.2.1-1.4	m68k	DSA-769-1 gaim	2005-7-29
    gaim	1.2.1-1.4	mips	DSA-769-1 gaim	2005-7-29
    gaim-dev	1.2.1-1.4	mips	DSA-769-1 gaim	2005-7-29
    gaim	1.2.1-1.4	mipsel	DSA-769-1 gaim	2005-7-29
    gaim-dev	1.2.1-1.4	mipsel	DSA-769-1 gaim	2005-7-29
    gaim	1.2.1-1.4	powerpc	DSA-769-1 gaim	2005-7-29
    gaim-dev	1.2.1-1.4	powerpc	DSA-769-1 gaim	2005-7-29
    gaim	1.2.1-1.4	s390	DSA-769-1 gaim	2005-7-29
    gaim-dev	1.2.1-1.4	s390	DSA-769-1 gaim	2005-7-29
    gaim	1.2.1-1.4	sparc	DSA-769-1 gaim	2005-7-29
    gaim-dev	1.2.1-1.4	sparc	DSA-769-1 gaim	2005-7-29
    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
    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
    apache2-doc	2.0.54-5	all	DSA-805-1 apache2	2005-9-8
    apache2-mpm-threadpool	2.0.54-5	all	DSA-805-1 apache2	2005-9-8
    apache2	2.0.54-5	alpha	DSA-805-1 apache2	2005-9-8
    apache2-common	2.0.54-5	alpha	DSA-805-1 apache2	2005-9-8
    apache2-mpm-perchild	2.0.54-5	alpha	DSA-805-1 apache2	2005-9-8
    apache2-mpm-prefork	2.0.54-5	alpha	DSA-805-1 apache2	2005-9-8
    apache2-mpm-worker	2.0.54-5	alpha	DSA-805-1 apache2	2005-9-8
    apache2-prefork-dev	2.0.54-5	alpha	DSA-805-1 apache2	2005-9-8
    apache2-threaded-dev	2.0.54-5	alpha	DSA-805-1 apache2	2005-9-8
    apache2-utils	2.0.54-5	alpha	DSA-805-1 apache2	2005-9-8
    libapr0	2.0.54-5	alpha	DSA-805-1 apache2	2005-9-8
    libapr0-dev	2.0.54-5	alpha	DSA-805-1 apache2	2005-9-8
    apache2	2.0.54-5	amd64	DSA-805-1 apache2	2005-9-8
    apache2-common	2.0.54-5	amd64	DSA-805-1 apache2	2005-9-8
    apache2-mpm-perchild	2.0.54-5	amd64	DSA-805-1 apache2	2005-9-8
    apache2-mpm-prefork	2.0.54-5	amd64	DSA-805-1 apache2	2005-9-8
    apache2-mpm-worker	2.0.54-5	amd64	DSA-805-1 apache2	2005-9-8
    apache2-prefork-dev	2.0.54-5	amd64	DSA-805-1 apache2	2005-9-8
    apache2-threaded-dev	2.0.54-5	amd64	DSA-805-1 apache2	2005-9-8
    apache2-utils	2.0.54-5	amd64	DSA-805-1 apache2	2005-9-8
    libapr0	2.0.54-5	amd64	DSA-805-1 apache2	2005-9-8
    libapr0-dev	2.0.54-5	amd64	DSA-805-1 apache2	2005-9-8
    apache2	2.0.54-5	arm	DSA-805-1 apache2	2005-9-8
    apache2-common	2.0.54-5	arm	DSA-805-1 apache2	2005-9-8
    apache2-mpm-perchild	2.0.54-5	arm	DSA-805-1 apache2	2005-9-8
    apache2-mpm-prefork	2.0.54-5	arm	DSA-805-1 apache2	2005-9-8
    apache2-mpm-worker	2.0.54-5	arm	DSA-805-1 apache2	2005-9-8
    apache2-prefork-dev	2.0.54-5	arm	DSA-805-1 apache2	2005-9-8
    apache2-threaded-dev	2.0.54-5	arm	DSA-805-1 apache2	2005-9-8
    apache2-utils	2.0.54-5	arm	DSA-805-1 apache2	2005-9-8
    libapr0	2.0.54-5	arm	DSA-805-1 apache2	2005-9-8
    libapr0-dev	2.0.54-5	arm	DSA-805-1 apache2	2005-9-8
    apache2	2.0.54-5	i386	DSA-805-1 apache2	2005-9-8
    apache2-common	2.0.54-5	i386	DSA-805-1 apache2	2005-9-8
    apache2-mpm-perchild	2.0.54-5	i386	DSA-805-1 apache2	2005-9-8
    apache2-mpm-prefork	2.0.54-5	i386	DSA-805-1 apache2	2005-9-8
    apache2-mpm-worker	2.0.54-5	i386	DSA-805-1 apache2	2005-9-8
    apache2-prefork-dev	2.0.54-5	i386	DSA-805-1 apache2	2005-9-8
    apache2-threaded-dev	2.0.54-5	i386	DSA-805-1 apache2	2005-9-8
    apache2-utils	2.0.54-5	i386	DSA-805-1 apache2	2005-9-8
    libapr0	2.0.54-5	i386	DSA-805-1 apache2	2005-9-8
    libapr0-dev	2.0.54-5	i386	DSA-805-1 apache2	2005-9-8
    apache2	2.0.54-5	ia64	DSA-805-1 apache2	2005-9-8
    apache2-common	2.0.54-5	ia64	DSA-805-1 apache2	2005-9-8
    apache2-mpm-perchild	2.0.54-5	ia64	DSA-805-1 apache2	2005-9-8
    apache2-mpm-prefork	2.0.54-5	ia64	DSA-805-1 apache2	2005-9-8
    apache2-mpm-worker	2.0.54-5	ia64	DSA-805-1 apache2	2005-9-8
    apache2-prefork-dev	2.0.54-5	ia64	DSA-805-1 apache2	2005-9-8
    apache2-threaded-dev	2.0.54-5	ia64	DSA-805-1 apache2	2005-9-8
    apache2-utils	2.0.54-5	ia64	DSA-805-1 apache2	2005-9-8
    libapr0	2.0.54-5	ia64	DSA-805-1 apache2	2005-9-8
    libapr0-dev	2.0.54-5	ia64	DSA-805-1 apache2	2005-9-8
    apache2	2.0.54-5	hppa	DSA-805-1 apache2	2005-9-8
    apache2-common	2.0.54-5	hppa	DSA-805-1 apache2	2005-9-8
    apache2-mpm-perchild	2.0.54-5	hppa	DSA-805-1 apache2	2005-9-8
    apache2-mpm-prefork	2.0.54-5	hppa	DSA-805-1 apache2	2005-9-8
    apache2-mpm-worker	2.0.54-5	hppa	DSA-805-1 apache2	2005-9-8
    apache2-prefork-dev	2.0.54-5	hppa	DSA-805-1 apache2	2005-9-8
    apache2-threaded-dev	2.0.54-5	hppa	DSA-805-1 apache2	2005-9-8
    apache2-utils	2.0.54-5	hppa	DSA-805-1 apache2	2005-9-8
    libapr0	2.0.54-5	hppa	DSA-805-1 apache2	2005-9-8
    libapr0-dev	2.0.54-5	hppa	DSA-805-1 apache2	2005-9-8
    apache2	2.0.54-5	m68k	DSA-805-1 apache2	2005-9-8
    apache2-common	2.0.54-5	m68k	DSA-805-1 apache2	2005-9-8
    apache2-mpm-perchild	2.0.54-5	m68k	DSA-805-1 apache2	2005-9-8
    apache2-mpm-prefork	2.0.54-5	m68k	DSA-805-1 apache2	2005-9-8
    apache2-mpm-worker	2.0.54-5	m68k	DSA-805-1 apache2	2005-9-8
    apache2-prefork-dev	2.0.54-5	m68k	DSA-805-1 apache2	2005-9-8
    apache2-threaded-dev	2.0.54-5	m68k	DSA-805-1 apache2	2005-9-8
    apache2-utils	2.0.54-5	m68k	DSA-805-1 apache2	2005-9-8
    libapr0	2.0.54-5	m68k	DSA-805-1 apache2	2005-9-8
    libapr0-dev	2.0.54-5	m68k	DSA-805-1 apache2	2005-9-8
    apache2	2.0.54-5	mips	DSA-805-1 apache2	2005-9-8
    apache2-common	2.0.54-5	mips	DSA-805-1 apache2	2005-9-8
    apache2-mpm-perchild	2.0.54-5	mips	DSA-805-1 apache2	2005-9-8
    apache2-mpm-prefork	2.0.54-5	mips	DSA-805-1 apache2	2005-9-8
    apache2-mpm-worker	2.0.54-5	mips	DSA-805-1 apache2	2005-9-8
    apache2-prefork-dev	2.0.54-5	mips	DSA-805-1 apache2	2005-9-8
    apache2-threaded-dev	2.0.54-5	mips	DSA-805-1 apache2	2005-9-8
    apache2-utils	2.0.54-5	mips	DSA-805-1 apache2	2005-9-8
    libapr0	2.0.54-5	mips	DSA-805-1 apache2	2005-9-8
    libapr0-dev	2.0.54-5	mips	DSA-805-1 apache2	2005-9-8
    apache2	2.0.54-5	mipsel	DSA-805-1 apache2	2005-9-8
    apache2-common	2.0.54-5	mipsel	DSA-805-1 apache2	2005-9-8
    apache2-mpm-perchild	2.0.54-5	mipsel	DSA-805-1 apache2	2005-9-8
    apache2-mpm-prefork	2.0.54-5	mipsel	DSA-805-1 apache2	2005-9-8
    apache2-mpm-worker	2.0.54-5	mipsel	DSA-805-1 apache2	2005-9-8
    apache2-prefork-dev	2.0.54-5	mipsel	DSA-805-1 apache2	2005-9-8
    apache2-threaded-dev	2.0.54-5	mipsel	DSA-805-1 apache2	2005-9-8
    apache2-utils	2.0.54-5	mipsel	DSA-805-1 apache2	2005-9-8
    libapr0	2.0.54-5	mipsel	DSA-805-1 apache2	2005-9-8
    libapr0-dev	2.0.54-5	mipsel	DSA-805-1 apache2	2005-9-8
    apache2	2.0.54-5	powerpc	DSA-805-1 apache2	2005-9-8
    apache2-common	2.0.54-5	powerpc	DSA-805-1 apache2	2005-9-8
    apache2-mpm-perchild	2.0.54-5	powerpc	DSA-805-1 apache2	2005-9-8
    apache2-mpm-prefork	2.0.54-5	powerpc	DSA-805-1 apache2	2005-9-8
    apache2-mpm-worker	2.0.54-5	powerpc	DSA-805-1 apache2	2005-9-8
    apache2-prefork-dev	2.0.54-5	powerpc	DSA-805-1 apache2	2005-9-8
    apache2-threaded-dev	2.0.54-5	powerpc	DSA-805-1 apache2	2005-9-8
    apache2-utils	2.0.54-5	powerpc	DSA-805-1 apache2	2005-9-8
    libapr0	2.0.54-5	powerpc	DSA-805-1 apache2	2005-9-8
    libapr0-dev	2.0.54-5	powerpc	DSA-805-1 apache2	2005-9-8
    apache2	2.0.54-5	s390	DSA-805-1 apache2	2005-9-8
    apache2-common	2.0.54-5	s390	DSA-805-1 apache2	2005-9-8
    apache2-mpm-perchild	2.0.54-5	s390	DSA-805-1 apache2	2005-9-8
    apache2-mpm-prefork	2.0.54-5	s390	DSA-805-1 apache2	2005-9-8
    apache2-mpm-worker	2.0.54-5	s390	DSA-805-1 apache2	2005-9-8
    apache2-prefork-dev	2.0.54-5	s390	DSA-805-1 apache2	2005-9-8
    apache2-threaded-dev	2.0.54-5	s390	DSA-805-1 apache2	2005-9-8
    apache2-utils	2.0.54-5	s390	DSA-805-1 apache2	2005-9-8
    libapr0	2.0.54-5	s390	DSA-805-1 apache2	2005-9-8
    libapr0-dev	2.0.54-5	s390	DSA-805-1 apache2	2005-9-8
    apache2	2.0.54-5	sparc	DSA-805-1 apache2	2005-9-8
    apache2-common	2.0.54-5	sparc	DSA-805-1 apache2	2005-9-8
    apache2-mpm-perchild	2.0.54-5	sparc	DSA-805-1 apache2	2005-9-8
    apache2-mpm-prefork	2.0.54-5	sparc	DSA-805-1 apache2	2005-9-8
    apache2-mpm-worker	2.0.54-5	sparc	DSA-805-1 apache2	2005-9-8
    apache2-prefork-dev	2.0.54-5	sparc	DSA-805-1 apache2	2005-9-8
    apache2-threaded-dev	2.0.54-5	sparc	DSA-805-1 apache2	2005-9-8
    apache2-utils	2.0.54-5	sparc	DSA-805-1 apache2	2005-9-8
    libapr0	2.0.54-5	sparc	DSA-805-1 apache2	2005-9-8
    libapr0-dev	2.0.54-5	sparc	DSA-805-1 apache2	2005-9-8
    hylafax-doc	4.1.1-3.2	all	DSA-865-1 hylafax	2005-10-13
    hylafax-client	4.1.1-3.2	alpha	DSA-865-1 hylafax	2005-10-13
    hylafax-server	4.1.1-3.2	alpha	DSA-865-1 hylafax	2005-10-13
    hylafax-client	4.1.1-3.2	arm	DSA-865-1 hylafax	2005-10-13
    hylafax-server	4.1.1-3.2	arm	DSA-865-1 hylafax	2005-10-13
    hylafax-client	4.1.1-3.2	i386	DSA-865-1 hylafax	2005-10-13
    hylafax-server	4.1.1-3.2	i386	DSA-865-1 hylafax	2005-10-13
    hylafax-client	4.1.1-3.2	ia64	DSA-865-1 hylafax	2005-10-13
    hylafax-server	4.1.1-3.2	ia64	DSA-865-1 hylafax	2005-10-13
    hylafax-client	4.1.1-3.2	hppa	DSA-865-1 hylafax	2005-10-13
    hylafax-server	4.1.1-3.2	hppa	DSA-865-1 hylafax	2005-10-13
    hylafax-client	4.1.1-3.2	m68k	DSA-865-1 hylafax	2005-10-13
    hylafax-server	4.1.1-3.2	m68k	DSA-865-1 hylafax	2005-10-13
    hylafax-client	4.1.1-3.2	powerpc	DSA-865-1 hylafax	2005-10-13
    hylafax-server	4.1.1-3.2	powerpc	DSA-865-1 hylafax	2005-10-13
    hylafax-client	4.1.1-3.2	s390	DSA-865-1 hylafax	2005-10-13
    hylafax-server	4.1.1-3.2	s390	DSA-865-1 hylafax	2005-10-13
    hylafax-client	4.1.1-3.2	sparc	DSA-865-1 hylafax	2005-10-13
    hylafax-server	4.1.1-3.2	sparc	DSA-865-1 hylafax	2005-10-13
    squirrelmail	1.2.6-4	all	DSA-756-1 squirrelmail	2005-7-13
    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
    php4-pear	4.3.10-16	all	DSA-789-1 php4	2005-8-29
    php4	4.3.10-16	all	DSA-789-1 php4	2005-8-29
    libapache-mod-php4	4.3.10-16	alpha	DSA-789-1 php4	2005-8-29
    libapache2-mod-php4	4.3.10-16	alpha	DSA-789-1 php4	2005-8-29
    php4-cgi	4.3.10-16	alpha	DSA-789-1 php4	2005-8-29
    php4-cli	4.3.10-16	alpha	DSA-789-1 php4	2005-8-29
    php4-common	4.3.10-16	alpha	DSA-789-1 php4	2005-8-29
    php4-curl	4.3.10-16	alpha	DSA-789-1 php4	2005-8-29
    php4-dev	4.3.10-16	alpha	DSA-789-1 php4	2005-8-29
    php4-domxml	4.3.10-16	alpha	DSA-789-1 php4	2005-8-29
    php4-gd	4.3.10-16	alpha	DSA-789-1 php4	2005-8-29
    php4-imap	4.3.10-16	alpha	DSA-789-1 php4	2005-8-29
    php4-ldap	4.3.10-16	alpha	DSA-789-1 php4	2005-8-29
    php4-mcal	4.3.10-16	alpha	DSA-789-1 php4	2005-8-29
    php4-mhash	4.3.10-16	alpha	DSA-789-1 php4	2005-8-29
    php4-mysql	4.3.10-16	alpha	DSA-789-1 php4	2005-8-29
    php4-odbc	4.3.10-16	alpha	DSA-789-1 php4	2005-8-29
    php4-recode	4.3.10-16	alpha	DSA-789-1 php4	2005-8-29
    php4-snmp	4.3.10-16	alpha	DSA-789-1 php4	2005-8-29
    php4-sybase	4.3.10-16	alpha	DSA-789-1 php4	2005-8-29
    php4-xslt	4.3.10-16	alpha	DSA-789-1 php4	2005-8-29
    libapache-mod-php4	4.3.10-16	amd64	DSA-789-1 php4	2005-8-29
    libapache2-mod-php4	4.3.10-16	amd64	DSA-789-1 php4	2005-8-29
    php4-cgi	4.3.10-16	amd64	DSA-789-1 php4	2005-8-29
    php4-cli	4.3.10-16	amd64	DSA-789-1 php4	2005-8-29
    php4-common	4.3.10-16	amd64	DSA-789-1 php4	2005-8-29
    php4-curl	4.3.10-16	amd64	DSA-789-1 php4	2005-8-29
    php4-dev	4.3.10-16	amd64	DSA-789-1 php4	2005-8-29
    php4-domxml	4.3.10-16	amd64	DSA-789-1 php4	2005-8-29
    php4-gd	4.3.10-16	amd64	DSA-789-1 php4	2005-8-29
    php4-imap	4.3.10-16	amd64	DSA-789-1 php4	2005-8-29
    php4-ldap	4.3.10-16	amd64	DSA-789-1 php4	2005-8-29
    php4-mcal	4.3.10-16	amd64	DSA-789-1 php4	2005-8-29
    php4-mhash	4.3.10-16	amd64	DSA-789-1 php4	2005-8-29
    php4-mysql	4.3.10-16	amd64	DSA-789-1 php4	2005-8-29
    php4-odbc	4.3.10-16	amd64	DSA-789-1 php4	2005-8-29
    php4-recode	4.3.10-16	amd64	DSA-789-1 php4	2005-8-29
    php4-snmp	4.3.10-16	amd64	DSA-789-1 php4	2005-8-29
    php4-sybase	4.3.10-16	amd64	DSA-789-1 php4	2005-8-29
    php4-xslt	4.3.10-16	amd64	DSA-789-1 php4	2005-8-29
    libapache-mod-php4	4.3.10-16	arm	DSA-789-1 php4	2005-8-29
    libapache2-mod-php4	4.3.10-16	arm	DSA-789-1 php4	2005-8-29
    php4-cgi	4.3.10-16	arm	DSA-789-1 php4	2005-8-29
    php4-cli	4.3.10-16	arm	DSA-789-1 php4	2005-8-29
    php4-common	4.3.10-16	arm	DSA-789-1 php4	2005-8-29
    php4-curl	4.3.10-16	arm	DSA-789-1 php4	2005-8-29
    php4-dev	4.3.10-16	arm	DSA-789-1 php4	2005-8-29
    php4-domxml	4.3.10-16	arm	DSA-789-1 php4	2005-8-29
    php4-gd	4.3.10-16	arm	DSA-789-1 php4	2005-8-29
    php4-imap	4.3.10-16	arm	DSA-789-1 php4	2005-8-29
    php4-ldap	4.3.10-16	arm	DSA-789-1 php4	2005-8-29
    php4-mcal	4.3.10-16	arm	DSA-789-1 php4	2005-8-29
    php4-mhash	4.3.10-16	arm	DSA-789-1 php4	2005-8-29
    php4-mysql	4.3.10-16	arm	DSA-789-1 php4	2005-8-29
    php4-odbc	4.3.10-16	arm	DSA-789-1 php4	2005-8-29
    php4-recode	4.3.10-16	arm	DSA-789-1 php4	2005-8-29
    php4-snmp	4.3.10-16	arm	DSA-789-1 php4	2005-8-29
    php4-sybase	4.3.10-16	arm	DSA-789-1 php4	2005-8-29
    php4-xslt	4.3.10-16	arm	DSA-789-1 php4	2005-8-29
    libapache-mod-php4	4.3.10-16	i386	DSA-789-1 php4	2005-8-29
    libapache2-mod-php4	4.3.10-16	i386	DSA-789-1 php4	2005-8-29
    php4-cgi	4.3.10-16	i386	DSA-789-1 php4	2005-8-29
    php4-cli	4.3.10-16	i386	DSA-789-1 php4	2005-8-29
    php4-common	4.3.10-16	i386	DSA-789-1 php4	2005-8-29
    php4-curl	4.3.10-16	i386	DSA-789-1 php4	2005-8-29
    php4-dev	4.3.10-16	i386	DSA-789-1 php4	2005-8-29
    php4-domxml	4.3.10-16	i386	DSA-789-1 php4	2005-8-29
    php4-gd	4.3.10-16	i386	DSA-789-1 php4	2005-8-29
    php4-imap	4.3.10-16	i386	DSA-789-1 php4	2005-8-29
    php4-ldap	4.3.10-16	i386	DSA-789-1 php4	2005-8-29
    php4-mcal	4.3.10-16	i386	DSA-789-1 php4	2005-8-29
    php4-mhash	4.3.10-16	i386	DSA-789-1 php4	2005-8-29
    php4-mysql	4.3.10-16	i386	DSA-789-1 php4	2005-8-29
    php4-odbc	4.3.10-16	i386	DSA-789-1 php4	2005-8-29
    php4-recode	4.3.10-16	i386	DSA-789-1 php4	2005-8-29
    php4-snmp	4.3.10-16	i386	DSA-789-1 php4	2005-8-29
    php4-sybase	4.3.10-16	i386	DSA-789-1 php4	2005-8-29
    php4-xslt	4.3.10-16	i386	DSA-789-1 php4	2005-8-29
    libapache-mod-php4	4.3.10-16	ia64	DSA-789-1 php4	2005-8-29
    libapache2-mod-php4	4.3.10-16	ia64	DSA-789-1 php4	2005-8-29
    php4-cgi	4.3.10-16	ia64	DSA-789-1 php4	2005-8-29
    php4-cli	4.3.10-16	ia64	DSA-789-1 php4	2005-8-29
    php4-common	4.3.10-16	ia64	DSA-789-1 php4	2005-8-29
    php4-curl	4.3.10-16	ia64	DSA-789-1 php4	2005-8-29
    php4-dev	4.3.10-16	ia64	DSA-789-1 php4	2005-8-29
    php4-domxml	4.3.10-16	ia64	DSA-789-1 php4	2005-8-29
    php4-gd	4.3.10-16	ia64	DSA-789-1 php4	2005-8-29
    php4-imap	4.3.10-16	ia64	DSA-789-1 php4	2005-8-29
    php4-ldap	4.3.10-16	ia64	DSA-789-1 php4	2005-8-29
    php4-mcal	4.3.10-16	ia64	DSA-789-1 php4	2005-8-29
    php4-mhash	4.3.10-16	ia64	DSA-789-1 php4	2005-8-29
    php4-mysql	4.3.10-16	ia64	DSA-789-1 php4	2005-8-29
    php4-odbc	4.3.10-16	ia64	DSA-789-1 php4	2005-8-29
    php4-recode	4.3.10-16	ia64	DSA-789-1 php4	2005-8-29
    php4-snmp	4.3.10-16	ia64	DSA-789-1 php4	2005-8-29
    php4-sybase	4.3.10-16	ia64	DSA-789-1 php4	2005-8-29
    php4-xslt	4.3.10-16	ia64	DSA-789-1 php4	2005-8-29
    libapache-mod-php4	4.3.10-16	hppa	DSA-789-1 php4	2005-8-29
    libapache2-mod-php4	4.3.10-16	hppa	DSA-789-1 php4	2005-8-29
    php4-cgi	4.3.10-16	hppa	DSA-789-1 php4	2005-8-29
    php4-cli	4.3.10-16	hppa	DSA-789-1 php4	2005-8-29
    php4-common	4.3.10-16	hppa	DSA-789-1 php4	2005-8-29
    php4-curl	4.3.10-16	hppa	DSA-789-1 php4	2005-8-29
    php4-dev	4.3.10-16	hppa	DSA-789-1 php4	2005-8-29
    php4-domxml	4.3.10-16	hppa	DSA-789-1 php4	2005-8-29
    php4-gd	4.3.10-16	hppa	DSA-789-1 php4	2005-8-29
    php4-imap	4.3.10-16	hppa	DSA-789-1 php4	2005-8-29
    php4-ldap	4.3.10-16	hppa	DSA-789-1 php4	2005-8-29
    php4-mcal	4.3.10-16	hppa	DSA-789-1 php4	2005-8-29
    php4-mhash	4.3.10-16	hppa	DSA-789-1 php4	2005-8-29
    php4-mysql	4.3.10-16	hppa	DSA-789-1 php4	2005-8-29
    php4-odbc	4.3.10-16	hppa	DSA-789-1 php4	2005-8-29
    php4-recode	4.3.10-16	hppa	DSA-789-1 php4	2005-8-29
    php4-snmp	4.3.10-16	hppa	DSA-789-1 php4	2005-8-29
    php4-sybase	4.3.10-16	hppa	DSA-789-1 php4	2005-8-29
    php4-xslt	4.3.10-16	hppa	DSA-789-1 php4	2005-8-29
    libapache-mod-php4	4.3.10-16	m68k	DSA-789-1 php4	2005-8-29
    libapache2-mod-php4	4.3.10-16	m68k	DSA-789-1 php4	2005-8-29
    php4-cgi	4.3.10-16	m68k	DSA-789-1 php4	2005-8-29
    php4-cli	4.3.10-16	m68k	DSA-789-1 php4	2005-8-29
    php4-common	4.3.10-16	m68k	DSA-789-1 php4	2005-8-29
    php4-curl	4.3.10-16	m68k	DSA-789-1 php4	2005-8-29
    php4-dev	4.3.10-16	m68k	DSA-789-1 php4	2005-8-29
    php4-domxml	4.3.10-16	m68k	DSA-789-1 php4	2005-8-29
    php4-gd	4.3.10-16	m68k	DSA-789-1 php4	2005-8-29
    php4-imap	4.3.10-16	m68k	DSA-789-1 php4	2005-8-29
    php4-ldap	4.3.10-16	m68k	DSA-789-1 php4	2005-8-29
    php4-mcal	4.3.10-16	m68k	DSA-789-1 php4	2005-8-29
    php4-mhash	4.3.10-16	m68k	DSA-789-1 php4	2005-8-29
    php4-mysql	4.3.10-16	m68k	DSA-789-1 php4	2005-8-29
    php4-odbc	4.3.10-16	m68k	DSA-789-1 php4	2005-8-29
    php4-recode	4.3.10-16	m68k	DSA-789-1 php4	2005-8-29
    php4-snmp	4.3.10-16	m68k	DSA-789-1 php4	2005-8-29
    php4-sybase	4.3.10-16	m68k	DSA-789-1 php4	2005-8-29
    php4-xslt	4.3.10-16	m68k	DSA-789-1 php4	2005-8-29
    libapache-mod-php4	4.3.10-16	mips	DSA-789-1 php4	2005-8-29
    libapache2-mod-php4	4.3.10-16	mips	DSA-789-1 php4	2005-8-29
    php4-cgi	4.3.10-16	mips	DSA-789-1 php4	2005-8-29
    php4-cli	4.3.10-16	mips	DSA-789-1 php4	2005-8-29
    php4-common	4.3.10-16	mips	DSA-789-1 php4	2005-8-29
    php4-curl	4.3.10-16	mips	DSA-789-1 php4	2005-8-29
    php4-dev	4.3.10-16	mips	DSA-789-1 php4	2005-8-29
    php4-domxml	4.3.10-16	mips	DSA-789-1 php4	2005-8-29
    php4-gd	4.3.10-16	mips	DSA-789-1 php4	2005-8-29
    php4-imap	4.3.10-16	mips	DSA-789-1 php4	2005-8-29
    php4-ldap	4.3.10-16	mips	DSA-789-1 php4	2005-8-29
    php4-mcal	4.3.10-16	mips	DSA-789-1 php4	2005-8-29
    php4-mhash	4.3.10-16	mips	DSA-789-1 php4	2005-8-29
    php4-mysql	4.3.10-16	mips	DSA-789-1 php4	2005-8-29
    php4-odbc	4.3.10-16	mips	DSA-789-1 php4	2005-8-29
    php4-recode	4.3.10-16	mips	DSA-789-1 php4	2005-8-29
    php4-snmp	4.3.10-16	mips	DSA-789-1 php4	2005-8-29
    php4-sybase	4.3.10-16	mips	DSA-789-1 php4	2005-8-29
    php4-xslt	4.3.10-16	mips	DSA-789-1 php4	2005-8-29
    libapache-mod-php4	4.3.10-16	mipsel	DSA-789-1 php4	2005-8-29
    libapache2-mod-php4	4.3.10-16	mipsel	DSA-789-1 php4	2005-8-29
    php4-cgi	4.3.10-16	mipsel	DSA-789-1 php4	2005-8-29
    php4-cli	4.3.10-16	mipsel	DSA-789-1 php4	2005-8-29
    php4-common	4.3.10-16	mipsel	DSA-789-1 php4	2005-8-29
    php4-curl	4.3.10-16	mipsel	DSA-789-1 php4	2005-8-29
    php4-dev	4.3.10-16	mipsel	DSA-789-1 php4	2005-8-29
    php4-domxml	4.3.10-16	mipsel	DSA-789-1 php4	2005-8-29
    php4-gd	4.3.10-16	mipsel	DSA-789-1 php4	2005-8-29
    php4-imap	4.3.10-16	mipsel	DSA-789-1 php4	2005-8-29
    php4-ldap	4.3.10-16	mipsel	DSA-789-1 php4	2005-8-29
    php4-mcal	4.3.10-16	mipsel	DSA-789-1 php4	2005-8-29
    php4-mhash	4.3.10-16	mipsel	DSA-789-1 php4	2005-8-29
    php4-mysql	4.3.10-16	mipsel	DSA-789-1 php4	2005-8-29
    php4-odbc	4.3.10-16	mipsel	DSA-789-1 php4	2005-8-29
    php4-recode	4.3.10-16	mipsel	DSA-789-1 php4	2005-8-29
    php4-snmp	4.3.10-16	mipsel	DSA-789-1 php4	2005-8-29
    php4-sybase	4.3.10-16	mipsel	DSA-789-1 php4	2005-8-29
    php4-xslt	4.3.10-16	mipsel	DSA-789-1 php4	2005-8-29
    libapache-mod-php4	4.3.10-16	powerpc	DSA-789-1 php4	2005-8-29
    libapache2-mod-php4	4.3.10-16	powerpc	DSA-789-1 php4	2005-8-29
    php4-cgi	4.3.10-16	powerpc	DSA-789-1 php4	2005-8-29
    php4-cli	4.3.10-16	powerpc	DSA-789-1 php4	2005-8-29
    php4-common	4.3.10-16	powerpc	DSA-789-1 php4	2005-8-29
    php4-curl	4.3.10-16	powerpc	DSA-789-1 php4	2005-8-29
    php4-dev	4.3.10-16	powerpc	DSA-789-1 php4	2005-8-29
    php4-domxml	4.3.10-16	powerpc	DSA-789-1 php4	2005-8-29
    php4-gd	4.3.10-16	powerpc	DSA-789-1 php4	2005-8-29
    php4-imap	4.3.10-16	powerpc	DSA-789-1 php4	2005-8-29
    php4-ldap	4.3.10-16	powerpc	DSA-789-1 php4	2005-8-29
    php4-mcal	4.3.10-16	powerpc	DSA-789-1 php4	2005-8-29
    php4-mhash	4.3.10-16	powerpc	DSA-789-1 php4	2005-8-29
    php4-mysql	4.3.10-16	powerpc	DSA-789-1 php4	2005-8-29
    php4-odbc	4.3.10-16	powerpc	DSA-789-1 php4	2005-8-29
    php4-recode	4.3.10-16	powerpc	DSA-789-1 php4	2005-8-29
    php4-snmp	4.3.10-16	powerpc	DSA-789-1 php4	2005-8-29
    php4-sybase	4.3.10-16	powerpc	DSA-789-1 php4	2005-8-29
    php4-xslt	4.3.10-16	powerpc	DSA-789-1 php4	2005-8-29
    libapache-mod-php4	4.3.10-16	s390	DSA-789-1 php4	2005-8-29
    libapache2-mod-php4	4.3.10-16	s390	DSA-789-1 php4	2005-8-29
    php4-cgi	4.3.10-16	s390	DSA-789-1 php4	2005-8-29
    php4-cli	4.3.10-16	s390	DSA-789-1 php4	2005-8-29
    php4-common	4.3.10-16	s390	DSA-789-1 php4	2005-8-29
    php4-curl	4.3.10-16	s390	DSA-789-1 php4	2005-8-29
    php4-dev	4.3.10-16	s390	DSA-789-1 php4	2005-8-29
    php4-domxml	4.3.10-16	s390	DSA-789-1 php4	2005-8-29
    php4-gd	4.3.10-16	s390	DSA-789-1 php4	2005-8-29
    php4-imap	4.3.10-16	s390	DSA-789-1 php4	2005-8-29
    php4-ldap	4.3.10-16	s390	DSA-789-1 php4	2005-8-29
    php4-mcal	4.3.10-16	s390	DSA-789-1 php4	2005-8-29
    php4-mhash	4.3.10-16	s390	DSA-789-1 php4	2005-8-29
    php4-mysql	4.3.10-16	s390	DSA-789-1 php4	2005-8-29
    php4-odbc	4.3.10-16	s390	DSA-789-1 php4	2005-8-29
    php4-recode	4.3.10-16	s390	DSA-789-1 php4	2005-8-29
    php4-snmp	4.3.10-16	s390	DSA-789-1 php4	2005-8-29
    php4-sybase	4.3.10-16	s390	DSA-789-1 php4	2005-8-29
    php4-xslt	4.3.10-16	s390	DSA-789-1 php4	2005-8-29
    libapache-mod-php4	4.3.10-16	sparc	DSA-789-1 php4	2005-8-29
    libapache2-mod-php4	4.3.10-16	sparc	DSA-789-1 php4	2005-8-29
    php4-cgi	4.3.10-16	sparc	DSA-789-1 php4	2005-8-29
    php4-cli	4.3.10-16	sparc	DSA-789-1 php4	2005-8-29
    php4-common	4.3.10-16	sparc	DSA-789-1 php4	2005-8-29
    php4-curl	4.3.10-16	sparc	DSA-789-1 php4	2005-8-29
    php4-dev	4.3.10-16	sparc	DSA-789-1 php4	2005-8-29
    php4-domxml	4.3.10-16	sparc	DSA-789-1 php4	2005-8-29
    php4-gd	4.3.10-16	sparc	DSA-789-1 php4	2005-8-29
    php4-imap	4.3.10-16	sparc	DSA-789-1 php4	2005-8-29
    php4-ldap	4.3.10-16	sparc	DSA-789-1 php4	2005-8-29
    php4-mcal	4.3.10-16	sparc	DSA-789-1 php4	2005-8-29
    php4-mhash	4.3.10-16	sparc	DSA-789-1 php4	2005-8-29
    php4-mysql	4.3.10-16	sparc	DSA-789-1 php4	2005-8-29
    php4-odbc	4.3.10-16	sparc	DSA-789-1 php4	2005-8-29
    php4-recode	4.3.10-16	sparc	DSA-789-1 php4	2005-8-29
    php4-snmp	4.3.10-16	sparc	DSA-789-1 php4	2005-8-29
    php4-sybase	4.3.10-16	sparc	DSA-789-1 php4	2005-8-29
    php4-xslt	4.3.10-16	sparc	DSA-789-1 php4	2005-8-29
    cacti	0.6.7-2.5	all	DSA-764-1 cacti	2005-7-21
    gtk2-engines-pixbuf	2.6.4-3.1	alpha	DSA-911-1 gtk+2.0	2005-11-29
    gtk2-engines-pixbuf	2.6.4-3.1	amd64	DSA-911-1 gtk+2.0	2005-11-29
    gtk2-engines-pixbuf	2.6.4-3.1	arm	DSA-911-1 gtk+2.0	2005-11-29
    gtk2-engines-pixbuf	2.6.4-3.1	i386	DSA-911-1 gtk+2.0	2005-11-29
    gtk2-engines-pixbuf	2.6.4-3.1	ia64	DSA-911-1 gtk+2.0	2005-11-29
    gtk2-engines-pixbuf	2.6.4-3.1	hppa	DSA-911-1 gtk+2.0	2005-11-29
    gtk2-engines-pixbuf	2.6.4-3.1	m68k	DSA-911-1 gtk+2.0	2005-11-29
    gtk2-engines-pixbuf	2.6.4-3.1	mips	DSA-911-1 gtk+2.0	2005-11-29
    gtk2-engines-pixbuf	2.6.4-3.1	mipsel	DSA-911-1 gtk+2.0	2005-11-29
    gtk2-engines-pixbuf	2.6.4-3.1	powerpc	DSA-911-1 gtk+2.0	2005-11-29
    gtk2-engines-pixbuf	2.6.4-3.1	s390	DSA-911-1 gtk+2.0	2005-11-29
    gtk2-engines-pixbuf	2.6.4-3.1	sparc	DSA-911-1 gtk+2.0	2005-11-29
    bluez-bcm203x	2.15-1.1	alpha	DSA-782-1 bluez-utils	2005-8-23
    bluez-cups	2.15-1.1	alpha	DSA-782-1 bluez-utils	2005-8-23
    bluez-pcmcia-support	2.15-1.1	alpha	DSA-782-1 bluez-utils	2005-8-23
    bluez-utils	2.15-1.1	alpha	DSA-782-1 bluez-utils	2005-8-23
    bluez-bcm203x	2.15-1.1	amd64	DSA-782-1 bluez-utils	2005-8-23
    bluez-cups	2.15-1.1	amd64	DSA-782-1 bluez-utils	2005-8-23
    bluez-utils	2.15-1.1	amd64	DSA-782-1 bluez-utils	2005-8-23
    bluez-bcm203x	2.15-1.1	arm	DSA-782-1 bluez-utils	2005-8-23
    bluez-cups	2.15-1.1	arm	DSA-782-1 bluez-utils	2005-8-23
    bluez-pcmcia-support	2.15-1.1	arm	DSA-782-1 bluez-utils	2005-8-23
    bluez-utils	2.15-1.1	arm	DSA-782-1 bluez-utils	2005-8-23
    bluez-bcm203x	2.15-1.1	i386	DSA-782-1 bluez-utils	2005-8-23
    bluez-cups	2.15-1.1	i386	DSA-782-1 bluez-utils	2005-8-23
    bluez-pcmcia-support	2.15-1.1	i386	DSA-782-1 bluez-utils	2005-8-23
    bluez-utils	2.15-1.1	i386	DSA-782-1 bluez-utils	2005-8-23
    bluez-bcm203x	2.15-1.1	ia64	DSA-782-1 bluez-utils	2005-8-23
    bluez-cups	2.15-1.1	ia64	DSA-782-1 bluez-utils	2005-8-23
    bluez-pcmcia-support	2.15-1.1	ia64	DSA-782-1 bluez-utils	2005-8-23
    bluez-utils	2.15-1.1	ia64	DSA-782-1 bluez-utils	2005-8-23
    bluez-bcm203x	2.15-1.1	hppa	DSA-782-1 bluez-utils	2005-8-23
    bluez-cups	2.15-1.1	hppa	DSA-782-1 bluez-utils	2005-8-23
    bluez-pcmcia-support	2.15-1.1	hppa	DSA-782-1 bluez-utils	2005-8-23
    bluez-utils	2.15-1.1	hppa	DSA-782-1 bluez-utils	2005-8-23
    bluez-bcm203x	2.15-1.1	m68k	DSA-782-1 bluez-utils	2005-8-23
    bluez-cups	2.15-1.1	m68k	DSA-782-1 bluez-utils	2005-8-23
    bluez-pcmcia-support	2.15-1.1	m68k	DSA-782-1 bluez-utils	2005-8-23
    bluez-utils	2.15-1.1	m68k	DSA-782-1 bluez-utils	2005-8-23
    bluez-bcm203x	2.15-1.1	mips	DSA-782-1 bluez-utils	2005-8-23
    bluez-cups	2.15-1.1	mips	DSA-782-1 bluez-utils	2005-8-23
    bluez-pcmcia-support	2.15-1.1	mips	DSA-782-1 bluez-utils	2005-8-23
    bluez-utils	2.15-1.1	mips	DSA-782-1 bluez-utils	2005-8-23
    bluez-bcm203x	2.15-1.1	mipsel	DSA-782-1 bluez-utils	2005-8-23
    bluez-cups	2.15-1.1	mipsel	DSA-782-1 bluez-utils	2005-8-23
    bluez-pcmcia-support	2.15-1.1	mipsel	DSA-782-1 bluez-utils	2005-8-23
    bluez-utils	2.15-1.1	mipsel	DSA-782-1 bluez-utils	2005-8-23
    bluez-bcm203x	2.15-1.1	powerpc	DSA-782-1 bluez-utils	2005-8-23
    bluez-cups	2.15-1.1	powerpc	DSA-782-1 bluez-utils	2005-8-23
    bluez-pcmcia-support	2.15-1.1	powerpc	DSA-782-1 bluez-utils	2005-8-23
    bluez-utils	2.15-1.1	powerpc	DSA-782-1 bluez-utils	2005-8-23
    bluez-bcm203x	2.15-1.1	s390	DSA-782-1 bluez-utils	2005-8-23
    bluez-cups	2.15-1.1	s390	DSA-782-1 bluez-utils	2005-8-23
    bluez-utils	2.15-1.1	s390	DSA-782-1 bluez-utils	2005-8-23
    bluez-bcm203x	2.15-1.1	sparc	DSA-782-1 bluez-utils	2005-8-23
    bluez-cups	2.15-1.1	sparc	DSA-782-1 bluez-utils	2005-8-23
    bluez-pcmcia-support	2.15-1.1	sparc	DSA-782-1 bluez-utils	2005-8-23
    bluez-utils	2.15-1.1	sparc	DSA-782-1 bluez-utils	2005-8-23
    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
    sudo	1.6.6-1.4	alpha	DSA-870-1 sudo	2005-10-25
    sudo	1.6.6-1.4	arm	DSA-870-1 sudo	2005-10-25
    sudo	1.6.6-1.4	i386	DSA-870-1 sudo	2005-10-25
    sudo	1.6.6-1.4	ia64	DSA-870-1 sudo	2005-10-25
    sudo	1.6.6-1.4	hppa	DSA-870-1 sudo	2005-10-25
    sudo	1.6.6-1.4	m68k	DSA-870-1 sudo	2005-10-25
    sudo	1.6.6-1.4	mips	DSA-870-1 sudo	2005-10-25
    sudo	1.6.6-1.4	mipsel	DSA-870-1 sudo	2005-10-25
    sudo	1.6.6-1.4	powerpc	DSA-870-1 sudo	2005-10-25
    sudo	1.6.6-1.4	s390	DSA-870-1 sudo	2005-10-25
    sudo	1.6.6-1.4	sparc	DSA-870-1 sudo	2005-10-25
    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
    libapache-mod-ssl-doc	2.8.9-2.5	all	DSA-807-1 libapache-mod-ssl	2005-9-12
    libapache-mod-ssl	2.8.9-2.5	alpha	DSA-807-1 libapache-mod-ssl	2005-9-12
    libapache-mod-ssl	2.8.9-2.5	arm	DSA-807-1 libapache-mod-ssl	2005-9-12
    libapache-mod-ssl	2.8.9-2.5	i386	DSA-807-1 libapache-mod-ssl	2005-9-12
    libapache-mod-ssl	2.8.9-2.5	ia64	DSA-807-1 libapache-mod-ssl	2005-9-12
    libapache-mod-ssl	2.8.9-2.5	hppa	DSA-807-1 libapache-mod-ssl	2005-9-12
    libapache-mod-ssl	2.8.9-2.5	m68k	DSA-807-1 libapache-mod-ssl	2005-9-12
    libapache-mod-ssl	2.8.9-2.5	mips	DSA-807-1 libapache-mod-ssl	2005-9-12
    libapache-mod-ssl	2.8.9-2.5	mipsel	DSA-807-1 libapache-mod-ssl	2005-9-12
    libapache-mod-ssl	2.8.9-2.5	powerpc	DSA-807-1 libapache-mod-ssl	2005-9-12
    libapache-mod-ssl	2.8.9-2.5	s390	DSA-807-1 libapache-mod-ssl	2005-9-12
    libapache-mod-ssl	2.8.9-2.5	sparc	DSA-807-1 libapache-mod-ssl	2005-9-12
    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
    masqmail	0.1.16-2.2	alpha	DSA-848-1 masqmail	2005-10-8
    masqmail	0.1.16-2.2	arm	DSA-848-1 masqmail	2005-10-8
    masqmail	0.1.16-2.2	i386	DSA-848-1 masqmail	2005-10-8
    masqmail	0.1.16-2.2	ia64	DSA-848-1 masqmail	2005-10-8
    masqmail	0.1.16-2.2	hppa	DSA-848-1 masqmail	2005-10-8
    masqmail	0.1.16-2.2	m68k	DSA-848-1 masqmail	2005-10-8
    masqmail	0.1.16-2.2	mips	DSA-848-1 masqmail	2005-10-8
    masqmail	0.1.16-2.2	mipsel	DSA-848-1 masqmail	2005-10-8
    masqmail	0.1.16-2.2	powerpc	DSA-848-1 masqmail	2005-10-8
    masqmail	0.1.16-2.2	s390	DSA-848-1 masqmail	2005-10-8
    masqmail	0.1.16-2.2	sparc	DSA-848-1 masqmail	2005-10-8
    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
    lintian	1.20.17.1	all	DSA-630-1 lintian	2005-1-10
    phppgadmin	3.5.2-5	all	DSA-759-1 phppgadmin	2005-7-18
    courier-doc	0.37.3-2.8	all	DSA-917-1 courier	2005-12-8
    courier-authdaemon	0.37.3-2.8	alpha	DSA-917-1 courier	2005-12-8
    courier-authmysql	0.37.3-2.8	alpha	DSA-917-1 courier	2005-12-8
    courier-base	0.37.3-2.8	alpha	DSA-917-1 courier	2005-12-8
    courier-debug	0.37.3-2.8	alpha	DSA-917-1 courier	2005-12-8
    courier-imap	1.4.3-2.8	alpha	DSA-917-1 courier	2005-12-8
    courier-ldap	0.37.3-2.8	alpha	DSA-917-1 courier	2005-12-8
    courier-maildrop	0.37.3-2.8	alpha	DSA-917-1 courier	2005-12-8
    courier-mlm	0.37.3-2.8	alpha	DSA-917-1 courier	2005-12-8
    courier-mta	0.37.3-2.8	alpha	DSA-917-1 courier	2005-12-8
    courier-pcp	0.37.3-2.8	alpha	DSA-917-1 courier	2005-12-8
    courier-pop	0.37.3-2.8	alpha	DSA-917-1 courier	2005-12-8
    courier-webadmin	0.37.3-2.8	alpha	DSA-917-1 courier	2005-12-8
    sqwebmail	0.37.3-2.8	alpha	DSA-917-1 courier	2005-12-8
    courier-authdaemon	0.37.3-2.8	arm	DSA-917-1 courier	2005-12-8
    courier-authmysql	0.37.3-2.8	arm	DSA-917-1 courier	2005-12-8
    courier-base	0.37.3-2.8	arm	DSA-917-1 courier	2005-12-8
    courier-debug	0.37.3-2.8	arm	DSA-917-1 courier	2005-12-8
    courier-imap	1.4.3-2.8	arm	DSA-917-1 courier	2005-12-8
    courier-ldap	0.37.3-2.8	arm	DSA-917-1 courier	2005-12-8
    courier-maildrop	0.37.3-2.8	arm	DSA-917-1 courier	2005-12-8
    courier-mlm	0.37.3-2.8	arm	DSA-917-1 courier	2005-12-8
    courier-mta	0.37.3-2.8	arm	DSA-917-1 courier	2005-12-8
    courier-pcp	0.37.3-2.8	arm	DSA-917-1 courier	2005-12-8
    courier-pop	0.37.3-2.8	arm	DSA-917-1 courier	2005-12-8
    courier-webadmin	0.37.3-2.8	arm	DSA-917-1 courier	2005-12-8
    sqwebmail	0.37.3-2.8	arm	DSA-917-1 courier	2005-12-8
    courier-authdaemon	0.37.3-2.8	i386	DSA-917-1 courier	2005-12-8
    courier-authmysql	0.37.3-2.8	i386	DSA-917-1 courier	2005-12-8
    courier-base	0.37.3-2.8	i386	DSA-917-1 courier	2005-12-8
    courier-debug	0.37.3-2.8	i386	DSA-917-1 courier	2005-12-8
    courier-imap	1.4.3-2.8	i386	DSA-917-1 courier	2005-12-8
    courier-ldap	0.37.3-2.8	i386	DSA-917-1 courier	2005-12-8
    courier-maildrop	0.37.3-2.8	i386	DSA-917-1 courier	2005-12-8
    courier-mlm	0.37.3-2.8	i386	DSA-917-1 courier	2005-12-8
    courier-mta	0.37.3-2.8	i386	DSA-917-1 courier	2005-12-8
    courier-pcp	0.37.3-2.8	i386	DSA-917-1 courier	2005-12-8
    courier-pop	0.37.3-2.8	i386	DSA-917-1 courier	2005-12-8
    courier-webadmin	0.37.3-2.8	i386	DSA-917-1 courier	2005-12-8
    sqwebmail	0.37.3-2.8	i386	DSA-917-1 courier	2005-12-8
    courier-authdaemon	0.37.3-2.8	ia64	DSA-917-1 courier	2005-12-8
    courier-authmysql	0.37.3-2.8	ia64	DSA-917-1 courier	2005-12-8
    courier-base	0.37.3-2.8	ia64	DSA-917-1 courier	2005-12-8
    courier-debug	0.37.3-2.8	ia64	DSA-917-1 courier	2005-12-8
    courier-imap	1.4.3-2.8	ia64	DSA-917-1 courier	2005-12-8
    courier-ldap	0.37.3-2.8	ia64	DSA-917-1 courier	2005-12-8
    courier-maildrop	0.37.3-2.8	ia64	DSA-917-1 courier	2005-12-8
    courier-mlm	0.37.3-2.8	ia64	DSA-917-1 courier	2005-12-8
    courier-mta	0.37.3-2.8	ia64	DSA-917-1 courier	2005-12-8
    courier-pcp	0.37.3-2.8	ia64	DSA-917-1 courier	2005-12-8
    courier-pop	0.37.3-2.8	ia64	DSA-917-1 courier	2005-12-8
    courier-webadmin	0.37.3-2.8	ia64	DSA-917-1 courier	2005-12-8
    sqwebmail	0.37.3-2.8	ia64	DSA-917-1 courier	2005-12-8
    courier-authdaemon	0.37.3-2.8	hppa	DSA-917-1 courier	2005-12-8
    courier-authmysql	0.37.3-2.8	hppa	DSA-917-1 courier	2005-12-8
    courier-base	0.37.3-2.8	hppa	DSA-917-1 courier	2005-12-8
    courier-debug	0.37.3-2.8	hppa	DSA-917-1 courier	2005-12-8
    courier-imap	1.4.3-2.8	hppa	DSA-917-1 courier	2005-12-8
    courier-ldap	0.37.3-2.8	hppa	DSA-917-1 courier	2005-12-8
    courier-maildrop	0.37.3-2.8	hppa	DSA-917-1 courier	2005-12-8
    courier-mlm	0.37.3-2.8	hppa	DSA-917-1 courier	2005-12-8
    courier-mta	0.37.3-2.8	hppa	DSA-917-1 courier	2005-12-8
    courier-pcp	0.37.3-2.8	hppa	DSA-917-1 courier	2005-12-8
    courier-pop	0.37.3-2.8	hppa	DSA-917-1 courier	2005-12-8
    courier-webadmin	0.37.3-2.8	hppa	DSA-917-1 courier	2005-12-8
    sqwebmail	0.37.3-2.8	hppa	DSA-917-1 courier	2005-12-8
    courier-authdaemon	0.37.3-2.8	m68k	DSA-917-1 courier	2005-12-8
    courier-authmysql	0.37.3-2.8	m68k	DSA-917-1 courier	2005-12-8
    courier-base	0.37.3-2.8	m68k	DSA-917-1 courier	2005-12-8
    courier-debug	0.37.3-2.8	m68k	DSA-917-1 courier	2005-12-8
    courier-imap	1.4.3-2.8	m68k	DSA-917-1 courier	2005-12-8
    courier-ldap	0.37.3-2.8	m68k	DSA-917-1 courier	2005-12-8
    courier-maildrop	0.37.3-2.8	m68k	DSA-917-1 courier	2005-12-8
    courier-mlm	0.37.3-2.8	m68k	DSA-917-1 courier	2005-12-8
    courier-mta	0.37.3-2.8	m68k	DSA-917-1 courier	2005-12-8
    courier-pcp	0.37.3-2.8	m68k	DSA-917-1 courier	2005-12-8
    courier-pop	0.37.3-2.8	m68k	DSA-917-1 courier	2005-12-8
    courier-webadmin	0.37.3-2.8	m68k	DSA-917-1 courier	2005-12-8
    sqwebmail	0.37.3-2.8	m68k	DSA-917-1 courier	2005-12-8
    courier-authdaemon	0.37.3-2.8	mips	DSA-917-1 courier	2005-12-8
    courier-authmysql	0.37.3-2.8	mips	DSA-917-1 courier	2005-12-8
    courier-base	0.37.3-2.8	mips	DSA-917-1 courier	2005-12-8
    courier-debug	0.37.3-2.8	mips	DSA-917-1 courier	2005-12-8
    courier-imap	1.4.3-2.8	mips	DSA-917-1 courier	2005-12-8
    courier-ldap	0.37.3-2.8	mips	DSA-917-1 courier	2005-12-8
    courier-maildrop	0.37.3-2.8	mips	DSA-917-1 courier	2005-12-8
    courier-mlm	0.37.3-2.8	mips	DSA-917-1 courier	2005-12-8
    courier-mta	0.37.3-2.8	mips	DSA-917-1 courier	2005-12-8
    courier-pcp	0.37.3-2.8	mips	DSA-917-1 courier	2005-12-8
    courier-pop	0.37.3-2.8	mips	DSA-917-1 courier	2005-12-8
    courier-webadmin	0.37.3-2.8	mips	DSA-917-1 courier	2005-12-8
    sqwebmail	0.37.3-2.8	mips	DSA-917-1 courier	2005-12-8
    courier-authdaemon	0.37.3-2.8	mipsel	DSA-917-1 courier	2005-12-8
    courier-authmysql	0.37.3-2.8	mipsel	DSA-917-1 courier	2005-12-8
    courier-base	0.37.3-2.8	mipsel	DSA-917-1 courier	2005-12-8
    courier-debug	0.37.3-2.8	mipsel	DSA-917-1 courier	2005-12-8
    courier-imap	1.4.3-2.8	mipsel	DSA-917-1 courier	2005-12-8
    courier-ldap	0.37.3-2.8	mipsel	DSA-917-1 courier	2005-12-8
    courier-maildrop	0.37.3-2.8	mipsel	DSA-917-1 courier	2005-12-8
    courier-mlm	0.37.3-2.8	mipsel	DSA-917-1 courier	2005-12-8
    courier-mta	0.37.3-2.8	mipsel	DSA-917-1 courier	2005-12-8
    courier-pcp	0.37.3-2.8	mipsel	DSA-917-1 courier	2005-12-8
    courier-pop	0.37.3-2.8	mipsel	DSA-917-1 courier	2005-12-8
    courier-webadmin	0.37.3-2.8	mipsel	DSA-917-1 courier	2005-12-8
    sqwebmail	0.37.3-2.8	mipsel	DSA-917-1 courier	2005-12-8
    courier-authdaemon	0.37.3-2.8	powerpc	DSA-917-1 courier	2005-12-8
    courier-authmysql	0.37.3-2.8	powerpc	DSA-917-1 courier	2005-12-8
    courier-base	0.37.3-2.8	powerpc	DSA-917-1 courier	2005-12-8
    courier-debug	0.37.3-2.8	powerpc	DSA-917-1 courier	2005-12-8
    courier-imap	1.4.3-2.8	powerpc	DSA-917-1 courier	2005-12-8
    courier-ldap	0.37.3-2.8	powerpc	DSA-917-1 courier	2005-12-8
    courier-maildrop	0.37.3-2.8	powerpc	DSA-917-1 courier	2005-12-8
    courier-mlm	0.37.3-2.8	powerpc	DSA-917-1 courier	2005-12-8
    courier-mta	0.37.3-2.8	powerpc	DSA-917-1 courier	2005-12-8
    courier-pcp	0.37.3-2.8	powerpc	DSA-917-1 courier	2005-12-8
    courier-pop	0.37.3-2.8	powerpc	DSA-917-1 courier	2005-12-8
    courier-webadmin	0.37.3-2.8	powerpc	DSA-917-1 courier	2005-12-8
    sqwebmail	0.37.3-2.8	powerpc	DSA-917-1 courier	2005-12-8
    courier-authdaemon	0.37.3-2.8	s390	DSA-917-1 courier	2005-12-8
    courier-authmysql	0.37.3-2.8	s390	DSA-917-1 courier	2005-12-8
    courier-base	0.37.3-2.8	s390	DSA-917-1 courier	2005-12-8
    courier-debug	0.37.3-2.8	s390	DSA-917-1 courier	2005-12-8
    courier-imap	1.4.3-2.8	s390	DSA-917-1 courier	2005-12-8
    courier-ldap	0.37.3-2.8	s390	DSA-917-1 courier	2005-12-8
    courier-maildrop	0.37.3-2.8	s390	DSA-917-1 courier	2005-12-8
    courier-mlm	0.37.3-2.8	s390	DSA-917-1 courier	2005-12-8
    courier-mta	0.37.3-2.8	s390	DSA-917-1 courier	2005-12-8
    courier-pcp	0.37.3-2.8	s390	DSA-917-1 courier	2005-12-8
    courier-pop	0.37.3-2.8	s390	DSA-917-1 courier	2005-12-8
    courier-webadmin	0.37.3-2.8	s390	DSA-917-1 courier	2005-12-8
    sqwebmail	0.37.3-2.8	s390	DSA-917-1 courier	2005-12-8
    courier-authdaemon	0.37.3-2.8	sparc	DSA-917-1 courier	2005-12-8
    courier-authmysql	0.37.3-2.8	sparc	DSA-917-1 courier	2005-12-8
    courier-base	0.37.3-2.8	sparc	DSA-917-1 courier	2005-12-8
    courier-debug	0.37.3-2.8	sparc	DSA-917-1 courier	2005-12-8
    courier-imap	1.4.3-2.8	sparc	DSA-917-1 courier	2005-12-8
    courier-ldap	0.37.3-2.8	sparc	DSA-917-1 courier	2005-12-8
    courier-maildrop	0.37.3-2.8	sparc	DSA-917-1 courier	2005-12-8
    courier-mlm	0.37.3-2.8	sparc	DSA-917-1 courier	2005-12-8
    courier-mta	0.37.3-2.8	sparc	DSA-917-1 courier	2005-12-8
    courier-pcp	0.37.3-2.8	sparc	DSA-917-1 courier	2005-12-8
    courier-pop	0.37.3-2.8	sparc	DSA-917-1 courier	2005-12-8
    courier-webadmin	0.37.3-2.8	sparc	DSA-917-1 courier	2005-12-8
    sqwebmail	0.37.3-2.8	sparc	DSA-917-1 courier	2005-12-8
    idle	2.1.3-3.4	all	DSA-819-1 python2.1	2005-9-23
    python-dev	2.1.3-3.4	all	DSA-819-1 python2.1	2005-9-23
    python-doc	2.1.3-3.4	all	DSA-819-1 python2.1	2005-9-23
    python-elisp	2.1.3-3.4	all	DSA-819-1 python2.1	2005-9-23
    python-examples	2.1.3-3.4	all	DSA-819-1 python2.1	2005-9-23
    python-gdbm	2.1.3-3.4	all	DSA-819-1 python2.1	2005-9-23
    python-mpz	2.1.3-3.4	all	DSA-819-1 python2.1	2005-9-23
    python-tk	2.1.3-3.4	all	DSA-819-1 python2.1	2005-9-23
    python-xmlbase	2.1.3-3.4	all	DSA-819-1 python2.1	2005-9-23
    python	2.1.3-3.4	all	DSA-819-1 python2.1	2005-9-23
    shorewall	2.2.3-2	all	DSA-849-1 shorewall	2005-10-8
    mason	1.0.0-2.2	all	DSA-845-1 mason	2005-10-6
    mysql-common	3.23.49-8.14	all	DSA-829-1 mysql	2005-9-30
    mysql-doc	3.23.49-8.5	all	DSA-829-1 mysql	2005-9-30
    libmysqlclient10	3.23.49-8.14	alpha	DSA-829-1 mysql	2005-9-30
    libmysqlclient10-dev	3.23.49-8.14	alpha	DSA-829-1 mysql	2005-9-30
    mysql-client	3.23.49-8.14	alpha	DSA-829-1 mysql	2005-9-30
    mysql-server	3.23.49-8.14	alpha	DSA-829-1 mysql	2005-9-30
    libmysqlclient10	3.23.49-8.14	arm	DSA-829-1 mysql	2005-9-30
    libmysqlclient10-dev	3.23.49-8.14	arm	DSA-829-1 mysql	2005-9-30
    mysql-client	3.23.49-8.14	arm	DSA-829-1 mysql	2005-9-30
    mysql-server	3.23.49-8.14	arm	DSA-829-1 mysql	2005-9-30
    libmysqlclient10	3.23.49-8.14	i386	DSA-829-1 mysql	2005-9-30
    libmysqlclient10-dev	3.23.49-8.14	i386	DSA-829-1 mysql	2005-9-30
    mysql-client	3.23.49-8.14	i386	DSA-829-1 mysql	2005-9-30
    mysql-server	3.23.49-8.14	i386	DSA-829-1 mysql	2005-9-30
    libmysqlclient10	3.23.49-8.14	ia64	DSA-829-1 mysql	2005-9-30
    libmysqlclient10-dev	3.23.49-8.14	ia64	DSA-829-1 mysql	2005-9-30
    mysql-client	3.23.49-8.14	ia64	DSA-829-1 mysql	2005-9-30
    mysql-server	3.23.49-8.14	ia64	DSA-829-1 mysql	2005-9-30
    libmysqlclient10	3.23.49-8.14	hppa	DSA-829-1 mysql	2005-9-30
    libmysqlclient10-dev	3.23.49-8.14	hppa	DSA-829-1 mysql	2005-9-30
    mysql-client	3.23.49-8.14	hppa	DSA-829-1 mysql	2005-9-30
    mysql-server	3.23.49-8.14	hppa	DSA-829-1 mysql	2005-9-30
    libmysqlclient10	3.23.49-8.14	m68k	DSA-829-1 mysql	2005-9-30
    libmysqlclient10-dev	3.23.49-8.14	m68k	DSA-829-1 mysql	2005-9-30
    mysql-client	3.23.49-8.14	m68k	DSA-829-1 mysql	2005-9-30
    mysql-server	3.23.49-8.14	m68k	DSA-829-1 mysql	2005-9-30
    libmysqlclient10	3.23.49-8.14	mips	DSA-829-1 mysql	2005-9-30
    libmysqlclient10-dev	3.23.49-8.14	mips	DSA-829-1 mysql	2005-9-30
    mysql-client	3.23.49-8.14	mips	DSA-829-1 mysql	2005-9-30
    mysql-server	3.23.49-8.14	mips	DSA-829-1 mysql	2005-9-30
    libmysqlclient10	3.23.49-8.14	mipsel	DSA-829-1 mysql	2005-9-30
    libmysqlclient10-dev	3.23.49-8.14	mipsel	DSA-829-1 mysql	2005-9-30
    mysql-client	3.23.49-8.14	mipsel	DSA-829-1 mysql	2005-9-30
    mysql-server	3.23.49-8.14	mipsel	DSA-829-1 mysql	2005-9-30
    libmysqlclient10	3.23.49-8.14	powerpc	DSA-829-1 mysql	2005-9-30
    libmysqlclient10-dev	3.23.49-8.14	powerpc	DSA-829-1 mysql	2005-9-30
    mysql-client	3.23.49-8.14	powerpc	DSA-829-1 mysql	2005-9-30
    mysql-server	3.23.49-8.14	powerpc	DSA-829-1 mysql	2005-9-30
    libmysqlclient10	3.23.49-8.14	s390	DSA-829-1 mysql	2005-9-30
    libmysqlclient10-dev	3.23.49-8.14	s390	DSA-829-1 mysql	2005-9-30
    mysql-client	3.23.49-8.14	s390	DSA-829-1 mysql	2005-9-30
    mysql-server	3.23.49-8.14	s390	DSA-829-1 mysql	2005-9-30
    libmysqlclient10	3.23.49-8.14	sparc	DSA-829-1 mysql	2005-9-30
    libmysqlclient10-dev	3.23.49-8.14	sparc	DSA-829-1 mysql	2005-9-30
    mysql-client	3.23.49-8.14	sparc	DSA-829-1 mysql	2005-9-30
    mysql-server	3.23.49-8.14	sparc	DSA-829-1 mysql	2005-9-30
    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
    drupal	4.5.3-3	all	DSA-745-1 drupal	2005-7-10
    squirrelmail	1.2.6-3	all	DSA-662-2 squirrelmail	2005-3-14
    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
    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
    libgdk-pixbuf-dev	0.22.0-8.1	alpha	DSA-913-1 gdk-pixbuf	2005-12-1
    libgdk-pixbuf-gnome-dev	0.22.0-8.1	alpha	DSA-913-1 gdk-pixbuf	2005-12-1
    libgdk-pixbuf-gnome2	0.22.0-8.1	alpha	DSA-913-1 gdk-pixbuf	2005-12-1
    libgdk-pixbuf2	0.22.0-8.1	alpha	DSA-913-1 gdk-pixbuf	2005-12-1
    libgdk-pixbuf-dev	0.22.0-8.1	amd64	DSA-913-1 gdk-pixbuf	2005-12-1
    libgdk-pixbuf-gnome-dev	0.22.0-8.1	amd64	DSA-913-1 gdk-pixbuf	2005-12-1
    libgdk-pixbuf-gnome2	0.22.0-8.1	amd64	DSA-913-1 gdk-pixbuf	2005-12-1
    libgdk-pixbuf2	0.22.0-8.1	amd64	DSA-913-1 gdk-pixbuf	2005-12-1
    libgdk-pixbuf-dev	0.22.0-8.1	arm	DSA-913-1 gdk-pixbuf	2005-12-1
    libgdk-pixbuf-gnome-dev	0.22.0-8.1	arm	DSA-913-1 gdk-pixbuf	2005-12-1
    libgdk-pixbuf-gnome2	0.22.0-8.1	arm	DSA-913-1 gdk-pixbuf	2005-12-1
    libgdk-pixbuf2	0.22.0-8.1	arm	DSA-913-1 gdk-pixbuf	2005-12-1
    libgdk-pixbuf-dev	0.22.0-8.1	i386	DSA-913-1 gdk-pixbuf	2005-12-1
    libgdk-pixbuf-gnome-dev	0.22.0-8.1	i386	DSA-913-1 gdk-pixbuf	2005-12-1
    libgdk-pixbuf-gnome2	0.22.0-8.1	i386	DSA-913-1 gdk-pixbuf	2005-12-1
    libgdk-pixbuf2	0.22.0-8.1	i386	DSA-913-1 gdk-pixbuf	2005-12-1
    libgdk-pixbuf-dev	0.22.0-8.1	ia64	DSA-913-1 gdk-pixbuf	2005-12-1
    libgdk-pixbuf-gnome-dev	0.22.0-8.1	ia64	DSA-913-1 gdk-pixbuf	2005-12-1
    libgdk-pixbuf-gnome2	0.22.0-8.1	ia64	DSA-913-1 gdk-pixbuf	2005-12-1
    libgdk-pixbuf2	0.22.0-8.1	ia64	DSA-913-1 gdk-pixbuf	2005-12-1
    libgdk-pixbuf-dev	0.22.0-8.1	hppa	DSA-913-1 gdk-pixbuf	2005-12-1
    libgdk-pixbuf-gnome-dev	0.22.0-8.1	hppa	DSA-913-1 gdk-pixbuf	2005-12-1
    libgdk-pixbuf-gnome2	0.22.0-8.1	hppa	DSA-913-1 gdk-pixbuf	2005-12-1
    libgdk-pixbuf2	0.22.0-8.1	hppa	DSA-913-1 gdk-pixbuf	2005-12-1
    libgdk-pixbuf-dev	0.22.0-8.1	m68k	DSA-913-1 gdk-pixbuf	2005-12-1
    libgdk-pixbuf-gnome-dev	0.22.0-8.1	m68k	DSA-913-1 gdk-pixbuf	2005-12-1
    libgdk-pixbuf-gnome2	0.22.0-8.1	m68k	DSA-913-1 gdk-pixbuf	2005-12-1
    libgdk-pixbuf2	0.22.0-8.1	m68k	DSA-913-1 gdk-pixbuf	2005-12-1
    libgdk-pixbuf-dev	0.22.0-8.1	mips	DSA-913-1 gdk-pixbuf	2005-12-1
    libgdk-pixbuf-gnome-dev	0.22.0-8.1	mips	DSA-913-1 gdk-pixbuf	2005-12-1
    libgdk-pixbuf-gnome2	0.22.0-8.1	mips	DSA-913-1 gdk-pixbuf	2005-12-1
    libgdk-pixbuf2	0.22.0-8.1	mips	DSA-913-1 gdk-pixbuf	2005-12-1
    libgdk-pixbuf-dev	0.22.0-8.1	mipsel	DSA-913-1 gdk-pixbuf	2005-12-1
    libgdk-pixbuf-gnome-dev	0.22.0-8.1	mipsel	DSA-913-1 gdk-pixbuf	2005-12-1
    libgdk-pixbuf-gnome2	0.22.0-8.1	mipsel	DSA-913-1 gdk-pixbuf	2005-12-1
    libgdk-pixbuf2	0.22.0-8.1	mipsel	DSA-913-1 gdk-pixbuf	2005-12-1
    libgdk-pixbuf-dev	0.22.0-8.1	powerpc	DSA-913-1 gdk-pixbuf	2005-12-1
    libgdk-pixbuf-gnome-dev	0.22.0-8.1	powerpc	DSA-913-1 gdk-pixbuf	2005-12-1
    libgdk-pixbuf-gnome2	0.22.0-8.1	powerpc	DSA-913-1 gdk-pixbuf	2005-12-1
    libgdk-pixbuf2	0.22.0-8.1	powerpc	DSA-913-1 gdk-pixbuf	2005-12-1
    libgdk-pixbuf-dev	0.22.0-8.1	s390	DSA-913-1 gdk-pixbuf	2005-12-1
    libgdk-pixbuf-gnome-dev	0.22.0-8.1	s390	DSA-913-1 gdk-pixbuf	2005-12-1
    libgdk-pixbuf-gnome2	0.22.0-8.1	s390	DSA-913-1 gdk-pixbuf	2005-12-1
    libgdk-pixbuf2	0.22.0-8.1	s390	DSA-913-1 gdk-pixbuf	2005-12-1
    libgdk-pixbuf-dev	0.22.0-8.1	sparc	DSA-913-1 gdk-pixbuf	2005-12-1
    libgdk-pixbuf-gnome-dev	0.22.0-8.1	sparc	DSA-913-1 gdk-pixbuf	2005-12-1
    libgdk-pixbuf-gnome2	0.22.0-8.1	sparc	DSA-913-1 gdk-pixbuf	2005-12-1
    libgdk-pixbuf2	0.22.0-8.1	sparc	DSA-913-1 gdk-pixbuf	2005-12-1
    htmlheadline	21.8-3	all	DSA-622-1 htmlheadline	2005-1-3
    courier-doc	0.37.3-2.7	all	DSA-820-1 courier	2005-9-24
    courier-authdaemon	0.37.3-2.7	alpha	DSA-820-1 courier	2005-9-24
    courier-authmysql	0.37.3-2.7	alpha	DSA-820-1 courier	2005-9-24
    courier-base	0.37.3-2.7	alpha	DSA-820-1 courier	2005-9-24
    courier-debug	0.37.3-2.7	alpha	DSA-820-1 courier	2005-9-24
    courier-imap	1.4.3-2.7	alpha	DSA-820-1 courier	2005-9-24
    courier-ldap	0.37.3-2.7	alpha	DSA-820-1 courier	2005-9-24
    courier-maildrop	0.37.3-2.7	alpha	DSA-820-1 courier	2005-9-24
    courier-mlm	0.37.3-2.7	alpha	DSA-820-1 courier	2005-9-24
    courier-mta	0.37.3-2.7	alpha	DSA-820-1 courier	2005-9-24
    courier-pcp	0.37.3-2.7	alpha	DSA-820-1 courier	2005-9-24
    courier-pop	0.37.3-2.7	alpha	DSA-820-1 courier	2005-9-24
    courier-webadmin	0.37.3-2.7	alpha	DSA-820-1 courier	2005-9-24
    sqwebmail	0.37.3-2.7	alpha	DSA-820-1 courier	2005-9-24
    courier-authdaemon	0.37.3-2.7	arm	DSA-820-1 courier	2005-9-24
    courier-authmysql	0.37.3-2.7	arm	DSA-820-1 courier	2005-9-24
    courier-base	0.37.3-2.7	arm	DSA-820-1 courier	2005-9-24
    courier-debug	0.37.3-2.7	arm	DSA-820-1 courier	2005-9-24
    courier-imap	1.4.3-2.7	arm	DSA-820-1 courier	2005-9-24
    courier-ldap	0.37.3-2.7	arm	DSA-820-1 courier	2005-9-24
    courier-maildrop	0.37.3-2.7	arm	DSA-820-1 courier	2005-9-24
    courier-mlm	0.37.3-2.7	arm	DSA-820-1 courier	2005-9-24
    courier-mta	0.37.3-2.7	arm	DSA-820-1 courier	2005-9-24
    courier-pcp	0.37.3-2.7	arm	DSA-820-1 courier	2005-9-24
    courier-pop	0.37.3-2.7	arm	DSA-820-1 courier	2005-9-24
    courier-webadmin	0.37.3-2.7	arm	DSA-820-1 courier	2005-9-24
    sqwebmail	0.37.3-2.7	arm	DSA-820-1 courier	2005-9-24
    courier-authdaemon	0.37.3-2.7	i386	DSA-820-1 courier	2005-9-24
    courier-authmysql	0.37.3-2.7	i386	DSA-820-1 courier	2005-9-24
    courier-base	0.37.3-2.7	i386	DSA-820-1 courier	2005-9-24
    courier-debug	0.37.3-2.7	i386	DSA-820-1 courier	2005-9-24
    courier-imap	1.4.3-2.7	i386	DSA-820-1 courier	2005-9-24
    courier-ldap	0.37.3-2.7	i386	DSA-820-1 courier	2005-9-24
    courier-maildrop	0.37.3-2.7	i386	DSA-820-1 courier	2005-9-24
    courier-mlm	0.37.3-2.7	i386	DSA-820-1 courier	2005-9-24
    courier-mta	0.37.3-2.7	i386	DSA-820-1 courier	2005-9-24
    courier-pcp	0.37.3-2.7	i386	DSA-820-1 courier	2005-9-24
    courier-pop	0.37.3-2.7	i386	DSA-820-1 courier	2005-9-24
    courier-webadmin	0.37.3-2.7	i386	DSA-820-1 courier	2005-9-24
    sqwebmail	0.37.3-2.7	i386	DSA-820-1 courier	2005-9-24
    courier-authdaemon	0.37.3-2.7	ia64	DSA-820-1 courier	2005-9-24
    courier-authmysql	0.37.3-2.7	ia64	DSA-820-1 courier	2005-9-24
    courier-base	0.37.3-2.7	ia64	DSA-820-1 courier	2005-9-24
    courier-debug	0.37.3-2.7	ia64	DSA-820-1 courier	2005-9-24
    courier-imap	1.4.3-2.7	ia64	DSA-820-1 courier	2005-9-24
    courier-ldap	0.37.3-2.7	ia64	DSA-820-1 courier	2005-9-24
    courier-maildrop	0.37.3-2.7	ia64	DSA-820-1 courier	2005-9-24
    courier-mlm	0.37.3-2.7	ia64	DSA-820-1 courier	2005-9-24
    courier-mta	0.37.3-2.7	ia64	DSA-820-1 courier	2005-9-24
    courier-pcp	0.37.3-2.7	ia64	DSA-820-1 courier	2005-9-24
    courier-pop	0.37.3-2.7	ia64	DSA-820-1 courier	2005-9-24
    courier-webadmin	0.37.3-2.7	ia64	DSA-820-1 courier	2005-9-24
    sqwebmail	0.37.3-2.7	ia64	DSA-820-1 courier	2005-9-24
    courier-authdaemon	0.37.3-2.7	hppa	DSA-820-1 courier	2005-9-24
    courier-authmysql	0.37.3-2.7	hppa	DSA-820-1 courier	2005-9-24
    courier-base	0.37.3-2.7	hppa	DSA-820-1 courier	2005-9-24
    courier-debug	0.37.3-2.7	hppa	DSA-820-1 courier	2005-9-24
    courier-imap	1.4.3-2.7	hppa	DSA-820-1 courier	2005-9-24
    courier-ldap	0.37.3-2.7	hppa	DSA-820-1 courier	2005-9-24
    courier-maildrop	0.37.3-2.7	hppa	DSA-820-1 courier	2005-9-24
    courier-mlm	0.37.3-2.7	hppa	DSA-820-1 courier	2005-9-24
    courier-mta	0.37.3-2.7	hppa	DSA-820-1 courier	2005-9-24
    courier-pcp	0.37.3-2.7	hppa	DSA-820-1 courier	2005-9-24
    courier-pop	0.37.3-2.7	hppa	DSA-820-1 courier	2005-9-24
    courier-webadmin	0.37.3-2.7	hppa	DSA-820-1 courier	2005-9-24
    sqwebmail	0.37.3-2.7	hppa	DSA-820-1 courier	2005-9-24
    courier-authdaemon	0.37.3-2.7	m68k	DSA-820-1 courier	2005-9-24
    courier-authmysql	0.37.3-2.7	m68k	DSA-820-1 courier	2005-9-24
    courier-base	0.37.3-2.7	m68k	DSA-820-1 courier	2005-9-24
    courier-debug	0.37.3-2.7	m68k	DSA-820-1 courier	2005-9-24
    courier-imap	1.4.3-2.7	m68k	DSA-820-1 courier	2005-9-24
    courier-ldap	0.37.3-2.7	m68k	DSA-820-1 courier	2005-9-24
    courier-maildrop	0.37.3-2.7	m68k	DSA-820-1 courier	2005-9-24
    courier-mlm	0.37.3-2.7	m68k	DSA-820-1 courier	2005-9-24
    courier-mta	0.37.3-2.7	m68k	DSA-820-1 courier	2005-9-24
    courier-pcp	0.37.3-2.7	m68k	DSA-820-1 courier	2005-9-24
    courier-pop	0.37.3-2.7	m68k	DSA-820-1 courier	2005-9-24
    courier-webadmin	0.37.3-2.7	m68k	DSA-820-1 courier	2005-9-24
    sqwebmail	0.37.3-2.7	m68k	DSA-820-1 courier	2005-9-24
    courier-authdaemon	0.37.3-2.7	mips	DSA-820-1 courier	2005-9-24
    courier-authmysql	0.37.3-2.7	mips	DSA-820-1 courier	2005-9-24
    courier-base	0.37.3-2.7	mips	DSA-820-1 courier	2005-9-24
    courier-debug	0.37.3-2.7	mips	DSA-820-1 courier	2005-9-24
    courier-imap	1.4.3-2.7	mips	DSA-820-1 courier	2005-9-24
    courier-ldap	0.37.3-2.7	mips	DSA-820-1 courier	2005-9-24
    courier-maildrop	0.37.3-2.7	mips	DSA-820-1 courier	2005-9-24
    courier-mlm	0.37.3-2.7	mips	DSA-820-1 courier	2005-9-24
    courier-mta	0.37.3-2.7	mips	DSA-820-1 courier	2005-9-24
    courier-pcp	0.37.3-2.7	mips	DSA-820-1 courier	2005-9-24
    courier-pop	0.37.3-2.7	mips	DSA-820-1 courier	2005-9-24
    courier-webadmin	0.37.3-2.7	mips	DSA-820-1 courier	2005-9-24
    sqwebmail	0.37.3-2.7	mips	DSA-820-1 courier	2005-9-24
    courier-authdaemon	0.37.3-2.7	mipsel	DSA-820-1 courier	2005-9-24
    courier-authmysql	0.37.3-2.7	mipsel	DSA-820-1 courier	2005-9-24
    courier-base	0.37.3-2.7	mipsel	DSA-820-1 courier	2005-9-24
    courier-debug	0.37.3-2.7	mipsel	DSA-820-1 courier	2005-9-24
    courier-imap	1.4.3-2.7	mipsel	DSA-820-1 courier	2005-9-24
    courier-ldap	0.37.3-2.7	mipsel	DSA-820-1 courier	2005-9-24
    courier-maildrop	0.37.3-2.7	mipsel	DSA-820-1 courier	2005-9-24
    courier-mlm	0.37.3-2.7	mipsel	DSA-820-1 courier	2005-9-24
    courier-mta	0.37.3-2.7	mipsel	DSA-820-1 courier	2005-9-24
    courier-pcp	0.37.3-2.7	mipsel	DSA-820-1 courier	2005-9-24
    courier-pop	0.37.3-2.7	mipsel	DSA-820-1 courier	2005-9-24
    courier-webadmin	0.37.3-2.7	mipsel	DSA-820-1 courier	2005-9-24
    sqwebmail	0.37.3-2.7	mipsel	DSA-820-1 courier	2005-9-24
    courier-authdaemon	0.37.3-2.7	powerpc	DSA-820-1 courier	2005-9-24
    courier-authmysql	0.37.3-2.7	powerpc	DSA-820-1 courier	2005-9-24
    courier-base	0.37.3-2.7	powerpc	DSA-820-1 courier	2005-9-24
    courier-debug	0.37.3-2.7	powerpc	DSA-820-1 courier	2005-9-24
    courier-imap	1.4.3-2.7	powerpc	DSA-820-1 courier	2005-9-24
    courier-ldap	0.37.3-2.7	powerpc	DSA-820-1 courier	2005-9-24
    courier-maildrop	0.37.3-2.7	powerpc	DSA-820-1 courier	2005-9-24
    courier-mlm	0.37.3-2.7	powerpc	DSA-820-1 courier	2005-9-24
    courier-mta	0.37.3-2.7	powerpc	DSA-820-1 courier	2005-9-24
    courier-pcp	0.37.3-2.7	powerpc	DSA-820-1 courier	2005-9-24
    courier-pop	0.37.3-2.7	powerpc	DSA-820-1 courier	2005-9-24
    courier-webadmin	0.37.3-2.7	powerpc	DSA-820-1 courier	2005-9-24
    sqwebmail	0.37.3-2.7	powerpc	DSA-820-1 courier	2005-9-24
    courier-authdaemon	0.37.3-2.7	s390	DSA-820-1 courier	2005-9-24
    courier-authmysql	0.37.3-2.7	s390	DSA-820-1 courier	2005-9-24
    courier-base	0.37.3-2.7	s390	DSA-820-1 courier	2005-9-24
    courier-debug	0.37.3-2.7	s390	DSA-820-1 courier	2005-9-24
    courier-imap	1.4.3-2.7	s390	DSA-820-1 courier	2005-9-24
    courier-ldap	0.37.3-2.7	s390	DSA-820-1 courier	2005-9-24
    courier-maildrop	0.37.3-2.7	s390	DSA-820-1 courier	2005-9-24
    courier-mlm	0.37.3-2.7	s390	DSA-820-1 courier	2005-9-24
    courier-mta	0.37.3-2.7	s390	DSA-820-1 courier	2005-9-24
    courier-pcp	0.37.3-2.7	s390	DSA-820-1 courier	2005-9-24
    courier-pop	0.37.3-2.7	s390	DSA-820-1 courier	2005-9-24
    courier-webadmin	0.37.3-2.7	s390	DSA-820-1 courier	2005-9-24
    sqwebmail	0.37.3-2.7	s390	DSA-820-1 courier	2005-9-24
    courier-authdaemon	0.37.3-2.7	sparc	DSA-820-1 courier	2005-9-24
    courier-authmysql	0.37.3-2.7	sparc	DSA-820-1 courier	2005-9-24
    courier-base	0.37.3-2.7	sparc	DSA-820-1 courier	2005-9-24
    courier-debug	0.37.3-2.7	sparc	DSA-820-1 courier	2005-9-24
    courier-imap	1.4.3-2.7	sparc	DSA-820-1 courier	2005-9-24
    courier-ldap	0.37.3-2.7	sparc	DSA-820-1 courier	2005-9-24
    courier-maildrop	0.37.3-2.7	sparc	DSA-820-1 courier	2005-9-24
    courier-mlm	0.37.3-2.7	sparc	DSA-820-1 courier	2005-9-24
    courier-mta	0.37.3-2.7	sparc	DSA-820-1 courier	2005-9-24
    courier-pcp	0.37.3-2.7	sparc	DSA-820-1 courier	2005-9-24
    courier-pop	0.37.3-2.7	sparc	DSA-820-1 courier	2005-9-24
    courier-webadmin	0.37.3-2.7	sparc	DSA-820-1 courier	2005-9-24
    sqwebmail	0.37.3-2.7	sparc	DSA-820-1 courier	2005-9-24
    libnetpbm9	9.20-8.5	alpha	DSA-904-1 netpbm-free	2005-11-21
    libnetpbm9-dev	9.20-8.5	alpha	DSA-904-1 netpbm-free	2005-11-21
    netpbm	9.20-8.5	alpha	DSA-904-1 netpbm-free	2005-11-21
    libnetpbm9	9.20-8.5	arm	DSA-904-1 netpbm-free	2005-11-21
    libnetpbm9-dev	9.20-8.5	arm	DSA-904-1 netpbm-free	2005-11-21
    netpbm	9.20-8.5	arm	DSA-904-1 netpbm-free	2005-11-21
    libnetpbm9	9.20-8.5	i386	DSA-904-1 netpbm-free	2005-11-21
    libnetpbm9-dev	9.20-8.5	i386	DSA-904-1 netpbm-free	2005-11-21
    netpbm	9.20-8.5	i386	DSA-904-1 netpbm-free	2005-11-21
    libnetpbm9	9.20-8.5	ia64	DSA-904-1 netpbm-free	2005-11-21
    libnetpbm9-dev	9.20-8.5	ia64	DSA-904-1 netpbm-free	2005-11-21
    netpbm	9.20-8.5	ia64	DSA-904-1 netpbm-free	2005-11-21
    libnetpbm9	9.20-8.5	hppa	DSA-904-1 netpbm-free	2005-11-21
    libnetpbm9-dev	9.20-8.5	hppa	DSA-904-1 netpbm-free	2005-11-21
    netpbm	9.20-8.5	hppa	DSA-904-1 netpbm-free	2005-11-21
    libnetpbm9	9.20-8.5	m68k	DSA-904-1 netpbm-free	2005-11-21
    libnetpbm9-dev	9.20-8.5	m68k	DSA-904-1 netpbm-free	2005-11-21
    netpbm	9.20-8.5	m68k	DSA-904-1 netpbm-free	2005-11-21
    libnetpbm9	9.20-8.5	mips	DSA-904-1 netpbm-free	2005-11-21
    libnetpbm9-dev	9.20-8.5	mips	DSA-904-1 netpbm-free	2005-11-21
    netpbm	9.20-8.5	mips	DSA-904-1 netpbm-free	2005-11-21
    libnetpbm9	9.20-8.5	mipsel	DSA-904-1 netpbm-free	2005-11-21
    libnetpbm9-dev	9.20-8.5	mipsel	DSA-904-1 netpbm-free	2005-11-21
    netpbm	9.20-8.5	mipsel	DSA-904-1 netpbm-free	2005-11-21
    libnetpbm9	9.20-8.5	powerpc	DSA-904-1 netpbm-free	2005-11-21
    libnetpbm9-dev	9.20-8.5	powerpc	DSA-904-1 netpbm-free	2005-11-21
    netpbm	9.20-8.5	powerpc	DSA-904-1 netpbm-free	2005-11-21
    libnetpbm9	9.20-8.5	s390	DSA-904-1 netpbm-free	2005-11-21
    libnetpbm9-dev	9.20-8.5	s390	DSA-904-1 netpbm-free	2005-11-21
    netpbm	9.20-8.5	s390	DSA-904-1 netpbm-free	2005-11-21
    libnetpbm9	9.20-8.5	sparc	DSA-904-1 netpbm-free	2005-11-21
    libnetpbm9-dev	9.20-8.5	sparc	DSA-904-1 netpbm-free	2005-11-21
    netpbm	9.20-8.5	sparc	DSA-904-1 netpbm-free	2005-11-21
    tcpdump	3.6.2-2.9	alpha	DSA-850-1 tcpdump	2005-10-9
    tcpdump	3.6.2-2.9	arm	DSA-850-1 tcpdump	2005-10-9
    tcpdump	3.6.2-2.9	i386	DSA-850-1 tcpdump	2005-10-9
    tcpdump	3.6.2-2.9	ia64	DSA-850-1 tcpdump	2005-10-9
    tcpdump	3.6.2-2.9	hppa	DSA-850-1 tcpdump	2005-10-9
    tcpdump	3.6.2-2.9	m68k	DSA-850-1 tcpdump	2005-10-9
    tcpdump	3.6.2-2.9	mips	DSA-850-1 tcpdump	2005-10-9
    tcpdump	3.6.2-2.9	mipsel	DSA-850-1 tcpdump	2005-10-9
    tcpdump	3.6.2-2.9	powerpc	DSA-850-1 tcpdump	2005-10-9
    tcpdump	3.6.2-2.9	s390	DSA-850-1 tcpdump	2005-10-9
    tcpdump	3.6.2-2.9	sparc	DSA-850-1 tcpdump	2005-10-9
    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
    libsnmp-base	5.1.2-6.2	all	DSA-873-1 net-snmp	2005-10-26
    tkmib	5.1.2-6.2	all	DSA-873-1 net-snmp	2005-10-26
    libsnmp-perl	5.1.2-6.2	alpha	DSA-873-1 net-snmp	2005-10-26
    libsnmp5	5.1.2-6.2	alpha	DSA-873-1 net-snmp	2005-10-26
    libsnmp5-dev	5.1.2-6.2	alpha	DSA-873-1 net-snmp	2005-10-26
    snmp	5.1.2-6.2	alpha	DSA-873-1 net-snmp	2005-10-26
    snmpd	5.1.2-6.2	alpha	DSA-873-1 net-snmp	2005-10-26
    libsnmp-perl	5.1.2-6.2	amd64	DSA-873-1 net-snmp	2005-10-26
    libsnmp5	5.1.2-6.2	amd64	DSA-873-1 net-snmp	2005-10-26
    libsnmp5-dev	5.1.2-6.2	amd64	DSA-873-1 net-snmp	2005-10-26
    snmp	5.1.2-6.2	amd64	DSA-873-1 net-snmp	2005-10-26
    snmpd	5.1.2-6.2	amd64	DSA-873-1 net-snmp	2005-10-26
    libsnmp-perl	5.1.2-6.2	arm	DSA-873-1 net-snmp	2005-10-26
    libsnmp5	5.1.2-6.2	arm	DSA-873-1 net-snmp	2005-10-26
    libsnmp5-dev	5.1.2-6.2	arm	DSA-873-1 net-snmp	2005-10-26
    snmp	5.1.2-6.2	arm	DSA-873-1 net-snmp	2005-10-26
    snmpd	5.1.2-6.2	arm	DSA-873-1 net-snmp	2005-10-26
    libsnmp-perl	5.1.2-6.2	i386	DSA-873-1 net-snmp	2005-10-26
    libsnmp5	5.1.2-6.2	i386	DSA-873-1 net-snmp	2005-10-26
    libsnmp5-dev	5.1.2-6.2	i386	DSA-873-1 net-snmp	2005-10-26
    snmp	5.1.2-6.2	i386	DSA-873-1 net-snmp	2005-10-26
    snmpd	5.1.2-6.2	i386	DSA-873-1 net-snmp	2005-10-26
    libsnmp-perl	5.1.2-6.2	ia64	DSA-873-1 net-snmp	2005-10-26
    libsnmp5	5.1.2-6.2	ia64	DSA-873-1 net-snmp	2005-10-26
    libsnmp5-dev	5.1.2-6.2	ia64	DSA-873-1 net-snmp	2005-10-26
    snmp	5.1.2-6.2	ia64	DSA-873-1 net-snmp	2005-10-26
    snmpd	5.1.2-6.2	ia64	DSA-873-1 net-snmp	2005-10-26
    libsnmp-perl	5.1.2-6.2	hppa	DSA-873-1 net-snmp	2005-10-26
    libsnmp5	5.1.2-6.2	hppa	DSA-873-1 net-snmp	2005-10-26
    libsnmp5-dev	5.1.2-6.2	hppa	DSA-873-1 net-snmp	2005-10-26
    snmp	5.1.2-6.2	hppa	DSA-873-1 net-snmp	2005-10-26
    snmpd	5.1.2-6.2	hppa	DSA-873-1 net-snmp	2005-10-26
    libsnmp-perl	5.1.2-6.2	m68k	DSA-873-1 net-snmp	2005-10-26
    libsnmp5	5.1.2-6.2	m68k	DSA-873-1 net-snmp	2005-10-26
    libsnmp5-dev	5.1.2-6.2	m68k	DSA-873-1 net-snmp	2005-10-26
    snmp	5.1.2-6.2	m68k	DSA-873-1 net-snmp	2005-10-26
    snmpd	5.1.2-6.2	m68k	DSA-873-1 net-snmp	2005-10-26
    libsnmp-perl	5.1.2-6.2	mips	DSA-873-1 net-snmp	2005-10-26
    libsnmp5	5.1.2-6.2	mips	DSA-873-1 net-snmp	2005-10-26
    libsnmp5-dev	5.1.2-6.2	mips	DSA-873-1 net-snmp	2005-10-26
    snmp	5.1.2-6.2	mips	DSA-873-1 net-snmp	2005-10-26
    snmpd	5.1.2-6.2	mips	DSA-873-1 net-snmp	2005-10-26
    libsnmp-perl	5.1.2-6.2	mipsel	DSA-873-1 net-snmp	2005-10-26
    libsnmp5	5.1.2-6.2	mipsel	DSA-873-1 net-snmp	2005-10-26
    libsnmp5-dev	5.1.2-6.2	mipsel	DSA-873-1 net-snmp	2005-10-26
    snmp	5.1.2-6.2	mipsel	DSA-873-1 net-snmp	2005-10-26
    snmpd	5.1.2-6.2	mipsel	DSA-873-1 net-snmp	2005-10-26
    libsnmp-perl	5.1.2-6.2	powerpc	DSA-873-1 net-snmp	2005-10-26
    libsnmp5	5.1.2-6.2	powerpc	DSA-873-1 net-snmp	2005-10-26
    libsnmp5-dev	5.1.2-6.2	powerpc	DSA-873-1 net-snmp	2005-10-26
    snmp	5.1.2-6.2	powerpc	DSA-873-1 net-snmp	2005-10-26
    snmpd	5.1.2-6.2	powerpc	DSA-873-1 net-snmp	2005-10-26
    libsnmp-perl	5.1.2-6.2	s390	DSA-873-1 net-snmp	2005-10-26
    libsnmp5	5.1.2-6.2	s390	DSA-873-1 net-snmp	2005-10-26
    libsnmp5-dev	5.1.2-6.2	s390	DSA-873-1 net-snmp	2005-10-26
    snmp	5.1.2-6.2	s390	DSA-873-1 net-snmp	2005-10-26
    snmpd	5.1.2-6.2	s390	DSA-873-1 net-snmp	2005-10-26
    libsnmp-perl	5.1.2-6.2	sparc	DSA-873-1 net-snmp	2005-10-26
    libsnmp5	5.1.2-6.2	sparc	DSA-873-1 net-snmp	2005-10-26
    libsnmp5-dev	5.1.2-6.2	sparc	DSA-873-1 net-snmp	2005-10-26
    snmp	5.1.2-6.2	sparc	DSA-873-1 net-snmp	2005-10-26
    snmpd	5.1.2-6.2	sparc	DSA-873-1 net-snmp	2005-10-26
    luxman	0.41-17.2	i386	DSA-693-1 luxman	2005-3-14
    courier-doc	0.37.3-2.6	all	DSA-793-1 courier	2005-9-1
    courier-authdaemon	0.37.3-2.6	alpha	DSA-793-1 courier	2005-9-1
    courier-authmysql	0.37.3-2.6	alpha	DSA-793-1 courier	2005-9-1
    courier-base	0.37.3-2.6	alpha	DSA-793-1 courier	2005-9-1
    courier-debug	0.37.3-2.6	alpha	DSA-793-1 courier	2005-9-1
    courier-imap	1.4.3-2.6	alpha	DSA-793-1 courier	2005-9-1
    courier-ldap	0.37.3-2.6	alpha	DSA-793-1 courier	2005-9-1
    courier-maildrop	0.37.3-2.6	alpha	DSA-793-1 courier	2005-9-1
    courier-mlm	0.37.3-2.6	alpha	DSA-793-1 courier	2005-9-1
    courier-mta	0.37.3-2.6	alpha	DSA-793-1 courier	2005-9-1
    courier-pcp	0.37.3-2.6	alpha	DSA-793-1 courier	2005-9-1
    courier-pop	0.37.3-2.6	alpha	DSA-793-1 courier	2005-9-1
    courier-webadmin	0.37.3-2.6	alpha	DSA-793-1 courier	2005-9-1
    sqwebmail	0.37.3-2.6	alpha	DSA-793-1 courier	2005-9-1
    courier-authdaemon	0.37.3-2.6	arm	DSA-793-1 courier	2005-9-1
    courier-authmysql	0.37.3-2.6	arm	DSA-793-1 courier	2005-9-1
    courier-base	0.37.3-2.6	arm	DSA-793-1 courier	2005-9-1
    courier-debug	0.37.3-2.6	arm	DSA-793-1 courier	2005-9-1
    courier-imap	1.4.3-2.6	arm	DSA-793-1 courier	2005-9-1
    courier-ldap	0.37.3-2.6	arm	DSA-793-1 courier	2005-9-1
    courier-maildrop	0.37.3-2.6	arm	DSA-793-1 courier	2005-9-1
    courier-mlm	0.37.3-2.6	arm	DSA-793-1 courier	2005-9-1
    courier-mta	0.37.3-2.6	arm	DSA-793-1 courier	2005-9-1
    courier-pcp	0.37.3-2.6	arm	DSA-793-1 courier	2005-9-1
    courier-pop	0.37.3-2.6	arm	DSA-793-1 courier	2005-9-1
    courier-webadmin	0.37.3-2.6	arm	DSA-793-1 courier	2005-9-1
    sqwebmail	0.37.3-2.6	arm	DSA-793-1 courier	2005-9-1
    courier-authdaemon	0.37.3-2.6	i386	DSA-793-1 courier	2005-9-1
    courier-authmysql	0.37.3-2.6	i386	DSA-793-1 courier	2005-9-1
    courier-base	0.37.3-2.6	i386	DSA-793-1 courier	2005-9-1
    courier-debug	0.37.3-2.6	i386	DSA-793-1 courier	2005-9-1
    courier-imap	1.4.3-2.6	i386	DSA-793-1 courier	2005-9-1
    courier-ldap	0.37.3-2.6	i386	DSA-793-1 courier	2005-9-1
    courier-maildrop	0.37.3-2.6	i386	DSA-793-1 courier	2005-9-1
    courier-mlm	0.37.3-2.6	i386	DSA-793-1 courier	2005-9-1
    courier-mta	0.37.3-2.6	i386	DSA-793-1 courier	2005-9-1
    courier-pcp	0.37.3-2.6	i386	DSA-793-1 courier	2005-9-1
    courier-pop	0.37.3-2.6	i386	DSA-793-1 courier	2005-9-1
    courier-webadmin	0.37.3-2.6	i386	DSA-793-1 courier	2005-9-1
    sqwebmail	0.37.3-2.6	i386	DSA-793-1 courier	2005-9-1
    courier-authdaemon	0.37.3-2.6	ia64	DSA-793-1 courier	2005-9-1
    courier-authmysql	0.37.3-2.6	ia64	DSA-793-1 courier	2005-9-1
    courier-base	0.37.3-2.6	ia64	DSA-793-1 courier	2005-9-1
    courier-debug	0.37.3-2.6	ia64	DSA-793-1 courier	2005-9-1
    courier-imap	1.4.3-2.6	ia64	DSA-793-1 courier	2005-9-1
    courier-ldap	0.37.3-2.6	ia64	DSA-793-1 courier	2005-9-1
    courier-maildrop	0.37.3-2.6	ia64	DSA-793-1 courier	2005-9-1
    courier-mlm	0.37.3-2.6	ia64	DSA-793-1 courier	2005-9-1
    courier-mta	0.37.3-2.6	ia64	DSA-793-1 courier	2005-9-1
    courier-pcp	0.37.3-2.6	ia64	DSA-793-1 courier	2005-9-1
    courier-pop	0.37.3-2.6	ia64	DSA-793-1 courier	2005-9-1
    courier-webadmin	0.37.3-2.6	ia64	DSA-793-1 courier	2005-9-1
    sqwebmail	0.37.3-2.6	ia64	DSA-793-1 courier	2005-9-1
    courier-authdaemon	0.37.3-2.6	hppa	DSA-793-1 courier	2005-9-1
    courier-authmysql	0.37.3-2.6	hppa	DSA-793-1 courier	2005-9-1
    courier-base	0.37.3-2.6	hppa	DSA-793-1 courier	2005-9-1
    courier-debug	0.37.3-2.6	hppa	DSA-793-1 courier	2005-9-1
    courier-imap	1.4.3-2.6	hppa	DSA-793-1 courier	2005-9-1
    courier-ldap	0.37.3-2.6	hppa	DSA-793-1 courier	2005-9-1
    courier-maildrop	0.37.3-2.6	hppa	DSA-793-1 courier	2005-9-1
    courier-mlm	0.37.3-2.6	hppa	DSA-793-1 courier	2005-9-1
    courier-mta	0.37.3-2.6	hppa	DSA-793-1 courier	2005-9-1
    courier-pcp	0.37.3-2.6	hppa	DSA-793-1 courier	2005-9-1
    courier-pop	0.37.3-2.6	hppa	DSA-793-1 courier	2005-9-1
    courier-webadmin	0.37.3-2.6	hppa	DSA-793-1 courier	2005-9-1
    sqwebmail	0.37.3-2.6	hppa	DSA-793-1 courier	2005-9-1
    courier-authdaemon	0.37.3-2.6	m68k	DSA-793-1 courier	2005-9-1
    courier-authmysql	0.37.3-2.6	m68k	DSA-793-1 courier	2005-9-1
    courier-base	0.37.3-2.6	m68k	DSA-793-1 courier	2005-9-1
    courier-debug	0.37.3-2.6	m68k	DSA-793-1 courier	2005-9-1
    courier-imap	1.4.3-2.6	m68k	DSA-793-1 courier	2005-9-1
    courier-ldap	0.37.3-2.6	m68k	DSA-793-1 courier	2005-9-1
    courier-maildrop	0.37.3-2.6	m68k	DSA-793-1 courier	2005-9-1
    courier-mlm	0.37.3-2.6	m68k	DSA-793-1 courier	2005-9-1
    courier-mta	0.37.3-2.6	m68k	DSA-793-1 courier	2005-9-1
    courier-pcp	0.37.3-2.6	m68k	DSA-793-1 courier	2005-9-1
    courier-pop	0.37.3-2.6	m68k	DSA-793-1 courier	2005-9-1
    courier-webadmin	0.37.3-2.6	m68k	DSA-793-1 courier	2005-9-1
    sqwebmail	0.37.3-2.6	m68k	DSA-793-1 courier	2005-9-1
    courier-authdaemon	0.37.3-2.6	mips	DSA-793-1 courier	2005-9-1
    courier-authmysql	0.37.3-2.6	mips	DSA-793-1 courier	2005-9-1
    courier-base	0.37.3-2.6	mips	DSA-793-1 courier	2005-9-1
    courier-debug	0.37.3-2.6	mips	DSA-793-1 courier	2005-9-1
    courier-imap	1.4.3-2.6	mips	DSA-793-1 courier	2005-9-1
    courier-ldap	0.37.3-2.6	mips	DSA-793-1 courier	2005-9-1
    courier-maildrop	0.37.3-2.6	mips	DSA-793-1 courier	2005-9-1
    courier-mlm	0.37.3-2.6	mips	DSA-793-1 courier	2005-9-1
    courier-mta	0.37.3-2.6	mips	DSA-793-1 courier	2005-9-1
    courier-pcp	0.37.3-2.6	mips	DSA-793-1 courier	2005-9-1
    courier-pop	0.37.3-2.6	mips	DSA-793-1 courier	2005-9-1
    courier-webadmin	0.37.3-2.6	mips	DSA-793-1 courier	2005-9-1
    sqwebmail	0.37.3-2.6	mips	DSA-793-1 courier	2005-9-1
    courier-authdaemon	0.37.3-2.6	mipsel	DSA-793-1 courier	2005-9-1
    courier-authmysql	0.37.3-2.6	mipsel	DSA-793-1 courier	2005-9-1
    courier-base	0.37.3-2.6	mipsel	DSA-793-1 courier	2005-9-1
    courier-debug	0.37.3-2.6	mipsel	DSA-793-1 courier	2005-9-1
    courier-imap	1.4.3-2.6	mipsel	DSA-793-1 courier	2005-9-1
    courier-ldap	0.37.3-2.6	mipsel	DSA-793-1 courier	2005-9-1
    courier-maildrop	0.37.3-2.6	mipsel	DSA-793-1 courier	2005-9-1
    courier-mlm	0.37.3-2.6	mipsel	DSA-793-1 courier	2005-9-1
    courier-mta	0.37.3-2.6	mipsel	DSA-793-1 courier	2005-9-1
    courier-pcp	0.37.3-2.6	mipsel	DSA-793-1 courier	2005-9-1
    courier-pop	0.37.3-2.6	mipsel	DSA-793-1 courier	2005-9-1
    courier-webadmin	0.37.3-2.6	mipsel	DSA-793-1 courier	2005-9-1
    sqwebmail	0.37.3-2.6	mipsel	DSA-793-1 courier	2005-9-1
    courier-authdaemon	0.37.3-2.6	powerpc	DSA-793-1 courier	2005-9-1
    courier-authmysql	0.37.3-2.6	powerpc	DSA-793-1 courier	2005-9-1
    courier-base	0.37.3-2.6	powerpc	DSA-793-1 courier	2005-9-1
    courier-debug	0.37.3-2.6	powerpc	DSA-793-1 courier	2005-9-1
    courier-imap	1.4.3-2.6	powerpc	DSA-793-1 courier	2005-9-1
    courier-ldap	0.37.3-2.6	powerpc	DSA-793-1 courier	2005-9-1
    courier-maildrop	0.37.3-2.6	powerpc	DSA-793-1 courier	2005-9-1
    courier-mlm	0.37.3-2.6	powerpc	DSA-793-1 courier	2005-9-1
    courier-mta	0.37.3-2.6	powerpc	DSA-793-1 courier	2005-9-1
    courier-pcp	0.37.3-2.6	powerpc	DSA-793-1 courier	2005-9-1
    courier-pop	0.37.3-2.6	powerpc	DSA-793-1 courier	2005-9-1
    courier-webadmin	0.37.3-2.6	powerpc	DSA-793-1 courier	2005-9-1
    sqwebmail	0.37.3-2.6	powerpc	DSA-793-1 courier	2005-9-1
    courier-authdaemon	0.37.3-2.6	s390	DSA-793-1 courier	2005-9-1
    courier-authmysql	0.37.3-2.6	s390	DSA-793-1 courier	2005-9-1
    courier-base	0.37.3-2.6	s390	DSA-793-1 courier	2005-9-1
    courier-debug	0.37.3-2.6	s390	DSA-793-1 courier	2005-9-1
    courier-imap	1.4.3-2.6	s390	DSA-793-1 courier	2005-9-1
    courier-ldap	0.37.3-2.6	s390	DSA-793-1 courier	2005-9-1
    courier-maildrop	0.37.3-2.6	s390	DSA-793-1 courier	2005-9-1
    courier-mlm	0.37.3-2.6	s390	DSA-793-1 courier	2005-9-1
    courier-mta	0.37.3-2.6	s390	DSA-793-1 courier	2005-9-1
    courier-pcp	0.37.3-2.6	s390	DSA-793-1 courier	2005-9-1
    courier-pop	0.37.3-2.6	s390	DSA-793-1 courier	2005-9-1
    courier-webadmin	0.37.3-2.6	s390	DSA-793-1 courier	2005-9-1
    sqwebmail	0.37.3-2.6	s390	DSA-793-1 courier	2005-9-1
    courier-authdaemon	0.37.3-2.6	sparc	DSA-793-1 courier	2005-9-1
    courier-authmysql	0.37.3-2.6	sparc	DSA-793-1 courier	2005-9-1
    courier-base	0.37.3-2.6	sparc	DSA-793-1 courier	2005-9-1
    courier-debug	0.37.3-2.6	sparc	DSA-793-1 courier	2005-9-1
    courier-imap	1.4.3-2.6	sparc	DSA-793-1 courier	2005-9-1
    courier-ldap	0.37.3-2.6	sparc	DSA-793-1 courier	2005-9-1
    courier-maildrop	0.37.3-2.6	sparc	DSA-793-1 courier	2005-9-1
    courier-mlm	0.37.3-2.6	sparc	DSA-793-1 courier	2005-9-1
    courier-mta	0.37.3-2.6	sparc	DSA-793-1 courier	2005-9-1
    courier-pcp	0.37.3-2.6	sparc	DSA-793-1 courier	2005-9-1
    courier-pop	0.37.3-2.6	sparc	DSA-793-1 courier	2005-9-1
    courier-webadmin	0.37.3-2.6	sparc	DSA-793-1 courier	2005-9-1
    sqwebmail	0.37.3-2.6	sparc	DSA-793-1 courier	2005-9-1
    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-4	all	DSA-840-1 drupal	2005-10-4
    mantis	0.19.2-4	all	DSA-778-1 mantis	2005-8-19
    libaffix-dev	2.1.1-3	alpha	DSA-796-1 affix	2005-9-1
    libaffix2	2.1.1-3	alpha	DSA-796-1 affix	2005-9-1
    affix	2.1.1-3	alpha	DSA-796-1 affix	2005-9-1
    affix	2.1.1-3	amd64	DSA-796-1 affix	2005-9-1
    libaffix2	2.1.1-3	amd64	DSA-796-1 affix	2005-9-1
    libaffix-dev	2.1.1-3	amd64	DSA-796-1 affix	2005-9-1
    affix	2.1.1-3	arm	DSA-796-1 affix	2005-9-1
    libaffix-dev	2.1.1-3	arm	DSA-796-1 affix	2005-9-1
    libaffix2	2.1.1-3	arm	DSA-796-1 affix	2005-9-1
    libaffix-dev	2.1.1-3	hppa	DSA-796-1 affix	2005-9-1
    affix	2.1.1-3	hppa	DSA-796-1 affix	2005-9-1
    libaffix2	2.1.1-3	hppa	DSA-796-1 affix	2005-9-1
    libaffix-dev	2.1.1-3	i386	DSA-796-1 affix	2005-9-1
    libaffix2	2.1.1-3	i386	DSA-796-1 affix	2005-9-1
    affix	2.1.1-3	i386	DSA-796-1 affix	2005-9-1
    libaffix-dev	2.1.1-3	ia64	DSA-796-1 affix	2005-9-1
    libaffix2	2.1.1-3	ia64	DSA-796-1 affix	2005-9-1
    affix	2.1.1-3	ia64	DSA-796-1 affix	2005-9-1
    affix	2.1.1-3	m68k	DSA-796-1 affix	2005-9-1
    libaffix-dev	2.1.1-3	m68k	DSA-796-1 affix	2005-9-1
    libaffix2	2.1.1-3	m68k	DSA-796-1 affix	2005-9-1
    affix	2.1.1-3	mips	DSA-796-1 affix	2005-9-1
    libaffix2	2.1.1-3	mips	DSA-796-1 affix	2005-9-1
    libaffix-dev	2.1.1-3	mips	DSA-796-1 affix	2005-9-1
    affix	2.1.1-3	mipsel	DSA-796-1 affix	2005-9-1
    libaffix-dev	2.1.1-3	mipsel	DSA-796-1 affix	2005-9-1
    libaffix2	2.1.1-3	mipsel	DSA-796-1 affix	2005-9-1
    libaffix2	2.1.1-3	powerpc	DSA-796-1 affix	2005-9-1
    affix	2.1.1-3	powerpc	DSA-796-1 affix	2005-9-1
    libaffix-dev	2.1.1-3	powerpc	DSA-796-1 affix	2005-9-1
    libaffix-dev	2.1.1-3	s390	DSA-796-1 affix	2005-9-1
    libaffix2	2.1.1-3	s390	DSA-796-1 affix	2005-9-1
    affix	2.1.1-3	s390	DSA-796-1 affix	2005-9-1
    affix	2.1.1-3	sparc	DSA-796-1 affix	2005-9-1
    libaffix-dev	2.1.1-3	sparc	DSA-796-1 affix	2005-9-1
    libaffix2	2.1.1-3	sparc	DSA-796-1 affix	2005-9-1
    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
    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
    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
    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
    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
    fetchmail-common	5.9.11-6.4	all	DSA-900-3 fetchmail	2005-11-18,2005-11-21,2005-11-22
    fetchmailconf	5.9.11-6.4	all	DSA-900-3 fetchmail	2005-11-18,2005-11-21,2005-11-22
    fetchmail	5.9.11-6.4	alpha	DSA-900-3 fetchmail	2005-11-18,2005-11-21,2005-11-22
    fetchmail-ssl	5.9.11-6.3	alpha	DSA-900-3 fetchmail	2005-11-18,2005-11-21,2005-11-22
    fetchmail	5.9.11-6.4	arm	DSA-900-3 fetchmail	2005-11-18,2005-11-21,2005-11-22
    fetchmail-ssl	5.9.11-6.3	arm	DSA-900-3 fetchmail	2005-11-18,2005-11-21,2005-11-22
    fetchmail	5.9.11-6.4	i386	DSA-900-3 fetchmail	2005-11-18,2005-11-21,2005-11-22
    fetchmail-ssl	5.9.11-6.3	i386	DSA-900-3 fetchmail	2005-11-18,2005-11-21,2005-11-22
    fetchmail	5.9.11-6.4	ia64	DSA-900-3 fetchmail	2005-11-18,2005-11-21,2005-11-22
    fetchmail-ssl	5.9.11-6.3	ia64	DSA-900-3 fetchmail	2005-11-18,2005-11-21,2005-11-22
    fetchmail	5.9.11-6.4	hppa	DSA-900-3 fetchmail	2005-11-18,2005-11-21,2005-11-22
    fetchmail-ssl	5.9.11-6.3	hppa	DSA-900-3 fetchmail	2005-11-18,2005-11-21,2005-11-22
    fetchmail	5.9.11-6.4	m68k	DSA-900-3 fetchmail	2005-11-18,2005-11-21,2005-11-22
    fetchmail-ssl	5.9.11-6.3	m68k	DSA-900-3 fetchmail	2005-11-18,2005-11-21,2005-11-22
    fetchmail	5.9.11-6.4	mips	DSA-900-3 fetchmail	2005-11-18,2005-11-21,2005-11-22
    fetchmail-ssl	5.9.11-6.3	mips	DSA-900-3 fetchmail	2005-11-18,2005-11-21,2005-11-22
    fetchmail	5.9.11-6.4	mipsel	DSA-900-3 fetchmail	2005-11-18,2005-11-21,2005-11-22
    fetchmail-ssl	5.9.11-6.3	mipsel	DSA-900-3 fetchmail	2005-11-18,2005-11-21,2005-11-22
    fetchmail	5.9.11-6.4	powerpc	DSA-900-3 fetchmail	2005-11-18,2005-11-21,2005-11-22
    fetchmail-ssl	5.9.11-6.3	powerpc	DSA-900-3 fetchmail	2005-11-18,2005-11-21,2005-11-22
    fetchmail	5.9.11-6.4	s390	DSA-900-3 fetchmail	2005-11-18,2005-11-21,2005-11-22
    fetchmail-ssl	5.9.11-6.3	s390	DSA-900-3 fetchmail	2005-11-18,2005-11-21,2005-11-22
    fetchmail	5.9.11-6.4	sparc	DSA-900-3 fetchmail	2005-11-18,2005-11-21,2005-11-22
    fetchmail-ssl	5.9.11-6.3	sparc	DSA-900-3 fetchmail	2005-11-18,2005-11-21,2005-11-22
    kdelibs-data	3.3.2-6.2	all	DSA-804-1 kdelibs	2005-9-8
    kdelibs4-doc	3.3.2-6.2	all	DSA-804-1 kdelibs	2005-9-8
    kdelibs	3.3.2-6.2	all	DSA-804-1 kdelibs	2005-9-8
    kdelibs-bin	3.3.2-6.2	alpha	DSA-804-1 kdelibs	2005-9-8
    kdelibs4	3.3.2-6.2	alpha	DSA-804-1 kdelibs	2005-9-8
    kdelibs4-dev	3.3.2-6.2	alpha	DSA-804-1 kdelibs	2005-9-8
    kdelibs-bin	3.3.2-6.2	amd64	DSA-804-1 kdelibs	2005-9-8
    kdelibs4	3.3.2-6.2	amd64	DSA-804-1 kdelibs	2005-9-8
    kdelibs4-dev	3.3.2-6.2	amd64	DSA-804-1 kdelibs	2005-9-8
    kdelibs-bin	3.3.2-6.2	arm	DSA-804-1 kdelibs	2005-9-8
    kdelibs4	3.3.2-6.2	arm	DSA-804-1 kdelibs	2005-9-8
    kdelibs4-dev	3.3.2-6.2	arm	DSA-804-1 kdelibs	2005-9-8
    kdelibs-bin	3.3.2-6.2	i386	DSA-804-1 kdelibs	2005-9-8
    kdelibs4	3.3.2-6.2	i386	DSA-804-1 kdelibs	2005-9-8
    kdelibs4-dev	3.3.2-6.2	i386	DSA-804-1 kdelibs	2005-9-8
    kdelibs-bin	3.3.2-6.2	ia64	DSA-804-1 kdelibs	2005-9-8
    kdelibs4	3.3.2-6.2	ia64	DSA-804-1 kdelibs	2005-9-8
    kdelibs4-dev	3.3.2-6.2	ia64	DSA-804-1 kdelibs	2005-9-8
    kdelibs-bin	3.3.2-6.2	hppa	DSA-804-1 kdelibs	2005-9-8
    kdelibs4	3.3.2-6.2	hppa	DSA-804-1 kdelibs	2005-9-8
    kdelibs4-dev	3.3.2-6.2	hppa	DSA-804-1 kdelibs	2005-9-8
    kdelibs-bin	3.3.2-6.2	m68k	DSA-804-1 kdelibs	2005-9-8
    kdelibs4	3.3.2-6.2	m68k	DSA-804-1 kdelibs	2005-9-8
    kdelibs4-dev	3.3.2-6.2	m68k	DSA-804-1 kdelibs	2005-9-8
    kdelibs-bin	3.3.2-6.2	mips	DSA-804-1 kdelibs	2005-9-8
    kdelibs4	3.3.2-6.2	mips	DSA-804-1 kdelibs	2005-9-8
    kdelibs4-dev	3.3.2-6.2	mips	DSA-804-1 kdelibs	2005-9-8
    kdelibs-bin	3.3.2-6.2	mipsel	DSA-804-1 kdelibs	2005-9-8
    kdelibs4	3.3.2-6.2	mipsel	DSA-804-1 kdelibs	2005-9-8
    kdelibs4-dev	3.3.2-6.2	mipsel	DSA-804-1 kdelibs	2005-9-8
    kdelibs-bin	3.3.2-6.2	powerpc	DSA-804-1 kdelibs	2005-9-8
    kdelibs4	3.3.2-6.2	powerpc	DSA-804-1 kdelibs	2005-9-8
    kdelibs4-dev	3.3.2-6.2	powerpc	DSA-804-1 kdelibs	2005-9-8
    kdelibs-bin	3.3.2-6.2	s390	DSA-804-1 kdelibs	2005-9-8
    kdelibs4	3.3.2-6.2	s390	DSA-804-1 kdelibs	2005-9-8
    kdelibs4-dev	3.3.2-6.2	s390	DSA-804-1 kdelibs	2005-9-8
    kdelibs-bin	3.3.2-6.2	sparc	DSA-804-1 kdelibs	2005-9-8
    kdelibs4	3.3.2-6.2	sparc	DSA-804-1 kdelibs	2005-9-8
    kdelibs4-dev	3.3.2-6.2	sparc	DSA-804-1 kdelibs	2005-9-8
    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
    affix	2.1.1-2	amd64	DSA-773-1 amd64	2005-8-11
    libaffix-dev	2.1.1-2	amd64	DSA-773-1 amd64	2005-8-11
    libaffix2	2.1.1-2	amd64	DSA-773-1 amd64	2005-8-11
    gaim	1.2.1-1.4	amd64	DSA-773-1 amd64	2005-8-11
    gaim-dev	1.2.1-1.4	amd64	DSA-773-1 amd64	2005-8-11
    spamc	3.0.3-2	amd64	DSA-773-1 amd64	2005-8-11
    xloadimage	4.1-14.3	alpha	DSA-858-1 xloadimage	2005-10-10
    xloadimage	4.1-14.3	amd64	DSA-858-1 xloadimage	2005-10-10
    xloadimage	4.1-14.3	arm	DSA-858-1 xloadimage	2005-10-10
    xloadimage	4.1-14.3	i386	DSA-858-1 xloadimage	2005-10-10
    xloadimage	4.1-14.3	ia64	DSA-858-1 xloadimage	2005-10-10
    xloadimage	4.1-14.3	hppa	DSA-858-1 xloadimage	2005-10-10
    xloadimage	4.1-14.3	m68k	DSA-858-1 xloadimage	2005-10-10
    xloadimage	4.1-14.3	mips	DSA-858-1 xloadimage	2005-10-10
    xloadimage	4.1-14.3	mipsel	DSA-858-1 xloadimage	2005-10-10
    xloadimage	4.1-14.3	powerpc	DSA-858-1 xloadimage	2005-10-10
    xloadimage	4.1-14.3	s390	DSA-858-1 xloadimage	2005-10-10
    xloadimage	4.1-14.3	sparc	DSA-858-1 xloadimage	2005-10-10
    cpio	2.5-1.3	alpha	DSA-846-1 cpio	2005-10-7
    cpio	2.5-1.3	amd64	DSA-846-1 cpio	2005-10-7
    cpio	2.5-1.3	arm	DSA-846-1 cpio	2005-10-7
    cpio	2.5-1.3	i386	DSA-846-1 cpio	2005-10-7
    cpio	2.5-1.3	ia64	DSA-846-1 cpio	2005-10-7
    cpio	2.5-1.3	hppa	DSA-846-1 cpio	2005-10-7
    cpio	2.5-1.3	m68k	DSA-846-1 cpio	2005-10-7
    cpio	2.5-1.3	mips	DSA-846-1 cpio	2005-10-7
    cpio	2.5-1.3	mipsel	DSA-846-1 cpio	2005-10-7
    cpio	2.5-1.3	powerpc	DSA-846-1 cpio	2005-10-7
    cpio	2.5-1.3	s390	DSA-846-1 cpio	2005-10-7
    cpio	2.5-1.3	sparc	DSA-846-1 cpio	2005-10-7
    bmv	1.2-14.2	i386	DSA-633-1 bmv	2005-1-11
    inewsinn	1.7.2-4.1	i386	INN	1999-09-07
    inn-dev	1.7.2-4.1	i386	INN	1999-09-07
    inn	1.7.2-4.1	i386	INN	1999-09-07
    inewsinn	1.7.2-4.1	m68k	INN	1999-09-07
    inn-dev	1.7.2-4.1	m68k	INN	1999-09-07
    inn	1.7.2-4.1	m68k	INN	1999-09-07
    inewsinn	1.7.2-4.1	sparc	INN	1999-09-07
    inn-dev	1.7.2-4.1	sparc	INN	1999-09-07
    inn	1.7.2-4.1	sparc	INN	1999-09-07
    nis	3.5-2	alpha	nis	1999-10-27
    nis	3.5-2	i386	nis	1999-10-27
    nis	3.5-2	m68k	nis	1999-10-27
    nis	3.5-2	sparc	nis	1999-10-27
    cfengine	1.4.9-3	i386	cfengine	1999-02-15
    cfengine	1.4.9-3	m68k	cfengine	1999-02-15
    smtp-refuser	1.0.1	alpha	smtp-refuser	1999-08-19
    smtp-refuser	1.0.1	i386	smtp-refuser	1999-08-19
    smtp-refuser	1.0.1	m68k	smtp-refuser	1999-08-19
    smtp-refuser	1.0.1	sparc	smtp-refuser	1999-08-19
    mirror	2.9-2.1	all	mirror	1999-10-18
    procmail	3.13-1	alpha	procmail	1999-04-22
    procmail	3.13-1	i386	procmail	1999-04-22
    procmail	3.13-1	m68k	procmail	1999-04-22
    procmail	3.13-1	sparc	procmail	1999-04-22
    trn	3.6-9.3.1	alpha	trn	1999-08-20
    trn	3.6-9.3.1	i386	trn	1999-08-20
    trn	3.6-9.3.1	m68k	trn	1999-08-20
    trn	3.6-9.3.1	sparc	trn	1999-08-20
    cfingerd	1.3.2-18.1	alpha	cfingerd	1999-08-14
    cfingerd	1.3.2-18.1	i386	cfingerd	1999-08-14
    cfingerd	1.3.2-18.1	m68k	cfingerd	1999-08-14
    cfingerd	1.3.2-18.1	sparc	cfingerd	1999-08-14
    libc6-dbg	2.0.7.19981211-6.3	i386	glibc	2000-09-02
    libc6-dev	2.0.7.19981211-6.3	i386	glibc	2000-09-02
    libc6-pic	2.0.7.19981211-6.3	i386	glibc	2000-09-02
    libc6	2.0.7.19981211-6.3	i386	glibc	2000-09-02
    locales	2.0.7.19981211-6.3	i386	glibc	2000-09-02
    timezones	2.0.7.19981211-6.3	i386	glibc	2000-09-02
    glibc-doc	2.1.3-13	all	glibc	2000-09-02
    i18ndata	2.1.3-13	all	glibc	2000-09-02
    libnss1-compat	2.1.3-13	alpha	glibc	2000-09-02
    locales	2.1.3-13	alpha	glibc	2000-09-02
    nscd	2.1.3-13	alpha	glibc	2000-09-02
    libc6-dbg	2.1.3-13	arm	glibc	2000-09-02
    libc6-dev	2.1.3-13	arm	glibc	2000-09-02
    libc6-pic	2.1.3-13	arm	glibc	2000-09-02
    libc6-prof	2.1.3-13	arm	glibc	2000-09-02
    libc6	2.1.3-13	arm	glibc	2000-09-02
    locales	2.1.3-13	arm	glibc	2000-09-02
    nscd	2.1.3-13	arm	glibc	2000-09-02
    libc6-dbg	2.1.3-13	i386	glibc	2000-09-02
    libc6-dev	2.1.3-13	i386	glibc	2000-09-02
    libc6-pic	2.1.3-13	i386	glibc	2000-09-02
    libc6-prof	2.1.3-13	i386	glibc	2000-09-02
    libc6	2.1.3-13	i386	glibc	2000-09-02
    libnss1-compat	2.1.3-13	i386	glibc	2000-09-02
    locales	2.1.3-13	i386	glibc	2000-09-02
    nscd	2.1.3-13	i386	glibc	2000-09-02
    libc6-dbg	2.1.3-13	powerpc	glibc	2000-09-02
    libc6-dev	2.1.3-13	powerpc	glibc	2000-09-02
    libc6-pic	2.1.3-13	powerpc	glibc	2000-09-02
    libc6-prof	2.1.3-13	powerpc	glibc	2000-09-02
    libc6	2.1.3-13	powerpc	glibc	2000-09-02
    locales	2.1.3-13	powerpc	glibc	2000-09-02
    nscd	2.1.3-13	powerpc	glibc	2000-09-02
    libc6-dbg	2.1.3-13	sparc	glibc	2000-09-02
    libc6-dev	2.1.3-13	sparc	glibc	2000-09-02
    libc6-pic	2.1.3-13	sparc	glibc	2000-09-02
    libc6-prof	2.1.3-13	sparc	glibc	2000-09-02
    libc6	2.1.3-13	sparc	glibc	2000-09-02
    locales	2.1.3-13	sparc	glibc	2000-09-02
    nscd	2.1.3-13	sparc	glibc	2000-09-02
    joe	2.8-15.2	alpha	DSA-003-1 joe	2000-12-01
    joe	2.8-15.2	arm	DSA-003-1 joe	2000-12-01
    joe	2.8-15.2	i386	DSA-003-1 joe	2000-12-01
    joe	2.8-15.2	m68k	DSA-003-1 joe	2000-12-01
    joe	2.8-15.2	powerpc	DSA-003-1 joe	2000-12-01
    joe	2.8-15.2	sparc	DSA-003-1 joe	2000-12-01
    zope	2.1.6-5.2	alpha	zope	2000-08-21
    zope	2.1.6-5.2	arm	zope	2000-08-21
    zope	2.1.6-5.2	i386	zope	2000-08-21
    zope	2.1.6-5.2	m68k	zope	2000-08-21
    zope	2.1.6-5.2	powerpc	zope	2000-08-21
    zope	2.1.6-5.2	sparc	zope	2000-08-21
    mtr	0.28-1	alpha	mtr	2000-03-09
    mtr	0.28-1	i386	mtr	2000-03-09
    mtr	0.28-1	m68k	mtr	2000-03-09
    mtr	0.28-1	sparc	mtr	2000-03-09
    nis	3.5-2.1	i386	nis	2000-10-14
    nis	3.5-2.1	m68k	nis	2000-10-14
    nis	3.8-0.1	alpha	nis	2000-10-14
    nis	3.8-0.1	arm	nis	2000-10-14
    nis	3.8-0.1	i386	nis	2000-10-14
    nis	3.8-0.1	m68k	nis	2000-10-14
    nis	3.8-0.1	powerpc	nis	2000-10-14
    nis	3.8-0.1	sparc	nis	2000-10-14
    curl-ssl	6.0-1.2	alpha	curl and curl-ssl	2000-10-13
    curl-ssl	6.0-1.2	arm	curl and curl-ssl	2000-10-13
    curl-ssl	6.0-1.2	i386	curl and curl-ssl	2000-10-13
    curl-ssl	6.0-1.2	m68k	curl and curl-ssl	2000-10-13
    curl-ssl	6.0-1.2	powerpc	curl and curl-ssl	2000-10-13
    curl-ssl	6.0-1.2	sparc	curl and curl-ssl	2000-10-13
    curl	6.0-1.1	alpha	curl and curl-ssl	2000-10-13
    curl	6.0-1.1	arm	curl and curl-ssl	2000-10-13
    curl	6.0-1.1.1	i386	curl and curl-ssl	2000-10-13
    curl	6.0-1.1	m68k	curl and curl-ssl	2000-10-13
    curl	6.0-1.1	powerpc	curl and curl-ssl	2000-10-13
    curl	6.0-1.1	sparc	curl and curl-ssl	2000-10-13
    gnupg	1.0.4-1	alpha	gnupg	2000-11-11
    gnupg	1.0.4-1	arm	gnupg	2000-11-11
    gnupg	1.0.4-1	i386	gnupg	2000-11-11
    gnupg	1.0.4-1	m68k	gnupg	2000-11-11
    gnupg	1.0.4-1	powerpc	gnupg	2000-11-11
    gnupg	1.0.4-1	sparc	gnupg	2000-11-11
    horde	1.2.1-0	all	imp	2000-09-10
    imp	2.2.1-0	all	imp	2000-09-10
    mailx	8.1.1-10.1	alpha	mailx	2000-06-05
    mailx	8.1.1-10.1	i386	mailx	2000-06-05
    mailx	8.1.1-10.1	m68k	mailx	2000-06-05
    mailx	8.1.1-10.1	sparc	mailx	2000-06-05
    mailx	8.1.1-10.1	alpha	mailx	2000-06-05
    mailx	8.1.1-10.1	i386	mailx	2000-06-05
    mailx	8.1.1-10.1	m68k	mailx	2000-06-05
    mailx	8.1.1-10.1	sparc	mailx	2000-06-05
    nano-tiny	0.9.23-1	alpha	DSA-004-1 nano	2000-12-17
    nano	0.9.23-1	alpha	DSA-004-1 nano	2000-12-17
    nano-tiny	0.9.23-1	arm	DSA-004-1 nano	2000-12-17
    nano	0.9.23-1	arm	DSA-004-1 nano	2000-12-17
    nano-tiny	0.9.23-1	i386	DSA-004-1 nano	2000-12-17
    nano	0.9.23-1	i386	DSA-004-1 nano	2000-12-17
    nano-tiny	0.9.23-1	m68k	DSA-004-1 nano	2000-12-17
    nano	0.9.23-1	m68k	DSA-004-1 nano	2000-12-17
    nano-tiny	0.9.23-1.1	powerpc	DSA-004-1 nano	2000-12-17
    nano	0.9.23-1.1	powerpc	DSA-004-1 nano	2000-12-17
    nano-tiny	0.9.23-1	sparc	DSA-004-1 nano	2000-12-17
    nano	0.9.23-1	sparc	DSA-004-1 nano	2000-12-17
    communicator-base-475	4.75-2	i386	netscape navigator/communicator	2000-09-01
    communicator-nethelp-475	4.75-2	all	netscape navigator/communicator	2000-09-01
    communicator-smotif-475-libc5	4.75-2	i386	netscape navigator/communicator	2000-09-01
    communicator-smotif-475	4.75-2	i386	netscape navigator/communicator	2000-09-01
    communicator-spellchk-475	4.75-2	all	netscape navigator/communicator	2000-09-01
    communicator	4.75-1	i386	netscape navigator/communicator	2000-09-01
    navigator-base-475	4.75-2	i386	netscape navigator/communicator	2000-09-01
    navigator-nethelp-475	4.75-2	all	netscape navigator/communicator	2000-09-01
    navigator-smotif-475-libc5	4.75-2	i386	netscape navigator/communicator	2000-09-01
    navigator-smotif-475	4.75-2	i386	netscape navigator/communicator	2000-09-01
    navigator	4.75-1	i386	netscape navigator/communicator	2000-09-01
    netscape-base-4-libc5	4.75-1	i386	netscape navigator/communicator	2000-09-01
    netscape-base-475	4.75-2	i386	netscape navigator/communicator	2000-09-01
    netscape-base-4	4.75-1	i386	netscape navigator/communicator	2000-09-01
    netscape-ja-resource-475	4.75-2	all	netscape navigator/communicator	2000-09-01
    netscape-java-475	4.75-2	all	netscape navigator/communicator	2000-09-01
    netscape-ko-resource-475	4.75-2	all	netscape navigator/communicator	2000-09-01
    netscape-smotif-475-libc5	4.75-2	i386	netscape navigator/communicator	2000-09-01
    netscape-smotif-475	4.75-2	i386	netscape navigator/communicator	2000-09-01
    netscape-zh-resource-475	4.75-2	all	netscape navigator/communicator	2000-09-01
    sysklogd	1.3-33.1	alpha	sysklogd	2000-09-19
    sysklogd	1.3-33.1	arm	sysklogd	2000-09-19
    sysklogd	1.3-33.1	i386	sysklogd	2000-09-19
    sysklogd	1.3-33.1	sparc	sysklogd	2000-09-19
    tcsh-i18n	6.09.00-10	all	tcsh	2000-11-11
    tcsh	6.09.00-10	alpha	tcsh	2000-11-11
    tcsh-kanji	6.09.00-10	alpha	tcsh	2000-11-11
    tcsh	6.09.00-10	arm	tcsh	2000-11-11
    tcsh-kanji	6.09.00-10	arm	tcsh	2000-11-11
    tcsh	6.09.00-10	i386	tcsh	2000-11-11
    tcsh-kanji	6.09.00-10	i386	tcsh	2000-11-11
    tcsh	6.09.00-10	m68k	tcsh	2000-11-11
    tcsh-kanji	6.09.00-10	m68k	tcsh	2000-11-11
    tcsh	6.09.00-10	powerpc	tcsh	2000-11-11
    tcsh-kanji	6.09.00-10	powerpc	tcsh	2000-11-11
    tcsh	6.09.00-10	sparc	tcsh	2000-11-11
    tcsh-kanji	6.09.00-10	sparc	tcsh	2000-11-11
    screen	3.7.4-9.1	i386	screen	2000-09-02
    screen	3.9.5-9	alpha	screen	2000-09-02
    screen	3.9.5-9	arm	screen	2000-09-02
    screen	3.9.5-9	i386	screen	2000-09-02
    screen	3.9.5-9	m68k	screen	2000-09-02
    screen	3.9.5-9	powerpc	screen	2000-09-02
    screen	3.9.5-9	sparc	screen	2000-09-02
    gs	5.10-10.1	alpha	ghostscript	2000-11-23
    gs	5.10-10.1	arm	ghostscript	2000-11-23
    gs	5.10-10.1	i386	ghostscript	2000-11-23
    gs	5.10-10.1	m68k	ghostscript	2000-11-23
    gs	5.10-10.1	powerpc	ghostscript	2000-11-23
    gs	5.10-10.1	sparc	ghostscript	2000-11-23
    xlockmore-gl	4.12-5	alpha	xlockmore	2000-08-16
    xlockmore	4.12-5	alpha	xlockmore	2000-08-16
    xlockmore-gl	4.12-5	i386	xlockmore	2000-08-16
    xlockmore	4.12-5	i386	xlockmore	2000-08-16
    xlockmore-gl	4.12-5	m68k	xlockmore	2000-08-16
    xlockmore	4.12-5	m68k	xlockmore	2000-08-16
    xlockmore-gl	4.12-5	sparc	xlockmore	2000-08-16
    xlockmore	4.12-5	sparc	xlockmore	2000-08-16
    xlockmore-gl	4.15-9	alpha	xlockmore	2000-08-16
    xlockmore	4.15-9	alpha	xlockmore	2000-08-16
    xlockmore-gl	4.15-9	arm	xlockmore	2000-08-16
    xlockmore	4.15-9	arm	xlockmore	2000-08-16
    xlockmore-gl	4.15-9	i386	xlockmore	2000-08-16
    xlockmore	4.15-9	i386	xlockmore	2000-08-16
    xlockmore-gl	4.15-9	m68k	xlockmore	2000-08-16
    xlockmore	4.15-9	m68k	xlockmore	2000-08-16
    xlockmore-gl	4.15-9	sparc	xlockmore	2000-08-16
    xlockmore	4.15-9	sparc	xlockmore	2000-08-16
    xlockmore-gl	4.15-9	powerpc	xlockmore	2000-08-16
    xlockmore	4.15-9	powerpc	xlockmore	2000-08-16
    htdig	3.1.5-0.1	alpha	htdig	2000-02-26
    htdig	3.1.5-0.1	i386	htdig	2000-02-26
    htdig	3.1.5-0.1	m68k	htdig	2000-02-26
    htdig	3.1.5-0.1	sparc	htdig	2000-02-26
    ed	0.2-18.1	alpha	DSA-001-1 ed	2000-11-29
    ed	0.2-18.1	arm	DSA-001-1 ed	2000-11-29
    ed	0.2-18.1	i386	DSA-001-1 ed	2000-11-29
    ed	0.2-18.1	m68k	DSA-001-1 ed	2000-11-29
    ed	0.2-18.1	powerpc	DSA-001-1 ed	2000-11-29
    ed	0.2-18.1	sparc	DSA-001-1 ed	2000-11-29
    zope	2.1.6-5.3	alpha	DSA-006-1 zope	2000-12-19
    zope	2.1.6-5.3	arm	DSA-006-1 zope	2000-12-19
    zope	2.1.6-5.3	i386	DSA-006-1 zope	2000-12-19
    zope	2.1.6-5.3	m68k	DSA-006-1 zope	2000-12-19
    zope	2.1.6-5.3	powerpc	DSA-006-1 zope	2000-12-19
    zope	2.1.6-5.3	sparc	DSA-006-1 zope	2000-12-19
    xchat-common	1.4.3-0.1	all	xchat	2000-08-30
    xchat-gnome	1.4.3-0.1	alpha	xchat	2000-08-30
    xchat-text	1.4.3-0.1	alpha	xchat	2000-08-30
    xchat	1.4.3-0.1	alpha	xchat	2000-08-30
    xchat-gnome	1.4.3-0.1	arm	xchat	2000-08-30
    xchat-text	1.4.3-0.1	arm	xchat	2000-08-30
    xchat	1.4.3-0.1	arm	xchat	2000-08-30
    xchat-gnome	1.4.3-0.1	i386	xchat	2000-08-30
    xchat-text	1.4.3-0.1	i386	xchat	2000-08-30
    xchat	1.4.3-0.1	i386	xchat	2000-08-30
    xchat-gnome	1.4.3-0.1	m68k	xchat	2000-08-30
    xchat-text	1.4.3-0.1	m68k	xchat	2000-08-30
    xchat	1.4.3-0.1	m68k	xchat	2000-08-30
    xchat-gnome	1.4.3-0.1	powerpc	xchat	2000-08-30
    xchat-text	1.4.3-0.1	powerpc	xchat	2000-08-30
    xchat	1.4.3-0.1	powerpc	xchat	2000-08-30
    xchat-gnome	1.4.3-0.1	sparc	xchat	2000-08-30
    xchat-text	1.4.3-0.1	sparc	xchat	2000-08-30
    xchat	1.4.3-0.1	sparc	xchat	2000-08-30
    gnupg	1.0.4-1.1	alpha	DSA-010-1 gnupg	2000-12-25
    gnupg	1.0.4-1.1	arm	DSA-010-1 gnupg	2000-12-25
    gnupg	1.0.4-1.1	i386	DSA-010-1 gnupg	2000-12-25
    gnupg	1.0.4-1.1	m68k	DSA-010-1 gnupg	2000-12-25
    gnupg	1.0.4-1.1	powerpc	DSA-010-1 gnupg	2000-12-25
    gnupg	1.0.4-1.1	sparc	DSA-010-1 gnupg	2000-12-25
    ssh-askpass-ptk	1.2.3-9.1	all	openssh	2000-11-18
    ssh-askpass-gnome	1.2.3-9.1	alpha	openssh	2000-11-18
    ssh	1.2.3-9.1	alpha	openssh	2000-11-18
    ssh-askpass-gnome	1.2.3-9.1	arm	openssh	2000-11-18
    ssh	1.2.3-9.1	arm	openssh	2000-11-18
    ssh-askpass-gnome	1.2.3-9.1	i386	openssh	2000-11-18
    ssh	1.2.3-9.1	i386	openssh	2000-11-18
    ssh-askpass-gnome	1.2.3-9.1	m68k	openssh	2000-11-18
    ssh	1.2.3-9.1	m68k	openssh	2000-11-18
    ssh-askpass-gnome	1.2.3-9.1	powerpc	openssh	2000-11-18
    ssh	1.2.3-9.1	powerpc	openssh	2000-11-18
    nvi	1.79-9.1	alpha	nvi	2000-01-08
    nvi	1.79-9.1	i386	nvi	2000-01-08
    nvi	1.79-9.1	m68k	nvi	2000-01-08
    nvi	1.79-9.1	sparc	nvi	2000-01-08
    libpam-smb	1.1.6-1	alpha	libpam-smb	2000-09-11
    libpam-smb	1.1.6-1	arm	libpam-smb	2000-09-11
    libpam-smb	1.1.6-1	i386	libpam-smb	2000-09-11
    libpam-smb	1.1.6-1	powerpc	libpam-smb	2000-09-11
    libpam-smb	1.1.6-1	sparc	libpam-smb	2000-09-11
    modutils	2.3.11-13.1	alpha	modutils	2000-11-22
    modutils	2.3.11-13.1	arm	modutils	2000-11-22
    modutils	2.3.11-13.1	i386	modutils	2000-11-22
    modutils	2.3.11-13.1	m68k	modutils	2000-11-22
    modutils	2.3.11-13.1	powerpc	modutils	2000-11-22
    modutils	2.3.11-13.1	sparc	modutils	2000-11-22
    xpdf	0.90-7	alpha	xpdf	2000-09-10
    xpdf	0.90-7	arm	xpdf	2000-09-10
    xpdf	0.90-7	i386	xpdf	2000-09-10
    xpdf	0.90-7	m68k	xpdf	2000-09-10
    xpdf	0.90-7	powerpc	xpdf	2000-09-10
    xpdf	0.90-7	sparc	xpdf	2000-09-10
    cvsweb	109	all	cvsweb	2000-07-16
    mailx	8.1.1-10.1.3	alpha	mailx	2000-08-08
    mailx	8.1.1-10.1.3	arm	mailx	2000-08-08
    mailx	8.1.1-10.1.3	i386	mailx	2000-08-08
    mailx	8.1.1-10.1.3	powerpc	mailx	2000-08-08
    mailx	8.1.1-10.1.3	sparc	mailx	2000-08-08
    cupsys-bsd	1.0.4-8	alpha	cupsys	2000-11-19
    cupsys	1.0.4-8	alpha	cupsys	2000-11-19
    libcupsys1-dev	1.0.4-8	alpha	cupsys	2000-11-19
    libcupsys1	1.0.4-8	alpha	cupsys	2000-11-19
    cupsys-bsd	1.0.4-8	i386	cupsys	2000-11-19
    cupsys	1.0.4-8	i386	cupsys	2000-11-19
    libcupsys1-dev	1.0.4-8	i386	cupsys	2000-11-19
    libcupsys1	1.0.4-8	i386	cupsys	2000-11-19
    cupsys-bsd	1.0.4-8	m68k	cupsys	2000-11-19
    cupsys	1.0.4-8	m68k	cupsys	2000-11-19
    libcupsys1-dev	1.0.4-8	m68k	cupsys	2000-11-19
    libcupsys1	1.0.4-8	m68k	cupsys	2000-11-19
    cupsys-bsd	1.0.4-8	powerpc	cupsys	2000-11-19
    cupsys	1.0.4-8	powerpc	cupsys	2000-11-19
    libcupsys1-dev	1.0.4-8	powerpc	cupsys	2000-11-19
    libcupsys1	1.0.4-8	powerpc	cupsys	2000-11-19
    cupsys-bsd	1.0.4-8	sparc	cupsys	2000-11-19
    cupsys	1.0.4-8	sparc	cupsys	2000-11-19
    libcupsys1-dev	1.0.4-8	sparc	cupsys	2000-11-19
    libcupsys1	1.0.4-8	sparc	cupsys	2000-11-19
    modutils	2.3.11-12	alpha	modutils	2000-11-20
    modutils	2.3.11-12	arm	modutils	2000-11-20
    modutils	2.3.11-12	i386	modutils	2000-11-20
    modutils	2.3.11-12	m68k	modutils	2000-11-20
    modutils	2.3.11-12	powerpc	modutils	2000-11-20
    modutils	2.3.11-12	sparc	modutils	2000-11-20
    wu-ftpd-academ	2.4.2.16-13.1	alpha	wu-ftpd	2000-06-22
    wu-ftpd-academ	2.4.2.16-13.1	i386	wu-ftpd	2000-06-22
    wu-ftpd-academ	2.4.2.16-13.1	m68k	wu-ftpd	2000-06-22
    wu-ftpd-academ	2.4.2.16-13.1	sparc	wu-ftpd	2000-06-22
    wu-ftpd	2.6.0-5.1	alpha	wu-ftpd	2000-06-22
    wu-ftpd	2.6.0-5.1	arm	wu-ftpd	2000-06-22
    wu-ftpd	2.6.0-5.1	i386	wu-ftpd	2000-06-22
    wu-ftpd	2.6.0-5.1	m68k	wu-ftpd	2000-06-22
    wu-ftpd	2.6.0-5.1	powerpc	wu-ftpd	2000-06-22
    wu-ftpd	2.6.0-5.1	sparc	wu-ftpd	2000-06-22
    zope	2.1.6-5.4	alpha	DSA-007-1 zope	2000-12-20
    zope	2.1.6-5.4	arm	DSA-007-1 zope	2000-12-20
    zope	2.1.6-5.4	i386	DSA-007-1 zope	2000-12-20
    zope	2.1.6-5.4	m68k	DSA-007-1 zope	2000-12-20
    zope	2.1.6-5.4	powerpc	DSA-007-1 zope	2000-12-20
    zope	2.1.6-5.4	sparc	DSA-007-1 zope	2000-12-20
    boa	0.94.8.3-1	alpha	boa	2000-10-09
    boa	0.94.8.3-1	i386	boa	2000-10-09
    boa	0.94.8.3-1	m68k	boa	2000-10-09
    boa	0.94.8.3-1	powerpc	boa	2000-10-09
    boa	0.94.8.3-1	sparc	boa	2000-10-09
    quagga-doc	0.98.3-7.5	all	DSA-1382-1 quagga	2007-10-1
    quagga	0.98.3-7.5	alpha	DSA-1382-1 quagga	2007-10-1
    quagga	0.98.3-7.5	amd64	DSA-1382-1 quagga	2007-10-1
    quagga	0.98.3-7.5	arm	DSA-1382-1 quagga	2007-10-1
    quagga	0.98.3-7.5	hppa	DSA-1382-1 quagga	2007-10-1
    quagga	0.98.3-7.5	i386	DSA-1382-1 quagga	2007-10-1
    quagga	0.98.3-7.5	ia64	DSA-1382-1 quagga	2007-10-1
    quagga	0.98.3-7.5	m68k	DSA-1382-1 quagga	2007-10-1
    quagga	0.98.3-7.5	mips	DSA-1382-1 quagga	2007-10-1
    quagga	0.98.3-7.5	mipsel	DSA-1382-1 quagga	2007-10-1
    quagga	0.98.3-7.5	powerpc	DSA-1382-1 quagga	2007-10-1
    quagga	0.98.3-7.5	s390	DSA-1382-1 quagga	2007-10-1
    quagga	0.98.3-7.5	sparc	DSA-1382-1 quagga	2007-10-1
    phpmyadmin	2.9.1.1-6	all	DSA-1403-1 phpmyadmin	2007-11-8
    xfs	1.0.1-6	alpha	DSA-1342-1 xfs	2007-7-30
    xfs	1.0.1-6	amd64	DSA-1342-1 xfs	2007-7-30
    xfs	1.0.1-6	arm	DSA-1342-1 xfs	2007-7-30
    xfs	1.0.1-6	hppa	DSA-1342-1 xfs	2007-7-30
    xfs	1.0.1-6	i386	DSA-1342-1 xfs	2007-7-30
    xfs	1.0.1-6	ia64	DSA-1342-1 xfs	2007-7-30
    xfs	1.0.1-6	mips	DSA-1342-1 xfs	2007-7-30
    xfs	1.0.1-6	mipsel	DSA-1342-1 xfs	2007-7-30
    xfs	1.0.1-6	powerpc	DSA-1342-1 xfs	2007-7-30
    xfs	1.0.1-6	s390	DSA-1342-1 xfs	2007-7-30
    xfs	1.0.1-6	sparc	DSA-1342-1 xfs	2007-7-30
    gtk2-engines-pixbuf	2.6.4-3.2	alpha	DSA-1256-1 gtk+2.0	2007-1-31
    gtk2-engines-pixbuf	2.6.4-3.2	amd64	DSA-1256-1 gtk+2.0	2007-1-31
    gtk2-engines-pixbuf	2.6.4-3.2	arm	DSA-1256-1 gtk+2.0	2007-1-31
    gtk2-engines-pixbuf	2.6.4-3.2	hppa	DSA-1256-1 gtk+2.0	2007-1-31
    gtk2-engines-pixbuf	2.6.4-3.2	i386	DSA-1256-1 gtk+2.0	2007-1-31
    gtk2-engines-pixbuf	2.6.4-3.2	ia64	DSA-1256-1 gtk+2.0	2007-1-31
    gtk2-engines-pixbuf	2.6.4-3.2	mips	DSA-1256-1 gtk+2.0	2007-1-31
    gtk2-engines-pixbuf	2.6.4-3.2	mipsel	DSA-1256-1 gtk+2.0	2007-1-31
    gtk2-engines-pixbuf	2.6.4-3.2	powerpc	DSA-1256-1 gtk+2.0	2007-1-31
    gtk2-engines-pixbuf	2.6.4-3.2	s390	DSA-1256-1 gtk+2.0	2007-1-31
    gtk2-engines-pixbuf	2.6.4-3.2	sparc	DSA-1256-1 gtk+2.0	2007-1-31
    libsndfile1-dev	1.0.16-2	alpha	DSA-1442-1 libsndfile	2007-12-29
    libsndfile1	1.0.16-2	alpha	DSA-1442-1 libsndfile	2007-12-29
    sndfile-programs	1.0.16-2	alpha	DSA-1442-1 libsndfile	2007-12-29
    sndfile-programs	1.0.16-2	amd64	DSA-1442-1 libsndfile	2007-12-29
    libsndfile1	1.0.16-2	amd64	DSA-1442-1 libsndfile	2007-12-29
    libsndfile1-dev	1.0.16-2	amd64	DSA-1442-1 libsndfile	2007-12-29
    sndfile-programs	1.0.16-2	arm	DSA-1442-1 libsndfile	2007-12-29
    libsndfile1-dev	1.0.16-2	arm	DSA-1442-1 libsndfile	2007-12-29
    libsndfile1	1.0.16-2	arm	DSA-1442-1 libsndfile	2007-12-29
    sndfile-programs	1.0.16-2	hppa	DSA-1442-1 libsndfile	2007-12-29
    libsndfile1	1.0.16-2	hppa	DSA-1442-1 libsndfile	2007-12-29
    libsndfile1-dev	1.0.16-2	hppa	DSA-1442-1 libsndfile	2007-12-29
    sndfile-programs	1.0.16-2	i386	DSA-1442-1 libsndfile	2007-12-29
    libsndfile1-dev	1.0.16-2	i386	DSA-1442-1 libsndfile	2007-12-29
    libsndfile1	1.0.16-2	i386	DSA-1442-1 libsndfile	2007-12-29
    libsndfile1	1.0.16-2	ia64	DSA-1442-1 libsndfile	2007-12-29
    libsndfile1-dev	1.0.16-2	ia64	DSA-1442-1 libsndfile	2007-12-29
    sndfile-programs	1.0.16-2	ia64	DSA-1442-1 libsndfile	2007-12-29
    libsndfile1	1.0.16-2	mips	DSA-1442-1 libsndfile	2007-12-29
    libsndfile1-dev	1.0.16-2	mips	DSA-1442-1 libsndfile	2007-12-29
    sndfile-programs	1.0.16-2	mips	DSA-1442-1 libsndfile	2007-12-29
    sndfile-programs	1.0.16-2	mipsel	DSA-1442-1 libsndfile	2007-12-29
    libsndfile1-dev	1.0.16-2	mipsel	DSA-1442-1 libsndfile	2007-12-29
    libsndfile1	1.0.16-2	mipsel	DSA-1442-1 libsndfile	2007-12-29
    libsndfile1	1.0.16-2	powerpc	DSA-1442-1 libsndfile	2007-12-29
    libsndfile1-dev	1.0.16-2	powerpc	DSA-1442-1 libsndfile	2007-12-29
    sndfile-programs	1.0.16-2	powerpc	DSA-1442-1 libsndfile	2007-12-29
    libsndfile1-dev	1.0.16-2	s390	DSA-1442-1 libsndfile	2007-12-29
    sndfile-programs	1.0.16-2	s390	DSA-1442-1 libsndfile	2007-12-29
    libsndfile1	1.0.16-2	s390	DSA-1442-1 libsndfile	2007-12-29
    sndfile-programs	1.0.16-2	sparc	DSA-1442-1 libsndfile	2007-12-29
    libsndfile1	1.0.16-2	sparc	DSA-1442-1 libsndfile	2007-12-29
    libsndfile1-dev	1.0.16-2	sparc	DSA-1442-1 libsndfile	2007-12-29
    squirrelmail	1.4.4-11	all	DSA-1290-1 squirrelmail	2007-5-13
    php4-pear	4.3.10-21	all	DSA-1296-1 php4	2007-5-21
    php4	4.3.10-21	all	DSA-1296-1 php4	2007-5-21
    libapache-mod-php4	4.3.10-21	alpha	DSA-1296-1 php4	2007-5-21
    libapache2-mod-php4	4.3.10-21	alpha	DSA-1296-1 php4	2007-5-21
    php4-cgi	4.3.10-21	alpha	DSA-1296-1 php4	2007-5-21
    php4-cli	4.3.10-21	alpha	DSA-1296-1 php4	2007-5-21
    php4-common	4.3.10-21	alpha	DSA-1296-1 php4	2007-5-21
    php4-curl	4.3.10-21	alpha	DSA-1296-1 php4	2007-5-21
    php4-dev	4.3.10-21	alpha	DSA-1296-1 php4	2007-5-21
    php4-domxml	4.3.10-21	alpha	DSA-1296-1 php4	2007-5-21
    php4-gd	4.3.10-21	alpha	DSA-1296-1 php4	2007-5-21
    php4-imap	4.3.10-21	alpha	DSA-1296-1 php4	2007-5-21
    php4-ldap	4.3.10-21	alpha	DSA-1296-1 php4	2007-5-21
    php4-mcal	4.3.10-21	alpha	DSA-1296-1 php4	2007-5-21
    php4-mhash	4.3.10-21	alpha	DSA-1296-1 php4	2007-5-21
    php4-mysql	4.3.10-21	alpha	DSA-1296-1 php4	2007-5-21
    php4-odbc	4.3.10-21	alpha	DSA-1296-1 php4	2007-5-21
    php4-recode	4.3.10-21	alpha	DSA-1296-1 php4	2007-5-21
    php4-snmp	4.3.10-21	alpha	DSA-1296-1 php4	2007-5-21
    php4-sybase	4.3.10-21	alpha	DSA-1296-1 php4	2007-5-21
    php4-xslt	4.3.10-21	alpha	DSA-1296-1 php4	2007-5-21
    libapache-mod-php4	4.3.10-21	amd64	DSA-1296-1 php4	2007-5-21
    libapache2-mod-php4	4.3.10-21	amd64	DSA-1296-1 php4	2007-5-21
    php4-cgi	4.3.10-21	amd64	DSA-1296-1 php4	2007-5-21
    php4-cli	4.3.10-21	amd64	DSA-1296-1 php4	2007-5-21
    php4-common	4.3.10-21	amd64	DSA-1296-1 php4	2007-5-21
    php4-curl	4.3.10-21	amd64	DSA-1296-1 php4	2007-5-21
    php4-dev	4.3.10-21	amd64	DSA-1296-1 php4	2007-5-21
    php4-domxml	4.3.10-21	amd64	DSA-1296-1 php4	2007-5-21
    php4-gd	4.3.10-21	amd64	DSA-1296-1 php4	2007-5-21
    php4-imap	4.3.10-21	amd64	DSA-1296-1 php4	2007-5-21
    php4-ldap	4.3.10-21	amd64	DSA-1296-1 php4	2007-5-21
    php4-mcal	4.3.10-21	amd64	DSA-1296-1 php4	2007-5-21
    php4-mhash	4.3.10-21	amd64	DSA-1296-1 php4	2007-5-21
    php4-mysql	4.3.10-21	amd64	DSA-1296-1 php4	2007-5-21
    php4-odbc	4.3.10-21	amd64	DSA-1296-1 php4	2007-5-21
    php4-recode	4.3.10-21	amd64	DSA-1296-1 php4	2007-5-21
    php4-snmp	4.3.10-21	amd64	DSA-1296-1 php4	2007-5-21
    php4-sybase	4.3.10-21	amd64	DSA-1296-1 php4	2007-5-21
    php4-xslt	4.3.10-21	amd64	DSA-1296-1 php4	2007-5-21
    libapache-mod-php4	4.3.10-21	arm	DSA-1296-1 php4	2007-5-21
    libapache2-mod-php4	4.3.10-21	arm	DSA-1296-1 php4	2007-5-21
    php4-cgi	4.3.10-21	arm	DSA-1296-1 php4	2007-5-21
    php4-cli	4.3.10-21	arm	DSA-1296-1 php4	2007-5-21
    php4-common	4.3.10-21	arm	DSA-1296-1 php4	2007-5-21
    php4-curl	4.3.10-21	arm	DSA-1296-1 php4	2007-5-21
    php4-dev	4.3.10-21	arm	DSA-1296-1 php4	2007-5-21
    php4-domxml	4.3.10-21	arm	DSA-1296-1 php4	2007-5-21
    php4-gd	4.3.10-21	arm	DSA-1296-1 php4	2007-5-21
    php4-imap	4.3.10-21	arm	DSA-1296-1 php4	2007-5-21
    php4-ldap	4.3.10-21	arm	DSA-1296-1 php4	2007-5-21
    php4-mcal	4.3.10-21	arm	DSA-1296-1 php4	2007-5-21
    php4-mhash	4.3.10-21	arm	DSA-1296-1 php4	2007-5-21
    php4-mysql	4.3.10-21	arm	DSA-1296-1 php4	2007-5-21
    php4-odbc	4.3.10-21	arm	DSA-1296-1 php4	2007-5-21
    php4-recode	4.3.10-21	arm	DSA-1296-1 php4	2007-5-21
    php4-snmp	4.3.10-21	arm	DSA-1296-1 php4	2007-5-21
    php4-sybase	4.3.10-21	arm	DSA-1296-1 php4	2007-5-21
    php4-xslt	4.3.10-21	arm	DSA-1296-1 php4	2007-5-21
    libapache-mod-php4	4.3.10-21	hppa	DSA-1296-1 php4	2007-5-21
    libapache2-mod-php4	4.3.10-21	hppa	DSA-1296-1 php4	2007-5-21
    php4-cgi	4.3.10-21	hppa	DSA-1296-1 php4	2007-5-21
    php4-cli	4.3.10-21	hppa	DSA-1296-1 php4	2007-5-21
    php4-common	4.3.10-21	hppa	DSA-1296-1 php4	2007-5-21
    php4-curl	4.3.10-21	hppa	DSA-1296-1 php4	2007-5-21
    php4-dev	4.3.10-21	hppa	DSA-1296-1 php4	2007-5-21
    php4-domxml	4.3.10-21	hppa	DSA-1296-1 php4	2007-5-21
    php4-gd	4.3.10-21	hppa	DSA-1296-1 php4	2007-5-21
    php4-imap	4.3.10-21	hppa	DSA-1296-1 php4	2007-5-21
    php4-ldap	4.3.10-21	hppa	DSA-1296-1 php4	2007-5-21
    php4-mcal	4.3.10-21	hppa	DSA-1296-1 php4	2007-5-21
    php4-mhash	4.3.10-21	hppa	DSA-1296-1 php4	2007-5-21
    php4-mysql	4.3.10-21	hppa	DSA-1296-1 php4	2007-5-21
    php4-odbc	4.3.10-21	hppa	DSA-1296-1 php4	2007-5-21
    php4-recode	4.3.10-21	hppa	DSA-1296-1 php4	2007-5-21
    php4-snmp	4.3.10-21	hppa	DSA-1296-1 php4	2007-5-21
    php4-sybase	4.3.10-21	hppa	DSA-1296-1 php4	2007-5-21
    php4-xslt	4.3.10-21	hppa	DSA-1296-1 php4	2007-5-21
    libapache-mod-php4	4.3.10-21	i386	DSA-1296-1 php4	2007-5-21
    libapache2-mod-php4	4.3.10-21	i386	DSA-1296-1 php4	2007-5-21
    php4-cgi	4.3.10-21	i386	DSA-1296-1 php4	2007-5-21
    php4-cli	4.3.10-21	i386	DSA-1296-1 php4	2007-5-21
    php4-common	4.3.10-21	i386	DSA-1296-1 php4	2007-5-21
    php4-curl	4.3.10-21	i386	DSA-1296-1 php4	2007-5-21
    php4-dev	4.3.10-21	i386	DSA-1296-1 php4	2007-5-21
    php4-domxml	4.3.10-21	i386	DSA-1296-1 php4	2007-5-21
    php4-gd	4.3.10-21	i386	DSA-1296-1 php4	2007-5-21
    php4-imap	4.3.10-21	i386	DSA-1296-1 php4	2007-5-21
    php4-ldap	4.3.10-21	i386	DSA-1296-1 php4	2007-5-21
    php4-mcal	4.3.10-21	i386	DSA-1296-1 php4	2007-5-21
    php4-mhash	4.3.10-21	i386	DSA-1296-1 php4	2007-5-21
    php4-mysql	4.3.10-21	i386	DSA-1296-1 php4	2007-5-21
    php4-odbc	4.3.10-21	i386	DSA-1296-1 php4	2007-5-21
    php4-recode	4.3.10-21	i386	DSA-1296-1 php4	2007-5-21
    php4-snmp	4.3.10-21	i386	DSA-1296-1 php4	2007-5-21
    php4-sybase	4.3.10-21	i386	DSA-1296-1 php4	2007-5-21
    php4-xslt	4.3.10-21	i386	DSA-1296-1 php4	2007-5-21
    libapache-mod-php4	4.3.10-21	ia64	DSA-1296-1 php4	2007-5-21
    libapache2-mod-php4	4.3.10-21	ia64	DSA-1296-1 php4	2007-5-21
    php4-cgi	4.3.10-21	ia64	DSA-1296-1 php4	2007-5-21
    php4-cli	4.3.10-21	ia64	DSA-1296-1 php4	2007-5-21
    php4-common	4.3.10-21	ia64	DSA-1296-1 php4	2007-5-21
    php4-curl	4.3.10-21	ia64	DSA-1296-1 php4	2007-5-21
    php4-dev	4.3.10-21	ia64	DSA-1296-1 php4	2007-5-21
    php4-domxml	4.3.10-21	ia64	DSA-1296-1 php4	2007-5-21
    php4-gd	4.3.10-21	ia64	DSA-1296-1 php4	2007-5-21
    php4-imap	4.3.10-21	ia64	DSA-1296-1 php4	2007-5-21
    php4-ldap	4.3.10-21	ia64	DSA-1296-1 php4	2007-5-21
    php4-mcal	4.3.10-21	ia64	DSA-1296-1 php4	2007-5-21
    php4-mhash	4.3.10-21	ia64	DSA-1296-1 php4	2007-5-21
    php4-mysql	4.3.10-21	ia64	DSA-1296-1 php4	2007-5-21
    php4-odbc	4.3.10-21	ia64	DSA-1296-1 php4	2007-5-21
    php4-recode	4.3.10-21	ia64	DSA-1296-1 php4	2007-5-21
    php4-snmp	4.3.10-21	ia64	DSA-1296-1 php4	2007-5-21
    php4-sybase	4.3.10-21	ia64	DSA-1296-1 php4	2007-5-21
    php4-xslt	4.3.10-21	ia64	DSA-1296-1 php4	2007-5-21
    libapache-mod-php4	4.3.10-21	m68k	DSA-1296-1 php4	2007-5-21
    libapache2-mod-php4	4.3.10-21	m68k	DSA-1296-1 php4	2007-5-21
    php4-cgi	4.3.10-21	m68k	DSA-1296-1 php4	2007-5-21
    php4-cli	4.3.10-21	m68k	DSA-1296-1 php4	2007-5-21
    php4-common	4.3.10-21	m68k	DSA-1296-1 php4	2007-5-21
    php4-curl	4.3.10-21	m68k	DSA-1296-1 php4	2007-5-21
    php4-dev	4.3.10-21	m68k	DSA-1296-1 php4	2007-5-21
    php4-domxml	4.3.10-21	m68k	DSA-1296-1 php4	2007-5-21
    php4-gd	4.3.10-21	m68k	DSA-1296-1 php4	2007-5-21
    php4-imap	4.3.10-21	m68k	DSA-1296-1 php4	2007-5-21
    php4-ldap	4.3.10-21	m68k	DSA-1296-1 php4	2007-5-21
    php4-mcal	4.3.10-21	m68k	DSA-1296-1 php4	2007-5-21
    php4-mhash	4.3.10-21	m68k	DSA-1296-1 php4	2007-5-21
    php4-mysql	4.3.10-21	m68k	DSA-1296-1 php4	2007-5-21
    php4-odbc	4.3.10-21	m68k	DSA-1296-1 php4	2007-5-21
    php4-recode	4.3.10-21	m68k	DSA-1296-1 php4	2007-5-21
    php4-snmp	4.3.10-21	m68k	DSA-1296-1 php4	2007-5-21
    php4-sybase	4.3.10-21	m68k	DSA-1296-1 php4	2007-5-21
    php4-xslt	4.3.10-21	m68k	DSA-1296-1 php4	2007-5-21
    libapache-mod-php4	4.3.10-21	mips	DSA-1296-1 php4	2007-5-21
    libapache2-mod-php4	4.3.10-21	mips	DSA-1296-1 php4	2007-5-21
    php4-cgi	4.3.10-21	mips	DSA-1296-1 php4	2007-5-21
    php4-cli	4.3.10-21	mips	DSA-1296-1 php4	2007-5-21
    php4-common	4.3.10-21	mips	DSA-1296-1 php4	2007-5-21
    php4-curl	4.3.10-21	mips	DSA-1296-1 php4	2007-5-21
    php4-dev	4.3.10-21	mips	DSA-1296-1 php4	2007-5-21
    php4-domxml	4.3.10-21	mips	DSA-1296-1 php4	2007-5-21
    php4-gd	4.3.10-21	mips	DSA-1296-1 php4	2007-5-21
    php4-imap	4.3.10-21	mips	DSA-1296-1 php4	2007-5-21
    php4-ldap	4.3.10-21	mips	DSA-1296-1 php4	2007-5-21
    php4-mcal	4.3.10-21	mips	DSA-1296-1 php4	2007-5-21
    php4-mhash	4.3.10-21	mips	DSA-1296-1 php4	2007-5-21
    php4-mysql	4.3.10-21	mips	DSA-1296-1 php4	2007-5-21
    php4-odbc	4.3.10-21	mips	DSA-1296-1 php4	2007-5-21
    php4-recode	4.3.10-21	mips	DSA-1296-1 php4	2007-5-21
    php4-snmp	4.3.10-21	mips	DSA-1296-1 php4	2007-5-21
    php4-sybase	4.3.10-21	mips	DSA-1296-1 php4	2007-5-21
    php4-xslt	4.3.10-21	mips	DSA-1296-1 php4	2007-5-21
    libapache-mod-php4	4.3.10-21	mipsel	DSA-1296-1 php4	2007-5-21
    libapache2-mod-php4	4.3.10-21	mipsel	DSA-1296-1 php4	2007-5-21
    php4-cgi	4.3.10-21	mipsel	DSA-1296-1 php4	2007-5-21
    php4-cli	4.3.10-21	mipsel	DSA-1296-1 php4	2007-5-21
    php4-common	4.3.10-21	mipsel	DSA-1296-1 php4	2007-5-21
    php4-curl	4.3.10-21	mipsel	DSA-1296-1 php4	2007-5-21
    php4-dev	4.3.10-21	mipsel	DSA-1296-1 php4	2007-5-21
    php4-domxml	4.3.10-21	mipsel	DSA-1296-1 php4	2007-5-21
    php4-gd	4.3.10-21	mipsel	DSA-1296-1 php4	2007-5-21
    php4-imap	4.3.10-21	mipsel	DSA-1296-1 php4	2007-5-21
    php4-ldap	4.3.10-21	mipsel	DSA-1296-1 php4	2007-5-21
    php4-mcal	4.3.10-21	mipsel	DSA-1296-1 php4	2007-5-21
    php4-mhash	4.3.10-21	mipsel	DSA-1296-1 php4	2007-5-21
    php4-mysql	4.3.10-21	mipsel	DSA-1296-1 php4	2007-5-21
    php4-odbc	4.3.10-21	mipsel	DSA-1296-1 php4	2007-5-21
    php4-recode	4.3.10-21	mipsel	DSA-1296-1 php4	2007-5-21
    php4-snmp	4.3.10-21	mipsel	DSA-1296-1 php4	2007-5-21
    php4-sybase	4.3.10-21	mipsel	DSA-1296-1 php4	2007-5-21
    php4-xslt	4.3.10-21	mipsel	DSA-1296-1 php4	2007-5-21
    libapache-mod-php4	4.3.10-21	powerpc	DSA-1296-1 php4	2007-5-21
    libapache2-mod-php4	4.3.10-21	powerpc	DSA-1296-1 php4	2007-5-21
    php4-cgi	4.3.10-21	powerpc	DSA-1296-1 php4	2007-5-21
    php4-cli	4.3.10-21	powerpc	DSA-1296-1 php4	2007-5-21
    php4-common	4.3.10-21	powerpc	DSA-1296-1 php4	2007-5-21
    php4-curl	4.3.10-21	powerpc	DSA-1296-1 php4	2007-5-21
    php4-dev	4.3.10-21	powerpc	DSA-1296-1 php4	2007-5-21
    php4-domxml	4.3.10-21	powerpc	DSA-1296-1 php4	2007-5-21
    php4-gd	4.3.10-21	powerpc	DSA-1296-1 php4	2007-5-21
    php4-imap	4.3.10-21	powerpc	DSA-1296-1 php4	2007-5-21
    php4-ldap	4.3.10-21	powerpc	DSA-1296-1 php4	2007-5-21
    php4-mcal	4.3.10-21	powerpc	DSA-1296-1 php4	2007-5-21
    php4-mhash	4.3.10-21	powerpc	DSA-1296-1 php4	2007-5-21
    php4-mysql	4.3.10-21	powerpc	DSA-1296-1 php4	2007-5-21
    php4-odbc	4.3.10-21	powerpc	DSA-1296-1 php4	2007-5-21
    php4-recode	4.3.10-21	powerpc	DSA-1296-1 php4	2007-5-21
    php4-snmp	4.3.10-21	powerpc	DSA-1296-1 php4	2007-5-21
    php4-sybase	4.3.10-21	powerpc	DSA-1296-1 php4	2007-5-21
    php4-xslt	4.3.10-21	powerpc	DSA-1296-1 php4	2007-5-21
    libapache-mod-php4	4.3.10-21	s390	DSA-1296-1 php4	2007-5-21
    libapache2-mod-php4	4.3.10-21	s390	DSA-1296-1 php4	2007-5-21
    php4-cgi	4.3.10-21	s390	DSA-1296-1 php4	2007-5-21
    php4-cli	4.3.10-21	s390	DSA-1296-1 php4	2007-5-21
    php4-common	4.3.10-21	s390	DSA-1296-1 php4	2007-5-21
    php4-curl	4.3.10-21	s390	DSA-1296-1 php4	2007-5-21
    php4-dev	4.3.10-21	s390	DSA-1296-1 php4	2007-5-21
    php4-domxml	4.3.10-21	s390	DSA-1296-1 php4	2007-5-21
    php4-gd	4.3.10-21	s390	DSA-1296-1 php4	2007-5-21
    php4-imap	4.3.10-21	s390	DSA-1296-1 php4	2007-5-21
    php4-ldap	4.3.10-21	s390	DSA-1296-1 php4	2007-5-21
    php4-mcal	4.3.10-21	s390	DSA-1296-1 php4	2007-5-21
    php4-mhash	4.3.10-21	s390	DSA-1296-1 php4	2007-5-21
    php4-mysql	4.3.10-21	s390	DSA-1296-1 php4	2007-5-21
    php4-odbc	4.3.10-21	s390	DSA-1296-1 php4	2007-5-21
    php4-recode	4.3.10-21	s390	DSA-1296-1 php4	2007-5-21
    php4-snmp	4.3.10-21	s390	DSA-1296-1 php4	2007-5-21
    php4-sybase	4.3.10-21	s390	DSA-1296-1 php4	2007-5-21
    php4-xslt	4.3.10-21	s390	DSA-1296-1 php4	2007-5-21
    php4-pear	4.3.10-20	all	DSA-1282-1 php4	2007-4-26
    php4	4.3.10-20	all	DSA-1282-1 php4	2007-4-26
    libapache-mod-php4	4.3.10-20	alpha	DSA-1282-1 php4	2007-4-26
    libapache2-mod-php4	4.3.10-20	alpha	DSA-1282-1 php4	2007-4-26
    php4-cgi	4.3.10-20	alpha	DSA-1282-1 php4	2007-4-26
    php4-cli	4.3.10-20	alpha	DSA-1282-1 php4	2007-4-26
    php4-common	4.3.10-20	alpha	DSA-1282-1 php4	2007-4-26
    php4-curl	4.3.10-20	alpha	DSA-1282-1 php4	2007-4-26
    php4-dev	4.3.10-20	alpha	DSA-1282-1 php4	2007-4-26
    php4-domxml	4.3.10-20	alpha	DSA-1282-1 php4	2007-4-26
    php4-gd	4.3.10-20	alpha	DSA-1282-1 php4	2007-4-26
    php4-imap	4.3.10-20	alpha	DSA-1282-1 php4	2007-4-26
    php4-ldap	4.3.10-20	alpha	DSA-1282-1 php4	2007-4-26
    php4-mcal	4.3.10-20	alpha	DSA-1282-1 php4	2007-4-26
    php4-mhash	4.3.10-20	alpha	DSA-1282-1 php4	2007-4-26
    php4-mysql	4.3.10-20	alpha	DSA-1282-1 php4	2007-4-26
    php4-odbc	4.3.10-20	alpha	DSA-1282-1 php4	2007-4-26
    php4-recode	4.3.10-20	alpha	DSA-1282-1 php4	2007-4-26
    php4-snmp	4.3.10-20	alpha	DSA-1282-1 php4	2007-4-26
    php4-sybase	4.3.10-20	alpha	DSA-1282-1 php4	2007-4-26
    php4-xslt	4.3.10-20	alpha	DSA-1282-1 php4	2007-4-26
    libapache-mod-php4	4.3.10-20	amd64	DSA-1282-1 php4	2007-4-26
    libapache2-mod-php4	4.3.10-20	amd64	DSA-1282-1 php4	2007-4-26
    php4-cgi	4.3.10-20	amd64	DSA-1282-1 php4	2007-4-26
    php4-cli	4.3.10-20	amd64	DSA-1282-1 php4	2007-4-26
    php4-common	4.3.10-20	amd64	DSA-1282-1 php4	2007-4-26
    php4-curl	4.3.10-20	amd64	DSA-1282-1 php4	2007-4-26
    php4-dev	4.3.10-20	amd64	DSA-1282-1 php4	2007-4-26
    php4-domxml	4.3.10-20	amd64	DSA-1282-1 php4	2007-4-26
    php4-gd	4.3.10-20	amd64	DSA-1282-1 php4	2007-4-26
    php4-imap	4.3.10-20	amd64	DSA-1282-1 php4	2007-4-26
    php4-ldap	4.3.10-20	amd64	DSA-1282-1 php4	2007-4-26
    php4-mcal	4.3.10-20	amd64	DSA-1282-1 php4	2007-4-26
    php4-mhash	4.3.10-20	amd64	DSA-1282-1 php4	2007-4-26
    php4-mysql	4.3.10-20	amd64	DSA-1282-1 php4	2007-4-26
    php4-odbc	4.3.10-20	amd64	DSA-1282-1 php4	2007-4-26
    php4-recode	4.3.10-20	amd64	DSA-1282-1 php4	2007-4-26
    php4-snmp	4.3.10-20	amd64	DSA-1282-1 php4	2007-4-26
    php4-sybase	4.3.10-20	amd64	DSA-1282-1 php4	2007-4-26
    php4-xslt	4.3.10-20	amd64	DSA-1282-1 php4	2007-4-26
    libapache-mod-php4	4.3.10-20	hppa	DSA-1282-1 php4	2007-4-26
    libapache2-mod-php4	4.3.10-20	hppa	DSA-1282-1 php4	2007-4-26
    php4-cgi	4.3.10-20	hppa	DSA-1282-1 php4	2007-4-26
    php4-cli	4.3.10-20	hppa	DSA-1282-1 php4	2007-4-26
    php4-common	4.3.10-20	hppa	DSA-1282-1 php4	2007-4-26
    php4-curl	4.3.10-20	hppa	DSA-1282-1 php4	2007-4-26
    php4-dev	4.3.10-20	hppa	DSA-1282-1 php4	2007-4-26
    php4-domxml	4.3.10-20	hppa	DSA-1282-1 php4	2007-4-26
    php4-gd	4.3.10-20	hppa	DSA-1282-1 php4	2007-4-26
    php4-imap	4.3.10-20	hppa	DSA-1282-1 php4	2007-4-26
    php4-ldap	4.3.10-20	hppa	DSA-1282-1 php4	2007-4-26
    php4-mcal	4.3.10-20	hppa	DSA-1282-1 php4	2007-4-26
    php4-mhash	4.3.10-20	hppa	DSA-1282-1 php4	2007-4-26
    php4-mysql	4.3.10-20	hppa	DSA-1282-1 php4	2007-4-26
    php4-odbc	4.3.10-20	hppa	DSA-1282-1 php4	2007-4-26
    php4-recode	4.3.10-20	hppa	DSA-1282-1 php4	2007-4-26
    php4-snmp	4.3.10-20	hppa	DSA-1282-1 php4	2007-4-26
    php4-sybase	4.3.10-20	hppa	DSA-1282-1 php4	2007-4-26
    php4-xslt	4.3.10-20	hppa	DSA-1282-1 php4	2007-4-26
    libapache-mod-php4	4.3.10-20	i386	DSA-1282-1 php4	2007-4-26
    libapache2-mod-php4	4.3.10-20	i386	DSA-1282-1 php4	2007-4-26
    php4-cgi	4.3.10-20	i386	DSA-1282-1 php4	2007-4-26
    php4-cli	4.3.10-20	i386	DSA-1282-1 php4	2007-4-26
    php4-common	4.3.10-20	i386	DSA-1282-1 php4	2007-4-26
    php4-curl	4.3.10-20	i386	DSA-1282-1 php4	2007-4-26
    php4-dev	4.3.10-20	i386	DSA-1282-1 php4	2007-4-26
    php4-domxml	4.3.10-20	i386	DSA-1282-1 php4	2007-4-26
    php4-gd	4.3.10-20	i386	DSA-1282-1 php4	2007-4-26
    php4-imap	4.3.10-20	i386	DSA-1282-1 php4	2007-4-26
    php4-ldap	4.3.10-20	i386	DSA-1282-1 php4	2007-4-26
    php4-mcal	4.3.10-20	i386	DSA-1282-1 php4	2007-4-26
    php4-mhash	4.3.10-20	i386	DSA-1282-1 php4	2007-4-26
    php4-mysql	4.3.10-20	i386	DSA-1282-1 php4	2007-4-26
    php4-odbc	4.3.10-20	i386	DSA-1282-1 php4	2007-4-26
    php4-recode	4.3.10-20	i386	DSA-1282-1 php4	2007-4-26
    php4-snmp	4.3.10-20	i386	DSA-1282-1 php4	2007-4-26
    php4-sybase	4.3.10-20	i386	DSA-1282-1 php4	2007-4-26
    php4-xslt	4.3.10-20	i386	DSA-1282-1 php4	2007-4-26
    libapache-mod-php4	4.3.10-20	ia64	DSA-1282-1 php4	2007-4-26
    libapache2-mod-php4	4.3.10-20	ia64	DSA-1282-1 php4	2007-4-26
    php4-cgi	4.3.10-20	ia64	DSA-1282-1 php4	2007-4-26
    php4-cli	4.3.10-20	ia64	DSA-1282-1 php4	2007-4-26
    php4-common	4.3.10-20	ia64	DSA-1282-1 php4	2007-4-26
    php4-curl	4.3.10-20	ia64	DSA-1282-1 php4	2007-4-26
    php4-dev	4.3.10-20	ia64	DSA-1282-1 php4	2007-4-26
    php4-domxml	4.3.10-20	ia64	DSA-1282-1 php4	2007-4-26
    php4-gd	4.3.10-20	ia64	DSA-1282-1 php4	2007-4-26
    php4-imap	4.3.10-20	ia64	DSA-1282-1 php4	2007-4-26
    php4-ldap	4.3.10-20	ia64	DSA-1282-1 php4	2007-4-26
    php4-mcal	4.3.10-20	ia64	DSA-1282-1 php4	2007-4-26
    php4-mhash	4.3.10-20	ia64	DSA-1282-1 php4	2007-4-26
    php4-mysql	4.3.10-20	ia64	DSA-1282-1 php4	2007-4-26
    php4-odbc	4.3.10-20	ia64	DSA-1282-1 php4	2007-4-26
    php4-recode	4.3.10-20	ia64	DSA-1282-1 php4	2007-4-26
    php4-snmp	4.3.10-20	ia64	DSA-1282-1 php4	2007-4-26
    php4-sybase	4.3.10-20	ia64	DSA-1282-1 php4	2007-4-26
    php4-xslt	4.3.10-20	ia64	DSA-1282-1 php4	2007-4-26
    libapache-mod-php4	4.3.10-20	powerpc	DSA-1282-1 php4	2007-4-26
    libapache2-mod-php4	4.3.10-20	powerpc	DSA-1282-1 php4	2007-4-26
    php4-cgi	4.3.10-20	powerpc	DSA-1282-1 php4	2007-4-26
    php4-cli	4.3.10-20	powerpc	DSA-1282-1 php4	2007-4-26
    php4-common	4.3.10-20	powerpc	DSA-1282-1 php4	2007-4-26
    php4-curl	4.3.10-20	powerpc	DSA-1282-1 php4	2007-4-26
    php4-dev	4.3.10-20	powerpc	DSA-1282-1 php4	2007-4-26
    php4-domxml	4.3.10-20	powerpc	DSA-1282-1 php4	2007-4-26
    php4-gd	4.3.10-20	powerpc	DSA-1282-1 php4	2007-4-26
    php4-imap	4.3.10-20	powerpc	DSA-1282-1 php4	2007-4-26
    php4-ldap	4.3.10-20	powerpc	DSA-1282-1 php4	2007-4-26
    php4-mcal	4.3.10-20	powerpc	DSA-1282-1 php4	2007-4-26
    php4-mhash	4.3.10-20	powerpc	DSA-1282-1 php4	2007-4-26
    php4-mysql	4.3.10-20	powerpc	DSA-1282-1 php4	2007-4-26
    php4-odbc	4.3.10-20	powerpc	DSA-1282-1 php4	2007-4-26
    php4-recode	4.3.10-20	powerpc	DSA-1282-1 php4	2007-4-26
    php4-snmp	4.3.10-20	powerpc	DSA-1282-1 php4	2007-4-26
    php4-sybase	4.3.10-20	powerpc	DSA-1282-1 php4	2007-4-26
    php4-xslt	4.3.10-20	powerpc	DSA-1282-1 php4	2007-4-26
    libapache-mod-php4	4.3.10-20	s390	DSA-1282-1 php4	2007-4-26
    libapache2-mod-php4	4.3.10-20	s390	DSA-1282-1 php4	2007-4-26
    php4-cgi	4.3.10-20	s390	DSA-1282-1 php4	2007-4-26
    php4-cli	4.3.10-20	s390	DSA-1282-1 php4	2007-4-26
    php4-common	4.3.10-20	s390	DSA-1282-1 php4	2007-4-26
    php4-curl	4.3.10-20	s390	DSA-1282-1 php4	2007-4-26
    php4-dev	4.3.10-20	s390	DSA-1282-1 php4	2007-4-26
    php4-domxml	4.3.10-20	s390	DSA-1282-1 php4	2007-4-26
    php4-gd	4.3.10-20	s390	DSA-1282-1 php4	2007-4-26
    php4-imap	4.3.10-20	s390	DSA-1282-1 php4	2007-4-26
    php4-ldap	4.3.10-20	s390	DSA-1282-1 php4	2007-4-26
    php4-mcal	4.3.10-20	s390	DSA-1282-1 php4	2007-4-26
    php4-mhash	4.3.10-20	s390	DSA-1282-1 php4	2007-4-26
    php4-mysql	4.3.10-20	s390	DSA-1282-1 php4	2007-4-26
    php4-odbc	4.3.10-20	s390	DSA-1282-1 php4	2007-4-26
    php4-recode	4.3.10-20	s390	DSA-1282-1 php4	2007-4-26
    php4-snmp	4.3.10-20	s390	DSA-1282-1 php4	2007-4-26
    php4-sybase	4.3.10-20	s390	DSA-1282-1 php4	2007-4-26
    php4-xslt	4.3.10-20	s390	DSA-1282-1 php4	2007-4-26
    libapache-mod-php4	4.3.10-20	sparc	DSA-1282-1 php4	2007-4-26
    libapache2-mod-php4	4.3.10-20	sparc	DSA-1282-1 php4	2007-4-26
    php4-cgi	4.3.10-20	sparc	DSA-1282-1 php4	2007-4-26
    php4-cli	4.3.10-20	sparc	DSA-1282-1 php4	2007-4-26
    php4-common	4.3.10-20	sparc	DSA-1282-1 php4	2007-4-26
    php4-curl	4.3.10-20	sparc	DSA-1282-1 php4	2007-4-26
    php4-dev	4.3.10-20	sparc	DSA-1282-1 php4	2007-4-26
    php4-domxml	4.3.10-20	sparc	DSA-1282-1 php4	2007-4-26
    php4-gd	4.3.10-20	sparc	DSA-1282-1 php4	2007-4-26
    php4-imap	4.3.10-20	sparc	DSA-1282-1 php4	2007-4-26
    php4-ldap	4.3.10-20	sparc	DSA-1282-1 php4	2007-4-26
    php4-mcal	4.3.10-20	sparc	DSA-1282-1 php4	2007-4-26
    php4-mhash	4.3.10-20	sparc	DSA-1282-1 php4	2007-4-26
    php4-mysql	4.3.10-20	sparc	DSA-1282-1 php4	2007-4-26
    php4-odbc	4.3.10-20	sparc	DSA-1282-1 php4	2007-4-26
    php4-recode	4.3.10-20	sparc	DSA-1282-1 php4	2007-4-26
    php4-snmp	4.3.10-20	sparc	DSA-1282-1 php4	2007-4-26
    php4-sybase	4.3.10-20	sparc	DSA-1282-1 php4	2007-4-26
    php4-xslt	4.3.10-20	sparc	DSA-1282-1 php4	2007-4-26
    libwpd8-doc	0.8.7-6	all	DSA-1268-1 libwpd	2007-3-17
    libwpd-stream8c2a	0.8.7-6	alpha	DSA-1268-1 libwpd	2007-3-17
    libwpd-tools	0.8.7-6	alpha	DSA-1268-1 libwpd	2007-3-17
    libwpd8-dev	0.8.7-6	alpha	DSA-1268-1 libwpd	2007-3-17
    libwpd8c2a	0.8.7-6	alpha	DSA-1268-1 libwpd	2007-3-17
    libwpd-stream8c2a	0.8.7-6	amd64	DSA-1268-1 libwpd	2007-3-17
    libwpd-tools	0.8.7-6	amd64	DSA-1268-1 libwpd	2007-3-17
    libwpd8-dev	0.8.7-6	amd64	DSA-1268-1 libwpd	2007-3-17
    libwpd8c2a	0.8.7-6	amd64	DSA-1268-1 libwpd	2007-3-17
    libwpd-stream8c2a	0.8.7-6	arm	DSA-1268-1 libwpd	2007-3-17
    libwpd-tools	0.8.7-6	arm	DSA-1268-1 libwpd	2007-3-17
    libwpd8-dev	0.8.7-6	arm	DSA-1268-1 libwpd	2007-3-17
    libwpd8c2a	0.8.7-6	arm	DSA-1268-1 libwpd	2007-3-17
    libwpd-stream8c2a	0.8.7-6	hppa	DSA-1268-1 libwpd	2007-3-17
    libwpd-tools	0.8.7-6	hppa	DSA-1268-1 libwpd	2007-3-17
    libwpd8-dev	0.8.7-6	hppa	DSA-1268-1 libwpd	2007-3-17
    libwpd8c2a	0.8.7-6	hppa	DSA-1268-1 libwpd	2007-3-17
    libwpd-stream8c2a	0.8.7-6	i386	DSA-1268-1 libwpd	2007-3-17
    libwpd-tools	0.8.7-6	i386	DSA-1268-1 libwpd	2007-3-17
    libwpd8-dev	0.8.7-6	i386	DSA-1268-1 libwpd	2007-3-17
    libwpd8c2a	0.8.7-6	i386	DSA-1268-1 libwpd	2007-3-17
    libwpd-stream8c2a	0.8.7-6	ia64	DSA-1268-1 libwpd	2007-3-17
    libwpd-tools	0.8.7-6	ia64	DSA-1268-1 libwpd	2007-3-17
    libwpd8-dev	0.8.7-6	ia64	DSA-1268-1 libwpd	2007-3-17
    libwpd8c2a	0.8.7-6	ia64	DSA-1268-1 libwpd	2007-3-17
    libwpd-stream8c2a	0.8.7-6	m68k	DSA-1268-1 libwpd	2007-3-17
    libwpd-tools	0.8.7-6	m68k	DSA-1268-1 libwpd	2007-3-17
    libwpd8-dev	0.8.7-6	m68k	DSA-1268-1 libwpd	2007-3-17
    libwpd8c2a	0.8.7-6	m68k	DSA-1268-1 libwpd	2007-3-17
    libwpd-stream8c2a	0.8.7-6	mips	DSA-1268-1 libwpd	2007-3-17
    libwpd-tools	0.8.7-6	mips	DSA-1268-1 libwpd	2007-3-17
    libwpd8-dev	0.8.7-6	mips	DSA-1268-1 libwpd	2007-3-17
    libwpd8c2a	0.8.7-6	mips	DSA-1268-1 libwpd	2007-3-17
    libwpd-stream8c2a	0.8.7-6	mipsel	DSA-1268-1 libwpd	2007-3-17
    libwpd-tools	0.8.7-6	mipsel	DSA-1268-1 libwpd	2007-3-17
    libwpd8-dev	0.8.7-6	mipsel	DSA-1268-1 libwpd	2007-3-17
    libwpd8c2a	0.8.7-6	mipsel	DSA-1268-1 libwpd	2007-3-17
    libwpd-stream8c2a	0.8.7-6	powerpc	DSA-1268-1 libwpd	2007-3-17
    libwpd-tools	0.8.7-6	powerpc	DSA-1268-1 libwpd	2007-3-17
    libwpd8-dev	0.8.7-6	powerpc	DSA-1268-1 libwpd	2007-3-17
    libwpd8c2a	0.8.7-6	powerpc	DSA-1268-1 libwpd	2007-3-17
    libwpd-stream8c2a	0.8.7-6	s390	DSA-1268-1 libwpd	2007-3-17
    libwpd-tools	0.8.7-6	s390	DSA-1268-1 libwpd	2007-3-17
    libwpd8-dev	0.8.7-6	s390	DSA-1268-1 libwpd	2007-3-17
    libwpd8c2a	0.8.7-6	s390	DSA-1268-1 libwpd	2007-3-17
    libwpd-stream8c2a	0.8.7-6	sparc	DSA-1268-1 libwpd	2007-3-17
    libwpd-tools	0.8.7-6	sparc	DSA-1268-1 libwpd	2007-3-17
    libwpd8-dev	0.8.7-6	sparc	DSA-1268-1 libwpd	2007-3-17
    libwpd8c2a	0.8.7-6	sparc	DSA-1268-1 libwpd	2007-3-17
    tar	1.14-2.4	alpha	DSA-1438-1 tar	2007-12-28
    tar	1.14-2.4	amd64	DSA-1438-1 tar	2007-12-28
    tar	1.14-2.4	arm	DSA-1438-1 tar	2007-12-28
    tar	1.14-2.4	hppa	DSA-1438-1 tar	2007-12-28
    tar	1.14-2.4	i386	DSA-1438-1 tar	2007-12-28
    tar	1.14-2.4	ia64	DSA-1438-1 tar	2007-12-28
    tar	1.14-2.4	m68k	DSA-1438-1 tar	2007-12-28
    tar	1.14-2.4	mips	DSA-1438-1 tar	2007-12-28
    tar	1.14-2.4	mipsel	DSA-1438-1 tar	2007-12-28
    tar	1.14-2.4	powerpc	DSA-1438-1 tar	2007-12-28
    tar	1.14-2.4	s390	DSA-1438-1 tar	2007-12-28
    tar	1.14-2.4	sparc	DSA-1438-1 tar	2007-12-28
    imagemagick	6.0.6.2-2.9	alpha	DSA-1260-1 imagemagick	2007-2-14
    libmagick6	6.0.6.2-2.9	alpha	DSA-1260-1 imagemagick	2007-2-14
    libmagick6-dev	6.0.6.2-2.9	alpha	DSA-1260-1 imagemagick	2007-2-14
    perlmagick	6.0.6.2-2.9	alpha	DSA-1260-1 imagemagick	2007-2-14
    imagemagick	6.0.6.2-2.9	amd64	DSA-1260-1 imagemagick	2007-2-14
    libmagick6	6.0.6.2-2.9	amd64	DSA-1260-1 imagemagick	2007-2-14
    libmagick6-dev	6.0.6.2-2.9	amd64	DSA-1260-1 imagemagick	2007-2-14
    perlmagick	6.0.6.2-2.9	amd64	DSA-1260-1 imagemagick	2007-2-14
    imagemagick	6.0.6.2-2.9	arm	DSA-1260-1 imagemagick	2007-2-14
    libmagick6	6.0.6.2-2.9	arm	DSA-1260-1 imagemagick	2007-2-14
    libmagick6-dev	6.0.6.2-2.9	arm	DSA-1260-1 imagemagick	2007-2-14
    perlmagick	6.0.6.2-2.9	arm	DSA-1260-1 imagemagick	2007-2-14
    imagemagick	6.0.6.2-2.9	hppa	DSA-1260-1 imagemagick	2007-2-14
    libmagick6	6.0.6.2-2.9	hppa	DSA-1260-1 imagemagick	2007-2-14
    libmagick6-dev	6.0.6.2-2.9	hppa	DSA-1260-1 imagemagick	2007-2-14
    perlmagick	6.0.6.2-2.9	hppa	DSA-1260-1 imagemagick	2007-2-14
    imagemagick	6.0.6.2-2.9	i386	DSA-1260-1 imagemagick	2007-2-14
    libmagick6	6.0.6.2-2.9	i386	DSA-1260-1 imagemagick	2007-2-14
    libmagick6-dev	6.0.6.2-2.9	i386	DSA-1260-1 imagemagick	2007-2-14
    perlmagick	6.0.6.2-2.9	i386	DSA-1260-1 imagemagick	2007-2-14
    imagemagick	6.0.6.2-2.9	ia64	DSA-1260-1 imagemagick	2007-2-14
    libmagick6	6.0.6.2-2.9	ia64	DSA-1260-1 imagemagick	2007-2-14
    libmagick6-dev	6.0.6.2-2.9	ia64	DSA-1260-1 imagemagick	2007-2-14
    perlmagick	6.0.6.2-2.9	ia64	DSA-1260-1 imagemagick	2007-2-14
    imagemagick	6.0.6.2-2.9	m68k	DSA-1260-1 imagemagick	2007-2-14
    libmagick6	6.0.6.2-2.9	m68k	DSA-1260-1 imagemagick	2007-2-14
    libmagick6-dev	6.0.6.2-2.9	m68k	DSA-1260-1 imagemagick	2007-2-14
    perlmagick	6.0.6.2-2.9	m68k	DSA-1260-1 imagemagick	2007-2-14
    imagemagick	6.0.6.2-2.9	mips	DSA-1260-1 imagemagick	2007-2-14
    libmagick6	6.0.6.2-2.9	mips	DSA-1260-1 imagemagick	2007-2-14
    libmagick6-dev	6.0.6.2-2.9	mips	DSA-1260-1 imagemagick	2007-2-14
    perlmagick	6.0.6.2-2.9	mips	DSA-1260-1 imagemagick	2007-2-14
    imagemagick	6.0.6.2-2.9	mipsel	DSA-1260-1 imagemagick	2007-2-14
    libmagick6	6.0.6.2-2.9	mipsel	DSA-1260-1 imagemagick	2007-2-14
    libmagick6-dev	6.0.6.2-2.9	mipsel	DSA-1260-1 imagemagick	2007-2-14
    perlmagick	6.0.6.2-2.9	mipsel	DSA-1260-1 imagemagick	2007-2-14
    imagemagick	6.0.6.2-2.9	powerpc	DSA-1260-1 imagemagick	2007-2-14
    libmagick6	6.0.6.2-2.9	powerpc	DSA-1260-1 imagemagick	2007-2-14
    libmagick6-dev	6.0.6.2-2.9	powerpc	DSA-1260-1 imagemagick	2007-2-14
    perlmagick	6.0.6.2-2.9	powerpc	DSA-1260-1 imagemagick	2007-2-14
    imagemagick	6.0.6.2-2.9	s390	DSA-1260-1 imagemagick	2007-2-14
    libmagick6	6.0.6.2-2.9	s390	DSA-1260-1 imagemagick	2007-2-14
    libmagick6-dev	6.0.6.2-2.9	s390	DSA-1260-1 imagemagick	2007-2-14
    perlmagick	6.0.6.2-2.9	s390	DSA-1260-1 imagemagick	2007-2-14
    imagemagick	6.0.6.2-2.9	sparc	DSA-1260-1 imagemagick	2007-2-14
    libmagick6	6.0.6.2-2.9	sparc	DSA-1260-1 imagemagick	2007-2-14
    libmagick6-dev	6.0.6.2-2.9	sparc	DSA-1260-1 imagemagick	2007-2-14
    perlmagick	6.0.6.2-2.9	sparc	DSA-1260-1 imagemagick	2007-2-14
    phpmyadmin	2.9.1.1-4	all	DSA-1370-1 phpmyadmin	2007-9-9
    freetype2-demos	2.1.7-8	amd64	DSA-1334-1 freetype	2007-7-18
    libfreetype6	2.1.7-8	amd64	DSA-1334-1 freetype	2007-7-18
    libfreetype6-dev	2.1.7-8	amd64	DSA-1334-1 freetype	2007-7-18
    libfreetype6-dev	2.1.7-8	arm	DSA-1334-1 freetype	2007-7-18
    libfreetype6	2.1.7-8	arm	DSA-1334-1 freetype	2007-7-18
    freetype2-demos	2.1.7-8	arm	DSA-1334-1 freetype	2007-7-18
    freetype2-demos	2.1.7-8	hppa	DSA-1334-1 freetype	2007-7-18
    libfreetype6-dev	2.1.7-8	hppa	DSA-1334-1 freetype	2007-7-18
    libfreetype6	2.1.7-8	hppa	DSA-1334-1 freetype	2007-7-18
    libfreetype6-dev	2.1.7-8	i386	DSA-1334-1 freetype	2007-7-18
    libfreetype6	2.1.7-8	i386	DSA-1334-1 freetype	2007-7-18
    freetype2-demos	2.1.7-8	i386	DSA-1334-1 freetype	2007-7-18
    libfreetype6	2.1.7-8	ia64	DSA-1334-1 freetype	2007-7-18
    libfreetype6-dev	2.1.7-8	ia64	DSA-1334-1 freetype	2007-7-18
    freetype2-demos	2.1.7-8	ia64	DSA-1334-1 freetype	2007-7-18
    libfreetype6	2.1.7-8	m68k	DSA-1334-1 freetype	2007-7-18
    freetype2-demos	2.1.7-8	m68k	DSA-1334-1 freetype	2007-7-18
    libfreetype6-dev	2.1.7-8	m68k	DSA-1334-1 freetype	2007-7-18
    libfreetype6-dev	2.1.7-8	mipsel	DSA-1334-1 freetype	2007-7-18
    libfreetype6	2.1.7-8	mipsel	DSA-1334-1 freetype	2007-7-18
    freetype2-demos	2.1.7-8	mipsel	DSA-1334-1 freetype	2007-7-18
    freetype2-demos	2.1.7-8	powerpc	DSA-1334-1 freetype	2007-7-18
    libfreetype6	2.1.7-8	powerpc	DSA-1334-1 freetype	2007-7-18
    libfreetype6-dev	2.1.7-8	powerpc	DSA-1334-1 freetype	2007-7-18
    libfreetype6-dev	2.1.7-8	s390	DSA-1334-1 freetype	2007-7-18
    libfreetype6	2.1.7-8	s390	DSA-1334-1 freetype	2007-7-18
    freetype2-demos	2.1.7-8	s390	DSA-1334-1 freetype	2007-7-18
    libfreetype6-dev	2.1.7-8	sparc	DSA-1334-1 freetype	2007-7-18
    freetype2-demos	2.1.7-8	sparc	DSA-1334-1 freetype	2007-7-18
    libfreetype6	2.1.7-8	sparc	DSA-1334-1 freetype	2007-7-18
    wesnoth-data	0.9.0-7	all	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-ei	0.9.0-7	all	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-httt	0.9.0-7	all	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-music	0.9.0-7	all	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-sotbe	0.9.0-7	all	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-tdh	0.9.0-7	all	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-trow	0.9.0-7	all	DSA-1421-1 wesnoth	2007-12-6
    wesnoth	0.9.0-7	alpha	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-editor	0.9.0-7	alpha	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-server	0.9.0-7	alpha	DSA-1421-1 wesnoth	2007-12-6
    wesnoth	0.9.0-7	amd64	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-editor	0.9.0-7	amd64	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-server	0.9.0-7	amd64	DSA-1421-1 wesnoth	2007-12-6
    wesnoth	0.9.0-7	arm	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-editor	0.9.0-7	arm	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-server	0.9.0-7	arm	DSA-1421-1 wesnoth	2007-12-6
    wesnoth	0.9.0-7	hppa	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-editor	0.9.0-7	hppa	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-server	0.9.0-7	hppa	DSA-1421-1 wesnoth	2007-12-6
    wesnoth	0.9.0-7	i386	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-editor	0.9.0-7	i386	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-server	0.9.0-7	i386	DSA-1421-1 wesnoth	2007-12-6
    wesnoth	0.9.0-7	ia64	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-editor	0.9.0-7	ia64	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-server	0.9.0-7	ia64	DSA-1421-1 wesnoth	2007-12-6
    wesnoth	0.9.0-7	m68k	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-editor	0.9.0-7	m68k	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-server	0.9.0-7	m68k	DSA-1421-1 wesnoth	2007-12-6
    wesnoth	0.9.0-7	mips	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-editor	0.9.0-7	mips	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-server	0.9.0-7	mips	DSA-1421-1 wesnoth	2007-12-6
    wesnoth	0.9.0-7	mipsel	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-editor	0.9.0-7	mipsel	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-server	0.9.0-7	mipsel	DSA-1421-1 wesnoth	2007-12-6
    wesnoth	0.9.0-7	powerpc	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-editor	0.9.0-7	powerpc	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-server	0.9.0-7	powerpc	DSA-1421-1 wesnoth	2007-12-6
    wesnoth	0.9.0-7	s390	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-editor	0.9.0-7	s390	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-server	0.9.0-7	s390	DSA-1421-1 wesnoth	2007-12-6
    wesnoth	0.9.0-7	sparc	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-editor	0.9.0-7	sparc	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-server	0.9.0-7	sparc	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-data	1.2-3	all	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-ei	1.2-3	all	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-httt	1.2-3	all	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-music	1.2-3	all	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-trow	1.2-3	all	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-tsg	1.2-3	all	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-ttb	1.2-3	all	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-utbs	1.2-3	all	DSA-1421-1 wesnoth	2007-12-6
    wesnoth	1.2-3	alpha	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-editor	1.2-3	alpha	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-server	1.2-3	alpha	DSA-1421-1 wesnoth	2007-12-6
    wesnoth	1.2-3	amd64	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-editor	1.2-3	amd64	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-server	1.2-3	amd64	DSA-1421-1 wesnoth	2007-12-6
    wesnoth	1.2-3	arm	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-editor	1.2-3	arm	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-server	1.2-3	arm	DSA-1421-1 wesnoth	2007-12-6
    wesnoth	1.2-3	hppa	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-editor	1.2-3	hppa	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-server	1.2-3	hppa	DSA-1421-1 wesnoth	2007-12-6
    wesnoth	1.2-3	i386	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-editor	1.2-3	i386	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-server	1.2-3	i386	DSA-1421-1 wesnoth	2007-12-6
    wesnoth	1.2-3	ia64	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-editor	1.2-3	ia64	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-server	1.2-3	ia64	DSA-1421-1 wesnoth	2007-12-6
    wesnoth	1.2-3	mips	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-editor	1.2-3	mips	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-server	1.2-3	mips	DSA-1421-1 wesnoth	2007-12-6
    wesnoth	1.2-3	mipsel	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-editor	1.2-3	mipsel	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-server	1.2-3	mipsel	DSA-1421-1 wesnoth	2007-12-6
    wesnoth	1.2-3	powerpc	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-editor	1.2-3	powerpc	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-server	1.2-3	powerpc	DSA-1421-1 wesnoth	2007-12-6
    wesnoth	1.2-3	s390	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-editor	1.2-3	s390	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-server	1.2-3	s390	DSA-1421-1 wesnoth	2007-12-6
    wesnoth	1.2-3	sparc	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-editor	1.2-3	sparc	DSA-1421-1 wesnoth	2007-12-6
    wesnoth-server	1.2-3	sparc	DSA-1421-1 wesnoth	2007-12-6
    php4-pear	4.3.10-19	all	DSA-1264-1 php4	2007-3-7
    php4	4.3.10-19	all	DSA-1264-1 php4	2007-3-7
    libapache-mod-php4	4.3.10-19	alpha	DSA-1264-1 php4	2007-3-7
    libapache2-mod-php4	4.3.10-19	alpha	DSA-1264-1 php4	2007-3-7
    php4-cgi	4.3.10-19	alpha	DSA-1264-1 php4	2007-3-7
    php4-cli	4.3.10-19	alpha	DSA-1264-1 php4	2007-3-7
    php4-common	4.3.10-19	alpha	DSA-1264-1 php4	2007-3-7
    php4-curl	4.3.10-19	alpha	DSA-1264-1 php4	2007-3-7
    php4-dev	4.3.10-19	alpha	DSA-1264-1 php4	2007-3-7
    php4-domxml	4.3.10-19	alpha	DSA-1264-1 php4	2007-3-7
    php4-gd	4.3.10-19	alpha	DSA-1264-1 php4	2007-3-7
    php4-imap	4.3.10-19	alpha	DSA-1264-1 php4	2007-3-7
    php4-ldap	4.3.10-19	alpha	DSA-1264-1 php4	2007-3-7
    php4-mcal	4.3.10-19	alpha	DSA-1264-1 php4	2007-3-7
    php4-mhash	4.3.10-19	alpha	DSA-1264-1 php4	2007-3-7
    php4-mysql	4.3.10-19	alpha	DSA-1264-1 php4	2007-3-7
    php4-odbc	4.3.10-19	alpha	DSA-1264-1 php4	2007-3-7
    php4-recode	4.3.10-19	alpha	DSA-1264-1 php4	2007-3-7
    php4-snmp	4.3.10-19	alpha	DSA-1264-1 php4	2007-3-7
    php4-sybase	4.3.10-19	alpha	DSA-1264-1 php4	2007-3-7
    php4-xslt	4.3.10-19	alpha	DSA-1264-1 php4	2007-3-7
    libapache-mod-php4	4.3.10-19	amd64	DSA-1264-1 php4	2007-3-7
    libapache2-mod-php4	4.3.10-19	amd64	DSA-1264-1 php4	2007-3-7
    php4-cgi	4.3.10-19	amd64	DSA-1264-1 php4	2007-3-7
    php4-cli	4.3.10-19	amd64	DSA-1264-1 php4	2007-3-7
    php4-common	4.3.10-19	amd64	DSA-1264-1 php4	2007-3-7
    php4-curl	4.3.10-19	amd64	DSA-1264-1 php4	2007-3-7
    php4-dev	4.3.10-19	amd64	DSA-1264-1 php4	2007-3-7
    php4-domxml	4.3.10-19	amd64	DSA-1264-1 php4	2007-3-7
    php4-gd	4.3.10-19	amd64	DSA-1264-1 php4	2007-3-7
    php4-imap	4.3.10-19	amd64	DSA-1264-1 php4	2007-3-7
    php4-ldap	4.3.10-19	amd64	DSA-1264-1 php4	2007-3-7
    php4-mcal	4.3.10-19	amd64	DSA-1264-1 php4	2007-3-7
    php4-mhash	4.3.10-19	amd64	DSA-1264-1 php4	2007-3-7
    php4-mysql	4.3.10-19	amd64	DSA-1264-1 php4	2007-3-7
    php4-odbc	4.3.10-19	amd64	DSA-1264-1 php4	2007-3-7
    php4-recode	4.3.10-19	amd64	DSA-1264-1 php4	2007-3-7
    php4-snmp	4.3.10-19	amd64	DSA-1264-1 php4	2007-3-7
    php4-sybase	4.3.10-19	amd64	DSA-1264-1 php4	2007-3-7
    php4-xslt	4.3.10-19	amd64	DSA-1264-1 php4	2007-3-7
    libapache-mod-php4	4.3.10-19	arm	DSA-1264-1 php4	2007-3-7
    libapache2-mod-php4	4.3.10-19	arm	DSA-1264-1 php4	2007-3-7
    php4-cgi	4.3.10-19	arm	DSA-1264-1 php4	2007-3-7
    php4-cli	4.3.10-19	arm	DSA-1264-1 php4	2007-3-7
    php4-common	4.3.10-19	arm	DSA-1264-1 php4	2007-3-7
    php4-curl	4.3.10-19	arm	DSA-1264-1 php4	2007-3-7
    php4-dev	4.3.10-19	arm	DSA-1264-1 php4	2007-3-7
    php4-domxml	4.3.10-19	arm	DSA-1264-1 php4	2007-3-7
    php4-gd	4.3.10-19	arm	DSA-1264-1 php4	2007-3-7
    php4-imap	4.3.10-19	arm	DSA-1264-1 php4	2007-3-7
    php4-ldap	4.3.10-19	arm	DSA-1264-1 php4	2007-3-7
    php4-mcal	4.3.10-19	arm	DSA-1264-1 php4	2007-3-7
    php4-mhash	4.3.10-19	arm	DSA-1264-1 php4	2007-3-7
    php4-mysql	4.3.10-19	arm	DSA-1264-1 php4	2007-3-7
    php4-odbc	4.3.10-19	arm	DSA-1264-1 php4	2007-3-7
    php4-recode	4.3.10-19	arm	DSA-1264-1 php4	2007-3-7
    php4-snmp	4.3.10-19	arm	DSA-1264-1 php4	2007-3-7
    php4-sybase	4.3.10-19	arm	DSA-1264-1 php4	2007-3-7
    php4-xslt	4.3.10-19	arm	DSA-1264-1 php4	2007-3-7
    libapache-mod-php4	4.3.10-19	hppa	DSA-1264-1 php4	2007-3-7
    libapache2-mod-php4	4.3.10-19	hppa	DSA-1264-1 php4	2007-3-7
    php4-cgi	4.3.10-19	hppa	DSA-1264-1 php4	2007-3-7
    php4-cli	4.3.10-19	hppa	DSA-1264-1 php4	2007-3-7
    php4-common	4.3.10-19	hppa	DSA-1264-1 php4	2007-3-7
    php4-curl	4.3.10-19	hppa	DSA-1264-1 php4	2007-3-7
    php4-dev	4.3.10-19	hppa	DSA-1264-1 php4	2007-3-7
    php4-domxml	4.3.10-19	hppa	DSA-1264-1 php4	2007-3-7
    php4-gd	4.3.10-19	hppa	DSA-1264-1 php4	2007-3-7
    php4-imap	4.3.10-19	hppa	DSA-1264-1 php4	2007-3-7
    php4-ldap	4.3.10-19	hppa	DSA-1264-1 php4	2007-3-7
    php4-mcal	4.3.10-19	hppa	DSA-1264-1 php4	2007-3-7
    php4-mhash	4.3.10-19	hppa	DSA-1264-1 php4	2007-3-7
    php4-mysql	4.3.10-19	hppa	DSA-1264-1 php4	2007-3-7
    php4-odbc	4.3.10-19	hppa	DSA-1264-1 php4	2007-3-7
    php4-recode	4.3.10-19	hppa	DSA-1264-1 php4	2007-3-7
    php4-snmp	4.3.10-19	hppa	DSA-1264-1 php4	2007-3-7
    php4-sybase	4.3.10-19	hppa	DSA-1264-1 php4	2007-3-7
    php4-xslt	4.3.10-19	hppa	DSA-1264-1 php4	2007-3-7
    libapache-mod-php4	4.3.10-19	i386	DSA-1264-1 php4	2007-3-7
    libapache2-mod-php4	4.3.10-19	i386	DSA-1264-1 php4	2007-3-7
    php4-cgi	4.3.10-19	i386	DSA-1264-1 php4	2007-3-7
    php4-cli	4.3.10-19	i386	DSA-1264-1 php4	2007-3-7
    php4-common	4.3.10-19	i386	DSA-1264-1 php4	2007-3-7
    php4-curl	4.3.10-19	i386	DSA-1264-1 php4	2007-3-7
    php4-dev	4.3.10-19	i386	DSA-1264-1 php4	2007-3-7
    php4-domxml	4.3.10-19	i386	DSA-1264-1 php4	2007-3-7
    php4-gd	4.3.10-19	i386	DSA-1264-1 php4	2007-3-7
    php4-imap	4.3.10-19	i386	DSA-1264-1 php4	2007-3-7
    php4-ldap	4.3.10-19	i386	DSA-1264-1 php4	2007-3-7
    php4-mcal	4.3.10-19	i386	DSA-1264-1 php4	2007-3-7
    php4-mhash	4.3.10-19	i386	DSA-1264-1 php4	2007-3-7
    php4-mysql	4.3.10-19	i386	DSA-1264-1 php4	2007-3-7
    php4-odbc	4.3.10-19	i386	DSA-1264-1 php4	2007-3-7
    php4-recode	4.3.10-19	i386	DSA-1264-1 php4	2007-3-7
    php4-snmp	4.3.10-19	i386	DSA-1264-1 php4	2007-3-7
    php4-sybase	4.3.10-19	i386	DSA-1264-1 php4	2007-3-7
    php4-xslt	4.3.10-19	i386	DSA-1264-1 php4	2007-3-7
    libapache-mod-php4	4.3.10-19	ia64	DSA-1264-1 php4	2007-3-7
    libapache2-mod-php4	4.3.10-19	ia64	DSA-1264-1 php4	2007-3-7
    php4-cgi	4.3.10-19	ia64	DSA-1264-1 php4	2007-3-7
    php4-cli	4.3.10-19	ia64	DSA-1264-1 php4	2007-3-7
    php4-common	4.3.10-19	ia64	DSA-1264-1 php4	2007-3-7
    php4-curl	4.3.10-19	ia64	DSA-1264-1 php4	2007-3-7
    php4-dev	4.3.10-19	ia64	DSA-1264-1 php4	2007-3-7
    php4-domxml	4.3.10-19	ia64	DSA-1264-1 php4	2007-3-7
    php4-gd	4.3.10-19	ia64	DSA-1264-1 php4	2007-3-7
    php4-imap	4.3.10-19	ia64	DSA-1264-1 php4	2007-3-7
    php4-ldap	4.3.10-19	ia64	DSA-1264-1 php4	2007-3-7
    php4-mcal	4.3.10-19	ia64	DSA-1264-1 php4	2007-3-7
    php4-mhash	4.3.10-19	ia64	DSA-1264-1 php4	2007-3-7
    php4-mysql	4.3.10-19	ia64	DSA-1264-1 php4	2007-3-7
    php4-odbc	4.3.10-19	ia64	DSA-1264-1 php4	2007-3-7
    php4-recode	4.3.10-19	ia64	DSA-1264-1 php4	2007-3-7
    php4-snmp	4.3.10-19	ia64	DSA-1264-1 php4	2007-3-7
    php4-sybase	4.3.10-19	ia64	DSA-1264-1 php4	2007-3-7
    php4-xslt	4.3.10-19	ia64	DSA-1264-1 php4	2007-3-7
    libapache-mod-php4	4.3.10-19	m68k	DSA-1264-1 php4	2007-3-7
    libapache2-mod-php4	4.3.10-19	m68k	DSA-1264-1 php4	2007-3-7
    php4-cgi	4.3.10-19	m68k	DSA-1264-1 php4	2007-3-7
    php4-cli	4.3.10-19	m68k	DSA-1264-1 php4	2007-3-7
    php4-common	4.3.10-19	m68k	DSA-1264-1 php4	2007-3-7
    php4-curl	4.3.10-19	m68k	DSA-1264-1 php4	2007-3-7
    php4-dev	4.3.10-19	m68k	DSA-1264-1 php4	2007-3-7
    php4-domxml	4.3.10-19	m68k	DSA-1264-1 php4	2007-3-7
    php4-gd	4.3.10-19	m68k	DSA-1264-1 php4	2007-3-7
    php4-imap	4.3.10-19	m68k	DSA-1264-1 php4	2007-3-7
    php4-ldap	4.3.10-19	m68k	DSA-1264-1 php4	2007-3-7
    php4-mcal	4.3.10-19	m68k	DSA-1264-1 php4	2007-3-7
    php4-mhash	4.3.10-19	m68k	DSA-1264-1 php4	2007-3-7
    php4-mysql	4.3.10-19	m68k	DSA-1264-1 php4	2007-3-7
    php4-odbc	4.3.10-19	m68k	DSA-1264-1 php4	2007-3-7
    php4-recode	4.3.10-19	m68k	DSA-1264-1 php4	2007-3-7
    php4-snmp	4.3.10-19	m68k	DSA-1264-1 php4	2007-3-7
    php4-sybase	4.3.10-19	m68k	DSA-1264-1 php4	2007-3-7
    php4-xslt	4.3.10-19	m68k	DSA-1264-1 php4	2007-3-7
    libapache-mod-php4	4.3.10-19	mips	DSA-1264-1 php4	2007-3-7
    libapache2-mod-php4	4.3.10-19	mips	DSA-1264-1 php4	2007-3-7
    php4-cgi	4.3.10-19	mips	DSA-1264-1 php4	2007-3-7
    php4-cli	4.3.10-19	mips	DSA-1264-1 php4	2007-3-7
    php4-common	4.3.10-19	mips	DSA-1264-1 php4	2007-3-7
    php4-curl	4.3.10-19	mips	DSA-1264-1 php4	2007-3-7
    php4-dev	4.3.10-19	mips	DSA-1264-1 php4	2007-3-7
    php4-domxml	4.3.10-19	mips	DSA-1264-1 php4	2007-3-7
    php4-gd	4.3.10-19	mips	DSA-1264-1 php4	2007-3-7
    php4-imap	4.3.10-19	mips	DSA-1264-1 php4	2007-3-7
    php4-ldap	4.3.10-19	mips	DSA-1264-1 php4	2007-3-7
    php4-mcal	4.3.10-19	mips	DSA-1264-1 php4	2007-3-7
    php4-mhash	4.3.10-19	mips	DSA-1264-1 php4	2007-3-7
    php4-mysql	4.3.10-19	mips	DSA-1264-1 php4	2007-3-7
    php4-odbc	4.3.10-19	mips	DSA-1264-1 php4	2007-3-7
    php4-recode	4.3.10-19	mips	DSA-1264-1 php4	2007-3-7
    php4-snmp	4.3.10-19	mips	DSA-1264-1 php4	2007-3-7
    php4-sybase	4.3.10-19	mips	DSA-1264-1 php4	2007-3-7
    php4-xslt	4.3.10-19	mips	DSA-1264-1 php4	2007-3-7
    libapache-mod-php4	4.3.10-19	mipsel	DSA-1264-1 php4	2007-3-7
    libapache2-mod-php4	4.3.10-19	mipsel	DSA-1264-1 php4	2007-3-7
    php4-cgi	4.3.10-19	mipsel	DSA-1264-1 php4	2007-3-7
    php4-cli	4.3.10-19	mipsel	DSA-1264-1 php4	2007-3-7
    php4-common	4.3.10-19	mipsel	DSA-1264-1 php4	2007-3-7
    php4-curl	4.3.10-19	mipsel	DSA-1264-1 php4	2007-3-7
    php4-dev	4.3.10-19	mipsel	DSA-1264-1 php4	2007-3-7
    php4-domxml	4.3.10-19	mipsel	DSA-1264-1 php4	2007-3-7
    php4-gd	4.3.10-19	mipsel	DSA-1264-1 php4	2007-3-7
    php4-imap	4.3.10-19	mipsel	DSA-1264-1 php4	2007-3-7
    php4-ldap	4.3.10-19	mipsel	DSA-1264-1 php4	2007-3-7
    php4-mcal	4.3.10-19	mipsel	DSA-1264-1 php4	2007-3-7
    php4-mhash	4.3.10-19	mipsel	DSA-1264-1 php4	2007-3-7
    php4-mysql	4.3.10-19	mipsel	DSA-1264-1 php4	2007-3-7
    php4-odbc	4.3.10-19	mipsel	DSA-1264-1 php4	2007-3-7
    php4-recode	4.3.10-19	mipsel	DSA-1264-1 php4	2007-3-7
    php4-snmp	4.3.10-19	mipsel	DSA-1264-1 php4	2007-3-7
    php4-sybase	4.3.10-19	mipsel	DSA-1264-1 php4	2007-3-7
    php4-xslt	4.3.10-19	mipsel	DSA-1264-1 php4	2007-3-7
    libapache-mod-php4	4.3.10-19	powerpc	DSA-1264-1 php4	2007-3-7
    libapache2-mod-php4	4.3.10-19	powerpc	DSA-1264-1 php4	2007-3-7
    php4-cgi	4.3.10-19	powerpc	DSA-1264-1 php4	2007-3-7
    php4-cli	4.3.10-19	powerpc	DSA-1264-1 php4	2007-3-7
    php4-common	4.3.10-19	powerpc	DSA-1264-1 php4	2007-3-7
    php4-curl	4.3.10-19	powerpc	DSA-1264-1 php4	2007-3-7
    php4-dev	4.3.10-19	powerpc	DSA-1264-1 php4	2007-3-7
    php4-domxml	4.3.10-19	powerpc	DSA-1264-1 php4	2007-3-7
    php4-gd	4.3.10-19	powerpc	DSA-1264-1 php4	2007-3-7
    php4-imap	4.3.10-19	powerpc	DSA-1264-1 php4	2007-3-7
    php4-ldap	4.3.10-19	powerpc	DSA-1264-1 php4	2007-3-7
    php4-mcal	4.3.10-19	powerpc	DSA-1264-1 php4	2007-3-7
    php4-mhash	4.3.10-19	powerpc	DSA-1264-1 php4	2007-3-7
    php4-mysql	4.3.10-19	powerpc	DSA-1264-1 php4	2007-3-7
    php4-odbc	4.3.10-19	powerpc	DSA-1264-1 php4	2007-3-7
    php4-recode	4.3.10-19	powerpc	DSA-1264-1 php4	2007-3-7
    php4-snmp	4.3.10-19	powerpc	DSA-1264-1 php4	2007-3-7
    php4-sybase	4.3.10-19	powerpc	DSA-1264-1 php4	2007-3-7
    php4-xslt	4.3.10-19	powerpc	DSA-1264-1 php4	2007-3-7
    libapache-mod-php4	4.3.10-19	s390	DSA-1264-1 php4	2007-3-7
    libapache2-mod-php4	4.3.10-19	s390	DSA-1264-1 php4	2007-3-7
    php4-cgi	4.3.10-19	s390	DSA-1264-1 php4	2007-3-7
    php4-cli	4.3.10-19	s390	DSA-1264-1 php4	2007-3-7
    php4-common	4.3.10-19	s390	DSA-1264-1 php4	2007-3-7
    php4-curl	4.3.10-19	s390	DSA-1264-1 php4	2007-3-7
    php4-dev	4.3.10-19	s390	DSA-1264-1 php4	2007-3-7
    php4-domxml	4.3.10-19	s390	DSA-1264-1 php4	2007-3-7
    php4-gd	4.3.10-19	s390	DSA-1264-1 php4	2007-3-7
    php4-imap	4.3.10-19	s390	DSA-1264-1 php4	2007-3-7
    php4-ldap	4.3.10-19	s390	DSA-1264-1 php4	2007-3-7
    php4-mcal	4.3.10-19	s390	DSA-1264-1 php4	2007-3-7
    php4-mhash	4.3.10-19	s390	DSA-1264-1 php4	2007-3-7
    php4-mysql	4.3.10-19	s390	DSA-1264-1 php4	2007-3-7
    php4-odbc	4.3.10-19	s390	DSA-1264-1 php4	2007-3-7
    php4-recode	4.3.10-19	s390	DSA-1264-1 php4	2007-3-7
    php4-snmp	4.3.10-19	s390	DSA-1264-1 php4	2007-3-7
    php4-sybase	4.3.10-19	s390	DSA-1264-1 php4	2007-3-7
    php4-xslt	4.3.10-19	s390	DSA-1264-1 php4	2007-3-7
    libapache-mod-php4	4.3.10-19	sparc	DSA-1264-1 php4	2007-3-7
    libapache2-mod-php4	4.3.10-19	sparc	DSA-1264-1 php4	2007-3-7
    php4-cgi	4.3.10-19	sparc	DSA-1264-1 php4	2007-3-7
    php4-cli	4.3.10-19	sparc	DSA-1264-1 php4	2007-3-7
    php4-common	4.3.10-19	sparc	DSA-1264-1 php4	2007-3-7
    php4-curl	4.3.10-19	sparc	DSA-1264-1 php4	2007-3-7
    php4-dev	4.3.10-19	sparc	DSA-1264-1 php4	2007-3-7
    php4-domxml	4.3.10-19	sparc	DSA-1264-1 php4	2007-3-7
    php4-gd	4.3.10-19	sparc	DSA-1264-1 php4	2007-3-7
    php4-imap	4.3.10-19	sparc	DSA-1264-1 php4	2007-3-7
    php4-ldap	4.3.10-19	sparc	DSA-1264-1 php4	2007-3-7
    php4-mcal	4.3.10-19	sparc	DSA-1264-1 php4	2007-3-7
    php4-mhash	4.3.10-19	sparc	DSA-1264-1 php4	2007-3-7
    php4-mysql	4.3.10-19	sparc	DSA-1264-1 php4	2007-3-7
    php4-odbc	4.3.10-19	sparc	DSA-1264-1 php4	2007-3-7
    php4-recode	4.3.10-19	sparc	DSA-1264-1 php4	2007-3-7
    php4-snmp	4.3.10-19	sparc	DSA-1264-1 php4	2007-3-7
    php4-sybase	4.3.10-19	sparc	DSA-1264-1 php4	2007-3-7
    php4-xslt	4.3.10-19	sparc	DSA-1264-1 php4	2007-3-7
    wordpress	2.0.10-1	all	DSA-1285-1 wordpress	2007-5-01
    wesnoth-data	0.9.0-6	all	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-ei	0.9.0-6	all	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-httt	0.9.0-6	all	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-music	0.9.0-6	all	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-sotbe	0.9.0-6	all	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-tdh	0.9.0-6	all	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-trow	0.9.0-6	all	DSA-1386-1 wesnoth	2007-10-15
    wesnoth	0.9.0-6	alpha	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-editor	0.9.0-6	alpha	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-server	0.9.0-6	alpha	DSA-1386-1 wesnoth	2007-10-15
    wesnoth	0.9.0-6	amd64	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-editor	0.9.0-6	amd64	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-server	0.9.0-6	amd64	DSA-1386-1 wesnoth	2007-10-15
    wesnoth	0.9.0-6	arm	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-editor	0.9.0-6	arm	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-server	0.9.0-6	arm	DSA-1386-1 wesnoth	2007-10-15
    wesnoth	0.9.0-6	hppa	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-editor	0.9.0-6	hppa	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-server	0.9.0-6	hppa	DSA-1386-1 wesnoth	2007-10-15
    wesnoth	0.9.0-6	i386	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-editor	0.9.0-6	i386	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-server	0.9.0-6	i386	DSA-1386-1 wesnoth	2007-10-15
    wesnoth	0.9.0-6	ia64	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-editor	0.9.0-6	ia64	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-server	0.9.0-6	ia64	DSA-1386-1 wesnoth	2007-10-15
    wesnoth	0.9.0-6	m68k	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-editor	0.9.0-6	m68k	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-server	0.9.0-6	m68k	DSA-1386-1 wesnoth	2007-10-15
    wesnoth	0.9.0-6	mipsel	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-editor	0.9.0-6	mipsel	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-server	0.9.0-6	mipsel	DSA-1386-1 wesnoth	2007-10-15
    wesnoth	0.9.0-6	powerpc	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-editor	0.9.0-6	powerpc	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-server	0.9.0-6	powerpc	DSA-1386-1 wesnoth	2007-10-15
    wesnoth	0.9.0-6	s390	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-editor	0.9.0-6	s390	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-server	0.9.0-6	s390	DSA-1386-1 wesnoth	2007-10-15
    wesnoth	0.9.0-6	sparc	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-editor	0.9.0-6	sparc	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-server	0.9.0-6	sparc	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-data	1.2-2	all	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-ei	1.2-2	all	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-httt	1.2-2	all	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-music	1.2-2	all	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-trow	1.2-2	all	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-tsg	1.2-2	all	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-ttb	1.2-2	all	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-utbs	1.2-2	all	DSA-1386-1 wesnoth	2007-10-15
    wesnoth	1.2-2	alpha	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-editor	1.2-2	alpha	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-server	1.2-2	alpha	DSA-1386-1 wesnoth	2007-10-15
    wesnoth	1.2-2	amd64	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-editor	1.2-2	amd64	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-server	1.2-2	amd64	DSA-1386-1 wesnoth	2007-10-15
    wesnoth	1.2-2	arm	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-editor	1.2-2	arm	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-server	1.2-2	arm	DSA-1386-1 wesnoth	2007-10-15
    wesnoth	1.2-2	hppa	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-editor	1.2-2	hppa	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-server	1.2-2	hppa	DSA-1386-1 wesnoth	2007-10-15
    wesnoth	1.2-2	i386	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-editor	1.2-2	i386	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-server	1.2-2	i386	DSA-1386-1 wesnoth	2007-10-15
    wesnoth	1.2-2	ia64	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-editor	1.2-2	ia64	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-server	1.2-2	ia64	DSA-1386-1 wesnoth	2007-10-15
    wesnoth	1.2-2	mips	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-editor	1.2-2	mips	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-server	1.2-2	mips	DSA-1386-1 wesnoth	2007-10-15
    wesnoth	1.2-2	mipsel	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-editor	1.2-2	mipsel	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-server	1.2-2	mipsel	DSA-1386-1 wesnoth	2007-10-15
    wesnoth	1.2-2	powerpc	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-editor	1.2-2	powerpc	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-server	1.2-2	powerpc	DSA-1386-1 wesnoth	2007-10-15
    wesnoth	1.2-2	s390	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-editor	1.2-2	s390	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-server	1.2-2	s390	DSA-1386-1 wesnoth	2007-10-15
    wesnoth	1.2-2	sparc	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-editor	1.2-2	sparc	DSA-1386-1 wesnoth	2007-10-15
    wesnoth-server	1.2-2	sparc	DSA-1386-1 wesnoth	2007-10-15
    inotify-tools	3.3-2	alpha	DSA-1440-1 inotify-tools	2007-12-28
    inotify-tools	3.3-2	amd64	DSA-1440-1 inotify-tools	2007-12-28
    inotify-tools	3.3-2	arm	DSA-1440-1 inotify-tools	2007-12-28
    inotify-tools	3.3-2	hppa	DSA-1440-1 inotify-tools	2007-12-28
    inotify-tools	3.3-2	i386	DSA-1440-1 inotify-tools	2007-12-28
    inotify-tools	3.3-2	ia64	DSA-1440-1 inotify-tools	2007-12-28
    inotify-tools	3.3-2	mips	DSA-1440-1 inotify-tools	2007-12-28
    inotify-tools	3.3-2	mipsel	DSA-1440-1 inotify-tools	2007-12-28
    inotify-tools	3.3-2	powerpc	DSA-1440-1 inotify-tools	2007-12-28
    inotify-tools	3.3-2	s390	DSA-1440-1 inotify-tools	2007-12-28
    inotify-tools	3.3-2	sparc	DSA-1440-1 inotify-tools	2007-12-28
    quagga-doc	0.98.3-7.4	all	DSA-1293-1 quagga	2007-5-17
    quagga	0.98.3-7.4	alpha	DSA-1293-1 quagga	2007-5-17
    quagga	0.98.3-7.4	amd64	DSA-1293-1 quagga	2007-5-17
    quagga	0.98.3-7.4	arm	DSA-1293-1 quagga	2007-5-17
    quagga	0.98.3-7.4	hppa	DSA-1293-1 quagga	2007-5-17
    quagga	0.98.3-7.4	i386	DSA-1293-1 quagga	2007-5-17
    quagga	0.98.3-7.4	ia64	DSA-1293-1 quagga	2007-5-17
    quagga	0.98.3-7.4	m68k	DSA-1293-1 quagga	2007-5-17
    quagga	0.98.3-7.4	mips	DSA-1293-1 quagga	2007-5-17
    quagga	0.98.3-7.4	mipsel	DSA-1293-1 quagga	2007-5-17
    quagga	0.98.3-7.4	powerpc	DSA-1293-1 quagga	2007-5-17
    quagga	0.98.3-7.4	s390	DSA-1293-1 quagga	2007-5-17
    quagga	0.98.3-7.4	sparc	DSA-1293-1 quagga	2007-5-17
    xfs	1.0.1-7	alpha	DSA-1385-1 xfs	2007-10-9
    xfs	1.0.1-7	amd64	DSA-1385-1 xfs	2007-10-9
    xfs	1.0.1-7	arm	DSA-1385-1 xfs	2007-10-9
    xfs	1.0.1-7	hppa	DSA-1385-1 xfs	2007-10-9
    xfs	1.0.1-7	i386	DSA-1385-1 xfs	2007-10-9
    xfs	1.0.1-7	ia64	DSA-1385-1 xfs	2007-10-9
    xfs	1.0.1-7	mips	DSA-1385-1 xfs	2007-10-9
    xfs	1.0.1-7	mipsel	DSA-1385-1 xfs	2007-10-9
    xfs	1.0.1-7	powerpc	DSA-1385-1 xfs	2007-10-9
    xfs	1.0.1-7	s390	DSA-1385-1 xfs	2007-10-9
    xfs	1.0.1-7	sparc	DSA-1385-1 xfs	2007-10-9
    php4-pear	4.3.10-22	all	DSA-1331-1 php4	2007-7-7
    php4	4.3.10-22	all	DSA-1331-1 php4	2007-7-7
    libapache-mod-php4	4.3.10-22	alpha	DSA-1331-1 php4	2007-7-7
    libapache2-mod-php4	4.3.10-22	alpha	DSA-1331-1 php4	2007-7-7
    php4-cgi	4.3.10-22	alpha	DSA-1331-1 php4	2007-7-7
    php4-cli	4.3.10-22	alpha	DSA-1331-1 php4	2007-7-7
    php4-common	4.3.10-22	alpha	DSA-1331-1 php4	2007-7-7
    php4-curl	4.3.10-22	alpha	DSA-1331-1 php4	2007-7-7
    php4-dev	4.3.10-22	alpha	DSA-1331-1 php4	2007-7-7
    php4-domxml	4.3.10-22	alpha	DSA-1331-1 php4	2007-7-7
    php4-gd	4.3.10-22	alpha	DSA-1331-1 php4	2007-7-7
    php4-imap	4.3.10-22	alpha	DSA-1331-1 php4	2007-7-7
    php4-ldap	4.3.10-22	alpha	DSA-1331-1 php4	2007-7-7
    php4-mcal	4.3.10-22	alpha	DSA-1331-1 php4	2007-7-7
    php4-mhash	4.3.10-22	alpha	DSA-1331-1 php4	2007-7-7
    php4-mysql	4.3.10-22	alpha	DSA-1331-1 php4	2007-7-7
    php4-odbc	4.3.10-22	alpha	DSA-1331-1 php4	2007-7-7
    php4-recode	4.3.10-22	alpha	DSA-1331-1 php4	2007-7-7
    php4-snmp	4.3.10-22	alpha	DSA-1331-1 php4	2007-7-7
    php4-sybase	4.3.10-22	alpha	DSA-1331-1 php4	2007-7-7
    php4-xslt	4.3.10-22	alpha	DSA-1331-1 php4	2007-7-7
    libapache-mod-php4	4.3.10-22	amd64	DSA-1331-1 php4	2007-7-7
    libapache2-mod-php4	4.3.10-22	amd64	DSA-1331-1 php4	2007-7-7
    php4-cgi	4.3.10-22	amd64	DSA-1331-1 php4	2007-7-7
    php4-cli	4.3.10-22	amd64	DSA-1331-1 php4	2007-7-7
    php4-common	4.3.10-22	amd64	DSA-1331-1 php4	2007-7-7
    php4-curl	4.3.10-22	amd64	DSA-1331-1 php4	2007-7-7
    php4-dev	4.3.10-22	amd64	DSA-1331-1 php4	2007-7-7
    php4-domxml	4.3.10-22	amd64	DSA-1331-1 php4	2007-7-7
    php4-gd	4.3.10-22	amd64	DSA-1331-1 php4	2007-7-7
    php4-imap	4.3.10-22	amd64	DSA-1331-1 php4	2007-7-7
    php4-ldap	4.3.10-22	amd64	DSA-1331-1 php4	2007-7-7
    php4-mcal	4.3.10-22	amd64	DSA-1331-1 php4	2007-7-7
    php4-mhash	4.3.10-22	amd64	DSA-1331-1 php4	2007-7-7
    php4-mysql	4.3.10-22	amd64	DSA-1331-1 php4	2007-7-7
    php4-odbc	4.3.10-22	amd64	DSA-1331-1 php4	2007-7-7
    php4-recode	4.3.10-22	amd64	DSA-1331-1 php4	2007-7-7
    php4-snmp	4.3.10-22	amd64	DSA-1331-1 php4	2007-7-7
    php4-sybase	4.3.10-22	amd64	DSA-1331-1 php4	2007-7-7
    php4-xslt	4.3.10-22	amd64	DSA-1331-1 php4	2007-7-7
    libapache-mod-php4	4.3.10-22	arm	DSA-1331-1 php4	2007-7-7
    libapache2-mod-php4	4.3.10-22	arm	DSA-1331-1 php4	2007-7-7
    php4-cgi	4.3.10-22	arm	DSA-1331-1 php4	2007-7-7
    php4-cli	4.3.10-22	arm	DSA-1331-1 php4	2007-7-7
    php4-common	4.3.10-22	arm	DSA-1331-1 php4	2007-7-7
    php4-curl	4.3.10-22	arm	DSA-1331-1 php4	2007-7-7
    php4-dev	4.3.10-22	arm	DSA-1331-1 php4	2007-7-7
    php4-domxml	4.3.10-22	arm	DSA-1331-1 php4	2007-7-7
    php4-gd	4.3.10-22	arm	DSA-1331-1 php4	2007-7-7
    php4-imap	4.3.10-22	arm	DSA-1331-1 php4	2007-7-7
    php4-ldap	4.3.10-22	arm	DSA-1331-1 php4	2007-7-7
    php4-mcal	4.3.10-22	arm	DSA-1331-1 php4	2007-7-7
    php4-mhash	4.3.10-22	arm	DSA-1331-1 php4	2007-7-7
    php4-mysql	4.3.10-22	arm	DSA-1331-1 php4	2007-7-7
    php4-odbc	4.3.10-22	arm	DSA-1331-1 php4	2007-7-7
    php4-recode	4.3.10-22	arm	DSA-1331-1 php4	2007-7-7
    php4-snmp	4.3.10-22	arm	DSA-1331-1 php4	2007-7-7
    php4-sybase	4.3.10-22	arm	DSA-1331-1 php4	2007-7-7
    php4-xslt	4.3.10-22	arm	DSA-1331-1 php4	2007-7-7
    libapache-mod-php4	4.3.10-22	i386	DSA-1331-1 php4	2007-7-7
    libapache2-mod-php4	4.3.10-22	i386	DSA-1331-1 php4	2007-7-7
    php4-cgi	4.3.10-22	i386	DSA-1331-1 php4	2007-7-7
    php4-cli	4.3.10-22	i386	DSA-1331-1 php4	2007-7-7
    php4-common	4.3.10-22	i386	DSA-1331-1 php4	2007-7-7
    php4-curl	4.3.10-22	i386	DSA-1331-1 php4	2007-7-7
    php4-dev	4.3.10-22	i386	DSA-1331-1 php4	2007-7-7
    php4-domxml	4.3.10-22	i386	DSA-1331-1 php4	2007-7-7
    php4-gd	4.3.10-22	i386	DSA-1331-1 php4	2007-7-7
    php4-imap	4.3.10-22	i386	DSA-1331-1 php4	2007-7-7
    php4-ldap	4.3.10-22	i386	DSA-1331-1 php4	2007-7-7
    php4-mcal	4.3.10-22	i386	DSA-1331-1 php4	2007-7-7
    php4-mhash	4.3.10-22	i386	DSA-1331-1 php4	2007-7-7
    php4-mysql	4.3.10-22	i386	DSA-1331-1 php4	2007-7-7
    php4-odbc	4.3.10-22	i386	DSA-1331-1 php4	2007-7-7
    php4-recode	4.3.10-22	i386	DSA-1331-1 php4	2007-7-7
    php4-snmp	4.3.10-22	i386	DSA-1331-1 php4	2007-7-7
    php4-sybase	4.3.10-22	i386	DSA-1331-1 php4	2007-7-7
    php4-xslt	4.3.10-22	i386	DSA-1331-1 php4	2007-7-7
    libapache-mod-php4	4.3.10-22	ia64	DSA-1331-1 php4	2007-7-7
    libapache2-mod-php4	4.3.10-22	ia64	DSA-1331-1 php4	2007-7-7
    php4-cgi	4.3.10-22	ia64	DSA-1331-1 php4	2007-7-7
    php4-cli	4.3.10-22	ia64	DSA-1331-1 php4	2007-7-7
    php4-common	4.3.10-22	ia64	DSA-1331-1 php4	2007-7-7
    php4-curl	4.3.10-22	ia64	DSA-1331-1 php4	2007-7-7
    php4-dev	4.3.10-22	ia64	DSA-1331-1 php4	2007-7-7
    php4-domxml	4.3.10-22	ia64	DSA-1331-1 php4	2007-7-7
    php4-gd	4.3.10-22	ia64	DSA-1331-1 php4	2007-7-7
    php4-imap	4.3.10-22	ia64	DSA-1331-1 php4	2007-7-7
    php4-ldap	4.3.10-22	ia64	DSA-1331-1 php4	2007-7-7
    php4-mcal	4.3.10-22	ia64	DSA-1331-1 php4	2007-7-7
    php4-mhash	4.3.10-22	ia64	DSA-1331-1 php4	2007-7-7
    php4-mysql	4.3.10-22	ia64	DSA-1331-1 php4	2007-7-7
    php4-odbc	4.3.10-22	ia64	DSA-1331-1 php4	2007-7-7
    php4-recode	4.3.10-22	ia64	DSA-1331-1 php4	2007-7-7
    php4-snmp	4.3.10-22	ia64	DSA-1331-1 php4	2007-7-7
    php4-sybase	4.3.10-22	ia64	DSA-1331-1 php4	2007-7-7
    php4-xslt	4.3.10-22	ia64	DSA-1331-1 php4	2007-7-7
    libapache-mod-php4	4.3.10-22	m68k	DSA-1331-1 php4	2007-7-7
    libapache2-mod-php4	4.3.10-22	m68k	DSA-1331-1 php4	2007-7-7
    php4-cgi	4.3.10-22	m68k	DSA-1331-1 php4	2007-7-7
    php4-cli	4.3.10-22	m68k	DSA-1331-1 php4	2007-7-7
    php4-common	4.3.10-22	m68k	DSA-1331-1 php4	2007-7-7
    php4-curl	4.3.10-22	m68k	DSA-1331-1 php4	2007-7-7
    php4-dev	4.3.10-22	m68k	DSA-1331-1 php4	2007-7-7
    php4-domxml	4.3.10-22	m68k	DSA-1331-1 php4	2007-7-7
    php4-gd	4.3.10-22	m68k	DSA-1331-1 php4	2007-7-7
    php4-imap	4.3.10-22	m68k	DSA-1331-1 php4	2007-7-7
    php4-ldap	4.3.10-22	m68k	DSA-1331-1 php4	2007-7-7
    php4-mcal	4.3.10-22	m68k	DSA-1331-1 php4	2007-7-7
    php4-mhash	4.3.10-22	m68k	DSA-1331-1 php4	2007-7-7
    php4-mysql	4.3.10-22	m68k	DSA-1331-1 php4	2007-7-7
    php4-odbc	4.3.10-22	m68k	DSA-1331-1 php4	2007-7-7
    php4-recode	4.3.10-22	m68k	DSA-1331-1 php4	2007-7-7
    php4-snmp	4.3.10-22	m68k	DSA-1331-1 php4	2007-7-7
    php4-sybase	4.3.10-22	m68k	DSA-1331-1 php4	2007-7-7
    php4-xslt	4.3.10-22	m68k	DSA-1331-1 php4	2007-7-7
    libapache-mod-php4	4.3.10-22	mipsel	DSA-1331-1 php4	2007-7-7
    libapache2-mod-php4	4.3.10-22	mipsel	DSA-1331-1 php4	2007-7-7
    php4-cgi	4.3.10-22	mipsel	DSA-1331-1 php4	2007-7-7
    php4-cli	4.3.10-22	mipsel	DSA-1331-1 php4	2007-7-7
    php4-common	4.3.10-22	mipsel	DSA-1331-1 php4	2007-7-7
    php4-curl	4.3.10-22	mipsel	DSA-1331-1 php4	2007-7-7
    php4-dev	4.3.10-22	mipsel	DSA-1331-1 php4	2007-7-7
    php4-domxml	4.3.10-22	mipsel	DSA-1331-1 php4	2007-7-7
    php4-gd	4.3.10-22	mipsel	DSA-1331-1 php4	2007-7-7
    php4-imap	4.3.10-22	mipsel	DSA-1331-1 php4	2007-7-7
    php4-ldap	4.3.10-22	mipsel	DSA-1331-1 php4	2007-7-7
    php4-mcal	4.3.10-22	mipsel	DSA-1331-1 php4	2007-7-7
    php4-mhash	4.3.10-22	mipsel	DSA-1331-1 php4	2007-7-7
    php4-mysql	4.3.10-22	mipsel	DSA-1331-1 php4	2007-7-7
    php4-odbc	4.3.10-22	mipsel	DSA-1331-1 php4	2007-7-7
    php4-recode	4.3.10-22	mipsel	DSA-1331-1 php4	2007-7-7
    php4-snmp	4.3.10-22	mipsel	DSA-1331-1 php4	2007-7-7
    php4-sybase	4.3.10-22	mipsel	DSA-1331-1 php4	2007-7-7
    php4-xslt	4.3.10-22	mipsel	DSA-1331-1 php4	2007-7-7
    libapache-mod-php4	4.3.10-22	s390	DSA-1331-1 php4	2007-7-7
    libapache2-mod-php4	4.3.10-22	s390	DSA-1331-1 php4	2007-7-7
    php4-cgi	4.3.10-22	s390	DSA-1331-1 php4	2007-7-7
    php4-cli	4.3.10-22	s390	DSA-1331-1 php4	2007-7-7
    php4-common	4.3.10-22	s390	DSA-1331-1 php4	2007-7-7
    php4-curl	4.3.10-22	s390	DSA-1331-1 php4	2007-7-7
    php4-dev	4.3.10-22	s390	DSA-1331-1 php4	2007-7-7
    php4-domxml	4.3.10-22	s390	DSA-1331-1 php4	2007-7-7
    php4-gd	4.3.10-22	s390	DSA-1331-1 php4	2007-7-7
    php4-imap	4.3.10-22	s390	DSA-1331-1 php4	2007-7-7
    php4-ldap	4.3.10-22	s390	DSA-1331-1 php4	2007-7-7
    php4-mcal	4.3.10-22	s390	DSA-1331-1 php4	2007-7-7
    php4-mhash	4.3.10-22	s390	DSA-1331-1 php4	2007-7-7
    php4-mysql	4.3.10-22	s390	DSA-1331-1 php4	2007-7-7
    php4-odbc	4.3.10-22	s390	DSA-1331-1 php4	2007-7-7
    php4-recode	4.3.10-22	s390	DSA-1331-1 php4	2007-7-7
    php4-snmp	4.3.10-22	s390	DSA-1331-1 php4	2007-7-7
    php4-sybase	4.3.10-22	s390	DSA-1331-1 php4	2007-7-7
    php4-xslt	4.3.10-22	s390	DSA-1331-1 php4	2007-7-7
    libapache-mod-php4	4.3.10-22	sparc	DSA-1331-1 php4	2007-7-7
    libapache2-mod-php4	4.3.10-22	sparc	DSA-1331-1 php4	2007-7-7
    php4-cgi	4.3.10-22	sparc	DSA-1331-1 php4	2007-7-7
    php4-cli	4.3.10-22	sparc	DSA-1331-1 php4	2007-7-7
    php4-common	4.3.10-22	sparc	DSA-1331-1 php4	2007-7-7
    php4-curl	4.3.10-22	sparc	DSA-1331-1 php4	2007-7-7
    php4-dev	4.3.10-22	sparc	DSA-1331-1 php4	2007-7-7
    php4-domxml	4.3.10-22	sparc	DSA-1331-1 php4	2007-7-7
    php4-gd	4.3.10-22	sparc	DSA-1331-1 php4	2007-7-7
    php4-imap	4.3.10-22	sparc	DSA-1331-1 php4	2007-7-7
    php4-ldap	4.3.10-22	sparc	DSA-1331-1 php4	2007-7-7
    php4-mcal	4.3.10-22	sparc	DSA-1331-1 php4	2007-7-7
    php4-mhash	4.3.10-22	sparc	DSA-1331-1 php4	2007-7-7
    php4-mysql	4.3.10-22	sparc	DSA-1331-1 php4	2007-7-7
    php4-odbc	4.3.10-22	sparc	DSA-1331-1 php4	2007-7-7
    php4-recode	4.3.10-22	sparc	DSA-1331-1 php4	2007-7-7
    php4-snmp	4.3.10-22	sparc	DSA-1331-1 php4	2007-7-7
    php4-sybase	4.3.10-22	sparc	DSA-1331-1 php4	2007-7-7
    php4-xslt	4.3.10-22	sparc	DSA-1331-1 php4	2007-7-7
    xpdf-common	3.00-13.7	all	DSA-1347-1 xpdf	2007-8-4
    xpdf	3.00-13.7	all	DSA-1347-1 xpdf	2007-8-4
    xpdf-reader	3.00-13.7	alpha	DSA-1347-1 xpdf	2007-8-4
    xpdf-utils	3.00-13.7	alpha	DSA-1347-1 xpdf	2007-8-4
    xpdf-reader	3.00-13.7	amd64	DSA-1347-1 xpdf	2007-8-4
    xpdf-utils	3.00-13.7	amd64	DSA-1347-1 xpdf	2007-8-4
    xpdf-reader	3.00-13.7	arm	DSA-1347-1 xpdf	2007-8-4
    xpdf-utils	3.00-13.7	arm	DSA-1347-1 xpdf	2007-8-4
    xpdf-reader	3.00-13.6	hppa	DSA-1347-1 xpdf	2007-8-4
    xpdf-utils	3.00-13.6	hppa	DSA-1347-1 xpdf	2007-8-4
    xpdf-reader	3.00-13.7	i386	DSA-1347-1 xpdf	2007-8-4
    xpdf-utils	3.00-13.7	i386	DSA-1347-1 xpdf	2007-8-4
    xpdf-reader	3.00-13.7	ia64	DSA-1347-1 xpdf	2007-8-4
    xpdf-utils	3.00-13.7	ia64	DSA-1347-1 xpdf	2007-8-4
    xpdf-reader	3.00-13.7	m68k	DSA-1347-1 xpdf	2007-8-4
    xpdf-utils	3.00-13.7	m68k	DSA-1347-1 xpdf	2007-8-4
    xpdf-reader	3.00-13.7	mips	DSA-1347-1 xpdf	2007-8-4
    xpdf-utils	3.00-13.7	mips	DSA-1347-1 xpdf	2007-8-4
    xpdf-reader	3.00-13.7	mipsel	DSA-1347-1 xpdf	2007-8-4
    xpdf-utils	3.00-13.7	mipsel	DSA-1347-1 xpdf	2007-8-4
    xpdf-reader	3.00-13.7	powerpc	DSA-1347-1 xpdf	2007-8-4
    xpdf-utils	3.00-13.7	powerpc	DSA-1347-1 xpdf	2007-8-4
    xpdf-reader	3.00-13.7	s390	DSA-1347-1 xpdf	2007-8-4
    xpdf-utils	3.00-13.7	s390	DSA-1347-1 xpdf	2007-8-4
    xpdf-reader	3.00-13.7	sparc	DSA-1347-1 xpdf	2007-8-4
    xpdf-utils	3.00-13.7	sparc	DSA-1347-1 xpdf	2007-8-4
    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
    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
    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
    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
    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
    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
    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
    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
    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
    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
    libcupsys1-dev	1.0.4-12.1	alpha	DSA-232-1 cupsys	2003-1-20
    cupsys	1.0.4-12.1	arm	DSA-232-1 cupsys	2003-1-20
    cupsys-bsd	1.0.4-12.1	arm	DSA-232-1 cupsys	2003-1-20
    libcupsys1	1.0.4-12.1	arm	DSA-232-1 cupsys	2003-1-20
    libcupsys1-dev	1.0.4-12.1	arm	DSA-232-1 cupsys	2003-1-20
    cupsys	1.0.4-12.1	i386	DSA-232-1 cupsys	2003-1-20
    cupsys-bsd	1.0.4-12.1	i386	DSA-232-1 cupsys	2003-1-20
    libcupsys1	1.0.4-12.1	i386	DSA-232-1 cupsys	2003-1-20
    libcupsys1-dev	1.0.4-12.1	i386	DSA-232-1 cupsys	2003-1-20
    cupsys	1.0.4-12.1	m68k	DSA-232-1 cupsys	2003-1-20
    cupsys-bsd	1.0.4-12.1	m68k	DSA-232-1 cupsys	2003-1-20
    libcupsys1	1.0.4-12.1	m68k	DSA-232-1 cupsys	2003-1-20
    libcupsys1-dev	1.0.4-12.1	m68k	DSA-232-1 cupsys	2003-1-20
    cupsys	1.0.4-12.1	powerpc	DSA-232-1 cupsys	2003-1-20
    cupsys-bsd	1.0.4-12.1	powerpc	DSA-232-1 cupsys	2003-1-20
    libcupsys1	1.0.4-12.1	powerpc	DSA-232-1 cupsys	2003-1-20
    libcupsys1-dev	1.0.4-12.1	powerpc	DSA-232-1 cupsys	2003-1-20
    cupsys	1.0.4-12.1	sparc	DSA-232-1 cupsys	2003-1-20
    cupsys-bsd	1.0.4-12.1	sparc	DSA-232-1 cupsys	2003-1-20
    libcupsys1	1.0.4-12.1	sparc	DSA-232-1 cupsys	2003-1-20
    libcupsys1-dev	1.0.4-12.1	sparc	DSA-232-1 cupsys	2003-1-20
    cupsys	1.1.14-4.4	alpha	DSA-232-1 cupsys	2003-1-20
    cupsys-bsd	1.1.14-4.4	alpha	DSA-232-1 cupsys	2003-1-20
    cupsys-client	1.1.14-4.4	alpha	DSA-232-1 cupsys	2003-1-20
    cupsys-pstoraster	1.1.14-4.4	alpha	DSA-232-1 cupsys	2003-1-20
    libcupsys2	1.1.14-4.4	alpha	DSA-232-1 cupsys	2003-1-20
    libcupsys2-dev	1.1.14-4.4	alpha	DSA-232-1 cupsys	2003-1-20
    cupsys	1.1.14-4.4	arm	DSA-232-1 cupsys	2003-1-20
    cupsys-bsd	1.1.14-4.4	arm	DSA-232-1 cupsys	2003-1-20
    cupsys-client	1.1.14-4.4	arm	DSA-232-1 cupsys	2003-1-20
    cupsys-pstoraster	1.1.14-4.4	arm	DSA-232-1 cupsys	2003-1-20
    libcupsys2	1.1.14-4.4	arm	DSA-232-1 cupsys	2003-1-20
    libcupsys2-dev	1.1.14-4.4	arm	DSA-232-1 cupsys	2003-1-20
    cupsys	1.1.14-4.4	i386	DSA-232-1 cupsys	2003-1-20
    cupsys-bsd	1.1.14-4.4	i386	DSA-232-1 cupsys	2003-1-20
    cupsys-client	1.1.14-4.4	i386	DSA-232-1 cupsys	2003-1-20
    cupsys-pstoraster	1.1.14-4.4	i386	DSA-232-1 cupsys	2003-1-20
    libcupsys2	1.1.14-4.4	i386	DSA-232-1 cupsys	2003-1-20
    libcupsys2-dev	1.1.14-4.4	i386	DSA-232-1 cupsys	2003-1-20
    cupsys	1.1.14-4.4	ia64	DSA-232-1 cupsys	2003-1-20
    cupsys-bsd	1.1.14-4.4	ia64	DSA-232-1 cupsys	2003-1-20
    cupsys-client	1.1.14-4.4	ia64	DSA-232-1 cupsys	2003-1-20
    cupsys-pstoraster	1.1.14-4.4	ia64	DSA-232-1 cupsys	2003-1-20
    libcupsys2	1.1.14-4.4	ia64	DSA-232-1 cupsys	2003-1-20
    libcupsys2-dev	1.1.14-4.4	ia64	DSA-232-1 cupsys	2003-1-20
    cupsys	1.1.14-4.4	hppa	DSA-232-1 cupsys	2003-1-20
    cupsys-bsd	1.1.14-4.4	hppa	DSA-232-1 cupsys	2003-1-20
    cupsys-client	1.1.14-4.4	hppa	DSA-232-1 cupsys	2003-1-20
    cupsys-pstoraster	1.1.14-4.4	hppa	DSA-232-1 cupsys	2003-1-20
    libcupsys2	1.1.14-4.4	hppa	DSA-232-1 cupsys	2003-1-20
    libcupsys2-dev	1.1.14-4.4	hppa	DSA-232-1 cupsys	2003-1-20
    cupsys	1.1.14-4.4	m68k	DSA-232-1 cupsys	2003-1-20
    cupsys-bsd	1.1.14-4.4	m68k	DSA-232-1 cupsys	2003-1-20
    cupsys-client	1.1.14-4.4	m68k	DSA-232-1 cupsys	2003-1-20
    cupsys-pstoraster	1.1.14-4.4	m68k	DSA-232-1 cupsys	2003-1-20
    libcupsys2	1.1.14-4.4	m68k	DSA-232-1 cupsys	2003-1-20
    libcupsys2-dev	1.1.14-4.4	m68k	DSA-232-1 cupsys	2003-1-20
    cupsys	1.1.14-4.4	mips	DSA-232-1 cupsys	2003-1-20
    cupsys-bsd	1.1.14-4.4	mips	DSA-232-1 cupsys	2003-1-20
    cupsys-client	1.1.14-4.4	mips	DSA-232-1 cupsys	2003-1-20
    cupsys-pstoraster	1.1.14-4.4	mips	DSA-232-1 cupsys	2003-1-20
    libcupsys2	1.1.14-4.4	mips	DSA-232-1 cupsys	2003-1-20
    libcupsys2-dev	1.1.14-4.4	mips	DSA-232-1 cupsys	2003-1-20
    cupsys	1.1.14-4.4	mipsel	DSA-232-1 cupsys	2003-1-20
    cupsys-bsd	1.1.14-4.4	mipsel	DSA-232-1 cupsys	2003-1-20
    cupsys-client	1.1.14-4.4	mipsel	DSA-232-1 cupsys	2003-1-20
    cupsys-pstoraster	1.1.14-4.4	mipsel	DSA-232-1 cupsys	2003-1-20
    libcupsys2	1.1.14-4.4	mipsel	DSA-232-1 cupsys	2003-1-20
    libcupsys2-dev	1.1.14-4.4	mipsel	DSA-232-1 cupsys	2003-1-20
    cupsys	1.1.14-4.4	powerpc	DSA-232-1 cupsys	2003-1-20
    cupsys-bsd	1.1.14-4.4	powerpc	DSA-232-1 cupsys	2003-1-20
    cupsys-client	1.1.14-4.4	powerpc	DSA-232-1 cupsys	2003-1-20
    cupsys-pstoraster	1.1.14-4.4	powerpc	DSA-232-1 cupsys	2003-1-20
    libcupsys2	1.1.14-4.4	powerpc	DSA-232-1 cupsys	2003-1-20
    libcupsys2-dev	1.1.14-4.4	powerpc	DSA-232-1 cupsys	2003-1-20
    cupsys	1.1.14-4.4	s390	DSA-232-1 cupsys	2003-1-20
    cupsys-bsd	1.1.14-4.4	s390	DSA-232-1 cupsys	2003-1-20
    cupsys-client	1.1.14-4.4	s390	DSA-232-1 cupsys	2003-1-20
    cupsys-pstoraster	1.1.14-4.4	s390	DSA-232-1 cupsys	2003-1-20
    libcupsys2	1.1.14-4.4	s390	DSA-232-1 cupsys	2003-1-20
    libcupsys2-dev	1.1.14-4.4	s390	DSA-232-1 cupsys	2003-1-20
    cupsys	1.1.14-4.4	sparc	DSA-232-1 cupsys	2003-1-20
    cupsys-bsd	1.1.14-4.4	sparc	DSA-232-1 cupsys	2003-1-20
    cupsys-client	1.1.14-4.4	sparc	DSA-232-1 cupsys	2003-1-20
    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
    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
    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
    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
    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
    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.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
    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
    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
    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
    kdebase	2.2.2-14.7	alpha	DSA-388-1 kdebase	2003-9-19
    kdebase-audiolibs	2.2.2-14.7	alpha	DSA-388-1 kdebase	2003-9-19
    kdebase-dev	2.2.2-14.7	alpha	DSA-388-1 kdebase	2003-9-19
    kdebase-libs	2.2.2-14.7	alpha	DSA-388-1 kdebase	2003-9-19
    kdm	2.2.2-14.7	alpha	DSA-388-1 kdebase	2003-9-19
    konqueror	2.2.2-14.7	alpha	DSA-388-1 kdebase	2003-9-19
    konsole	2.2.2-14.7	alpha	DSA-388-1 kdebase	2003-9-19
    kscreensaver	2.2.2-14.7	alpha	DSA-388-1 kdebase	2003-9-19
    libkonq-dev	2.2.2-14.7	alpha	DSA-388-1 kdebase	2003-9-19
    libkonq3	2.2.2-14.7	alpha	DSA-388-1 kdebase	2003-9-19
    kate	2.2.2-14.7	arm	DSA-388-1 kdebase	2003-9-19
    kdebase	2.2.2-14.7	arm	DSA-388-1 kdebase	2003-9-19
    kdebase-audiolibs	2.2.2-14.7	arm	DSA-388-1 kdebase	2003-9-19
    kdebase-dev	2.2.2-14.7	arm	DSA-388-1 kdebase	2003-9-19
    kdebase-libs	2.2.2-14.7	arm	DSA-388-1 kdebase	2003-9-19
    kdm	2.2.2-14.7	arm	DSA-388-1 kdebase	2003-9-19
    konqueror	2.2.2-14.7	arm	DSA-388-1 kdebase	2003-9-19
    konsole	2.2.2-14.7	arm	DSA-388-1 kdebase	2003-9-19
    kscreensaver	2.2.2-14.7	arm	DSA-388-1 kdebase	2003-9-19
    libkonq-dev	2.2.2-14.7	arm	DSA-388-1 kdebase	2003-9-19
    libkonq3	2.2.2-14.7	arm	DSA-388-1 kdebase	2003-9-19
    kate	2.2.2-14.7	i386	DSA-388-1 kdebase	2003-9-19
    kdebase	2.2.2-14.7	i386	DSA-388-1 kdebase	2003-9-19
    kdebase-audiolibs	2.2.2-14.7	i386	DSA-388-1 kdebase	2003-9-19
    kdebase-dev	2.2.2-14.7	i386	DSA-388-1 kdebase	2003-9-19
    kdebase-libs	2.2.2-14.7	i386	DSA-388-1 kdebase	2003-9-19
    kdm	2.2.2-14.7	i386	DSA-388-1 kdebase	2003-9-19
    konqueror	2.2.2-14.7	i386	DSA-388-1 kdebase	2003-9-19
    konsole	2.2.2-14.7	i386	DSA-388-1 kdebase	2003-9-19
    kscreensaver	2.2.2-14.7	i386	DSA-388-1 kdebase	2003-9-19
    libkonq-dev	2.2.2-14.7	i386	DSA-388-1 kdebase	2003-9-19
    libkonq3	2.2.2-14.7	i386	DSA-388-1 kdebase	2003-9-19
    kate	2.2.2-14.7	ia64	DSA-388-1 kdebase	2003-9-19
    kdebase	2.2.2-14.7	ia64	DSA-388-1 kdebase	2003-9-19
    kdebase-audiolibs	2.2.2-14.7	ia64	DSA-388-1 kdebase	2003-9-19
    kdebase-dev	2.2.2-14.7	ia64	DSA-388-1 kdebase	2003-9-19
    kdebase-libs	2.2.2-14.7	ia64	DSA-388-1 kdebase	2003-9-19
    kdm	2.2.2-14.7	ia64	DSA-388-1 kdebase	2003-9-19
    konqueror	2.2.2-14.7	ia64	DSA-388-1 kdebase	2003-9-19
    konsole	2.2.2-14.7	ia64	DSA-388-1 kdebase	2003-9-19
    kscreensaver	2.2.2-14.7	ia64	DSA-388-1 kdebase	2003-9-19
    libkonq-dev	2.2.2-14.7	ia64	DSA-388-1 kdebase	2003-9-19
    libkonq3	2.2.2-14.7	ia64	DSA-388-1 kdebase	2003-9-19
    kate	2.2.2-14.7	hppa	DSA-388-1 kdebase	2003-9-19
    kdebase	2.2.2-14.7	hppa	DSA-388-1 kdebase	2003-9-19
    kdebase-audiolibs	2.2.2-14.7	hppa	DSA-388-1 kdebase	2003-9-19
    kdebase-dev	2.2.2-14.7	hppa	DSA-388-1 kdebase	2003-9-19
    kdebase-libs	2.2.2-14.7	hppa	DSA-388-1 kdebase	2003-9-19
    kdm	2.2.2-14.7	hppa	DSA-388-1 kdebase	2003-9-19
    konqueror	2.2.2-14.7	hppa	DSA-388-1 kdebase	2003-9-19
    konsole	2.2.2-14.7	hppa	DSA-388-1 kdebase	2003-9-19
    kscreensaver	2.2.2-14.7	hppa	DSA-388-1 kdebase	2003-9-19
    libkonq-dev	2.2.2-14.7	hppa	DSA-388-1 kdebase	2003-9-19
    libkonq3	2.2.2-14.7	hppa	DSA-388-1 kdebase	2003-9-19
    kate	2.2.2-14.7	m68k	DSA-388-1 kdebase	2003-9-19
    kdebase	2.2.2-14.7	m68k	DSA-388-1 kdebase	2003-9-19
    kdebase-audiolibs	2.2.2-14.7	m68k	DSA-388-1 kdebase	2003-9-19
    kdebase-dev	2.2.2-14.7	m68k	DSA-388-1 kdebase	2003-9-19
    kdebase-libs	2.2.2-14.7	m68k	DSA-388-1 kdebase	2003-9-19
    kdm	2.2.2-14.7	m68k	DSA-388-1 kdebase	2003-9-19
    konqueror	2.2.2-14.7	m68k	DSA-388-1 kdebase	2003-9-19
    konsole	2.2.2-14.7	m68k	DSA-388-1 kdebase	2003-9-19
    kscreensaver	2.2.2-14.7	m68k	DSA-388-1 kdebase	2003-9-19
    libkonq-dev	2.2.2-14.7	m68k	DSA-388-1 kdebase	2003-9-19
    libkonq3	2.2.2-14.7	m68k	DSA-388-1 kdebase	2003-9-19
    kate	2.2.2-14.7	mips	DSA-388-1 kdebase	2003-9-19
    kdebase	2.2.2-14.7	mips	DSA-388-1 kdebase	2003-9-19
    kdebase-audiolibs	2.2.2-14.7	mips	DSA-388-1 kdebase	2003-9-19
    kdebase-dev	2.2.2-14.7	mips	DSA-388-1 kdebase	2003-9-19
    kdebase-libs	2.2.2-14.7	mips	DSA-388-1 kdebase	2003-9-19
    kdm	2.2.2-14.7	mips	DSA-388-1 kdebase	2003-9-19
    konqueror	2.2.2-14.7	mips	DSA-388-1 kdebase	2003-9-19
    konsole	2.2.2-14.7	mips	DSA-388-1 kdebase	2003-9-19
    kscreensaver	2.2.2-14.7	mips	DSA-388-1 kdebase	2003-9-19
    libkonq-dev	2.2.2-14.7	mips	DSA-388-1 kdebase	2003-9-19
    libkonq3	2.2.2-14.7	mips	DSA-388-1 kdebase	2003-9-19
    kate	2.2.2-14.7	mipsel	DSA-388-1 kdebase	2003-9-19
    kdebase	2.2.2-14.7	mipsel	DSA-388-1 kdebase	2003-9-19
    kdebase-audiolibs	2.2.2-14.7	mipsel	DSA-388-1 kdebase	2003-9-19
    kdebase-dev	2.2.2-14.7	mipsel	DSA-388-1 kdebase	2003-9-19
    kdebase-libs	2.2.2-14.7	mipsel	DSA-388-1 kdebase	2003-9-19
    kdm	2.2.2-14.7	mipsel	DSA-388-1 kdebase	2003-9-19
    konqueror	2.2.2-14.7	mipsel	DSA-388-1 kdebase	2003-9-19
    konsole	2.2.2-14.7	mipsel	DSA-388-1 kdebase	2003-9-19
    kscreensaver	2.2.2-14.7	mipsel	DSA-388-1 kdebase	2003-9-19
    libkonq-dev	2.2.2-14.7	mipsel	DSA-388-1 kdebase	2003-9-19
    libkonq3	2.2.2-14.7	mipsel	DSA-388-1 kdebase	2003-9-19
    kate	2.2.2-14.7	powerpc	DSA-388-1 kdebase	2003-9-19
    kdebase	2.2.2-14.7	powerpc	DSA-388-1 kdebase	2003-9-19
    kdebase-audiolibs	2.2.2-14.7	powerpc	DSA-388-1 kdebase	2003-9-19
    kdebase-dev	2.2.2-14.7	powerpc	DSA-388-1 kdebase	2003-9-19
    kdebase-libs	2.2.2-14.7	powerpc	DSA-388-1 kdebase	2003-9-19
    kdm	2.2.2-14.7	powerpc	DSA-388-1 kdebase	2003-9-19
    konqueror	2.2.2-14.7	powerpc	DSA-388-1 kdebase	2003-9-19
    konsole	2.2.2-14.7	powerpc	DSA-388-1 kdebase	2003-9-19
    kscreensaver	2.2.2-14.7	powerpc	DSA-388-1 kdebase	2003-9-19
    libkonq-dev	2.2.2-14.7	powerpc	DSA-388-1 kdebase	2003-9-19
    libkonq3	2.2.2-14.7	powerpc	DSA-388-1 kdebase	2003-9-19
    kate	2.2.2-14.7	s390	DSA-388-1 kdebase	2003-9-19
    kdebase	2.2.2-14.7	s390	DSA-388-1 kdebase	2003-9-19
    kdebase-audiolibs	2.2.2-14.7	s390	DSA-388-1 kdebase	2003-9-19
    kdebase-dev	2.2.2-14.7	s390	DSA-388-1 kdebase	2003-9-19
    kdebase-libs	2.2.2-14.7	s390	DSA-388-1 kdebase	2003-9-19
    kdm	2.2.2-14.7	s390	DSA-388-1 kdebase	2003-9-19
    konqueror	2.2.2-14.7	s390	DSA-388-1 kdebase	2003-9-19
    konsole	2.2.2-14.7	s390	DSA-388-1 kdebase	2003-9-19
    kscreensaver	2.2.2-14.7	s390	DSA-388-1 kdebase	2003-9-19
    libkonq-dev	2.2.2-14.7	s390	DSA-388-1 kdebase	2003-9-19
    libkonq3	2.2.2-14.7	s390	DSA-388-1 kdebase	2003-9-19
    kate	2.2.2-14.7	sparc	DSA-388-1 kdebase	2003-9-19
    kdebase	2.2.2-14.7	sparc	DSA-388-1 kdebase	2003-9-19
    kdebase-audiolibs	2.2.2-14.7	sparc	DSA-388-1 kdebase	2003-9-19
    kdebase-dev	2.2.2-14.7	sparc	DSA-388-1 kdebase	2003-9-19
    kdebase-libs	2.2.2-14.7	sparc	DSA-388-1 kdebase	2003-9-19
    kdm	2.2.2-14.7	sparc	DSA-388-1 kdebase	2003-9-19
    konqueror	2.2.2-14.7	sparc	DSA-388-1 kdebase	2003-9-19
    konsole	2.2.2-14.7	sparc	DSA-388-1 kdebase	2003-9-19
    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
    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
    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
    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
    imp	2.2.6-5.1	all	DSA-229-1 imp	2003-1-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
    webfs	1.17.2	ia64	DSA-392-1 webfs	2003-9-29
    webfs	1.17.2	hppa	DSA-392-1 webfs	2003-9-29
    webfs	1.17.2	m68k	DSA-392-1 webfs	2003-9-29
    webfs	1.17.2	mips	DSA-392-1 webfs	2003-9-29
    webfs	1.17.2	mipsel	DSA-392-1 webfs	2003-9-29
    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
    squirrelmail	1.2.6-1.3	all	DSA-220-1 squirrelmail	2003-1-2
    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
    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
    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
    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
    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
    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
    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
    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
    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
    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
    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
    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
    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
    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
    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
    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
    libcupsys1-dev	1.0.4-12.2	alpha	DSA-317-1 cupsys	2003-6-11
    cupsys	1.0.4-12.2	arm	DSA-317-1 cupsys	2003-6-11
    cupsys-bsd	1.0.4-12.2	arm	DSA-317-1 cupsys	2003-6-11
    libcupsys1	1.0.4-12.2	arm	DSA-317-1 cupsys	2003-6-11
    libcupsys1-dev	1.0.4-12.2	arm	DSA-317-1 cupsys	2003-6-11
    cupsys	1.0.4-12.2	i386	DSA-317-1 cupsys	2003-6-11
    cupsys-bsd	1.0.4-12.2	i386	DSA-317-1 cupsys	2003-6-11
    libcupsys1	1.0.4-12.2	i386	DSA-317-1 cupsys	2003-6-11
    libcupsys1-dev	1.0.4-12.2	i386	DSA-317-1 cupsys	2003-6-11
    cupsys	1.0.4-12.2	m68k	DSA-317-1 cupsys	2003-6-11
    cupsys-bsd	1.0.4-12.2	m68k	DSA-317-1 cupsys	2003-6-11
    libcupsys1	1.0.4-12.2	m68k	DSA-317-1 cupsys	2003-6-11
    libcupsys1-dev	1.0.4-12.2	m68k	DSA-317-1 cupsys	2003-6-11
    cupsys	1.0.4-12.2	powerpc	DSA-317-1 cupsys	2003-6-11
    cupsys-bsd	1.0.4-12.2	powerpc	DSA-317-1 cupsys	2003-6-11
    libcupsys1	1.0.4-12.2	powerpc	DSA-317-1 cupsys	2003-6-11
    libcupsys1-dev	1.0.4-12.2	powerpc	DSA-317-1 cupsys	2003-6-11
    cupsys	1.0.4-12.2	sparc	DSA-317-1 cupsys	2003-6-11
    cupsys-bsd	1.0.4-12.2	sparc	DSA-317-1 cupsys	2003-6-11
    libcupsys1	1.0.4-12.2	sparc	DSA-317-1 cupsys	2003-6-11
    libcupsys1-dev	1.0.4-12.2	sparc	DSA-317-1 cupsys	2003-6-11
    cupsys	1.1.14-5	alpha	DSA-317-1 cupsys	2003-6-11
    cupsys-bsd	1.1.14-5	alpha	DSA-317-1 cupsys	2003-6-11
    cupsys-client	1.1.14-5	alpha	DSA-317-1 cupsys	2003-6-11
    cupsys-pstoraster	1.1.14-5	alpha	DSA-317-1 cupsys	2003-6-11
    libcupsys2	1.1.14-5	alpha	DSA-317-1 cupsys	2003-6-11
    libcupsys2-dev	1.1.14-5	alpha	DSA-317-1 cupsys	2003-6-11
    cupsys	1.1.14-5	arm	DSA-317-1 cupsys	2003-6-11
    cupsys-bsd	1.1.14-5	arm	DSA-317-1 cupsys	2003-6-11
    cupsys-client	1.1.14-5	arm	DSA-317-1 cupsys	2003-6-11
    cupsys-pstoraster	1.1.14-5	arm	DSA-317-1 cupsys	2003-6-11
    libcupsys2	1.1.14-5	arm	DSA-317-1 cupsys	2003-6-11
    libcupsys2-dev	1.1.14-5	arm	DSA-317-1 cupsys	2003-6-11
    cupsys	1.1.14-5	i386	DSA-317-1 cupsys	2003-6-11
    cupsys-bsd	1.1.14-5	i386	DSA-317-1 cupsys	2003-6-11
    cupsys-client	1.1.14-5	i386	DSA-317-1 cupsys	2003-6-11
    cupsys-pstoraster	1.1.14-5	i386	DSA-317-1 cupsys	2003-6-11
    libcupsys2	1.1.14-5	i386	DSA-317-1 cupsys	2003-6-11
    libcupsys2-dev	1.1.14-5	i386	DSA-317-1 cupsys	2003-6-11
    cupsys	1.1.14-5	ia64	DSA-317-1 cupsys	2003-6-11
    cupsys-bsd	1.1.14-5	ia64	DSA-317-1 cupsys	2003-6-11
    cupsys-client	1.1.14-5	ia64	DSA-317-1 cupsys	2003-6-11
    cupsys-pstoraster	1.1.14-5	ia64	DSA-317-1 cupsys	2003-6-11
    libcupsys2	1.1.14-5	ia64	DSA-317-1 cupsys	2003-6-11
    libcupsys2-dev	1.1.14-5	ia64	DSA-317-1 cupsys	2003-6-11
    cupsys	1.1.14-5	hppa	DSA-317-1 cupsys	2003-6-11
    cupsys-bsd	1.1.14-5	hppa	DSA-317-1 cupsys	2003-6-11
    cupsys-client	1.1.14-5	hppa	DSA-317-1 cupsys	2003-6-11
    cupsys-pstoraster	1.1.14-5	hppa	DSA-317-1 cupsys	2003-6-11
    libcupsys2	1.1.14-5	hppa	DSA-317-1 cupsys	2003-6-11
    libcupsys2-dev	1.1.14-5	hppa	DSA-317-1 cupsys	2003-6-11
    cupsys	1.1.14-5	m68k	DSA-317-1 cupsys	2003-6-11
    cupsys-bsd	1.1.14-5	m68k	DSA-317-1 cupsys	2003-6-11
    cupsys-client	1.1.14-5	m68k	DSA-317-1 cupsys	2003-6-11
    cupsys-pstoraster	1.1.14-5	m68k	DSA-317-1 cupsys	2003-6-11
    libcupsys2	1.1.14-5	m68k	DSA-317-1 cupsys	2003-6-11
    libcupsys2-dev	1.1.14-5	m68k	DSA-317-1 cupsys	2003-6-11
    cupsys	1.1.14-5	mips	DSA-317-1 cupsys	2003-6-11
    cupsys-bsd	1.1.14-5	mips	DSA-317-1 cupsys	2003-6-11
    cupsys-client	1.1.14-5	mips	DSA-317-1 cupsys	2003-6-11
    cupsys-pstoraster	1.1.14-5	mips	DSA-317-1 cupsys	2003-6-11
    libcupsys2	1.1.14-5	mips	DSA-317-1 cupsys	2003-6-11
    libcupsys2-dev	1.1.14-5	mips	DSA-317-1 cupsys	2003-6-11
    cupsys	1.1.14-5	mipsel	DSA-317-1 cupsys	2003-6-11
    cupsys-bsd	1.1.14-5	mipsel	DSA-317-1 cupsys	2003-6-11
    cupsys-client	1.1.14-5	mipsel	DSA-317-1 cupsys	2003-6-11
    cupsys-pstoraster	1.1.14-5	mipsel	DSA-317-1 cupsys	2003-6-11
    libcupsys2	1.1.14-5	mipsel	DSA-317-1 cupsys	2003-6-11
    libcupsys2-dev	1.1.14-5	mipsel	DSA-317-1 cupsys	2003-6-11
    cupsys	1.1.14-5	powerpc	DSA-317-1 cupsys	2003-6-11
    cupsys-bsd	1.1.14-5	powerpc	DSA-317-1 cupsys	2003-6-11
    cupsys-client	1.1.14-5	powerpc	DSA-317-1 cupsys	2003-6-11
    cupsys-pstoraster	1.1.14-5	powerpc	DSA-317-1 cupsys	2003-6-11
    libcupsys2	1.1.14-5	powerpc	DSA-317-1 cupsys	2003-6-11
    libcupsys2-dev	1.1.14-5	powerpc	DSA-317-1 cupsys	2003-6-11
    cupsys	1.1.14-5	s390	DSA-317-1 cupsys	2003-6-11
    cupsys-bsd	1.1.14-5	s390	DSA-317-1 cupsys	2003-6-11
    cupsys-client	1.1.14-5	s390	DSA-317-1 cupsys	2003-6-11
    cupsys-pstoraster	1.1.14-5	s390	DSA-317-1 cupsys	2003-6-11
    libcupsys2	1.1.14-5	s390	DSA-317-1 cupsys	2003-6-11
    libcupsys2-dev	1.1.14-5	s390	DSA-317-1 cupsys	2003-6-11
    cupsys	1.1.14-5	sparc	DSA-317-1 cupsys	2003-6-11
    cupsys-bsd	1.1.14-5	sparc	DSA-317-1 cupsys	2003-6-11
    cupsys-client	1.1.14-5	sparc	DSA-317-1 cupsys	2003-6-11
    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
    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
    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
    minimalist	2.2-4	all	DSA-402-1 minimalist	2003-11-17
    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
    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
    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
    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
    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
    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
    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
    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
    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
    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
    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
    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
    libldap2-dev	2.0.23-6.3	alpha	DSA-227-1 openldap2	2003-01-13
    slapd	2.0.23-6.3	alpha	DSA-227-1 openldap2	2003-01-13
    ldap-gateways	2.0.23-6.3	arm	DSA-227-1 openldap2	2003-01-13
    ldap-utils	2.0.23-6.3	arm	DSA-227-1 openldap2	2003-01-13
    libldap2	2.0.23-6.3	arm	DSA-227-1 openldap2	2003-01-13
    libldap2-dev	2.0.23-6.3	arm	DSA-227-1 openldap2	2003-01-13
    slapd	2.0.23-6.3	arm	DSA-227-1 openldap2	2003-01-13
    ldap-gateways	2.0.23-6.3	i386	DSA-227-1 openldap2	2003-01-13
    ldap-utils	2.0.23-6.3	i386	DSA-227-1 openldap2	2003-01-13
    libldap2	2.0.23-6.3	i386	DSA-227-1 openldap2	2003-01-13
    libldap2-dev	2.0.23-6.3	i386	DSA-227-1 openldap2	2003-01-13
    slapd	2.0.23-6.3	i386	DSA-227-1 openldap2	2003-01-13
    ldap-gateways	2.0.23-6.3	ia64	DSA-227-1 openldap2	2003-01-13
    ldap-utils	2.0.23-6.3	ia64	DSA-227-1 openldap2	2003-01-13
    libldap2	2.0.23-6.3	ia64	DSA-227-1 openldap2	2003-01-13
    libldap2-dev	2.0.23-6.3	ia64	DSA-227-1 openldap2	2003-01-13
    slapd	2.0.23-6.3	ia64	DSA-227-1 openldap2	2003-01-13
    ldap-gateways	2.0.23-6.3	hppa	DSA-227-1 openldap2	2003-01-13
    ldap-utils	2.0.23-6.3	hppa	DSA-227-1 openldap2	2003-01-13
    libldap2	2.0.23-6.3	hppa	DSA-227-1 openldap2	2003-01-13
    libldap2-dev	2.0.23-6.3	hppa	DSA-227-1 openldap2	2003-01-13
    slapd	2.0.23-6.3	hppa	DSA-227-1 openldap2	2003-01-13
    ldap-gateways	2.0.23-6.3	m68k	DSA-227-1 openldap2	2003-01-13
    ldap-utils	2.0.23-6.3	m68k	DSA-227-1 openldap2	2003-01-13
    libldap2	2.0.23-6.3	m68k	DSA-227-1 openldap2	2003-01-13
    libldap2-dev	2.0.23-6.3	m68k	DSA-227-1 openldap2	2003-01-13
    slapd	2.0.23-6.3	m68k	DSA-227-1 openldap2	2003-01-13
    ldap-gateways	2.0.23-6.3	mips	DSA-227-1 openldap2	2003-01-13
    ldap-utils	2.0.23-6.3	mips	DSA-227-1 openldap2	2003-01-13
    libldap2	2.0.23-6.3	mips	DSA-227-1 openldap2	2003-01-13
    libldap2-dev	2.0.23-6.3	mips	DSA-227-1 openldap2	2003-01-13
    slapd	2.0.23-6.3	mips	DSA-227-1 openldap2	2003-01-13
    ldap-gateways	2.0.23-6.3	mipsel	DSA-227-1 openldap2	2003-01-13
    ldap-utils	2.0.23-6.3	mipsel	DSA-227-1 openldap2	2003-01-13
    libldap2	2.0.23-6.3	mipsel	DSA-227-1 openldap2	2003-01-13
    libldap2-dev	2.0.23-6.3	mipsel	DSA-227-1 openldap2	2003-01-13
    slapd	2.0.23-6.3	mipsel	DSA-227-1 openldap2	2003-01-13
    ldap-gateways	2.0.23-6.3	powerpc	DSA-227-1 openldap2	2003-01-13
    ldap-utils	2.0.23-6.3	powerpc	DSA-227-1 openldap2	2003-01-13
    libldap2	2.0.23-6.3	powerpc	DSA-227-1 openldap2	2003-01-13
    libldap2-dev	2.0.23-6.3	powerpc	DSA-227-1 openldap2	2003-01-13
    slapd	2.0.23-6.3	powerpc	DSA-227-1 openldap2	2003-01-13
    ldap-gateways	2.0.23-6.3	s390	DSA-227-1 openldap2	2003-01-13
    ldap-utils	2.0.23-6.3	s390	DSA-227-1 openldap2	2003-01-13
    libldap2	2.0.23-6.3	s390	DSA-227-1 openldap2	2003-01-13
    libldap2-dev	2.0.23-6.3	s390	DSA-227-1 openldap2	2003-01-13
    slapd	2.0.23-6.3	s390	DSA-227-1 openldap2	2003-01-13
    ldap-gateways	2.0.23-6.3	sparc	DSA-227-1 openldap2	2003-01-13
    ldap-utils	2.0.23-6.3	sparc	DSA-227-1 openldap2	2003-01-13
    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
    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
    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
    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
    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
    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
    mantis	0.17.1-3	all	DSA-335-1 mantis	2003-6-28
    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
    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
    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
    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
    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
    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
    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
    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
    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
    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
    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
    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
    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
    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
    maxdb-dbanalyzer	7.5.00.24-4	amd64	DSA-1190-1 maxdb-7.5.00	2006-10-4
    maxdb-dbmcli	7.5.00.24-4	amd64	DSA-1190-1 maxdb-7.5.00	2006-10-4
    maxdb-loadercli	7.5.00.24-4	amd64	DSA-1190-1 maxdb-7.5.00	2006-10-4
    maxdb-lserver	7.5.00.24-4	amd64	DSA-1190-1 maxdb-7.5.00	2006-10-4
    maxdb-server	7.5.00.24-4	amd64	DSA-1190-1 maxdb-7.5.00	2006-10-4
    maxdb-sqlcli	7.5.00.24-4	amd64	DSA-1190-1 maxdb-7.5.00	2006-10-4
    maxdb-webtools	7.5.00.24-4	amd64	DSA-1190-1 maxdb-7.5.00	2006-10-4
    python-maxdb	7.5.00.24-4	amd64	DSA-1190-1 maxdb-7.5.00	2006-10-4
    python-maxdb-loader	7.5.00.24-4	amd64	DSA-1190-1 maxdb-7.5.00	2006-10-4
    maxdb-dbanalyzer	7.5.00.24-4	i386	DSA-1190-1 maxdb-7.5.00	2006-10-4
    maxdb-dbmcli	7.5.00.24-4	i386	DSA-1190-1 maxdb-7.5.00	2006-10-4
    maxdb-loadercli	7.5.00.24-4	i386	DSA-1190-1 maxdb-7.5.00	2006-10-4
    maxdb-lserver	7.5.00.24-4	i386	DSA-1190-1 maxdb-7.5.00	2006-10-4
    maxdb-server	7.5.00.24-4	i386	DSA-1190-1 maxdb-7.5.00	2006-10-4
    maxdb-sqlcli	7.5.00.24-4	i386	DSA-1190-1 maxdb-7.5.00	2006-10-4
    maxdb-webtools	7.5.00.24-4	i386	DSA-1190-1 maxdb-7.5.00	2006-10-4
    python-maxdb	7.5.00.24-4	i386	DSA-1190-1 maxdb-7.5.00	2006-10-4
    python-maxdb-loader	7.5.00.24-4	i386	DSA-1190-1 maxdb-7.5.00	2006-10-4
    maxdb-dbanalyzer	7.5.00.24-4	ia64	DSA-1190-1 maxdb-7.5.00	2006-10-4
    maxdb-dbmcli	7.5.00.24-4	ia64	DSA-1190-1 maxdb-7.5.00	2006-10-4
    maxdb-loadercli	7.5.00.24-4	ia64	DSA-1190-1 maxdb-7.5.00	2006-10-4
    maxdb-lserver	7.5.00.24-4	ia64	DSA-1190-1 maxdb-7.5.00	2006-10-4
    maxdb-server	7.5.00.24-4	ia64	DSA-1190-1 maxdb-7.5.00	2006-10-4
    maxdb-sqlcli	7.5.00.24-4	ia64	DSA-1190-1 maxdb-7.5.00	2006-10-4
    maxdb-webtools	7.5.00.24-4	ia64	DSA-1190-1 maxdb-7.5.00	2006-10-4
    python-maxdb	7.5.00.24-4	ia64	DSA-1190-1 maxdb-7.5.00	2006-10-4
    python-maxdb-loader	7.5.00.24-4	ia64	DSA-1190-1 maxdb-7.5.00	2006-10-4
    squirrelmail	1.4.4-9	all	DSA-1154-1 squirrelmail	2006-8-20
    libtiff-opengl	3.7.2-7	alpha	DSA-1137-1 tiff	2006-8-2
    libtiff-tools	3.7.2-7	alpha	DSA-1137-1 tiff	2006-8-2
    libtiff4	3.7.2-7	alpha	DSA-1137-1 tiff	2006-8-2
    libtiff4-dev	3.7.2-7	alpha	DSA-1137-1 tiff	2006-8-2
    libtiffxx0	3.7.2-7	alpha	DSA-1137-1 tiff	2006-8-2
    libtiff-opengl	3.7.2-7	amd64	DSA-1137-1 tiff	2006-8-2
    libtiff-tools	3.7.2-7	amd64	DSA-1137-1 tiff	2006-8-2
    libtiff4	3.7.2-7	amd64	DSA-1137-1 tiff	2006-8-2
    libtiff4-dev	3.7.2-7	amd64	DSA-1137-1 tiff	2006-8-2
    libtiffxx0	3.7.2-7	amd64	DSA-1137-1 tiff	2006-8-2
    libtiff-opengl	3.7.2-7	arm	DSA-1137-1 tiff	2006-8-2
    libtiff-tools	3.7.2-7	arm	DSA-1137-1 tiff	2006-8-2
    libtiff4	3.7.2-7	arm	DSA-1137-1 tiff	2006-8-2
    libtiff4-dev	3.7.2-7	arm	DSA-1137-1 tiff	2006-8-2
    libtiffxx0	3.7.2-7	arm	DSA-1137-1 tiff	2006-8-2
    libtiff-opengl	3.7.2-7	i386	DSA-1137-1 tiff	2006-8-2
    libtiff-tools	3.7.2-7	i386	DSA-1137-1 tiff	2006-8-2
    libtiff4	3.7.2-7	i386	DSA-1137-1 tiff	2006-8-2
    libtiff4-dev	3.7.2-7	i386	DSA-1137-1 tiff	2006-8-2
    libtiffxx0	3.7.2-7	i386	DSA-1137-1 tiff	2006-8-2
    libtiff-opengl	3.7.2-7	ia64	DSA-1137-1 tiff	2006-8-2
    libtiff-tools	3.7.2-7	ia64	DSA-1137-1 tiff	2006-8-2
    libtiff4	3.7.2-7	ia64	DSA-1137-1 tiff	2006-8-2
    libtiff4-dev	3.7.2-7	ia64	DSA-1137-1 tiff	2006-8-2
    libtiffxx0	3.7.2-7	ia64	DSA-1137-1 tiff	2006-8-2
    libtiff-opengl	3.7.2-7	hppa	DSA-1137-1 tiff	2006-8-2
    libtiff-tools	3.7.2-7	hppa	DSA-1137-1 tiff	2006-8-2
    libtiff4	3.7.2-7	hppa	DSA-1137-1 tiff	2006-8-2
    libtiff4-dev	3.7.2-7	hppa	DSA-1137-1 tiff	2006-8-2
    libtiffxx0	3.7.2-7	hppa	DSA-1137-1 tiff	2006-8-2
    libtiff-opengl	3.7.2-7	m68k	DSA-1137-1 tiff	2006-8-2
    libtiff-tools	3.7.2-7	m68k	DSA-1137-1 tiff	2006-8-2
    libtiff4	3.7.2-7	m68k	DSA-1137-1 tiff	2006-8-2
    libtiff4-dev	3.7.2-7	m68k	DSA-1137-1 tiff	2006-8-2
    libtiffxx0	3.7.2-7	m68k	DSA-1137-1 tiff	2006-8-2
    libtiff-opengl	3.7.2-7	mips	DSA-1137-1 tiff	2006-8-2
    libtiff-tools	3.7.2-7	mips	DSA-1137-1 tiff	2006-8-2
    libtiff4	3.7.2-7	mips	DSA-1137-1 tiff	2006-8-2
    libtiff4-dev	3.7.2-7	mips	DSA-1137-1 tiff	2006-8-2
    libtiffxx0	3.7.2-7	mips	DSA-1137-1 tiff	2006-8-2
    libtiff-opengl	3.7.2-7	mipsel	DSA-1137-1 tiff	2006-8-2
    libtiff-tools	3.7.2-7	mipsel	DSA-1137-1 tiff	2006-8-2
    libtiff4	3.7.2-7	mipsel	DSA-1137-1 tiff	2006-8-2
    libtiff4-dev	3.7.2-7	mipsel	DSA-1137-1 tiff	2006-8-2
    libtiffxx0	3.7.2-7	mipsel	DSA-1137-1 tiff	2006-8-2
    libtiff-opengl	3.7.2-7	powerpc	DSA-1137-1 tiff	2006-8-2
    libtiff-tools	3.7.2-7	powerpc	DSA-1137-1 tiff	2006-8-2
    libtiff4	3.7.2-7	powerpc	DSA-1137-1 tiff	2006-8-2
    libtiff4-dev	3.7.2-7	powerpc	DSA-1137-1 tiff	2006-8-2
    libtiffxx0	3.7.2-7	powerpc	DSA-1137-1 tiff	2006-8-2
    libtiff-opengl	3.7.2-7	s390	DSA-1137-1 tiff	2006-8-2
    libtiff-tools	3.7.2-7	s390	DSA-1137-1 tiff	2006-8-2
    libtiff4	3.7.2-7	s390	DSA-1137-1 tiff	2006-8-2
    libtiff4-dev	3.7.2-7	s390	DSA-1137-1 tiff	2006-8-2
    libtiffxx0	3.7.2-7	s390	DSA-1137-1 tiff	2006-8-2
    libtiff-opengl	3.7.2-7	sparc	DSA-1137-1 tiff	2006-8-2
    libtiff-tools	3.7.2-7	sparc	DSA-1137-1 tiff	2006-8-2
    libtiff4	3.7.2-7	sparc	DSA-1137-1 tiff	2006-8-2
    libtiff4-dev	3.7.2-7	sparc	DSA-1137-1 tiff	2006-8-2
    libtiffxx0	3.7.2-7	sparc	DSA-1137-1 tiff	2006-8-2
    libapache-auth-ldap	1.6.0-3.1	alpha	DSA-952-1 libapache-auth-ldap	2006-1-23
    libapache-auth-ldap	1.6.0-3.1	arm	DSA-952-1 libapache-auth-ldap	2006-1-23
    libapache-auth-ldap	1.6.0-3.1	i386	DSA-952-1 libapache-auth-ldap	2006-1-23
    libapache-auth-ldap	1.6.0-3.1	ia64	DSA-952-1 libapache-auth-ldap	2006-1-23
    libapache-auth-ldap	1.6.0-3.1	hppa	DSA-952-1 libapache-auth-ldap	2006-1-23
    libapache-auth-ldap	1.6.0-3.1	m68k	DSA-952-1 libapache-auth-ldap	2006-1-23
    libapache-auth-ldap	1.6.0-3.1	mips	DSA-952-1 libapache-auth-ldap	2006-1-23
    libapache-auth-ldap	1.6.0-3.1	mipsel	DSA-952-1 libapache-auth-ldap	2006-1-23
    libapache-auth-ldap	1.6.0-3.1	powerpc	DSA-952-1 libapache-auth-ldap	2006-1-23
    libapache-auth-ldap	1.6.0-3.1	s390	DSA-952-1 libapache-auth-ldap	2006-1-23
    libapache-auth-ldap	1.6.0-3.1	sparc	DSA-952-1 libapache-auth-ldap	2006-1-23
    libapache-auth-ldap	1.6.0-8.1	alpha	DSA-952-1 libapache-auth-ldap	2006-1-23
    libapache-auth-ldap	1.6.0-8.1	amd64	DSA-952-1 libapache-auth-ldap	2006-1-23
    libapache-auth-ldap	1.6.0-8.1	arm	DSA-952-1 libapache-auth-ldap	2006-1-23
    libapache-auth-ldap	1.6.0-8.1	i386	DSA-952-1 libapache-auth-ldap	2006-1-23
    libapache-auth-ldap	1.6.0-8.1	ia64	DSA-952-1 libapache-auth-ldap	2006-1-23
    libapache-auth-ldap	1.6.0-8.1	hppa	DSA-952-1 libapache-auth-ldap	2006-1-23
    libapache-auth-ldap	1.6.0-8.1	m68k	DSA-952-1 libapache-auth-ldap	2006-1-23
    libapache-auth-ldap	1.6.0-8.1	mips	DSA-952-1 libapache-auth-ldap	2006-1-23
    libapache-auth-ldap	1.6.0-8.1	mipsel	DSA-952-1 libapache-auth-ldap	2006-1-23
    libapache-auth-ldap	1.6.0-8.1	powerpc	DSA-952-1 libapache-auth-ldap	2006-1-23
    libapache-auth-ldap	1.6.0-8.1	s390	DSA-952-1 libapache-auth-ldap	2006-1-23
    libapache-auth-ldap	1.6.0-8.1	sparc	DSA-952-1 libapache-auth-ldap	2006-1-23
    kernel-patch-vserver	1.9.5.6	all	DSA-1060-1 kernel-patch-vserver	2006-5-19
    python-albatross-common	1.20-2	all	DSA-942-1 albatross	2006-1-16
    python-albatross-doc	1.20-2	all	DSA-942-1 albatross	2006-1-16
    python-albatross	1.20-2	all	DSA-942-1 albatross	2006-1-16
    sudo	1.6.6-1.6	alpha	DSA-946-2 sudo	2006-1-20, 2006-4-8
    sudo	1.6.6-1.6	arm	DSA-946-2 sudo	2006-1-20, 2006-4-8
    sudo	1.6.6-1.6	i386	DSA-946-2 sudo	2006-1-20, 2006-4-8
    sudo	1.6.6-1.6	ia64	DSA-946-2 sudo	2006-1-20, 2006-4-8
    sudo	1.6.6-1.6	hppa	DSA-946-2 sudo	2006-1-20, 2006-4-8
    sudo	1.6.6-1.6	m68k	DSA-946-2 sudo	2006-1-20, 2006-4-8
    sudo	1.6.6-1.6	mips	DSA-946-2 sudo	2006-1-20, 2006-4-8
    sudo	1.6.6-1.6	mipsel	DSA-946-2 sudo	2006-1-20, 2006-4-8
    sudo	1.6.6-1.6	powerpc	DSA-946-2 sudo	2006-1-20, 2006-4-8
    sudo	1.6.6-1.6	s390	DSA-946-2 sudo	2006-1-20, 2006-4-8
    sudo	1.6.6-1.6	sparc	DSA-946-2 sudo	2006-1-20, 2006-4-8
    unalz	0.30.1	alpha	DSA-959-1 unalz	2006-1-30
    unalz	0.30.1	amd64	DSA-959-1 unalz	2006-1-30
    unalz	0.30.1	arm	DSA-959-1 unalz	2006-1-30
    unalz	0.30.1	i386	DSA-959-1 unalz	2006-1-30
    unalz	0.30.1	ia64	DSA-959-1 unalz	2006-1-30
    unalz	0.30.1	hppa	DSA-959-1 unalz	2006-1-30
    unalz	0.30.1	m68k	DSA-959-1 unalz	2006-1-30
    unalz	0.30.1	mips	DSA-959-1 unalz	2006-1-30
    unalz	0.30.1	mipsel	DSA-959-1 unalz	2006-1-30
    unalz	0.30.1	powerpc	DSA-959-1 unalz	2006-1-30
    unalz	0.30.1	s390	DSA-959-1 unalz	2006-1-30
    unalz	0.30.1	sparc	DSA-959-1 unalz	2006-1-30
    libnetpbm9	9.20-8.6	alpha	DSA-1021-1 netpbm-free	2006-3-28
    libnetpbm9-dev	9.20-8.6	alpha	DSA-1021-1 netpbm-free	2006-3-28
    netpbm	9.20-8.6	alpha	DSA-1021-1 netpbm-free	2006-3-28
    libnetpbm9	9.20-8.6	arm	DSA-1021-1 netpbm-free	2006-3-28
    libnetpbm9-dev	9.20-8.6	arm	DSA-1021-1 netpbm-free	2006-3-28
    netpbm	9.20-8.6	arm	DSA-1021-1 netpbm-free	2006-3-28
    libnetpbm9	9.20-8.6	i386	DSA-1021-1 netpbm-free	2006-3-28
    libnetpbm9-dev	9.20-8.6	i386	DSA-1021-1 netpbm-free	2006-3-28
    netpbm	9.20-8.6	i386	DSA-1021-1 netpbm-free	2006-3-28
    libnetpbm9	9.20-8.6	ia64	DSA-1021-1 netpbm-free	2006-3-28
    libnetpbm9-dev	9.20-8.6	ia64	DSA-1021-1 netpbm-free	2006-3-28
    netpbm	9.20-8.6	ia64	DSA-1021-1 netpbm-free	2006-3-28
    libnetpbm9	9.20-8.6	hppa	DSA-1021-1 netpbm-free	2006-3-28
    libnetpbm9-dev	9.20-8.6	hppa	DSA-1021-1 netpbm-free	2006-3-28
    netpbm	9.20-8.6	hppa	DSA-1021-1 netpbm-free	2006-3-28
    libnetpbm9	9.20-8.6	m68k	DSA-1021-1 netpbm-free	2006-3-28
    libnetpbm9-dev	9.20-8.6	m68k	DSA-1021-1 netpbm-free	2006-3-28
    netpbm	9.20-8.6	m68k	DSA-1021-1 netpbm-free	2006-3-28
    libnetpbm9	9.20-8.6	mips	DSA-1021-1 netpbm-free	2006-3-28
    libnetpbm9-dev	9.20-8.6	mips	DSA-1021-1 netpbm-free	2006-3-28
    netpbm	9.20-8.6	mips	DSA-1021-1 netpbm-free	2006-3-28
    libnetpbm9	9.20-8.6	mipsel	DSA-1021-1 netpbm-free	2006-3-28
    libnetpbm9-dev	9.20-8.6	mipsel	DSA-1021-1 netpbm-free	2006-3-28
    netpbm	9.20-8.6	mipsel	DSA-1021-1 netpbm-free	2006-3-28
    libnetpbm9	9.20-8.6	powerpc	DSA-1021-1 netpbm-free	2006-3-28
    libnetpbm9-dev	9.20-8.6	powerpc	DSA-1021-1 netpbm-free	2006-3-28
    netpbm	9.20-8.6	powerpc	DSA-1021-1 netpbm-free	2006-3-28
    libnetpbm9	9.20-8.6	s390	DSA-1021-1 netpbm-free	2006-3-28
    libnetpbm9-dev	9.20-8.6	s390	DSA-1021-1 netpbm-free	2006-3-28
    netpbm	9.20-8.6	s390	DSA-1021-1 netpbm-free	2006-3-28
    libnetpbm9	9.20-8.6	sparc	DSA-1021-1 netpbm-free	2006-3-28
    libnetpbm9-dev	9.20-8.6	sparc	DSA-1021-1 netpbm-free	2006-3-28
    netpbm	9.20-8.6	sparc	DSA-1021-1 netpbm-free	2006-3-28
    mysql-common	3.23.49-8.15	all	DSA-1071-1 mysql	2006-5-22
    mysql-doc	3.23.49-8.5	all	DSA-1071-1 mysql	2006-5-22
    libmysqlclient10	3.23.49-8.15	alpha	DSA-1071-1 mysql	2006-5-22
    libmysqlclient10-dev	3.23.49-8.15	alpha	DSA-1071-1 mysql	2006-5-22
    mysql-client	3.23.49-8.15	alpha	DSA-1071-1 mysql	2006-5-22
    mysql-server	3.23.49-8.15	alpha	DSA-1071-1 mysql	2006-5-22
    libmysqlclient10	3.23.49-8.15	arm	DSA-1071-1 mysql	2006-5-22
    libmysqlclient10-dev	3.23.49-8.15	arm	DSA-1071-1 mysql	2006-5-22
    mysql-client	3.23.49-8.15	arm	DSA-1071-1 mysql	2006-5-22
    mysql-server	3.23.49-8.15	arm	DSA-1071-1 mysql	2006-5-22
    libmysqlclient10	3.23.49-8.15	i386	DSA-1071-1 mysql	2006-5-22
    libmysqlclient10-dev	3.23.49-8.15	i386	DSA-1071-1 mysql	2006-5-22
    mysql-client	3.23.49-8.15	i386	DSA-1071-1 mysql	2006-5-22
    mysql-server	3.23.49-8.15	i386	DSA-1071-1 mysql	2006-5-22
    libmysqlclient10	3.23.49-8.15	ia64	DSA-1071-1 mysql	2006-5-22
    libmysqlclient10-dev	3.23.49-8.15	ia64	DSA-1071-1 mysql	2006-5-22
    mysql-client	3.23.49-8.15	ia64	DSA-1071-1 mysql	2006-5-22
    mysql-server	3.23.49-8.15	ia64	DSA-1071-1 mysql	2006-5-22
    libmysqlclient10	3.23.49-8.15	hppa	DSA-1071-1 mysql	2006-5-22
    libmysqlclient10-dev	3.23.49-8.15	hppa	DSA-1071-1 mysql	2006-5-22
    mysql-client	3.23.49-8.15	hppa	DSA-1071-1 mysql	2006-5-22
    mysql-server	3.23.49-8.15	hppa	DSA-1071-1 mysql	2006-5-22
    libmysqlclient10	3.23.49-8.15	m68k	DSA-1071-1 mysql	2006-5-22
    libmysqlclient10-dev	3.23.49-8.15	m68k	DSA-1071-1 mysql	2006-5-22
    mysql-client	3.23.49-8.15	m68k	DSA-1071-1 mysql	2006-5-22
    mysql-server	3.23.49-8.15	m68k	DSA-1071-1 mysql	2006-5-22
    libmysqlclient10	3.23.49-8.15	mips	DSA-1071-1 mysql	2006-5-22
    libmysqlclient10-dev	3.23.49-8.15	mips	DSA-1071-1 mysql	2006-5-22
    mysql-client	3.23.49-8.15	mips	DSA-1071-1 mysql	2006-5-22
    mysql-server	3.23.49-8.15	mips	DSA-1071-1 mysql	2006-5-22
    libmysqlclient10	3.23.49-8.15	mipsel	DSA-1071-1 mysql	2006-5-22
    libmysqlclient10-dev	3.23.49-8.15	mipsel	DSA-1071-1 mysql	2006-5-22
    mysql-client	3.23.49-8.15	mipsel	DSA-1071-1 mysql	2006-5-22
    mysql-server	3.23.49-8.15	mipsel	DSA-1071-1 mysql	2006-5-22
    libmysqlclient10	3.23.49-8.15	powerpc	DSA-1071-1 mysql	2006-5-22
    libmysqlclient10-dev	3.23.49-8.15	powerpc	DSA-1071-1 mysql	2006-5-22
    mysql-client	3.23.49-8.15	powerpc	DSA-1071-1 mysql	2006-5-22
    mysql-server	3.23.49-8.15	powerpc	DSA-1071-1 mysql	2006-5-22
    libmysqlclient10	3.23.49-8.15	s390	DSA-1071-1 mysql	2006-5-22
    libmysqlclient10-dev	3.23.49-8.15	s390	DSA-1071-1 mysql	2006-5-22
    mysql-client	3.23.49-8.15	s390	DSA-1071-1 mysql	2006-5-22
    mysql-server	3.23.49-8.15	s390	DSA-1071-1 mysql	2006-5-22
    libmysqlclient10	3.23.49-8.15	sparc	DSA-1071-1 mysql	2006-5-22
    libmysqlclient10-dev	3.23.49-8.15	sparc	DSA-1071-1 mysql	2006-5-22
    mysql-client	3.23.49-8.15	sparc	DSA-1071-1 mysql	2006-5-22
    mysql-server	3.23.49-8.15	sparc	DSA-1071-1 mysql	2006-5-22
    tar	1.14-2.1	alpha	DSA-987-1 tar	2006-3-7
    tar	1.14-2.1	amd64	DSA-987-1 tar	2006-3-7
    tar	1.14-2.1	arm	DSA-987-1 tar	2006-3-7
    tar	1.14-2.1	i386	DSA-987-1 tar	2006-3-7
    tar	1.14-2.1	ia64	DSA-987-1 tar	2006-3-7
    tar	1.14-2.1	hppa	DSA-987-1 tar	2006-3-7
    tar	1.14-2.1	m68k	DSA-987-1 tar	2006-3-7
    tar	1.14-2.1	mips	DSA-987-1 tar	2006-3-7
    tar	1.14-2.1	mipsel	DSA-987-1 tar	2006-3-7
    tar	1.14-2.1	powerpc	DSA-987-1 tar	2006-3-7
    tar	1.14-2.1	s390	DSA-987-1 tar	2006-3-7
    tar	1.14-2.1	sparc	DSA-987-1 tar	2006-3-7
    kernel-patch-vserver	1.9.5.5	all	DSA-1011-1 kernel-patch-vserver	2005-3-21
    wine-doc	0.0.20050310-1.2	all	DSA-954-1 wine	2006-1-25
    libwine	0.0.20050310-1.2	i386	DSA-954-1 wine	2006-1-25
    libwine-alsa	0.0.20050310-1.2	i386	DSA-954-1 wine	2006-1-25
    libwine-arts	0.0.20050310-1.2	i386	DSA-954-1 wine	2006-1-25
    libwine-capi	0.0.20050310-1.2	i386	DSA-954-1 wine	2006-1-25
    libwine-dev	0.0.20050310-1.2	i386	DSA-954-1 wine	2006-1-25
    libwine-jack	0.0.20050310-1.2	i386	DSA-954-1 wine	2006-1-25
    libwine-nas	0.0.20050310-1.2	i386	DSA-954-1 wine	2006-1-25
    libwine-print	0.0.20050310-1.2	i386	DSA-954-1 wine	2006-1-25
    libwine-twain	0.0.20050310-1.2	i386	DSA-954-1 wine	2006-1-25
    wine	0.0.20050310-1.2	i386	DSA-954-1 wine	2006-1-25
    wine-utils	0.0.20050310-1.2	i386	DSA-954-1 wine	2006-1-25
    drupal	4.5.3-5	all	DSA-958-1 drupal	2006-1-27
    sendmail-doc	8.12.3-7.2	all	DSA-1015-1 sendmail	2006-3-23
    libmilter-dev	8.12.3-7.2	alpha	DSA-1015-1 sendmail	2006-3-23
    sendmail	8.12.3-7.2	alpha	DSA-1015-1 sendmail	2006-3-23
    libmilter-dev	8.12.3-7.2	arm	DSA-1015-1 sendmail	2006-3-23
    sendmail	8.12.3-7.2	arm	DSA-1015-1 sendmail	2006-3-23
    libmilter-dev	8.12.3-7.2	i386	DSA-1015-1 sendmail	2006-3-23
    sendmail	8.12.3-7.2	i386	DSA-1015-1 sendmail	2006-3-23
    libmilter-dev	8.12.3-7.2	ia64	DSA-1015-1 sendmail	2006-3-23
    sendmail	8.12.3-7.2	ia64	DSA-1015-1 sendmail	2006-3-23
    libmilter-dev	8.12.3-7.2	hppa	DSA-1015-1 sendmail	2006-3-23
    sendmail	8.12.3-7.2	hppa	DSA-1015-1 sendmail	2006-3-23
    libmilter-dev	8.12.3-7.2	m68k	DSA-1015-1 sendmail	2006-3-23
    sendmail	8.12.3-7.2	m68k	DSA-1015-1 sendmail	2006-3-23
    libmilter-dev	8.12.3-7.2	mips	DSA-1015-1 sendmail	2006-3-23
    sendmail	8.12.3-7.2	mips	DSA-1015-1 sendmail	2006-3-23
    libmilter-dev	8.12.3-7.2	mipsel	DSA-1015-1 sendmail	2006-3-23
    sendmail	8.12.3-7.2	mipsel	DSA-1015-1 sendmail	2006-3-23
    libmilter-dev	8.12.3-7.2	powerpc	DSA-1015-1 sendmail	2006-3-23
    sendmail	8.12.3-7.2	powerpc	DSA-1015-1 sendmail	2006-3-23
    libmilter-dev	8.12.3-7.2	s390	DSA-1015-1 sendmail	2006-3-23
    sendmail	8.12.3-7.2	s390	DSA-1015-1 sendmail	2006-3-23
    libmilter-dev	8.12.3-7.2	sparc	DSA-1015-1 sendmail	2006-3-23
    sendmail	8.12.3-7.2	sparc	DSA-1015-1 sendmail	2006-3-23
    libaldmb0	0.9.2-6	alpha	DSA-1123-1 libdumb	2006-7-24
    libaldmb0-dev	0.9.2-6	alpha	DSA-1123-1 libdumb	2006-7-24
    libdumb0	0.9.2-6	alpha	DSA-1123-1 libdumb	2006-7-24
    libdumb0-dev	0.9.2-6	alpha	DSA-1123-1 libdumb	2006-7-24
    libaldmb0	0.9.2-6	amd64	DSA-1123-1 libdumb	2006-7-24
    libaldmb0-dev	0.9.2-6	amd64	DSA-1123-1 libdumb	2006-7-24
    libdumb0	0.9.2-6	amd64	DSA-1123-1 libdumb	2006-7-24
    libdumb0-dev	0.9.2-6	amd64	DSA-1123-1 libdumb	2006-7-24
    libaldmb0	0.9.2-6	arm	DSA-1123-1 libdumb	2006-7-24
    libaldmb0-dev	0.9.2-6	arm	DSA-1123-1 libdumb	2006-7-24
    libdumb0	0.9.2-6	arm	DSA-1123-1 libdumb	2006-7-24
    libdumb0-dev	0.9.2-6	arm	DSA-1123-1 libdumb	2006-7-24
    libaldmb0	0.9.2-6	i386	DSA-1123-1 libdumb	2006-7-24
    libaldmb0-dev	0.9.2-6	i386	DSA-1123-1 libdumb	2006-7-24
    libdumb0	0.9.2-6	i386	DSA-1123-1 libdumb	2006-7-24
    libdumb0-dev	0.9.2-6	i386	DSA-1123-1 libdumb	2006-7-24
    libaldmb0	0.9.2-6	ia64	DSA-1123-1 libdumb	2006-7-24
    libaldmb0-dev	0.9.2-6	ia64	DSA-1123-1 libdumb	2006-7-24
    libdumb0	0.9.2-6	ia64	DSA-1123-1 libdumb	2006-7-24
    libdumb0-dev	0.9.2-6	ia64	DSA-1123-1 libdumb	2006-7-24
    libaldmb0	0.9.2-6	hppa	DSA-1123-1 libdumb	2006-7-24
    libaldmb0-dev	0.9.2-6	hppa	DSA-1123-1 libdumb	2006-7-24
    libdumb0	0.9.2-6	hppa	DSA-1123-1 libdumb	2006-7-24
    libdumb0-dev	0.9.2-6	hppa	DSA-1123-1 libdumb	2006-7-24
    libaldmb0	0.9.2-6	m68k	DSA-1123-1 libdumb	2006-7-24
    libaldmb0-dev	0.9.2-6	m68k	DSA-1123-1 libdumb	2006-7-24
    libdumb0	0.9.2-6	m68k	DSA-1123-1 libdumb	2006-7-24
    libdumb0-dev	0.9.2-6	m68k	DSA-1123-1 libdumb	2006-7-24
    libaldmb0	0.9.2-6	mips	DSA-1123-1 libdumb	2006-7-24
    libaldmb0-dev	0.9.2-6	mips	DSA-1123-1 libdumb	2006-7-24
    libdumb0	0.9.2-6	mips	DSA-1123-1 libdumb	2006-7-24
    libdumb0-dev	0.9.2-6	mips	DSA-1123-1 libdumb	2006-7-24
    libaldmb0	0.9.2-6	mipsel	DSA-1123-1 libdumb	2006-7-24
    libaldmb0-dev	0.9.2-6	mipsel	DSA-1123-1 libdumb	2006-7-24
    libdumb0	0.9.2-6	mipsel	DSA-1123-1 libdumb	2006-7-24
    libdumb0-dev	0.9.2-6	mipsel	DSA-1123-1 libdumb	2006-7-24
    libaldmb0	0.9.2-6	powerpc	DSA-1123-1 libdumb	2006-7-24
    libaldmb0-dev	0.9.2-6	powerpc	DSA-1123-1 libdumb	2006-7-24
    libdumb0	0.9.2-6	powerpc	DSA-1123-1 libdumb	2006-7-24
    libdumb0-dev	0.9.2-6	powerpc	DSA-1123-1 libdumb	2006-7-24
    libaldmb0	0.9.2-6	s390	DSA-1123-1 libdumb	2006-7-24
    libaldmb0-dev	0.9.2-6	s390	DSA-1123-1 libdumb	2006-7-24
    libdumb0	0.9.2-6	s390	DSA-1123-1 libdumb	2006-7-24
    libdumb0-dev	0.9.2-6	s390	DSA-1123-1 libdumb	2006-7-24
    libaldmb0	0.9.2-6	sparc	DSA-1123-1 libdumb	2006-7-24
    libaldmb0-dev	0.9.2-6	sparc	DSA-1123-1 libdumb	2006-7-24
    libdumb0	0.9.2-6	sparc	DSA-1123-1 libdumb	2006-7-24
    libdumb0-dev	0.9.2-6	sparc	DSA-1123-1 libdumb	2006-7-24
    bmv	1.2-14.3	i386	DSA-981-1 bmv	2006-2-26
    kernel-image-apus	2.4.17-6	powerpc	DSA-1082-1 kernel-source-2.4.17	2006-5-29
    elinks	0.10.4-7.1	alpha	DSA-1228-1 elinks	2006-12-5
    elinks-lite	0.10.4-7.1	alpha	DSA-1228-1 elinks	2006-12-5
    elinks	0.10.4-7.1	amd64	DSA-1228-1 elinks	2006-12-5
    elinks-lite	0.10.4-7.1	amd64	DSA-1228-1 elinks	2006-12-5
    elinks	0.10.4-7.1	arm	DSA-1228-1 elinks	2006-12-5
    elinks-lite	0.10.4-7.1	arm	DSA-1228-1 elinks	2006-12-5
    elinks	0.10.4-7.1	hppa	DSA-1228-1 elinks	2006-12-5
    elinks-lite	0.10.4-7.1	hppa	DSA-1228-1 elinks	2006-12-5
    elinks	0.10.4-7.1	i386	DSA-1228-1 elinks	2006-12-5
    elinks-lite	0.10.4-7.1	i386	DSA-1228-1 elinks	2006-12-5
    elinks	0.10.4-7.1	ia64	DSA-1228-1 elinks	2006-12-5
    elinks-lite	0.10.4-7.1	ia64	DSA-1228-1 elinks	2006-12-5
    elinks	0.10.4-7.1	m68k	DSA-1228-1 elinks	2006-12-5
    elinks-lite	0.10.4-7.1	m68k	DSA-1228-1 elinks	2006-12-5
    elinks	0.10.4-7.1	mips	DSA-1228-1 elinks	2006-12-5
    elinks-lite	0.10.4-7.1	mips	DSA-1228-1 elinks	2006-12-5
    elinks	0.10.4-7.1	mipsel	DSA-1228-1 elinks	2006-12-5
    elinks-lite	0.10.4-7.1	mipsel	DSA-1228-1 elinks	2006-12-5
    elinks	0.10.4-7.1	powerpc	DSA-1228-1 elinks	2006-12-5
    elinks-lite	0.10.4-7.1	powerpc	DSA-1228-1 elinks	2006-12-5
    elinks	0.10.4-7.1	s390	DSA-1228-1 elinks	2006-12-5
    elinks-lite	0.10.4-7.1	s390	DSA-1228-1 elinks	2006-12-5
    elinks	0.10.4-7.1	sparc	DSA-1228-1 elinks	2006-12-5
    elinks-lite	0.10.4-7.1	sparc	DSA-1228-1 elinks	2006-12-5
    quagga-doc	0.98.3-7.2	all	DSA-1059-1 quagga	2006-5-19
    quagga	0.98.3-7.2	alpha	DSA-1059-1 quagga	2006-5-19
    quagga	0.98.3-7.2	amd64	DSA-1059-1 quagga	2006-5-19
    quagga	0.98.3-7.2	arm	DSA-1059-1 quagga	2006-5-19
    quagga	0.98.3-7.2	i386	DSA-1059-1 quagga	2006-5-19
    quagga	0.98.3-7.2	ia64	DSA-1059-1 quagga	2006-5-19
    quagga	0.98.3-7.2	hppa	DSA-1059-1 quagga	2006-5-19
    quagga	0.98.3-7.2	m68k	DSA-1059-1 quagga	2006-5-19
    quagga	0.98.3-7.2	mips	DSA-1059-1 quagga	2006-5-19
    quagga	0.98.3-7.2	mipsel	DSA-1059-1 quagga	2006-5-19
    quagga	0.98.3-7.2	powerpc	DSA-1059-1 quagga	2006-5-19
    quagga	0.98.3-7.2	s390	DSA-1059-1 quagga	2006-5-19
    quagga	0.98.3-7.2	sparc	DSA-1059-1 quagga	2006-5-19
    tar	1.14-2.3	alpha	DSA-1223-1 tar	2006-12-01
    tar	1.14-2.3	amd64	DSA-1223-1 tar	2006-12-01
    tar	1.14-2.3	arm	DSA-1223-1 tar	2006-12-01
    tar	1.14-2.3	hppa	DSA-1223-1 tar	2006-12-01
    tar	1.14-2.3	i386	DSA-1223-1 tar	2006-12-01
    tar	1.14-2.3	ia64	DSA-1223-1 tar	2006-12-01
    tar	1.14-2.3	m68k	DSA-1223-1 tar	2006-12-01
    tar	1.14-2.3	mips	DSA-1223-1 tar	2006-12-01
    tar	1.14-2.3	mipsel	DSA-1223-1 tar	2006-12-01
    tar	1.14-2.3	powerpc	DSA-1223-1 tar	2006-12-01
    tar	1.14-2.3	s390	DSA-1223-1 tar	2006-12-01
    tar	1.14-2.3	sparc	DSA-1223-1 tar	2006-12-01
    xpdf-common	3.00-13.6	all	DSA-984-1 xpdf	2006-3-2
    xpdf	3.00-13.6	all	DSA-984-1 xpdf	2006-3-2
    xpdf-reader	3.00-13.6	alpha	DSA-984-1 xpdf	2006-3-2
    xpdf-utils	3.00-13.6	alpha	DSA-984-1 xpdf	2006-3-2
    xpdf-reader	3.00-13.6	amd64	DSA-984-1 xpdf	2006-3-2
    xpdf-utils	3.00-13.6	amd64	DSA-984-1 xpdf	2006-3-2
    xpdf-reader	3.00-13.6	arm	DSA-984-1 xpdf	2006-3-2
    xpdf-utils	3.00-13.6	arm	DSA-984-1 xpdf	2006-3-2
    xpdf-reader	3.00-13.6	i386	DSA-984-1 xpdf	2006-3-2
    xpdf-utils	3.00-13.6	i386	DSA-984-1 xpdf	2006-3-2
    xpdf-reader	3.00-13.6	ia64	DSA-984-1 xpdf	2006-3-2
    xpdf-utils	3.00-13.6	ia64	DSA-984-1 xpdf	2006-3-2
    xpdf-reader	3.00-13.6	hppa	DSA-984-1 xpdf	2006-3-2
    xpdf-utils	3.00-13.6	hppa	DSA-984-1 xpdf	2006-3-2
    xpdf-reader	3.00-13.6	m68k	DSA-984-1 xpdf	2006-3-2
    xpdf-utils	3.00-13.6	m68k	DSA-984-1 xpdf	2006-3-2
    xpdf-reader	3.00-13.6	mips	DSA-984-1 xpdf	2006-3-2
    xpdf-utils	3.00-13.6	mips	DSA-984-1 xpdf	2006-3-2
    xpdf-reader	3.00-13.6	mipsel	DSA-984-1 xpdf	2006-3-2
    xpdf-utils	3.00-13.6	mipsel	DSA-984-1 xpdf	2006-3-2
    xpdf-reader	3.00-13.6	powerpc	DSA-984-1 xpdf	2006-3-2
    xpdf-utils	3.00-13.6	powerpc	DSA-984-1 xpdf	2006-3-2
    xpdf-reader	3.00-13.6	s390	DSA-984-1 xpdf	2006-3-2
    xpdf-utils	3.00-13.6	s390	DSA-984-1 xpdf	2006-3-2
    xpdf-reader	3.00-13.6	sparc	DSA-984-1 xpdf	2006-3-2
    xpdf-utils	3.00-13.6	sparc	DSA-984-1 xpdf	2006-3-2
    freetype2-demos	2.1.7-6	alpha	DSA-1178-1 freetype	2006-9-16
    libfreetype6	2.1.7-6	alpha	DSA-1178-1 freetype	2006-9-16
    libfreetype6-dev	2.1.7-6	alpha	DSA-1178-1 freetype	2006-9-16
    freetype2-demos	2.1.7-6	amd64	DSA-1178-1 freetype	2006-9-16
    libfreetype6	2.1.7-6	amd64	DSA-1178-1 freetype	2006-9-16
    libfreetype6-dev	2.1.7-6	amd64	DSA-1178-1 freetype	2006-9-16
    freetype2-demos	2.1.7-6	arm	DSA-1178-1 freetype	2006-9-16
    libfreetype6	2.1.7-6	arm	DSA-1178-1 freetype	2006-9-16
    libfreetype6-dev	2.1.7-6	arm	DSA-1178-1 freetype	2006-9-16
    freetype2-demos	2.1.7-6	hppa	DSA-1178-1 freetype	2006-9-16
    libfreetype6	2.1.7-6	hppa	DSA-1178-1 freetype	2006-9-16
    libfreetype6-dev	2.1.7-6	hppa	DSA-1178-1 freetype	2006-9-16
    freetype2-demos	2.1.7-6	i386	DSA-1178-1 freetype	2006-9-16
    libfreetype6	2.1.7-6	i386	DSA-1178-1 freetype	2006-9-16
    libfreetype6-dev	2.1.7-6	i386	DSA-1178-1 freetype	2006-9-16
    freetype2-demos	2.1.7-6	ia64	DSA-1178-1 freetype	2006-9-16
    libfreetype6	2.1.7-6	ia64	DSA-1178-1 freetype	2006-9-16
    libfreetype6-dev	2.1.7-6	ia64	DSA-1178-1 freetype	2006-9-16
    freetype2-demos	2.1.7-6	m68k	DSA-1178-1 freetype	2006-9-16
    libfreetype6	2.1.7-6	m68k	DSA-1178-1 freetype	2006-9-16
    libfreetype6-dev	2.1.7-6	m68k	DSA-1178-1 freetype	2006-9-16
    freetype2-demos	2.1.7-6	mips	DSA-1178-1 freetype	2006-9-16
    libfreetype6	2.1.7-6	mips	DSA-1178-1 freetype	2006-9-16
    libfreetype6-dev	2.1.7-6	mips	DSA-1178-1 freetype	2006-9-16
    freetype2-demos	2.1.7-6	mipsel	DSA-1178-1 freetype	2006-9-16
    libfreetype6	2.1.7-6	mipsel	DSA-1178-1 freetype	2006-9-16
    libfreetype6-dev	2.1.7-6	mipsel	DSA-1178-1 freetype	2006-9-16
    freetype2-demos	2.1.7-6	powerpc	DSA-1178-1 freetype	2006-9-16
    libfreetype6	2.1.7-6	powerpc	DSA-1178-1 freetype	2006-9-16
    libfreetype6-dev	2.1.7-6	powerpc	DSA-1178-1 freetype	2006-9-16
    freetype2-demos	2.1.7-6	s390	DSA-1178-1 freetype	2006-9-16
    libfreetype6	2.1.7-6	s390	DSA-1178-1 freetype	2006-9-16
    libfreetype6-dev	2.1.7-6	s390	DSA-1178-1 freetype	2006-9-16
    freetype2-demos	2.1.7-6	sparc	DSA-1178-1 freetype	2006-9-16
    libfreetype6	2.1.7-6	sparc	DSA-1178-1 freetype	2006-9-16
    libfreetype6-dev	2.1.7-6	sparc	DSA-1178-1 freetype	2006-9-16
    libtiff-opengl	3.7.2-5	alpha	DSA-1091-1 tiff	2006-6-8
    libtiff-tools	3.7.2-5	alpha	DSA-1091-1 tiff	2006-6-8
    libtiff4	3.7.2-5	alpha	DSA-1091-1 tiff	2006-6-8
    libtiff4-dev	3.7.2-5	alpha	DSA-1091-1 tiff	2006-6-8
    libtiffxx0	3.7.2-5	alpha	DSA-1091-1 tiff	2006-6-8
    libtiff-opengl	3.7.2-5	amd64	DSA-1091-1 tiff	2006-6-8
    libtiff-tools	3.7.2-5	amd64	DSA-1091-1 tiff	2006-6-8
    libtiff4	3.7.2-5	amd64	DSA-1091-1 tiff	2006-6-8
    libtiff4-dev	3.7.2-5	amd64	DSA-1091-1 tiff	2006-6-8
    libtiffxx0	3.7.2-5	amd64	DSA-1091-1 tiff	2006-6-8
    libtiff-opengl	3.7.2-5	arm	DSA-1091-1 tiff	2006-6-8
    libtiff-tools	3.7.2-5	arm	DSA-1091-1 tiff	2006-6-8
    libtiff4	3.7.2-5	arm	DSA-1091-1 tiff	2006-6-8
    libtiff4-dev	3.7.2-5	arm	DSA-1091-1 tiff	2006-6-8
    libtiffxx0	3.7.2-5	arm	DSA-1091-1 tiff	2006-6-8
    libtiff-opengl	3.7.2-5	i386	DSA-1091-1 tiff	2006-6-8
    libtiff-tools	3.7.2-5	i386	DSA-1091-1 tiff	2006-6-8
    libtiff4	3.7.2-5	i386	DSA-1091-1 tiff	2006-6-8
    libtiff4-dev	3.7.2-5	i386	DSA-1091-1 tiff	2006-6-8
    libtiffxx0	3.7.2-5	i386	DSA-1091-1 tiff	2006-6-8
    libtiff-opengl	3.7.2-5	ia64	DSA-1091-1 tiff	2006-6-8
    libtiff-tools	3.7.2-5	ia64	DSA-1091-1 tiff	2006-6-8
    libtiff4	3.7.2-5	ia64	DSA-1091-1 tiff	2006-6-8
    libtiff4-dev	3.7.2-5	ia64	DSA-1091-1 tiff	2006-6-8
    libtiffxx0	3.7.2-5	ia64	DSA-1091-1 tiff	2006-6-8
    libtiff-opengl	3.7.2-5	hppa	DSA-1091-1 tiff	2006-6-8
    libtiff-tools	3.7.2-5	hppa	DSA-1091-1 tiff	2006-6-8
    libtiff4	3.7.2-5	hppa	DSA-1091-1 tiff	2006-6-8
    libtiff4-dev	3.7.2-5	hppa	DSA-1091-1 tiff	2006-6-8
    libtiffxx0	3.7.2-5	hppa	DSA-1091-1 tiff	2006-6-8
    libtiff-opengl	3.7.2-5	m68k	DSA-1091-1 tiff	2006-6-8
    libtiff-tools	3.7.2-5	m68k	DSA-1091-1 tiff	2006-6-8
    libtiff4	3.7.2-5	m68k	DSA-1091-1 tiff	2006-6-8
    libtiff4-dev	3.7.2-5	m68k	DSA-1091-1 tiff	2006-6-8
    libtiffxx0	3.7.2-5	m68k	DSA-1091-1 tiff	2006-6-8
    libtiff-opengl	3.7.2-5	mips	DSA-1091-1 tiff	2006-6-8
    libtiff-tools	3.7.2-5	mips	DSA-1091-1 tiff	2006-6-8
    libtiff4	3.7.2-5	mips	DSA-1091-1 tiff	2006-6-8
    libtiff4-dev	3.7.2-5	mips	DSA-1091-1 tiff	2006-6-8
    libtiffxx0	3.7.2-5	mips	DSA-1091-1 tiff	2006-6-8
    libtiff-opengl	3.7.2-5	mipsel	DSA-1091-1 tiff	2006-6-8
    libtiff-tools	3.7.2-5	mipsel	DSA-1091-1 tiff	2006-6-8
    libtiff4	3.7.2-5	mipsel	DSA-1091-1 tiff	2006-6-8
    libtiff4-dev	3.7.2-5	mipsel	DSA-1091-1 tiff	2006-6-8
    libtiffxx0	3.7.2-5	mipsel	DSA-1091-1 tiff	2006-6-8
    libtiff-opengl	3.7.2-5	powerpc	DSA-1091-1 tiff	2006-6-8
    libtiff-tools	3.7.2-5	powerpc	DSA-1091-1 tiff	2006-6-8
    libtiff4	3.7.2-5	powerpc	DSA-1091-1 tiff	2006-6-8
    libtiff4-dev	3.7.2-5	powerpc	DSA-1091-1 tiff	2006-6-8
    libtiffxx0	3.7.2-5	powerpc	DSA-1091-1 tiff	2006-6-8
    libtiff-opengl	3.7.2-5	s390	DSA-1091-1 tiff	2006-6-8
    libtiff-tools	3.7.2-5	s390	DSA-1091-1 tiff	2006-6-8
    libtiff4	3.7.2-5	s390	DSA-1091-1 tiff	2006-6-8
    libtiff4-dev	3.7.2-5	s390	DSA-1091-1 tiff	2006-6-8
    libtiffxx0	3.7.2-5	s390	DSA-1091-1 tiff	2006-6-8
    libtiff-opengl	3.7.2-5	sparc	DSA-1091-1 tiff	2006-6-8
    libtiff-tools	3.7.2-5	sparc	DSA-1091-1 tiff	2006-6-8
    libtiff4	3.7.2-5	sparc	DSA-1091-1 tiff	2006-6-8
    libtiff4-dev	3.7.2-5	sparc	DSA-1091-1 tiff	2006-6-8
    libtiffxx0	3.7.2-5	sparc	DSA-1091-1 tiff	2006-6-8
    xpdf-common	1.00-3.8	all	DSA-931-1 xpdf	2006-1-9
    xpdf	1.00-3.8	all	DSA-931-1 xpdf	2006-1-9
    xpdf-reader	1.00-3.8	alpha	DSA-931-1 xpdf	2006-1-9
    xpdf-utils	1.00-3.8	alpha	DSA-931-1 xpdf	2006-1-9
    xpdf-reader	1.00-3.8	arm	DSA-931-1 xpdf	2006-1-9
    xpdf-utils	1.00-3.8	arm	DSA-931-1 xpdf	2006-1-9
    xpdf-reader	1.00-3.8	i386	DSA-931-1 xpdf	2006-1-9
    xpdf-utils	1.00-3.8	i386	DSA-931-1 xpdf	2006-1-9
    xpdf-reader	1.00-3.8	ia64	DSA-931-1 xpdf	2006-1-9
    xpdf-utils	1.00-3.8	ia64	DSA-931-1 xpdf	2006-1-9
    xpdf-reader	1.00-3.8	hppa	DSA-931-1 xpdf	2006-1-9
    xpdf-utils	1.00-3.8	hppa	DSA-931-1 xpdf	2006-1-9
    xpdf-reader	1.00-3.8	m68k	DSA-931-1 xpdf	2006-1-9
    xpdf-utils	1.00-3.8	m68k	DSA-931-1 xpdf	2006-1-9
    xpdf-reader	1.00-3.8	mips	DSA-931-1 xpdf	2006-1-9
    xpdf-utils	1.00-3.8	mips	DSA-931-1 xpdf	2006-1-9
    xpdf-reader	1.00-3.8	mipsel	DSA-931-1 xpdf	2006-1-9
    xpdf-utils	1.00-3.8	mipsel	DSA-931-1 xpdf	2006-1-9
    xpdf-reader	1.00-3.8	powerpc	DSA-931-1 xpdf	2006-1-9
    xpdf-utils	1.00-3.8	powerpc	DSA-931-1 xpdf	2006-1-9
    xpdf-reader	1.00-3.8	s390	DSA-931-1 xpdf	2006-1-9
    xpdf-utils	1.00-3.8	s390	DSA-931-1 xpdf	2006-1-9
    xpdf-reader	1.00-3.8	sparc	DSA-931-1 xpdf	2006-1-9
    xpdf-utils	1.00-3.8	sparc	DSA-931-1 xpdf	2006-1-9
    xpdf-common	3.00-13.4	all	DSA-931-1 xpdf	2006-1-9
    xpdf	3.00-13.4	all	DSA-931-1 xpdf	2006-1-9
    xpdf-reader	3.00-13.4	alpha	DSA-931-1 xpdf	2006-1-9
    xpdf-utils	3.00-13.4	alpha	DSA-931-1 xpdf	2006-1-9
    xpdf-reader	3.00-13.4	amd64	DSA-931-1 xpdf	2006-1-9
    xpdf-utils	3.00-13.4	amd64	DSA-931-1 xpdf	2006-1-9
    xpdf-reader	3.00-13.4	arm	DSA-931-1 xpdf	2006-1-9
    xpdf-utils	3.00-13.4	arm	DSA-931-1 xpdf	2006-1-9
    xpdf-reader	3.00-13.4	i386	DSA-931-1 xpdf	2006-1-9
    xpdf-utils	3.00-13.4	i386	DSA-931-1 xpdf	2006-1-9
    xpdf-reader	3.00-13.4	ia64	DSA-931-1 xpdf	2006-1-9
    xpdf-utils	3.00-13.4	ia64	DSA-931-1 xpdf	2006-1-9
    xpdf-reader	3.00-13.4	hppa	DSA-931-1 xpdf	2006-1-9
    xpdf-utils	3.00-13.4	hppa	DSA-931-1 xpdf	2006-1-9
    xpdf-reader	3.00-13.4	m68k	DSA-931-1 xpdf	2006-1-9
    xpdf-utils	3.00-13.4	m68k	DSA-931-1 xpdf	2006-1-9
    xpdf-reader	3.00-13.4	mips	DSA-931-1 xpdf	2006-1-9
    xpdf-utils	3.00-13.4	mips	DSA-931-1 xpdf	2006-1-9
    xpdf-reader	3.00-13.4	mipsel	DSA-931-1 xpdf	2006-1-9
    xpdf-utils	3.00-13.4	mipsel	DSA-931-1 xpdf	2006-1-9
    xpdf-reader	3.00-13.4	powerpc	DSA-931-1 xpdf	2006-1-9
    xpdf-utils	3.00-13.4	powerpc	DSA-931-1 xpdf	2006-1-9
    xpdf-reader	3.00-13.4	s390	DSA-931-1 xpdf	2006-1-9
    xpdf-utils	3.00-13.4	s390	DSA-931-1 xpdf	2006-1-9
    xpdf-reader	3.00-13.4	sparc	DSA-931-1 xpdf	2006-1-9
    xpdf-utils	3.00-13.4	sparc	DSA-931-1 xpdf	2006-1-9
    xpdf-common	3.00-13.5	all	DSA-971-1 xpdf	2006-2-14
    xpdf	3.00-13.5	all	DSA-971-1 xpdf	2006-2-14
    xpdf-reader	3.00-13.5	alpha	DSA-971-1 xpdf	2006-2-14
    xpdf-utils	3.00-13.5	alpha	DSA-971-1 xpdf	2006-2-14
    xpdf-reader	3.00-13.5	amd64	DSA-971-1 xpdf	2006-2-14
    xpdf-utils	3.00-13.5	amd64	DSA-971-1 xpdf	2006-2-14
    xpdf-reader	3.00-13.5	arm	DSA-971-1 xpdf	2006-2-14
    xpdf-utils	3.00-13.5	arm	DSA-971-1 xpdf	2006-2-14
    xpdf-reader	3.00-13.5	i386	DSA-971-1 xpdf	2006-2-14
    xpdf-utils	3.00-13.5	i386	DSA-971-1 xpdf	2006-2-14
    xpdf-reader	3.00-13.5	ia64	DSA-971-1 xpdf	2006-2-14
    xpdf-utils	3.00-13.5	ia64	DSA-971-1 xpdf	2006-2-14
    xpdf-reader	3.00-13.5	hppa	DSA-971-1 xpdf	2006-2-14
    xpdf-utils	3.00-13.5	hppa	DSA-971-1 xpdf	2006-2-14
    xpdf-reader	3.00-13.5	m68k	DSA-971-1 xpdf	2006-2-14
    xpdf-utils	3.00-13.5	m68k	DSA-971-1 xpdf	2006-2-14
    xpdf-reader	3.00-13.5	mips	DSA-971-1 xpdf	2006-2-14
    xpdf-utils	3.00-13.5	mips	DSA-971-1 xpdf	2006-2-14
    xpdf-reader	3.00-13.5	mipsel	DSA-971-1 xpdf	2006-2-14
    xpdf-utils	3.00-13.5	mipsel	DSA-971-1 xpdf	2006-2-14
    xpdf-reader	3.00-13.5	powerpc	DSA-971-1 xpdf	2006-2-14
    xpdf-utils	3.00-13.5	powerpc	DSA-971-1 xpdf	2006-2-14
    xpdf-reader	3.00-13.5	s390	DSA-971-1 xpdf	2006-2-14
    xpdf-utils	3.00-13.5	s390	DSA-971-1 xpdf	2006-2-14
    xpdf-reader	3.00-13.5	sparc	DSA-971-1 xpdf	2006-2-14
    xpdf-utils	3.00-13.5	sparc	DSA-971-1 xpdf	2006-2-14
    flyspray	0.9.7-2.1	all	DSA-953-1 flyspray	2006-1-24
    gnutls-bin	1.0.16-13.2	alpha	DSA-986-1 gnutls11	2006-3-6
    libgnutls11	1.0.16-13.2	alpha	DSA-986-1 gnutls11	2006-3-6
    libgnutls11-dbg	1.0.16-13.2	alpha	DSA-986-1 gnutls11	2006-3-6
    libgnutls11-dev	1.0.16-13.2	alpha	DSA-986-1 gnutls11	2006-3-6
    gnutls-bin	1.0.16-13.2	amd64	DSA-986-1 gnutls11	2006-3-6
    libgnutls11	1.0.16-13.2	amd64	DSA-986-1 gnutls11	2006-3-6
    libgnutls11-dbg	1.0.16-13.2	amd64	DSA-986-1 gnutls11	2006-3-6
    libgnutls11-dev	1.0.16-13.2	amd64	DSA-986-1 gnutls11	2006-3-6
    gnutls-bin	1.0.16-13.2	arm	DSA-986-1 gnutls11	2006-3-6
    libgnutls11	1.0.16-13.2	arm	DSA-986-1 gnutls11	2006-3-6
    libgnutls11-dbg	1.0.16-13.2	arm	DSA-986-1 gnutls11	2006-3-6
    libgnutls11-dev	1.0.16-13.2	arm	DSA-986-1 gnutls11	2006-3-6
    gnutls-bin	1.0.16-13.2	i386	DSA-986-1 gnutls11	2006-3-6
    libgnutls11	1.0.16-13.2	i386	DSA-986-1 gnutls11	2006-3-6
    libgnutls11-dbg	1.0.16-13.2	i386	DSA-986-1 gnutls11	2006-3-6
    libgnutls11-dev	1.0.16-13.2	i386	DSA-986-1 gnutls11	2006-3-6
    gnutls-bin	1.0.16-13.2	ia64	DSA-986-1 gnutls11	2006-3-6
    libgnutls11	1.0.16-13.2	ia64	DSA-986-1 gnutls11	2006-3-6
    libgnutls11-dbg	1.0.16-13.2	ia64	DSA-986-1 gnutls11	2006-3-6
    libgnutls11-dev	1.0.16-13.2	ia64	DSA-986-1 gnutls11	2006-3-6
    gnutls-bin	1.0.16-13.2	hppa	DSA-986-1 gnutls11	2006-3-6
    libgnutls11	1.0.16-13.2	hppa	DSA-986-1 gnutls11	2006-3-6
    libgnutls11-dbg	1.0.16-13.2	hppa	DSA-986-1 gnutls11	2006-3-6
    libgnutls11-dev	1.0.16-13.2	hppa	DSA-986-1 gnutls11	2006-3-6
    gnutls-bin	1.0.16-13.2	m68k	DSA-986-1 gnutls11	2006-3-6
    libgnutls11	1.0.16-13.2	m68k	DSA-986-1 gnutls11	2006-3-6
    libgnutls11-dbg	1.0.16-13.2	m68k	DSA-986-1 gnutls11	2006-3-6
    libgnutls11-dev	1.0.16-13.2	m68k	DSA-986-1 gnutls11	2006-3-6
    gnutls-bin	1.0.16-13.2	mips	DSA-986-1 gnutls11	2006-3-6
    libgnutls11	1.0.16-13.2	mips	DSA-986-1 gnutls11	2006-3-6
    libgnutls11-dbg	1.0.16-13.2	mips	DSA-986-1 gnutls11	2006-3-6
    libgnutls11-dev	1.0.16-13.2	mips	DSA-986-1 gnutls11	2006-3-6
    gnutls-bin	1.0.16-13.2	mipsel	DSA-986-1 gnutls11	2006-3-6
    libgnutls11	1.0.16-13.2	mipsel	DSA-986-1 gnutls11	2006-3-6
    libgnutls11-dbg	1.0.16-13.2	mipsel	DSA-986-1 gnutls11	2006-3-6
    libgnutls11-dev	1.0.16-13.2	mipsel	DSA-986-1 gnutls11	2006-3-6
    gnutls-bin	1.0.16-13.2	powerpc	DSA-986-1 gnutls11	2006-3-6
    libgnutls11	1.0.16-13.2	powerpc	DSA-986-1 gnutls11	2006-3-6
    libgnutls11-dbg	1.0.16-13.2	powerpc	DSA-986-1 gnutls11	2006-3-6
    libgnutls11-dev	1.0.16-13.2	powerpc	DSA-986-1 gnutls11	2006-3-6
    gnutls-bin	1.0.16-13.2	s390	DSA-986-1 gnutls11	2006-3-6
    libgnutls11	1.0.16-13.2	s390	DSA-986-1 gnutls11	2006-3-6
    libgnutls11-dbg	1.0.16-13.2	s390	DSA-986-1 gnutls11	2006-3-6
    libgnutls11-dev	1.0.16-13.2	s390	DSA-986-1 gnutls11	2006-3-6
    gnutls-bin	1.0.16-13.2	sparc	DSA-986-1 gnutls11	2006-3-6
    libgnutls11	1.0.16-13.2	sparc	DSA-986-1 gnutls11	2006-3-6
    libgnutls11-dbg	1.0.16-13.2	sparc	DSA-986-1 gnutls11	2006-3-6
    libgnutls11-dev	1.0.16-13.2	sparc	DSA-986-1 gnutls11	2006-3-6
    imagemagick	6.0.6.2-2.6	alpha	DSA-957-2 imagemagick	2006-1-26, 2006-1-31
    libmagick6	6.0.6.2-2.6	alpha	DSA-957-2 imagemagick	2006-1-26, 2006-1-31
    libmagick6-dev	6.0.6.2-2.6	alpha	DSA-957-2 imagemagick	2006-1-26, 2006-1-31
    perlmagick	6.0.6.2-2.6	alpha	DSA-957-2 imagemagick	2006-1-26, 2006-1-31
    imagemagick	6.0.6.2-2.6	amd64	DSA-957-2 imagemagick	2006-1-26, 2006-1-31
    libmagick6	6.0.6.2-2.6	amd64	DSA-957-2 imagemagick	2006-1-26, 2006-1-31
    libmagick6-dev	6.0.6.2-2.6	amd64	DSA-957-2 imagemagick	2006-1-26, 2006-1-31
    perlmagick	6.0.6.2-2.6	amd64	DSA-957-2 imagemagick	2006-1-26, 2006-1-31
    imagemagick	6.0.6.2-2.6	arm	DSA-957-2 imagemagick	2006-1-26, 2006-1-31
    libmagick6	6.0.6.2-2.6	arm	DSA-957-2 imagemagick	2006-1-26, 2006-1-31
    libmagick6-dev	6.0.6.2-2.6	arm	DSA-957-2 imagemagick	2006-1-26, 2006-1-31
    perlmagick	6.0.6.2-2.6	arm	DSA-957-2 imagemagick	2006-1-26, 2006-1-31
    imagemagick	6.0.6.2-2.6	i386	DSA-957-2 imagemagick	2006-1-26, 2006-1-31
    libmagick6	6.0.6.2-2.6	i386	DSA-957-2 imagemagick	2006-1-26, 2006-1-31
    libmagick6-dev	6.0.6.2-2.6	i386	DSA-957-2 imagemagick	2006-1-26, 2006-1-31
    perlmagick	6.0.6.2-2.6	i386	DSA-957-2 imagemagick	2006-1-26, 2006-1-31
    imagemagick	6.0.6.2-2.6	ia64	DSA-957-2 imagemagick	2006-1-26, 2006-1-31
    libmagick6	6.0.6.2-2.6	ia64	DSA-957-2 imagemagick	2006-1-26, 2006-1-31
    libmagick6-dev	6.0.6.2-2.6	ia64	DSA-957-2 imagemagick	2006-1-26, 2006-1-31
    perlmagick	6.0.6.2-2.6	ia64	DSA-957-2 imagemagick	2006-1-26, 2006-1-31
    imagemagick	6.0.6.2-2.6	hppa	DSA-957-2 imagemagick	2006-1-26, 2006-1-31
    libmagick6	6.0.6.2-2.6	hppa	DSA-957-2 imagemagick	2006-1-26, 2006-1-31
    libmagick6-dev	6.0.6.2-2.6	hppa	DSA-957-2 imagemagick	2006-1-26, 2006-1-31
    perlmagick	6.0.6.2-2.6	hppa	DSA-957-2 imagemagick	2006-1-26, 2006-1-31
    imagemagick	6.0.6.2-2.6	m68k	DSA-957-2 imagemagick	2006-1-26, 2006-1-31
    libmagick6	6.0.6.2-2.6	m68k	DSA-957-2 imagemagick	2006-1-26, 2006-1-31
    libmagick6-dev	6.0.6.2-2.6	m68k	DSA-957-2 imagemagick	2006-1-26, 2006-1-31
    perlmagick	6.0.6.2-2.6	m68k	DSA-957-2 imagemagick	2006-1-26, 2006-1-31
    imagemagick	6.0.6.2-2.6	mips	DSA-957-2 imagemagick	2006-1-26, 2006-1-31
    libmagick6	6.0.6.2-2.6	mips	DSA-957-2 imagemagick	2006-1-26, 2006-1-31
    libmagick6-dev	6.0.6.2-2.6	mips	DSA-957-2 imagemagick	2006-1-26, 2006-1-31
    perlmagick	6.0.6.2-2.6	mips	DSA-957-2 imagemagick	2006-1-26, 2006-1-31
    imagemagick	6.0.6.2-2.6	mipsel	DSA-957-2 imagemagick	2006-1-26, 2006-1-31
    libmagick6	6.0.6.2-2.6	mipsel	DSA-957-2 imagemagick	2006-1-26, 2006-1-31
    libmagick6-dev	6.0.6.2-2.6	mipsel	DSA-957-2 imagemagick	2006-1-26, 2006-1-31
    perlmagick	6.0.6.2-2.6	mipsel	DSA-957-2 imagemagick	2006-1-26, 2006-1-31
    imagemagick	6.0.6.2-2.6	powerpc	DSA-957-2 imagemagick	2006-1-26, 2006-1-31
    libmagick6	6.0.6.2-2.6	powerpc	DSA-957-2 imagemagick	2006-1-26, 2006-1-31
    libmagick6-dev	6.0.6.2-2.6	powerpc	DSA-957-2 imagemagick	2006-1-26, 2006-1-31
    perlmagick	6.0.6.2-2.6	powerpc	DSA-957-2 imagemagick	2006-1-26, 2006-1-31
    imagemagick	6.0.6.2-2.6	s390	DSA-957-2 imagemagick	2006-1-26, 2006-1-31
    libmagick6	6.0.6.2-2.6	s390	DSA-957-2 imagemagick	2006-1-26, 2006-1-31
    libmagick6-dev	6.0.6.2-2.6	s390	DSA-957-2 imagemagick	2006-1-26, 2006-1-31
    perlmagick	6.0.6.2-2.6	s390	DSA-957-2 imagemagick	2006-1-26, 2006-1-31
    imagemagick	6.0.6.2-2.6	sparc	DSA-957-2 imagemagick	2006-1-26, 2006-1-31
    libmagick6	6.0.6.2-2.6	sparc	DSA-957-2 imagemagick	2006-1-26, 2006-1-31
    libmagick6-dev	6.0.6.2-2.6	sparc	DSA-957-2 imagemagick	2006-1-26, 2006-1-31
    perlmagick	6.0.6.2-2.6	sparc	DSA-957-2 imagemagick	2006-1-26, 2006-1-31
    freetype2-demos	2.1.7-2.5	alpha	DSA-1095-1 freetype	2006-6-10
    libfreetype6	2.1.7-2.5	alpha	DSA-1095-1 freetype	2006-6-10
    libfreetype6-dev	2.1.7-2.5	alpha	DSA-1095-1 freetype	2006-6-10
    freetype2-demos	2.1.7-2.5	amd64	DSA-1095-1 freetype	2006-6-10
    libfreetype6	2.1.7-2.5	amd64	DSA-1095-1 freetype	2006-6-10
    libfreetype6-dev	2.1.7-2.5	amd64	DSA-1095-1 freetype	2006-6-10
    freetype2-demos	2.1.7-2.5	arm	DSA-1095-1 freetype	2006-6-10
    libfreetype6	2.1.7-2.5	arm	DSA-1095-1 freetype	2006-6-10
    libfreetype6-dev	2.1.7-2.5	arm	DSA-1095-1 freetype	2006-6-10
    freetype2-demos	2.1.7-2.5	i386	DSA-1095-1 freetype	2006-6-10
    libfreetype6	2.1.7-2.5	i386	DSA-1095-1 freetype	2006-6-10
    libfreetype6-dev	2.1.7-2.5	i386	DSA-1095-1 freetype	2006-6-10
    freetype2-demos	2.1.7-2.5	ia64	DSA-1095-1 freetype	2006-6-10
    libfreetype6	2.1.7-2.5	ia64	DSA-1095-1 freetype	2006-6-10
    libfreetype6-dev	2.1.7-2.5	ia64	DSA-1095-1 freetype	2006-6-10
    freetype2-demos	2.1.7-2.5	hppa	DSA-1095-1 freetype	2006-6-10
    libfreetype6	2.1.7-2.5	hppa	DSA-1095-1 freetype	2006-6-10
    libfreetype6-dev	2.1.7-2.5	hppa	DSA-1095-1 freetype	2006-6-10
    freetype2-demos	2.1.7-2.5	m68k	DSA-1095-1 freetype	2006-6-10
    libfreetype6	2.1.7-2.5	m68k	DSA-1095-1 freetype	2006-6-10
    libfreetype6-dev	2.1.7-2.5	m68k	DSA-1095-1 freetype	2006-6-10
    freetype2-demos	2.1.7-2.5	mips	DSA-1095-1 freetype	2006-6-10
    libfreetype6	2.1.7-2.5	mips	DSA-1095-1 freetype	2006-6-10
    libfreetype6-dev	2.1.7-2.5	mips	DSA-1095-1 freetype	2006-6-10
    freetype2-demos	2.1.7-2.5	mipsel	DSA-1095-1 freetype	2006-6-10
    libfreetype6	2.1.7-2.5	mipsel	DSA-1095-1 freetype	2006-6-10
    libfreetype6-dev	2.1.7-2.5	mipsel	DSA-1095-1 freetype	2006-6-10
    freetype2-demos	2.1.7-2.5	powerpc	DSA-1095-1 freetype	2006-6-10
    libfreetype6	2.1.7-2.5	powerpc	DSA-1095-1 freetype	2006-6-10
    libfreetype6-dev	2.1.7-2.5	powerpc	DSA-1095-1 freetype	2006-6-10
    freetype2-demos	2.1.7-2.5	s390	DSA-1095-1 freetype	2006-6-10
    libfreetype6	2.1.7-2.5	s390	DSA-1095-1 freetype	2006-6-10
    libfreetype6-dev	2.1.7-2.5	s390	DSA-1095-1 freetype	2006-6-10
    freetype2-demos	2.1.7-2.5	sparc	DSA-1095-1 freetype	2006-6-10
    libfreetype6	2.1.7-2.5	sparc	DSA-1095-1 freetype	2006-6-10
    libfreetype6-dev	2.1.7-2.5	sparc	DSA-1095-1 freetype	2006-6-10
    imagemagick	6.0.6.2-2.8	alpha	DSA-1213-1 imagemagick	2006-11-19
    libmagick6	6.0.6.2-2.8	alpha	DSA-1213-1 imagemagick	2006-11-19
    libmagick6-dev	6.0.6.2-2.8	alpha	DSA-1213-1 imagemagick	2006-11-19
    perlmagick	6.0.6.2-2.8	alpha	DSA-1213-1 imagemagick	2006-11-19
    imagemagick	6.0.6.2-2.8	amd64	DSA-1213-1 imagemagick	2006-11-19
    libmagick6	6.0.6.2-2.8	amd64	DSA-1213-1 imagemagick	2006-11-19
    libmagick6-dev	6.0.6.2-2.8	amd64	DSA-1213-1 imagemagick	2006-11-19
    perlmagick	6.0.6.2-2.8	amd64	DSA-1213-1 imagemagick	2006-11-19
    imagemagick	6.0.6.2-2.8	arm	DSA-1213-1 imagemagick	2006-11-19
    libmagick6	6.0.6.2-2.8	arm	DSA-1213-1 imagemagick	2006-11-19
    libmagick6-dev	6.0.6.2-2.8	arm	DSA-1213-1 imagemagick	2006-11-19
    perlmagick	6.0.6.2-2.8	arm	DSA-1213-1 imagemagick	2006-11-19
    imagemagick	6.0.6.2-2.8	hppa	DSA-1213-1 imagemagick	2006-11-19
    libmagick6	6.0.6.2-2.8	hppa	DSA-1213-1 imagemagick	2006-11-19
    libmagick6-dev	6.0.6.2-2.8	hppa	DSA-1213-1 imagemagick	2006-11-19
    perlmagick	6.0.6.2-2.8	hppa	DSA-1213-1 imagemagick	2006-11-19
    imagemagick	6.0.6.2-2.8	i386	DSA-1213-1 imagemagick	2006-11-19
    libmagick6	6.0.6.2-2.8	i386	DSA-1213-1 imagemagick	2006-11-19
    libmagick6-dev	6.0.6.2-2.8	i386	DSA-1213-1 imagemagick	2006-11-19
    perlmagick	6.0.6.2-2.8	i386	DSA-1213-1 imagemagick	2006-11-19
    imagemagick	6.0.6.2-2.8	ia64	DSA-1213-1 imagemagick	2006-11-19
    libmagick6	6.0.6.2-2.8	ia64	DSA-1213-1 imagemagick	2006-11-19
    libmagick6-dev	6.0.6.2-2.8	ia64	DSA-1213-1 imagemagick	2006-11-19
    perlmagick	6.0.6.2-2.8	ia64	DSA-1213-1 imagemagick	2006-11-19
    imagemagick	6.0.6.2-2.8	m68k	DSA-1213-1 imagemagick	2006-11-19
    libmagick6	6.0.6.2-2.8	m68k	DSA-1213-1 imagemagick	2006-11-19
    libmagick6-dev	6.0.6.2-2.8	m68k	DSA-1213-1 imagemagick	2006-11-19
    perlmagick	6.0.6.2-2.8	m68k	DSA-1213-1 imagemagick	2006-11-19
    imagemagick	6.0.6.2-2.8	mips	DSA-1213-1 imagemagick	2006-11-19
    libmagick6	6.0.6.2-2.8	mips	DSA-1213-1 imagemagick	2006-11-19
    libmagick6-dev	6.0.6.2-2.8	mips	DSA-1213-1 imagemagick	2006-11-19
    perlmagick	6.0.6.2-2.8	mips	DSA-1213-1 imagemagick	2006-11-19
    imagemagick	6.0.6.2-2.8	mipsel	DSA-1213-1 imagemagick	2006-11-19
    libmagick6	6.0.6.2-2.8	mipsel	DSA-1213-1 imagemagick	2006-11-19
    libmagick6-dev	6.0.6.2-2.8	mipsel	DSA-1213-1 imagemagick	2006-11-19
    perlmagick	6.0.6.2-2.8	mipsel	DSA-1213-1 imagemagick	2006-11-19
    imagemagick	6.0.6.2-2.8	powerpc	DSA-1213-1 imagemagick	2006-11-19
    libmagick6	6.0.6.2-2.8	powerpc	DSA-1213-1 imagemagick	2006-11-19
    libmagick6-dev	6.0.6.2-2.8	powerpc	DSA-1213-1 imagemagick	2006-11-19
    perlmagick	6.0.6.2-2.8	powerpc	DSA-1213-1 imagemagick	2006-11-19
    imagemagick	6.0.6.2-2.8	s390	DSA-1213-1 imagemagick	2006-11-19
    libmagick6	6.0.6.2-2.8	s390	DSA-1213-1 imagemagick	2006-11-19
    libmagick6-dev	6.0.6.2-2.8	s390	DSA-1213-1 imagemagick	2006-11-19
    perlmagick	6.0.6.2-2.8	s390	DSA-1213-1 imagemagick	2006-11-19
    imagemagick	6.0.6.2-2.8	sparc	DSA-1213-1 imagemagick	2006-11-19
    libmagick6	6.0.6.2-2.8	sparc	DSA-1213-1 imagemagick	2006-11-19
    libmagick6-dev	6.0.6.2-2.8	sparc	DSA-1213-1 imagemagick	2006-11-19
    perlmagick	6.0.6.2-2.8	sparc	DSA-1213-1 imagemagick	2006-11-19
    imagemagick	6.0.6.2-2.7	alpha	DSA-1168-1 imagemagick	2006-9-4
    libmagick6	6.0.6.2-2.7	alpha	DSA-1168-1 imagemagick	2006-9-4
    libmagick6-dev	6.0.6.2-2.7	alpha	DSA-1168-1 imagemagick	2006-9-4
    perlmagick	6.0.6.2-2.7	alpha	DSA-1168-1 imagemagick	2006-9-4
    imagemagick	6.0.6.2-2.7	amd64	DSA-1168-1 imagemagick	2006-9-4
    libmagick6	6.0.6.2-2.7	amd64	DSA-1168-1 imagemagick	2006-9-4
    libmagick6-dev	6.0.6.2-2.7	amd64	DSA-1168-1 imagemagick	2006-9-4
    perlmagick	6.0.6.2-2.7	amd64	DSA-1168-1 imagemagick	2006-9-4
    imagemagick	6.0.6.2-2.7	arm	DSA-1168-1 imagemagick	2006-9-4
    libmagick6	6.0.6.2-2.7	arm	DSA-1168-1 imagemagick	2006-9-4
    libmagick6-dev	6.0.6.2-2.7	arm	DSA-1168-1 imagemagick	2006-9-4
    perlmagick	6.0.6.2-2.7	arm	DSA-1168-1 imagemagick	2006-9-4
    imagemagick	6.0.6.2-2.7	hppa	DSA-1168-1 imagemagick	2006-9-4
    libmagick6	6.0.6.2-2.7	hppa	DSA-1168-1 imagemagick	2006-9-4
    libmagick6-dev	6.0.6.2-2.7	hppa	DSA-1168-1 imagemagick	2006-9-4
    perlmagick	6.0.6.2-2.7	hppa	DSA-1168-1 imagemagick	2006-9-4
    imagemagick	6.0.6.2-2.7	i386	DSA-1168-1 imagemagick	2006-9-4
    libmagick6	6.0.6.2-2.7	i386	DSA-1168-1 imagemagick	2006-9-4
    libmagick6-dev	6.0.6.2-2.7	i386	DSA-1168-1 imagemagick	2006-9-4
    perlmagick	6.0.6.2-2.7	i386	DSA-1168-1 imagemagick	2006-9-4
    imagemagick	6.0.6.2-2.7	ia64	DSA-1168-1 imagemagick	2006-9-4
    libmagick6	6.0.6.2-2.7	ia64	DSA-1168-1 imagemagick	2006-9-4
    libmagick6-dev	6.0.6.2-2.7	ia64	DSA-1168-1 imagemagick	2006-9-4
    perlmagick	6.0.6.2-2.7	ia64	DSA-1168-1 imagemagick	2006-9-4
    imagemagick	6.0.6.2-2.7	m68k	DSA-1168-1 imagemagick	2006-9-4
    libmagick6	6.0.6.2-2.7	m68k	DSA-1168-1 imagemagick	2006-9-4
    libmagick6-dev	6.0.6.2-2.7	m68k	DSA-1168-1 imagemagick	2006-9-4
    perlmagick	6.0.6.2-2.7	m68k	DSA-1168-1 imagemagick	2006-9-4
    imagemagick	6.0.6.2-2.7	mips	DSA-1168-1 imagemagick	2006-9-4
    libmagick6	6.0.6.2-2.7	mips	DSA-1168-1 imagemagick	2006-9-4
    libmagick6-dev	6.0.6.2-2.7	mips	DSA-1168-1 imagemagick	2006-9-4
    perlmagick	6.0.6.2-2.7	mips	DSA-1168-1 imagemagick	2006-9-4
    imagemagick	6.0.6.2-2.7	mipsel	DSA-1168-1 imagemagick	2006-9-4
    libmagick6	6.0.6.2-2.7	mipsel	DSA-1168-1 imagemagick	2006-9-4
    libmagick6-dev	6.0.6.2-2.7	mipsel	DSA-1168-1 imagemagick	2006-9-4
    perlmagick	6.0.6.2-2.7	mipsel	DSA-1168-1 imagemagick	2006-9-4
    imagemagick	6.0.6.2-2.7	powerpc	DSA-1168-1 imagemagick	2006-9-4
    libmagick6	6.0.6.2-2.7	powerpc	DSA-1168-1 imagemagick	2006-9-4
    libmagick6-dev	6.0.6.2-2.7	powerpc	DSA-1168-1 imagemagick	2006-9-4
    perlmagick	6.0.6.2-2.7	powerpc	DSA-1168-1 imagemagick	2006-9-4
    imagemagick	6.0.6.2-2.7	s390	DSA-1168-1 imagemagick	2006-9-4
    libmagick6	6.0.6.2-2.7	s390	DSA-1168-1 imagemagick	2006-9-4
    libmagick6-dev	6.0.6.2-2.7	s390	DSA-1168-1 imagemagick	2006-9-4
    perlmagick	6.0.6.2-2.7	s390	DSA-1168-1 imagemagick	2006-9-4
    imagemagick	6.0.6.2-2.7	sparc	DSA-1168-1 imagemagick	2006-9-4
    libmagick6	6.0.6.2-2.7	sparc	DSA-1168-1 imagemagick	2006-9-4
    libmagick6-dev	6.0.6.2-2.7	sparc	DSA-1168-1 imagemagick	2006-9-4
    perlmagick	6.0.6.2-2.7	sparc	DSA-1168-1 imagemagick	2006-9-4
    drupal	4.5.3-6	all	DSA-1007-1 drupal	2006-3-17
    typespeed	0.4.1-2.4	alpha	DSA-1084-1 typespeed	2006-5-31
    typespeed	0.4.1-2.4	arm	DSA-1084-1 typespeed	2006-5-31
    typespeed	0.4.1-2.4	i386	DSA-1084-1 typespeed	2006-5-31
    typespeed	0.4.1-2.4	ia64	DSA-1084-1 typespeed	2006-5-31
    typespeed	0.4.1-2.4	hppa	DSA-1084-1 typespeed	2006-5-31
    typespeed	0.4.1-2.4	m68k	DSA-1084-1 typespeed	2006-5-31
    typespeed	0.4.1-2.4	mips	DSA-1084-1 typespeed	2006-5-31
    typespeed	0.4.1-2.4	mipsel	DSA-1084-1 typespeed	2006-5-31
    typespeed	0.4.1-2.4	powerpc	DSA-1084-1 typespeed	2006-5-31
    typespeed	0.4.1-2.4	s390	DSA-1084-1 typespeed	2006-5-31
    typespeed	0.4.1-2.4	sparc	DSA-1084-1 typespeed	2006-5-31
    kdelibs-data	3.3.2-6.4	all	DSA-948-1 kdelibs	2006-1-20
    kdelibs4-doc	3.3.2-6.4	all	DSA-948-1 kdelibs	2006-1-20
    kdelibs	3.3.2-6.4	all	DSA-948-1 kdelibs	2006-1-20
    kdelibs-bin	3.3.2-6.4	alpha	DSA-948-1 kdelibs	2006-1-20
    kdelibs4	3.3.2-6.4	alpha	DSA-948-1 kdelibs	2006-1-20
    kdelibs4-dev	3.3.2-6.4	alpha	DSA-948-1 kdelibs	2006-1-20
    kdelibs-bin	3.3.2-6.4	amd64	DSA-948-1 kdelibs	2006-1-20
    kdelibs4	3.3.2-6.4	amd64	DSA-948-1 kdelibs	2006-1-20
    kdelibs4-dev	3.3.2-6.4	amd64	DSA-948-1 kdelibs	2006-1-20
    kdelibs-bin	3.3.2-6.4	arm	DSA-948-1 kdelibs	2006-1-20
    kdelibs4	3.3.2-6.4	arm	DSA-948-1 kdelibs	2006-1-20
    kdelibs4-dev	3.3.2-6.4	arm	DSA-948-1 kdelibs	2006-1-20
    kdelibs-bin	3.3.2-6.4	i386	DSA-948-1 kdelibs	2006-1-20
    kdelibs4	3.3.2-6.4	i386	DSA-948-1 kdelibs	2006-1-20
    kdelibs4-dev	3.3.2-6.4	i386	DSA-948-1 kdelibs	2006-1-20
    kdelibs-bin	3.3.2-6.4	ia64	DSA-948-1 kdelibs	2006-1-20
    kdelibs4	3.3.2-6.4	ia64	DSA-948-1 kdelibs	2006-1-20
    kdelibs4-dev	3.3.2-6.4	ia64	DSA-948-1 kdelibs	2006-1-20
    kdelibs-bin	3.3.2-6.4	hppa	DSA-948-1 kdelibs	2006-1-20
    kdelibs4	3.3.2-6.4	hppa	DSA-948-1 kdelibs	2006-1-20
    kdelibs4-dev	3.3.2-6.4	hppa	DSA-948-1 kdelibs	2006-1-20
    kdelibs-bin	3.3.2-6.4	m68k	DSA-948-1 kdelibs	2006-1-20
    kdelibs4	3.3.2-6.4	m68k	DSA-948-1 kdelibs	2006-1-20
    kdelibs4-dev	3.3.2-6.4	m68k	DSA-948-1 kdelibs	2006-1-20
    kdelibs-bin	3.3.2-6.4	mips	DSA-948-1 kdelibs	2006-1-20
    kdelibs4	3.3.2-6.4	mips	DSA-948-1 kdelibs	2006-1-20
    kdelibs4-dev	3.3.2-6.4	mips	DSA-948-1 kdelibs	2006-1-20
    kdelibs-bin	3.3.2-6.4	mipsel	DSA-948-1 kdelibs	2006-1-20
    kdelibs4	3.3.2-6.4	mipsel	DSA-948-1 kdelibs	2006-1-20
    kdelibs4-dev	3.3.2-6.4	mipsel	DSA-948-1 kdelibs	2006-1-20
    kdelibs-bin	3.3.2-6.4	powerpc	DSA-948-1 kdelibs	2006-1-20
    kdelibs4	3.3.2-6.4	powerpc	DSA-948-1 kdelibs	2006-1-20
    kdelibs4-dev	3.3.2-6.4	powerpc	DSA-948-1 kdelibs	2006-1-20
    kdelibs-bin	3.3.2-6.4	s390	DSA-948-1 kdelibs	2006-1-20
    kdelibs4	3.3.2-6.4	s390	DSA-948-1 kdelibs	2006-1-20
    kdelibs4-dev	3.3.2-6.4	s390	DSA-948-1 kdelibs	2006-1-20
    kdelibs-bin	3.3.2-6.4	sparc	DSA-948-1 kdelibs	2006-1-20
    kdelibs4	3.3.2-6.4	sparc	DSA-948-1 kdelibs	2006-1-20
    kdelibs4-dev	3.3.2-6.4	sparc	DSA-948-1 kdelibs	2006-1-20
    zgv	5.7-1.4	i386	DSA-1037-1 zgv	2006-4-21
    php4-pear	4.3.10-18	all	DSA-1206-1 php4	2006-11-6
    php4	4.3.10-18	all	DSA-1206-1 php4	2006-11-6
    libapache-mod-php4	4.3.10-18	alpha	DSA-1206-1 php4	2006-11-6
    libapache2-mod-php4	4.3.10-18	alpha	DSA-1206-1 php4	2006-11-6
    php4-cgi	4.3.10-18	alpha	DSA-1206-1 php4	2006-11-6
    php4-cli	4.3.10-18	alpha	DSA-1206-1 php4	2006-11-6
    php4-common	4.3.10-18	alpha	DSA-1206-1 php4	2006-11-6
    php4-curl	4.3.10-18	alpha	DSA-1206-1 php4	2006-11-6
    php4-dev	4.3.10-18	alpha	DSA-1206-1 php4	2006-11-6
    php4-domxml	4.3.10-18	alpha	DSA-1206-1 php4	2006-11-6
    php4-gd	4.3.10-18	alpha	DSA-1206-1 php4	2006-11-6
    php4-imap	4.3.10-18	alpha	DSA-1206-1 php4	2006-11-6
    php4-ldap	4.3.10-18	alpha	DSA-1206-1 php4	2006-11-6
    php4-mcal	4.3.10-18	alpha	DSA-1206-1 php4	2006-11-6
    php4-mhash	4.3.10-18	alpha	DSA-1206-1 php4	2006-11-6
    php4-mysql	4.3.10-18	alpha	DSA-1206-1 php4	2006-11-6
    php4-odbc	4.3.10-18	alpha	DSA-1206-1 php4	2006-11-6
    php4-recode	4.3.10-18	alpha	DSA-1206-1 php4	2006-11-6
    php4-snmp	4.3.10-18	alpha	DSA-1206-1 php4	2006-11-6
    php4-sybase	4.3.10-18	alpha	DSA-1206-1 php4	2006-11-6
    php4-xslt	4.3.10-18	alpha	DSA-1206-1 php4	2006-11-6
    libapache-mod-php4	4.3.10-18	amd64	DSA-1206-1 php4	2006-11-6
    libapache2-mod-php4	4.3.10-18	amd64	DSA-1206-1 php4	2006-11-6
    php4-cgi	4.3.10-18	amd64	DSA-1206-1 php4	2006-11-6
    php4-cli	4.3.10-18	amd64	DSA-1206-1 php4	2006-11-6
    php4-common	4.3.10-18	amd64	DSA-1206-1 php4	2006-11-6
    php4-curl	4.3.10-18	amd64	DSA-1206-1 php4	2006-11-6
    php4-dev	4.3.10-18	amd64	DSA-1206-1 php4	2006-11-6
    php4-domxml	4.3.10-18	amd64	DSA-1206-1 php4	2006-11-6
    php4-gd	4.3.10-18	amd64	DSA-1206-1 php4	2006-11-6
    php4-imap	4.3.10-18	amd64	DSA-1206-1 php4	2006-11-6
    php4-ldap	4.3.10-18	amd64	DSA-1206-1 php4	2006-11-6
    php4-mcal	4.3.10-18	amd64	DSA-1206-1 php4	2006-11-6
    php4-mhash	4.3.10-18	amd64	DSA-1206-1 php4	2006-11-6
    php4-mysql	4.3.10-18	amd64	DSA-1206-1 php4	2006-11-6
    php4-odbc	4.3.10-18	amd64	DSA-1206-1 php4	2006-11-6
    php4-recode	4.3.10-18	amd64	DSA-1206-1 php4	2006-11-6
    php4-snmp	4.3.10-18	amd64	DSA-1206-1 php4	2006-11-6
    php4-sybase	4.3.10-18	amd64	DSA-1206-1 php4	2006-11-6
    php4-xslt	4.3.10-18	amd64	DSA-1206-1 php4	2006-11-6
    libapache-mod-php4	4.3.10-18	arm	DSA-1206-1 php4	2006-11-6
    libapache2-mod-php4	4.3.10-18	arm	DSA-1206-1 php4	2006-11-6
    php4-cgi	4.3.10-18	arm	DSA-1206-1 php4	2006-11-6
    php4-cli	4.3.10-18	arm	DSA-1206-1 php4	2006-11-6
    php4-common	4.3.10-18	arm	DSA-1206-1 php4	2006-11-6
    php4-curl	4.3.10-18	arm	DSA-1206-1 php4	2006-11-6
    php4-dev	4.3.10-18	arm	DSA-1206-1 php4	2006-11-6
    php4-domxml	4.3.10-18	arm	DSA-1206-1 php4	2006-11-6
    php4-gd	4.3.10-18	arm	DSA-1206-1 php4	2006-11-6
    php4-imap	4.3.10-18	arm	DSA-1206-1 php4	2006-11-6
    php4-ldap	4.3.10-18	arm	DSA-1206-1 php4	2006-11-6
    php4-mcal	4.3.10-18	arm	DSA-1206-1 php4	2006-11-6
    php4-mhash	4.3.10-18	arm	DSA-1206-1 php4	2006-11-6
    php4-mysql	4.3.10-18	arm	DSA-1206-1 php4	2006-11-6
    php4-odbc	4.3.10-18	arm	DSA-1206-1 php4	2006-11-6
    php4-recode	4.3.10-18	arm	DSA-1206-1 php4	2006-11-6
    php4-snmp	4.3.10-18	arm	DSA-1206-1 php4	2006-11-6
    php4-sybase	4.3.10-18	arm	DSA-1206-1 php4	2006-11-6
    php4-xslt	4.3.10-18	arm	DSA-1206-1 php4	2006-11-6
    libapache-mod-php4	4.3.10-18	i386	DSA-1206-1 php4	2006-11-6
    libapache2-mod-php4	4.3.10-18	i386	DSA-1206-1 php4	2006-11-6
    php4-cgi	4.3.10-18	i386	DSA-1206-1 php4	2006-11-6
    php4-cli	4.3.10-18	i386	DSA-1206-1 php4	2006-11-6
    php4-common	4.3.10-18	i386	DSA-1206-1 php4	2006-11-6
    php4-curl	4.3.10-18	i386	DSA-1206-1 php4	2006-11-6
    php4-dev	4.3.10-18	i386	DSA-1206-1 php4	2006-11-6
    php4-domxml	4.3.10-18	i386	DSA-1206-1 php4	2006-11-6
    php4-gd	4.3.10-18	i386	DSA-1206-1 php4	2006-11-6
    php4-imap	4.3.10-18	i386	DSA-1206-1 php4	2006-11-6
    php4-ldap	4.3.10-18	i386	DSA-1206-1 php4	2006-11-6
    php4-mcal	4.3.10-18	i386	DSA-1206-1 php4	2006-11-6
    php4-mhash	4.3.10-18	i386	DSA-1206-1 php4	2006-11-6
    php4-mysql	4.3.10-18	i386	DSA-1206-1 php4	2006-11-6
    php4-odbc	4.3.10-18	i386	DSA-1206-1 php4	2006-11-6
    php4-recode	4.3.10-18	i386	DSA-1206-1 php4	2006-11-6
    php4-snmp	4.3.10-18	i386	DSA-1206-1 php4	2006-11-6
    php4-sybase	4.3.10-18	i386	DSA-1206-1 php4	2006-11-6
    php4-xslt	4.3.10-18	i386	DSA-1206-1 php4	2006-11-6
    libapache-mod-php4	4.3.10-18	ia64	DSA-1206-1 php4	2006-11-6
    libapache2-mod-php4	4.3.10-18	ia64	DSA-1206-1 php4	2006-11-6
    php4-cgi	4.3.10-18	ia64	DSA-1206-1 php4	2006-11-6
    php4-cli	4.3.10-18	ia64	DSA-1206-1 php4	2006-11-6
    php4-common	4.3.10-18	ia64	DSA-1206-1 php4	2006-11-6
    php4-curl	4.3.10-18	ia64	DSA-1206-1 php4	2006-11-6
    php4-dev	4.3.10-18	ia64	DSA-1206-1 php4	2006-11-6
    php4-domxml	4.3.10-18	ia64	DSA-1206-1 php4	2006-11-6
    php4-gd	4.3.10-18	ia64	DSA-1206-1 php4	2006-11-6
    php4-imap	4.3.10-18	ia64	DSA-1206-1 php4	2006-11-6
    php4-ldap	4.3.10-18	ia64	DSA-1206-1 php4	2006-11-6
    php4-mcal	4.3.10-18	ia64	DSA-1206-1 php4	2006-11-6
    php4-mhash	4.3.10-18	ia64	DSA-1206-1 php4	2006-11-6
    php4-mysql	4.3.10-18	ia64	DSA-1206-1 php4	2006-11-6
    php4-odbc	4.3.10-18	ia64	DSA-1206-1 php4	2006-11-6
    php4-recode	4.3.10-18	ia64	DSA-1206-1 php4	2006-11-6
    php4-snmp	4.3.10-18	ia64	DSA-1206-1 php4	2006-11-6
    php4-sybase	4.3.10-18	ia64	DSA-1206-1 php4	2006-11-6
    php4-xslt	4.3.10-18	ia64	DSA-1206-1 php4	2006-11-6
    libapache-mod-php4	4.3.10-18	mips	DSA-1206-1 php4	2006-11-6
    libapache2-mod-php4	4.3.10-18	mips	DSA-1206-1 php4	2006-11-6
    php4-cgi	4.3.10-18	mips	DSA-1206-1 php4	2006-11-6
    php4-cli	4.3.10-18	mips	DSA-1206-1 php4	2006-11-6
    php4-common	4.3.10-18	mips	DSA-1206-1 php4	2006-11-6
    php4-curl	4.3.10-18	mips	DSA-1206-1 php4	2006-11-6
    php4-dev	4.3.10-18	mips	DSA-1206-1 php4	2006-11-6
    php4-domxml	4.3.10-18	mips	DSA-1206-1 php4	2006-11-6
    php4-gd	4.3.10-18	mips	DSA-1206-1 php4	2006-11-6
    php4-imap	4.3.10-18	mips	DSA-1206-1 php4	2006-11-6
    php4-ldap	4.3.10-18	mips	DSA-1206-1 php4	2006-11-6
    php4-mcal	4.3.10-18	mips	DSA-1206-1 php4	2006-11-6
    php4-mhash	4.3.10-18	mips	DSA-1206-1 php4	2006-11-6
    php4-mysql	4.3.10-18	mips	DSA-1206-1 php4	2006-11-6
    php4-odbc	4.3.10-18	mips	DSA-1206-1 php4	2006-11-6
    php4-recode	4.3.10-18	mips	DSA-1206-1 php4	2006-11-6
    php4-snmp	4.3.10-18	mips	DSA-1206-1 php4	2006-11-6
    php4-sybase	4.3.10-18	mips	DSA-1206-1 php4	2006-11-6
    php4-xslt	4.3.10-18	mips	DSA-1206-1 php4	2006-11-6
    libapache-mod-php4	4.3.10-18	mipsel	DSA-1206-1 php4	2006-11-6
    libapache2-mod-php4	4.3.10-18	mipsel	DSA-1206-1 php4	2006-11-6
    php4-cgi	4.3.10-18	mipsel	DSA-1206-1 php4	2006-11-6
    php4-cli	4.3.10-18	mipsel	DSA-1206-1 php4	2006-11-6
    php4-common	4.3.10-18	mipsel	DSA-1206-1 php4	2006-11-6
    php4-curl	4.3.10-18	mipsel	DSA-1206-1 php4	2006-11-6
    php4-dev	4.3.10-18	mipsel	DSA-1206-1 php4	2006-11-6
    php4-domxml	4.3.10-18	mipsel	DSA-1206-1 php4	2006-11-6
    php4-gd	4.3.10-18	mipsel	DSA-1206-1 php4	2006-11-6
    php4-imap	4.3.10-18	mipsel	DSA-1206-1 php4	2006-11-6
    php4-ldap	4.3.10-18	mipsel	DSA-1206-1 php4	2006-11-6
    php4-mcal	4.3.10-18	mipsel	DSA-1206-1 php4	2006-11-6
    php4-mhash	4.3.10-18	mipsel	DSA-1206-1 php4	2006-11-6
    php4-mysql	4.3.10-18	mipsel	DSA-1206-1 php4	2006-11-6
    php4-odbc	4.3.10-18	mipsel	DSA-1206-1 php4	2006-11-6
    php4-recode	4.3.10-18	mipsel	DSA-1206-1 php4	2006-11-6
    php4-snmp	4.3.10-18	mipsel	DSA-1206-1 php4	2006-11-6
    php4-sybase	4.3.10-18	mipsel	DSA-1206-1 php4	2006-11-6
    php4-xslt	4.3.10-18	mipsel	DSA-1206-1 php4	2006-11-6
    libapache-mod-php4	4.3.10-18	powerpc	DSA-1206-1 php4	2006-11-6
    libapache2-mod-php4	4.3.10-18	powerpc	DSA-1206-1 php4	2006-11-6
    php4-cgi	4.3.10-18	powerpc	DSA-1206-1 php4	2006-11-6
    php4-cli	4.3.10-18	powerpc	DSA-1206-1 php4	2006-11-6
    php4-common	4.3.10-18	powerpc	DSA-1206-1 php4	2006-11-6
    php4-curl	4.3.10-18	powerpc	DSA-1206-1 php4	2006-11-6
    php4-dev	4.3.10-18	powerpc	DSA-1206-1 php4	2006-11-6
    php4-domxml	4.3.10-18	powerpc	DSA-1206-1 php4	2006-11-6
    php4-gd	4.3.10-18	powerpc	DSA-1206-1 php4	2006-11-6
    php4-imap	4.3.10-18	powerpc	DSA-1206-1 php4	2006-11-6
    php4-ldap	4.3.10-18	powerpc	DSA-1206-1 php4	2006-11-6
    php4-mcal	4.3.10-18	powerpc	DSA-1206-1 php4	2006-11-6
    php4-mhash	4.3.10-18	powerpc	DSA-1206-1 php4	2006-11-6
    php4-mysql	4.3.10-18	powerpc	DSA-1206-1 php4	2006-11-6
    php4-odbc	4.3.10-18	powerpc	DSA-1206-1 php4	2006-11-6
    php4-recode	4.3.10-18	powerpc	DSA-1206-1 php4	2006-11-6
    php4-snmp	4.3.10-18	powerpc	DSA-1206-1 php4	2006-11-6
    php4-sybase	4.3.10-18	powerpc	DSA-1206-1 php4	2006-11-6
    php4-xslt	4.3.10-18	powerpc	DSA-1206-1 php4	2006-11-6
    libapache-mod-php4	4.3.10-18	s390	DSA-1206-1 php4	2006-11-6
    libapache2-mod-php4	4.3.10-18	s390	DSA-1206-1 php4	2006-11-6
    php4-cgi	4.3.10-18	s390	DSA-1206-1 php4	2006-11-6
    php4-cli	4.3.10-18	s390	DSA-1206-1 php4	2006-11-6
    php4-common	4.3.10-18	s390	DSA-1206-1 php4	2006-11-6
    php4-curl	4.3.10-18	s390	DSA-1206-1 php4	2006-11-6
    php4-dev	4.3.10-18	s390	DSA-1206-1 php4	2006-11-6
    php4-domxml	4.3.10-18	s390	DSA-1206-1 php4	2006-11-6
    php4-gd	4.3.10-18	s390	DSA-1206-1 php4	2006-11-6
    php4-imap	4.3.10-18	s390	DSA-1206-1 php4	2006-11-6
    php4-ldap	4.3.10-18	s390	DSA-1206-1 php4	2006-11-6
    php4-mcal	4.3.10-18	s390	DSA-1206-1 php4	2006-11-6
    php4-mhash	4.3.10-18	s390	DSA-1206-1 php4	2006-11-6
    php4-mysql	4.3.10-18	s390	DSA-1206-1 php4	2006-11-6
    php4-odbc	4.3.10-18	s390	DSA-1206-1 php4	2006-11-6
    php4-recode	4.3.10-18	s390	DSA-1206-1 php4	2006-11-6
    php4-snmp	4.3.10-18	s390	DSA-1206-1 php4	2006-11-6
    php4-sybase	4.3.10-18	s390	DSA-1206-1 php4	2006-11-6
    php4-xslt	4.3.10-18	s390	DSA-1206-1 php4	2006-11-6
    libapache-mod-php4	4.3.10-18	sparc	DSA-1206-1 php4	2006-11-6
    libapache2-mod-php4	4.3.10-18	sparc	DSA-1206-1 php4	2006-11-6
    php4-cgi	4.3.10-18	sparc	DSA-1206-1 php4	2006-11-6
    php4-cli	4.3.10-18	sparc	DSA-1206-1 php4	2006-11-6
    php4-common	4.3.10-18	sparc	DSA-1206-1 php4	2006-11-6
    php4-curl	4.3.10-18	sparc	DSA-1206-1 php4	2006-11-6
    php4-dev	4.3.10-18	sparc	DSA-1206-1 php4	2006-11-6
    php4-domxml	4.3.10-18	sparc	DSA-1206-1 php4	2006-11-6
    php4-gd	4.3.10-18	sparc	DSA-1206-1 php4	2006-11-6
    php4-imap	4.3.10-18	sparc	DSA-1206-1 php4	2006-11-6
    php4-ldap	4.3.10-18	sparc	DSA-1206-1 php4	2006-11-6
    php4-mcal	4.3.10-18	sparc	DSA-1206-1 php4	2006-11-6
    php4-mhash	4.3.10-18	sparc	DSA-1206-1 php4	2006-11-6
    php4-mysql	4.3.10-18	sparc	DSA-1206-1 php4	2006-11-6
    php4-odbc	4.3.10-18	sparc	DSA-1206-1 php4	2006-11-6
    php4-recode	4.3.10-18	sparc	DSA-1206-1 php4	2006-11-6
    php4-snmp	4.3.10-18	sparc	DSA-1206-1 php4	2006-11-6
    php4-sybase	4.3.10-18	sparc	DSA-1206-1 php4	2006-11-6
    php4-xslt	4.3.10-18	sparc	DSA-1206-1 php4	2006-11-6
    sitebar	3.2.6-7.1	all	DSA-1130-1 sitebar	2006-7-30
    squirrelmail	1.4.4-10	all	DSA-1241-1 squirrelmail	2006-12-25
    libphp-adodb	1.51-1.2	all	DSA-1029-1 libphp-adodb	2006-4-8
    hiki	0.6.5-2	all	DSA-1119-1 hiki	2006-7-22
    libtiff-opengl	3.7.2-4	alpha	DSA-1078-1 tiff	2006-5-27
    libtiff-tools	3.7.2-4	alpha	DSA-1078-1 tiff	2006-5-27
    libtiff4	3.7.2-4	alpha	DSA-1078-1 tiff	2006-5-27
    libtiff4-dev	3.7.2-4	alpha	DSA-1078-1 tiff	2006-5-27
    libtiffxx0	3.7.2-4	alpha	DSA-1078-1 tiff	2006-5-27
    libtiff-opengl	3.7.2-4	amd64	DSA-1078-1 tiff	2006-5-27
    libtiff-tools	3.7.2-4	amd64	DSA-1078-1 tiff	2006-5-27
    libtiff4	3.7.2-4	amd64	DSA-1078-1 tiff	2006-5-27
    libtiff4-dev	3.7.2-4	amd64	DSA-1078-1 tiff	2006-5-27
    libtiffxx0	3.7.2-4	amd64	DSA-1078-1 tiff	2006-5-27
    libtiff-opengl	3.7.2-4	arm	DSA-1078-1 tiff	2006-5-27
    libtiff-tools	3.7.2-4	arm	DSA-1078-1 tiff	2006-5-27
    libtiff4	3.7.2-4	arm	DSA-1078-1 tiff	2006-5-27
    libtiff4-dev	3.7.2-4	arm	DSA-1078-1 tiff	2006-5-27
    libtiffxx0	3.7.2-4	arm	DSA-1078-1 tiff	2006-5-27
    libtiff-opengl	3.7.2-4	i386	DSA-1078-1 tiff	2006-5-27
    libtiff-tools	3.7.2-4	i386	DSA-1078-1 tiff	2006-5-27
    libtiff4	3.7.2-4	i386	DSA-1078-1 tiff	2006-5-27
    libtiff4-dev	3.7.2-4	i386	DSA-1078-1 tiff	2006-5-27
    libtiffxx0	3.7.2-4	i386	DSA-1078-1 tiff	2006-5-27
    libtiff-opengl	3.7.2-4	ia64	DSA-1078-1 tiff	2006-5-27
    libtiff-tools	3.7.2-4	ia64	DSA-1078-1 tiff	2006-5-27
    libtiff4	3.7.2-4	ia64	DSA-1078-1 tiff	2006-5-27
    libtiff4-dev	3.7.2-4	ia64	DSA-1078-1 tiff	2006-5-27
    libtiffxx0	3.7.2-4	ia64	DSA-1078-1 tiff	2006-5-27
    libtiff-opengl	3.7.2-4	hppa	DSA-1078-1 tiff	2006-5-27
    libtiff-tools	3.7.2-4	hppa	DSA-1078-1 tiff	2006-5-27
    libtiff4	3.7.2-4	hppa	DSA-1078-1 tiff	2006-5-27
    libtiff4-dev	3.7.2-4	hppa	DSA-1078-1 tiff	2006-5-27
    libtiffxx0	3.7.2-4	hppa	DSA-1078-1 tiff	2006-5-27
    libtiff-opengl	3.7.2-4	m68k	DSA-1078-1 tiff	2006-5-27
    libtiff-tools	3.7.2-4	m68k	DSA-1078-1 tiff	2006-5-27
    libtiff4	3.7.2-4	m68k	DSA-1078-1 tiff	2006-5-27
    libtiff4-dev	3.7.2-4	m68k	DSA-1078-1 tiff	2006-5-27
    libtiffxx0	3.7.2-4	m68k	DSA-1078-1 tiff	2006-5-27
    libtiff-opengl	3.7.2-4	mips	DSA-1078-1 tiff	2006-5-27
    libtiff-tools	3.7.2-4	mips	DSA-1078-1 tiff	2006-5-27
    libtiff4	3.7.2-4	mips	DSA-1078-1 tiff	2006-5-27
    libtiff4-dev	3.7.2-4	mips	DSA-1078-1 tiff	2006-5-27
    libtiffxx0	3.7.2-4	mips	DSA-1078-1 tiff	2006-5-27
    libtiff-opengl	3.7.2-4	mipsel	DSA-1078-1 tiff	2006-5-27
    libtiff-tools	3.7.2-4	mipsel	DSA-1078-1 tiff	2006-5-27
    libtiff4	3.7.2-4	mipsel	DSA-1078-1 tiff	2006-5-27
    libtiff4-dev	3.7.2-4	mipsel	DSA-1078-1 tiff	2006-5-27
    libtiffxx0	3.7.2-4	mipsel	DSA-1078-1 tiff	2006-5-27
    libtiff-opengl	3.7.2-4	powerpc	DSA-1078-1 tiff	2006-5-27
    libtiff-tools	3.7.2-4	powerpc	DSA-1078-1 tiff	2006-5-27
    libtiff4	3.7.2-4	powerpc	DSA-1078-1 tiff	2006-5-27
    libtiff4-dev	3.7.2-4	powerpc	DSA-1078-1 tiff	2006-5-27
    libtiffxx0	3.7.2-4	powerpc	DSA-1078-1 tiff	2006-5-27
    libtiff-opengl	3.7.2-4	s390	DSA-1078-1 tiff	2006-5-27
    libtiff-tools	3.7.2-4	s390	DSA-1078-1 tiff	2006-5-27
    libtiff4	3.7.2-4	s390	DSA-1078-1 tiff	2006-5-27
    libtiff4-dev	3.7.2-4	s390	DSA-1078-1 tiff	2006-5-27
    libtiffxx0	3.7.2-4	s390	DSA-1078-1 tiff	2006-5-27
    libtiff-opengl	3.7.2-4	sparc	DSA-1078-1 tiff	2006-5-27
    libtiff-tools	3.7.2-4	sparc	DSA-1078-1 tiff	2006-5-27
    libtiff4	3.7.2-4	sparc	DSA-1078-1 tiff	2006-5-27
    libtiff4-dev	3.7.2-4	sparc	DSA-1078-1 tiff	2006-5-27
    libtiffxx0	3.7.2-4	sparc	DSA-1078-1 tiff	2006-5-27
    usermin-at	1.110-3.1	all	DSA-1177-1 usermin	2006-9-15
    usermin-changepass	1.110-3.1	all	DSA-1177-1 usermin	2006-9-15
    usermin-chfn	1.110-3.1	all	DSA-1177-1 usermin	2006-9-15
    usermin-commands	1.110-3.1	all	DSA-1177-1 usermin	2006-9-15
    usermin-cron	1.110-3.1	all	DSA-1177-1 usermin	2006-9-15
    usermin-cshrc	1.110-3.1	all	DSA-1177-1 usermin	2006-9-15
    usermin-fetchmail	1.110-3.1	all	DSA-1177-1 usermin	2006-9-15
    usermin-forward	1.110-3.1	all	DSA-1177-1 usermin	2006-9-15
    usermin-gnupg	1.110-3.1	all	DSA-1177-1 usermin	2006-9-15
    usermin-htaccess	1.110-3.1	all	DSA-1177-1 usermin	2006-9-15
    usermin-htpasswd	1.110-3.1	all	DSA-1177-1 usermin	2006-9-15
    usermin-mailbox	1.110-3.1	all	DSA-1177-1 usermin	2006-9-15
    usermin-man	1.110-3.1	all	DSA-1177-1 usermin	2006-9-15
    usermin-mysql	1.110-3.1	all	DSA-1177-1 usermin	2006-9-15
    usermin-plan	1.110-3.1	all	DSA-1177-1 usermin	2006-9-15
    usermin-postgresql	1.110-3.1	all	DSA-1177-1 usermin	2006-9-15
    usermin-proc	1.110-3.1	all	DSA-1177-1 usermin	2006-9-15
    usermin-procmail	1.110-3.1	all	DSA-1177-1 usermin	2006-9-15
    usermin-quota	1.110-3.1	all	DSA-1177-1 usermin	2006-9-15
    usermin-schedule	1.110-3.1	all	DSA-1177-1 usermin	2006-9-15
    usermin-shell	1.110-3.1	all	DSA-1177-1 usermin	2006-9-15
    usermin-spamassassin	1.110-3.1	all	DSA-1177-1 usermin	2006-9-15
    usermin-ssh	1.110-3.1	all	DSA-1177-1 usermin	2006-9-15
    usermin-tunnel	1.110-3.1	all	DSA-1177-1 usermin	2006-9-15
    usermin-updown	1.110-3.1	all	DSA-1177-1 usermin	2006-9-15
    usermin-usermount	1.110-3.1	all	DSA-1177-1 usermin	2006-9-15
    usermin	1.110-3.1	all	DSA-1177-1 usermin	2006-9-15
    courier-doc	0.37.3-2.9	all	DSA-1101-1 courier	2006-6-23
    courier-authdaemon	0.37.3-2.9	alpha	DSA-1101-1 courier	2006-6-23
    courier-authmysql	0.37.3-2.9	alpha	DSA-1101-1 courier	2006-6-23
    courier-base	0.37.3-2.9	alpha	DSA-1101-1 courier	2006-6-23
    courier-debug	0.37.3-2.9	alpha	DSA-1101-1 courier	2006-6-23
    courier-imap	1.4.3-2.9	alpha	DSA-1101-1 courier	2006-6-23
    courier-ldap	0.37.3-2.9	alpha	DSA-1101-1 courier	2006-6-23
    courier-maildrop	0.37.3-2.9	alpha	DSA-1101-1 courier	2006-6-23
    courier-mlm	0.37.3-2.9	alpha	DSA-1101-1 courier	2006-6-23
    courier-mta	0.37.3-2.9	alpha	DSA-1101-1 courier	2006-6-23
    courier-pcp	0.37.3-2.9	alpha	DSA-1101-1 courier	2006-6-23
    courier-pop	0.37.3-2.9	alpha	DSA-1101-1 courier	2006-6-23
    courier-webadmin	0.37.3-2.9	alpha	DSA-1101-1 courier	2006-6-23
    sqwebmail	0.37.3-2.9	alpha	DSA-1101-1 courier	2006-6-23
    courier-authdaemon	0.37.3-2.9	arm	DSA-1101-1 courier	2006-6-23
    courier-authmysql	0.37.3-2.9	arm	DSA-1101-1 courier	2006-6-23
    courier-base	0.37.3-2.9	arm	DSA-1101-1 courier	2006-6-23
    courier-debug	0.37.3-2.9	arm	DSA-1101-1 courier	2006-6-23
    courier-imap	1.4.3-2.9	arm	DSA-1101-1 courier	2006-6-23
    courier-ldap	0.37.3-2.9	arm	DSA-1101-1 courier	2006-6-23
    courier-maildrop	0.37.3-2.9	arm	DSA-1101-1 courier	2006-6-23
    courier-mlm	0.37.3-2.9	arm	DSA-1101-1 courier	2006-6-23
    courier-mta	0.37.3-2.9	arm	DSA-1101-1 courier	2006-6-23
    courier-pcp	0.37.3-2.9	arm	DSA-1101-1 courier	2006-6-23
    courier-pop	0.37.3-2.9	arm	DSA-1101-1 courier	2006-6-23
    courier-webadmin	0.37.3-2.9	arm	DSA-1101-1 courier	2006-6-23
    sqwebmail	0.37.3-2.9	arm	DSA-1101-1 courier	2006-6-23
    courier-authdaemon	0.37.3-2.9	i386	DSA-1101-1 courier	2006-6-23
    courier-authmysql	0.37.3-2.9	i386	DSA-1101-1 courier	2006-6-23
    courier-base	0.37.3-2.9	i386	DSA-1101-1 courier	2006-6-23
    courier-debug	0.37.3-2.9	i386	DSA-1101-1 courier	2006-6-23
    courier-imap	1.4.3-2.9	i386	DSA-1101-1 courier	2006-6-23
    courier-ldap	0.37.3-2.9	i386	DSA-1101-1 courier	2006-6-23
    courier-maildrop	0.37.3-2.9	i386	DSA-1101-1 courier	2006-6-23
    courier-mlm	0.37.3-2.9	i386	DSA-1101-1 courier	2006-6-23
    courier-mta	0.37.3-2.9	i386	DSA-1101-1 courier	2006-6-23
    courier-pcp	0.37.3-2.9	i386	DSA-1101-1 courier	2006-6-23
    courier-pop	0.37.3-2.9	i386	DSA-1101-1 courier	2006-6-23
    courier-webadmin	0.37.3-2.9	i386	DSA-1101-1 courier	2006-6-23
    sqwebmail	0.37.3-2.9	i386	DSA-1101-1 courier	2006-6-23
    courier-authdaemon	0.37.3-2.9	ia64	DSA-1101-1 courier	2006-6-23
    courier-authmysql	0.37.3-2.9	ia64	DSA-1101-1 courier	2006-6-23
    courier-base	0.37.3-2.9	ia64	DSA-1101-1 courier	2006-6-23
    courier-debug	0.37.3-2.9	ia64	DSA-1101-1 courier	2006-6-23
    courier-imap	1.4.3-2.9	ia64	DSA-1101-1 courier	2006-6-23
    courier-ldap	0.37.3-2.9	ia64	DSA-1101-1 courier	2006-6-23
    courier-maildrop	0.37.3-2.9	ia64	DSA-1101-1 courier	2006-6-23
    courier-mlm	0.37.3-2.9	ia64	DSA-1101-1 courier	2006-6-23
    courier-mta	0.37.3-2.9	ia64	DSA-1101-1 courier	2006-6-23
    courier-pcp	0.37.3-2.9	ia64	DSA-1101-1 courier	2006-6-23
    courier-pop	0.37.3-2.9	ia64	DSA-1101-1 courier	2006-6-23
    courier-webadmin	0.37.3-2.9	ia64	DSA-1101-1 courier	2006-6-23
    sqwebmail	0.37.3-2.9	ia64	DSA-1101-1 courier	2006-6-23
    courier-authdaemon	0.37.3-2.9	hppa	DSA-1101-1 courier	2006-6-23
    courier-authmysql	0.37.3-2.9	hppa	DSA-1101-1 courier	2006-6-23
    courier-base	0.37.3-2.9	hppa	DSA-1101-1 courier	2006-6-23
    courier-debug	0.37.3-2.9	hppa	DSA-1101-1 courier	2006-6-23
    courier-imap	1.4.3-2.9	hppa	DSA-1101-1 courier	2006-6-23
    courier-ldap	0.37.3-2.9	hppa	DSA-1101-1 courier	2006-6-23
    courier-maildrop	0.37.3-2.9	hppa	DSA-1101-1 courier	2006-6-23
    courier-mlm	0.37.3-2.9	hppa	DSA-1101-1 courier	2006-6-23
    courier-mta	0.37.3-2.9	hppa	DSA-1101-1 courier	2006-6-23
    courier-pcp	0.37.3-2.9	hppa	DSA-1101-1 courier	2006-6-23
    courier-pop	0.37.3-2.9	hppa	DSA-1101-1 courier	2006-6-23
    courier-webadmin	0.37.3-2.9	hppa	DSA-1101-1 courier	2006-6-23
    sqwebmail	0.37.3-2.9	hppa	DSA-1101-1 courier	2006-6-23
    courier-authdaemon	0.37.3-2.9	m68k	DSA-1101-1 courier	2006-6-23
    courier-authmysql	0.37.3-2.9	m68k	DSA-1101-1 courier	2006-6-23
    courier-base	0.37.3-2.9	m68k	DSA-1101-1 courier	2006-6-23
    courier-debug	0.37.3-2.9	m68k	DSA-1101-1 courier	2006-6-23
    courier-imap	1.4.3-2.9	m68k	DSA-1101-1 courier	2006-6-23
    courier-ldap	0.37.3-2.9	m68k	DSA-1101-1 courier	2006-6-23
    courier-maildrop	0.37.3-2.9	m68k	DSA-1101-1 courier	2006-6-23
    courier-mlm	0.37.3-2.9	m68k	DSA-1101-1 courier	2006-6-23
    courier-mta	0.37.3-2.9	m68k	DSA-1101-1 courier	2006-6-23
    courier-pcp	0.37.3-2.9	m68k	DSA-1101-1 courier	2006-6-23
    courier-pop	0.37.3-2.9	m68k	DSA-1101-1 courier	2006-6-23
    courier-webadmin	0.37.3-2.9	m68k	DSA-1101-1 courier	2006-6-23
    sqwebmail	0.37.3-2.9	m68k	DSA-1101-1 courier	2006-6-23
    courier-authdaemon	0.37.3-2.9	mips	DSA-1101-1 courier	2006-6-23
    courier-authmysql	0.37.3-2.9	mips	DSA-1101-1 courier	2006-6-23
    courier-base	0.37.3-2.9	mips	DSA-1101-1 courier	2006-6-23
    courier-debug	0.37.3-2.9	mips	DSA-1101-1 courier	2006-6-23
    courier-imap	1.4.3-2.9	mips	DSA-1101-1 courier	2006-6-23
    courier-ldap	0.37.3-2.9	mips	DSA-1101-1 courier	2006-6-23
    courier-maildrop	0.37.3-2.9	mips	DSA-1101-1 courier	2006-6-23
    courier-mlm	0.37.3-2.9	mips	DSA-1101-1 courier	2006-6-23
    courier-mta	0.37.3-2.9	mips	DSA-1101-1 courier	2006-6-23
    courier-pcp	0.37.3-2.9	mips	DSA-1101-1 courier	2006-6-23
    courier-pop	0.37.3-2.9	mips	DSA-1101-1 courier	2006-6-23
    courier-webadmin	0.37.3-2.9	mips	DSA-1101-1 courier	2006-6-23
    sqwebmail	0.37.3-2.9	mips	DSA-1101-1 courier	2006-6-23
    courier-authdaemon	0.37.3-2.9	mipsel	DSA-1101-1 courier	2006-6-23
    courier-authmysql	0.37.3-2.9	mipsel	DSA-1101-1 courier	2006-6-23
    courier-base	0.37.3-2.9	mipsel	DSA-1101-1 courier	2006-6-23
    courier-debug	0.37.3-2.9	mipsel	DSA-1101-1 courier	2006-6-23
    courier-imap	1.4.3-2.9	mipsel	DSA-1101-1 courier	2006-6-23
    courier-ldap	0.37.3-2.9	mipsel	DSA-1101-1 courier	2006-6-23
    courier-maildrop	0.37.3-2.9	mipsel	DSA-1101-1 courier	2006-6-23
    courier-mlm	0.37.3-2.9	mipsel	DSA-1101-1 courier	2006-6-23
    courier-mta	0.37.3-2.9	mipsel	DSA-1101-1 courier	2006-6-23
    courier-pcp	0.37.3-2.9	mipsel	DSA-1101-1 courier	2006-6-23
    courier-pop	0.37.3-2.9	mipsel	DSA-1101-1 courier	2006-6-23
    courier-webadmin	0.37.3-2.9	mipsel	DSA-1101-1 courier	2006-6-23
    sqwebmail	0.37.3-2.9	mipsel	DSA-1101-1 courier	2006-6-23
    courier-authdaemon	0.37.3-2.9	powerpc	DSA-1101-1 courier	2006-6-23
    courier-authmysql	0.37.3-2.9	powerpc	DSA-1101-1 courier	2006-6-23
    courier-base	0.37.3-2.9	powerpc	DSA-1101-1 courier	2006-6-23
    courier-debug	0.37.3-2.9	powerpc	DSA-1101-1 courier	2006-6-23
    courier-imap	1.4.3-2.9	powerpc	DSA-1101-1 courier	2006-6-23
    courier-ldap	0.37.3-2.9	powerpc	DSA-1101-1 courier	2006-6-23
    courier-maildrop	0.37.3-2.9	powerpc	DSA-1101-1 courier	2006-6-23
    courier-mlm	0.37.3-2.9	powerpc	DSA-1101-1 courier	2006-6-23
    courier-mta	0.37.3-2.9	powerpc	DSA-1101-1 courier	2006-6-23
    courier-pcp	0.37.3-2.9	powerpc	DSA-1101-1 courier	2006-6-23
    courier-pop	0.37.3-2.9	powerpc	DSA-1101-1 courier	2006-6-23
    courier-webadmin	0.37.3-2.9	powerpc	DSA-1101-1 courier	2006-6-23
    sqwebmail	0.37.3-2.9	powerpc	DSA-1101-1 courier	2006-6-23
    courier-authdaemon	0.37.3-2.9	s390	DSA-1101-1 courier	2006-6-23
    courier-authmysql	0.37.3-2.9	s390	DSA-1101-1 courier	2006-6-23
    courier-base	0.37.3-2.9	s390	DSA-1101-1 courier	2006-6-23
    courier-debug	0.37.3-2.9	s390	DSA-1101-1 courier	2006-6-23
    courier-imap	1.4.3-2.9	s390	DSA-1101-1 courier	2006-6-23
    courier-ldap	0.37.3-2.9	s390	DSA-1101-1 courier	2006-6-23
    courier-maildrop	0.37.3-2.9	s390	DSA-1101-1 courier	2006-6-23
    courier-mlm	0.37.3-2.9	s390	DSA-1101-1 courier	2006-6-23
    courier-mta	0.37.3-2.9	s390	DSA-1101-1 courier	2006-6-23
    courier-pcp	0.37.3-2.9	s390	DSA-1101-1 courier	2006-6-23
    courier-pop	0.37.3-2.9	s390	DSA-1101-1 courier	2006-6-23
    courier-webadmin	0.37.3-2.9	s390	DSA-1101-1 courier	2006-6-23
    sqwebmail	0.37.3-2.9	s390	DSA-1101-1 courier	2006-6-23
    courier-authdaemon	0.37.3-2.9	sparc	DSA-1101-1 courier	2006-6-23
    courier-authmysql	0.37.3-2.9	sparc	DSA-1101-1 courier	2006-6-23
    courier-base	0.37.3-2.9	sparc	DSA-1101-1 courier	2006-6-23
    courier-debug	0.37.3-2.9	sparc	DSA-1101-1 courier	2006-6-23
    courier-imap	1.4.3-2.9	sparc	DSA-1101-1 courier	2006-6-23
    courier-ldap	0.37.3-2.9	sparc	DSA-1101-1 courier	2006-6-23
    courier-maildrop	0.37.3-2.9	sparc	DSA-1101-1 courier	2006-6-23
    courier-mlm	0.37.3-2.9	sparc	DSA-1101-1 courier	2006-6-23
    courier-mta	0.37.3-2.9	sparc	DSA-1101-1 courier	2006-6-23
    courier-pcp	0.37.3-2.9	sparc	DSA-1101-1 courier	2006-6-23
    courier-pop	0.37.3-2.9	sparc	DSA-1101-1 courier	2006-6-23
    courier-webadmin	0.37.3-2.9	sparc	DSA-1101-1 courier	2006-6-23
    sqwebmail	0.37.3-2.9	sparc	DSA-1101-1 courier	2006-6-23
    squirrelmail	1.2.6-5	all	DSA-988-1 squirrelmail	2006-3-8
    squirrelmail	1.4.4-8	all	DSA-988-1 squirrelmail	2006-3-8
    procmail	3.15.2-1	alpha	DSA-083-1 procmail	2001-10-18
    procmail	3.15.2-1	arm	DSA-083-1 procmail	2001-10-18
    procmail	3.15.2-1	i386	DSA-083-1 procmail	2001-10-18
    procmail	3.15.2-1	m68k	DSA-083-1 procmail	2001-10-18
    procmail	3.15.2-1	powerpc	DSA-083-1 procmail	2001-10-18
    procmail	3.15.2-1	sparc	DSA-083-1 procmail	2001-10-18
    man2html	1.5-23	alpha	DSA-035-1 man2html	2001-03-07
    man2html	1.5-23	arm	DSA-035-1 man2html	2001-03-07
    man2html	1.5-23	i386	DSA-035-1 man2html	2001-03-07
    man2html	1.5-23	m68k	DSA-035-1 man2html	2001-03-07
    man2html	1.5-23	powerpc	DSA-035-1 man2html	2001-03-07
    man2html	1.5-23	sparc	DSA-035-1 man2html	2001-03-07
    mailx	8.1.1-10.1.5	alpha	DSA-044-1 mailx	2001-03-13
    mailx	8.1.1-10.1.5	arm	DSA-044-1 mailx	2001-03-13
    mailx	8.1.1-10.1.5	i386	DSA-044-1 mailx	2001-03-13
    mailx	8.1.1-10.1.5	m68k	DSA-044-1 mailx	2001-03-13
    mailx	8.1.1-10.1.5	powerpc	DSA-044-1 mailx	2001-03-13
    mailx	8.1.1-10.1.5	sparc	DSA-044-1 mailx	2001-03-13
    netscape-ja-resource-477	4.77-2	all	DSA-051-1 netscape	2001-4-23
    netscape-java-477	4.77-2	all	DSA-051-1 netscape	2001-4-23
    netscape-ko-resource-477	4.77-2	all	DSA-051-1 netscape	2001-4-23
    netscape-zh-resource-477	4.77-2	all	DSA-051-1 netscape	2001-4-23
    navigator-nethelp-477	4.77-2	all	DSA-051-1 netscape	2001-4-23
    communicator-nethelp-477	4.77-2	all	DSA-051-1 netscape	2001-4-23
    communicator-spellchk-477	4.77-2	all	DSA-051-1 netscape	2001-4-23
    netscape	4.77-1	i386	DSA-051-1 netscape	2001-4-23
    netscape-base-4-libc5	4.77-1	i386	DSA-051-1 netscape	2001-4-23
    netscape-base-4	4.77-1	i386	DSA-051-1 netscape	2001-4-23
    navigator	4.77-1	i386	DSA-051-1 netscape	2001-4-23
    communicator	4.77-1	i386	DSA-051-1 netscape	2001-4-23
    netscape-base-477	4.77-2	i386	DSA-051-1 netscape	2001-4-23
    netscape-smotif-477	4.77-2	i386	DSA-051-1 netscape	2001-4-23
    netscape-base-477	4.77-2	i386	DSA-051-1 netscape	2001-4-23
    navigator-base-477	4.77-2	i386	DSA-051-1 netscape	2001-4-23
    navigator-smotif-477	4.77-2	i386	DSA-051-1 netscape	2001-4-23
    communicator-base-477	4.77-2	i386	DSA-051-1 netscape	2001-4-23
    communicator-smotif-477	4.77-2	i386	DSA-051-1 netscape	2001-4-23
    xemacs21-support	21.1.10-5	all	DSA-042-1 gnuserv	2001-03-09
    xemacs21-supportel	21.1.10-5	all	DSA-042-1 gnuserv	2001-03-09
    xemacs21	21.1.10-5	all	DSA-042-1 gnuserv	2001-03-09
    xemacs21-bin	21.1.10-5	alpha	DSA-042-1 gnuserv	2001-03-09
    xemacs21-mule-canna-wnn	21.1.10-5	alpha	DSA-042-1 gnuserv	2001-03-09
    xemacs21-mule	21.1.10-5	alpha	DSA-042-1 gnuserv	2001-03-09
    xemacs21-nomule	21.1.10-5	alpha	DSA-042-1 gnuserv	2001-03-09
    xemacs21-bin	21.1.10-5	arm	DSA-042-1 gnuserv	2001-03-09
    xemacs21-mule-canna-wnn	21.1.10-5	arm	DSA-042-1 gnuserv	2001-03-09
    xemacs21-mule	21.1.10-5	arm	DSA-042-1 gnuserv	2001-03-09
    xemacs21-nomule	21.1.10-5	arm	DSA-042-1 gnuserv	2001-03-09
    xemacs21-bin	21.1.10-5	i386	DSA-042-1 gnuserv	2001-03-09
    xemacs21-mule-canna-wnn	21.1.10-5	i386	DSA-042-1 gnuserv	2001-03-09
    xemacs21-mule	21.1.10-5	i386	DSA-042-1 gnuserv	2001-03-09
    xemacs21-nomule	21.1.10-5	i386	DSA-042-1 gnuserv	2001-03-09
    xemacs21-bin	21.1.10-5	m68k	DSA-042-1 gnuserv	2001-03-09
    xemacs21-mule-canna-wnn	21.1.10-5	m68k	DSA-042-1 gnuserv	2001-03-09
    xemacs21-mule	21.1.10-5	m68k	DSA-042-1 gnuserv	2001-03-09
    xemacs21-nomule	21.1.10-5	m68k	DSA-042-1 gnuserv	2001-03-09
    xemacs21-bin	21.1.10-5	powerpc	DSA-042-1 gnuserv	2001-03-09
    xemacs21-mule-canna-wnn	21.1.10-5	powerpc	DSA-042-1 gnuserv	2001-03-09
    xemacs21-mule	21.1.10-5	powerpc	DSA-042-1 gnuserv	2001-03-09
    xemacs21-nomule	21.1.10-5	powerpc	DSA-042-1 gnuserv	2001-03-09
    xemacs21-bin	21.1.10-5	sparc	DSA-042-1 gnuserv	2001-03-09
    xemacs21-mule-canna-wnn	21.1.10-5	sparc	DSA-042-1 gnuserv	2001-03-09
    xemacs21-mule	21.1.10-5	sparc	DSA-042-1 gnuserv	2001-03-09
    xemacs21-nomule	21.1.10-5	sparc	DSA-042-1 gnuserv	2001-03-09
    ssh	1.2.3-9.3	sparc	DSA-025-2 openssh	2001-01-28
    cfingerd	1.4.1-1.2	alpha	DSA-066-1 cfingerd	2001-7-11
    cfingerd	1.4.1-1.2	arm	DSA-066-1 cfingerd	2001-7-11
    cfingerd	1.4.1-1.2	i386	DSA-066-1 cfingerd	2001-7-11
    cfingerd	1.4.1-1.2	m68k	DSA-066-1 cfingerd	2001-7-11
    cfingerd	1.4.1-1.2	powerpc	DSA-066-1 cfingerd	2001-7-11
    cfingerd	1.4.1-1.2	sparc	DSA-066-1 cfingerd	2001-7-11
    ssltelnet	0.16.3-1.1	alpha	DSA-075-1 netkit-telnet-ssl	2001-8-14
    telnet-ssl	0.16.3-1.1	alpha	DSA-075-1 netkit-telnet-ssl	2001-8-14
    telnetd-ssl	0.16.3-1.1	alpha	DSA-075-1 netkit-telnet-ssl	2001-8-14
    ssltelnet	0.16.3-1.1	arm	DSA-075-1 netkit-telnet-ssl	2001-8-14
    telnet-ssl	0.16.3-1.1	arm	DSA-075-1 netkit-telnet-ssl	2001-8-14
    telnetd-ssl	0.16.3-1.1	arm	DSA-075-1 netkit-telnet-ssl	2001-8-14
    ssltelnet	0.16.3-1.1	i386	DSA-075-1 netkit-telnet-ssl	2001-8-14
    telnet-ssl	0.16.3-1.1	i386	DSA-075-1 netkit-telnet-ssl	2001-8-14
    telnetd-ssl	0.16.3-1.1	i386	DSA-075-1 netkit-telnet-ssl	2001-8-14
    ssltelnet	0.16.3-1.1	m68k	DSA-075-1 netkit-telnet-ssl	2001-8-14
    telnet-ssl	0.16.3-1.1	m68k	DSA-075-1 netkit-telnet-ssl	2001-8-14
    telnetd-ssl	0.16.3-1.1	m68k	DSA-075-1 netkit-telnet-ssl	2001-8-14
    ssltelnet	0.16.3-1.1	powerpc	DSA-075-1 netkit-telnet-ssl	2001-8-14
    telnet-ssl	0.16.3-1.1	powerpc	DSA-075-1 netkit-telnet-ssl	2001-8-14
    telnetd-ssl	0.16.3-1.1	powerpc	DSA-075-1 netkit-telnet-ssl	2001-8-14
    ssltelnet	0.16.3-1.1	sparc	DSA-075-1 netkit-telnet-ssl	2001-8-14
    telnet-ssl	0.16.3-1.1	sparc	DSA-075-1 netkit-telnet-ssl	2001-8-14
    telnetd-ssl	0.16.3-1.1	sparc	DSA-075-1 netkit-telnet-ssl	2001-8-14
    sgml-tools	1.0.9-15	alpha	DSA-038-1 sgml-tools	2001-03-08
    sgml-tools	1.0.9-15	arm	DSA-038-1 sgml-tools	2001-03-08
    sgml-tools	1.0.9-15	i386	DSA-038-1 sgml-tools	2001-03-08
    sgml-tools	1.0.9-15	m68k	DSA-038-1 sgml-tools	2001-03-08
    sgml-tools	1.0.9-15	powerpc	DSA-038-1 sgml-tools	2001-03-08
    sgml-tools	1.0.9-15	sparc	DSA-038-1 sgml-tools	2001-03-08
    sendfile	2.1-20.2	alpha	DSA-050-1 sendfile	2001-4-20
    sendfile	2.1-20.2	arm	DSA-050-1 sendfile	2001-4-20
    sendfile	2.1-20.2	i386	DSA-050-1 sendfile	2001-4-20
    sendfile	2.1-20.2	m68k	DSA-050-1 sendfile	2001-4-20
    sendfile	2.1-20.2	powerpc	DSA-050-1 sendfile	2001-4-20
    sendfile	2.1-20.2	sparc	DSA-050-1 sendfile	2001-4-20
    man-db	2.3.16-1.1	alpha	DSA-028-1 man-db	2001-02-09
    man-db	2.3.16-1.1	arm	DSA-028-1 man-db	2001-02-09
    man-db	2.3.16-1.1	i386	DSA-028-1 man-db	2001-02-09
    man-db	2.3.16-1.1	m68k	DSA-028-1 man-db	2001-02-09
    man-db	2.3.16-1.1	powerpc	DSA-028-1 man-db	2001-02-09
    man-db	2.3.16-1.1	sparc	DSA-028-1 man-db	2001-02-09
    inn2-dev	2.2.2.2000.01.31-4.1	alpha	DSA-023-1 inn2	2001-01-26
    inn2-inews	2.2.2.2000.01.31-4.1	alpha	DSA-023-1 inn2	2001-01-26
    inn2	2.2.2.2000.01.31-4.1	alpha	DSA-023-1 inn2	2001-01-26
    inn2-dev	2.2.2.2000.01.31-4.1	arm	DSA-023-1 inn2	2001-01-26
    inn2-inews	2.2.2.2000.01.31-4.1	arm	DSA-023-1 inn2	2001-01-26
    inn2	2.2.2.2000.01.31-4.1	arm	DSA-023-1 inn2	2001-01-26
    inn2-dev	2.2.2.2000.01.31-4.1	i386	DSA-023-1 inn2	2001-01-26
    inn2-inews	2.2.2.2000.01.31-4.1	i386	DSA-023-1 inn2	2001-01-26
    inn2	2.2.2.2000.01.31-4.1	i386	DSA-023-1 inn2	2001-01-26
    inn2-dev	2.2.2.2000.01.31-4.1	m68k	DSA-023-1 inn2	2001-01-26
    inn2-inews	2.2.2.2000.01.31-4.1	m68k	DSA-023-1 inn2	2001-01-26
    inn2	2.2.2.2000.01.31-4.1	m68k	DSA-023-1 inn2	2001-01-26
    inn2-dev	2.2.2.2000.01.31-4.1	powerpc	DSA-023-1 inn2	2001-01-26
    inn2-inews	2.2.2.2000.01.31-4.1	powerpc	DSA-023-1 inn2	2001-01-26
    inn2	2.2.2.2000.01.31-4.1	powerpc	DSA-023-1 inn2	2001-01-26
    inn2-dev	2.2.2.2000.01.31-4.1	sparc	DSA-023-1 inn2	2001-01-26
    inn2-inews	2.2.2.2000.01.31-4.1	sparc	DSA-023-1 inn2	2001-01-26
    inn2	2.2.2.2000.01.31-4.1	sparc	DSA-023-1 inn2	2001-01-26
    tinyproxy	1.3.1-2	alpha	DSA-018-1 tinyproxy	2001-01-23
    tinyproxy	1.3.1-2	arm	DSA-018-1 tinyproxy	2001-01-23
    tinyproxy	1.3.1-2	i386	DSA-018-1 tinyproxy	2001-01-23
    tinyproxy	1.3.1-2	m68k	DSA-018-1 tinyproxy	2001-01-23
    tinyproxy	1.3.1-2	powerpc	DSA-018-1 tinyproxy	2001-01-23
    tinyproxy	1.3.1-2	sparc	DSA-018-1 tinyproxy	2001-01-23
    apache-common	1.3.9-13.2	alpha	DSA-021-1 apache	2001-01-26
    apache-dev	1.3.9-13.2	alpha	DSA-021-1 apache	2001-01-26
    apache	1.3.9-13.2	alpha	DSA-021-1 apache	2001-01-26
    apache-common	1.3.9-13.2	arm	DSA-021-1 apache	2001-01-26
    apache-dev	1.3.9-13.2	arm	DSA-021-1 apache	2001-01-26
    apache	1.3.9-13.2	arm	DSA-021-1 apache	2001-01-26
    apache-common	1.3.9-13.2	i386	DSA-021-1 apache	2001-01-26
    apache-dev	1.3.9-13.2	i386	DSA-021-1 apache	2001-01-26
    apache	1.3.9-13.2	i386	DSA-021-1 apache	2001-01-26
    apache-common	1.3.9-13.2	m68k	DSA-021-1 apache	2001-01-26
    apache-dev	1.3.9-13.2	m68k	DSA-021-1 apache	2001-01-26
    apache	1.3.9-13.2	m68k	DSA-021-1 apache	2001-01-26
    apache-common	1.3.9-13.2	powerpc	DSA-021-1 apache	2001-01-26
    apache-dev	1.3.9-13.2	powerpc	DSA-021-1 apache	2001-01-26
    apache	1.3.9-13.2	powerpc	DSA-021-1 apache	2001-01-26
    apache-common	1.3.9-13.2	sparc	DSA-021-1 apache	2001-01-26
    apache-dev	1.3.9-13.2	sparc	DSA-021-1 apache	2001-01-26
    apache	1.3.9-13.2	sparc	DSA-021-1 apache	2001-01-26
    cfingerd	1.4.1-1.1	alpha	DSA-049-1 cfingerd	2001-4-19
    cfingerd	1.4.1-1.1	arm	DSA-049-1 cfingerd	2001-4-19
    cfingerd	1.4.1-1.1	i386	DSA-049-1 cfingerd	2001-4-19
    cfingerd	1.4.1-1.1	m68k	DSA-049-1 cfingerd	2001-4-19
    cfingerd	1.4.1-1.1	powerpc	DSA-049-1 cfingerd	2001-4-19
    cfingerd	1.4.1-1.1	sparc	DSA-049-1 cfingerd	2001-4-19
    rxvt-ml	2.6.2-2.1	alpha	DSA-062-1 rxvt	2001-6-16
    rxvt	2.6.2-2.1	alpha	DSA-062-1 rxvt	2001-6-16
    rxvt-ml	2.6.2-2.1	arm	DSA-062-1 rxvt	2001-6-16
    rxvt	2.6.2-2.1	arm	DSA-062-1 rxvt	2001-6-16
    rxvt-ml	2.6.2-2.1	i386	DSA-062-1 rxvt	2001-6-16
    rxvt	2.6.2-2.1	i386	DSA-062-1 rxvt	2001-6-16
    rxvt-ml	2.6.2-2.1	m68k	DSA-062-1 rxvt	2001-6-16
    rxvt	2.6.2-2.1	m68k	DSA-062-1 rxvt	2001-6-16
    rxvt-ml	2.6.2-2.1	powerpc	DSA-062-1 rxvt	2001-6-16
    rxvt	2.6.2-2.1	powerpc	DSA-062-1 rxvt	2001-6-16
    rxvt-ml	2.6.2-2.1	sparc	DSA-062-1 rxvt	2001-6-16
    rxvt	2.6.2-2.1	sparc	DSA-062-1 rxvt	2001-6-16
    micq	0.4.3-4	alpha	DSA-012-1 micq	2001-01-22
    micq	0.4.3-4	arm	DSA-012-1 micq	2001-01-22
    micq	0.4.3-4	i386	DSA-012-1 micq	2001-01-22
    micq	0.4.3-4	m68k	DSA-012-1 micq	2001-01-22
    micq	0.4.3-4	powerpc	DSA-012-1 micq	2001-01-22
    micq	0.4.3-4	sparc	DSA-012-1 micq	2001-01-22
    zope	2.1.6-10	alpha	DSA-055-1 zope	2001-5-7
    zope	2.1.6-10	arm	DSA-055-1 zope	2001-5-7
    zope	2.1.6-10	i386	DSA-055-1 zope	2001-5-7
    zope	2.1.6-10	m68k	DSA-055-1 zope	2001-5-7
    zope	2.1.6-10	powerpc	DSA-055-1 zope	2001-5-7
    zope	2.1.6-10	sparc	DSA-055-1 zope	2001-5-7
    squid-cgi	2.2.5-3.2	alpha	DSA-077-1 squid	2001-9-24
    squid	2.2.5-3.2	alpha	DSA-077-1 squid	2001-9-24
    squidclient	2.2.5-3.2	alpha	DSA-077-1 squid	2001-9-24
    squid-cgi	2.2.5-3.2	arm	DSA-077-1 squid	2001-9-24
    squid	2.2.5-3.2	arm	DSA-077-1 squid	2001-9-24
    squidclient	2.2.5-3.2	arm	DSA-077-1 squid	2001-9-24
    squid-cgi	2.2.5-3.2	i386	DSA-077-1 squid	2001-9-24
    squid	2.2.5-3.2	i386	DSA-077-1 squid	2001-9-24
    squidclient	2.2.5-3.2	i386	DSA-077-1 squid	2001-9-24
    squid-cgi	2.2.5-3.2	m68k	DSA-077-1 squid	2001-9-24
    squid	2.2.5-3.2	m68k	DSA-077-1 squid	2001-9-24
    squidclient	2.2.5-3.2	m68k	DSA-077-1 squid	2001-9-24
    squid-cgi	2.2.5-3.2	powerpc	DSA-077-1 squid	2001-9-24
    squid	2.2.5-3.2	powerpc	DSA-077-1 squid	2001-9-24
    squidclient	2.2.5-3.2	powerpc	DSA-077-1 squid	2001-9-24
    squid-cgi	2.2.5-3.2	sparc	DSA-077-1 squid	2001-9-24
    squid	2.2.5-3.2	sparc	DSA-077-1 squid	2001-9-24
    squidclient	2.2.5-3.2	sparc	DSA-077-1 squid	2001-9-24
    apache-common	1.3.9-14	alpha	DSA-067-1 apache	2001-7-28
    apache-dev	1.3.9-14	alpha	DSA-067-1 apache	2001-7-28
    apache	1.3.9-14	alpha	DSA-067-1 apache	2001-7-28
    apache-common	1.3.9-14	arm	DSA-067-1 apache	2001-7-28
    apache-dev	1.3.9-14	arm	DSA-067-1 apache	2001-7-28
    apache	1.3.9-14	arm	DSA-067-1 apache	2001-7-28
    apache-common	1.3.9-14	i386	DSA-067-1 apache	2001-7-28
    apache-dev	1.3.9-14	i386	DSA-067-1 apache	2001-7-28
    apache	1.3.9-14	i386	DSA-067-1 apache	2001-7-28
    apache-common	1.3.9-14	m68k	DSA-067-1 apache	2001-7-28
    apache-dev	1.3.9-14	m68k	DSA-067-1 apache	2001-7-28
    apache	1.3.9-14	m68k	DSA-067-1 apache	2001-7-28
    apache-common	1.3.9-14	powerpc	DSA-067-1 apache	2001-7-28
    apache-dev	1.3.9-14	powerpc	DSA-067-1 apache	2001-7-28
    apache	1.3.9-14	powerpc	DSA-067-1 apache	2001-7-28
    apache-common	1.3.9-14	sparc	DSA-067-1 apache	2001-7-28
    apache-dev	1.3.9-14	sparc	DSA-067-1 apache	2001-7-28
    apache	1.3.9-14	sparc	DSA-067-1 apache	2001-7-28
    apache-doc	1.3.9-14	all	DSA-067-1 apache	2001-7-28
    apache-ssl	1.3.9.13-3	alpha	DSA-067-1 apache	2001-7-28
    apache-ssl	1.3.9.13-3	arm	DSA-067-1 apache	2001-7-28
    apache-ssl	1.3.9.13-3	i386	DSA-067-1 apache	2001-7-28
    apache-ssl	1.3.9.13-3	m68k	DSA-067-1 apache	2001-7-28
    apache-ssl	1.3.9.13-3	powerpc	DSA-067-1 apache	2001-7-28
    apache-ssl	1.3.9.13-3	sparc	DSA-067-1 apache	2001-7-28
    zope	2.1.6-7	alpha	DSA-043-1 zope	2001-03-09
    zope	2.1.6-7	arm	DSA-043-1 zope	2001-03-09
    zope	2.1.6-7	i386	DSA-043-1 zope	2001-03-09
    zope	2.1.6-7	m68k	DSA-043-1 zope	2001-03-09
    zope	2.1.6-7	powerpc	DSA-043-1 zope	2001-03-09
    zope	2.1.6-7	sparc	DSA-043-1 zope	2001-03-09
    exim	3.12-10.1	arm	DSA-058-1 exim	2001-6-10
    eximon	3.12-10.1	arm	DSA-058-1 exim	2001-6-10
    exim	3.12-10.1	alpha	DSA-058-1 exim	2001-6-10
    eximon	3.12-10.1	alpha	DSA-058-1 exim	2001-6-10
    exim	3.12-10.1	i386	DSA-058-1 exim	2001-6-10
    eximon	3.12-10.1	i386	DSA-058-1 exim	2001-6-10
    exim	3.12-10.1	m68k	DSA-058-1 exim	2001-6-10
    eximon	3.12-10.1	m68k	DSA-058-1 exim	2001-6-10
    exim	3.12-10.1	powerpc	DSA-058-1 exim	2001-6-10
    eximon	3.12-10.1	powerpc	DSA-058-1 exim	2001-6-10
    exim	3.12-10.1	sparc	DSA-058-1 exim	2001-6-10
    eximon	3.12-10.1	sparc	DSA-058-1 exim	2001-6-10
    glibc-doc	2.1.3-17	all	DSA-039-1 glibc	2001-03-08
    i18ndata	2.1.3-17	all	DSA-039-1 glibc	2001-03-08
    libnss1-compat	2.1.3-17	alpha	DSA-039-1 glibc	2001-03-08
    locales	2.1.3-17	alpha	DSA-039-1 glibc	2001-03-08
    nscd	2.1.3-17	alpha	DSA-039-1 glibc	2001-03-08
    libc6-dbg	2.1.3-17	arm	DSA-039-1 glibc	2001-03-08
    libc6-dev	2.1.3-17	arm	DSA-039-1 glibc	2001-03-08
    libc6-pic	2.1.3-17	arm	DSA-039-1 glibc	2001-03-08
    libc6-prof	2.1.3-17	arm	DSA-039-1 glibc	2001-03-08
    libc6	2.1.3-17	arm	DSA-039-1 glibc	2001-03-08
    libnss1-compat	2.1.3-17	arm	DSA-039-1 glibc	2001-03-08
    locales	2.1.3-17	arm	DSA-039-1 glibc	2001-03-08
    nscd	2.1.3-17	arm	DSA-039-1 glibc	2001-03-08
    libc6-dbg	2.1.3-17	i386	DSA-039-1 glibc	2001-03-08
    libc6-dev	2.1.3-17	i386	DSA-039-1 glibc	2001-03-08
    libc6-pic	2.1.3-17	i386	DSA-039-1 glibc	2001-03-08
    libc6-prof	2.1.3-17	i386	DSA-039-1 glibc	2001-03-08
    libc6	2.1.3-17	i386	DSA-039-1 glibc	2001-03-08
    libnss1-compat	2.1.3-17	i386	DSA-039-1 glibc	2001-03-08
    locales	2.1.3-17	i386	DSA-039-1 glibc	2001-03-08
    nscd	2.1.3-17	i386	DSA-039-1 glibc	2001-03-08
    libc6-dbg	2.1.3-17	m68k	DSA-039-1 glibc	2001-03-08
    libc6-dev	2.1.3-17	m68k	DSA-039-1 glibc	2001-03-08
    libc6-pic	2.1.3-17	m68k	DSA-039-1 glibc	2001-03-08
    libc6-prof	2.1.3-17	m68k	DSA-039-1 glibc	2001-03-08
    libc6	2.1.3-17	m68k	DSA-039-1 glibc	2001-03-08
    libnss1-compat	2.1.3-17	m68k	DSA-039-1 glibc	2001-03-08
    locales	2.1.3-17	m68k	DSA-039-1 glibc	2001-03-08
    nscd	2.1.3-17	m68k	DSA-039-1 glibc	2001-03-08
    libc6-dbg	2.1.3-17	powerpc	DSA-039-1 glibc	2001-03-08
    libc6-dev	2.1.3-17	powerpc	DSA-039-1 glibc	2001-03-08
    libc6-pic	2.1.3-17	powerpc	DSA-039-1 glibc	2001-03-08
    libc6-prof	2.1.3-17	powerpc	DSA-039-1 glibc	2001-03-08
    libc6	2.1.3-17	powerpc	DSA-039-1 glibc	2001-03-08
    libnss1-compat	2.1.3-17	powerpc	DSA-039-1 glibc	2001-03-08
    locales	2.1.3-17	powerpc	DSA-039-1 glibc	2001-03-08
    nscd	2.1.3-17	powerpc	DSA-039-1 glibc	2001-03-08
    libc6-dbg	2.1.3-17	sparc	DSA-039-1 glibc	2001-03-08
    libc6-dev	2.1.3-17	sparc	DSA-039-1 glibc	2001-03-08
    libc6-pic	2.1.3-17	sparc	DSA-039-1 glibc	2001-03-08
    libc6-prof	2.1.3-17	sparc	DSA-039-1 glibc	2001-03-08
    libc6	2.1.3-17	sparc	DSA-039-1 glibc	2001-03-08
    libnss1-compat	2.1.3-17	sparc	DSA-039-1 glibc	2001-03-08
    locales	2.1.3-17	sparc	DSA-039-1 glibc	2001-03-08
    nscd	2.1.3-17	sparc	DSA-039-1 glibc	2001-03-08
    most	4.9.0-2.1	alpha	DSA-076-1 most	2001-9-18
    most	4.9.0-2.1	arm	DSA-076-1 most	2001-9-18
    most	4.9.0-2.1	i386	DSA-076-1 most	2001-9-18
    most	4.9.0-2.1	m68k	DSA-076-1 most	2001-9-18
    most	4.9.0-2.1	powerpc	DSA-076-1 most	2001-9-18
    most	4.9.0-2.1	sparc	DSA-076-1 most	2001-9-18
    samba-doc	2.0.7-3.4	all	DSA-065-1 samba	2001-6-23
    samba-common	2.0.7-3.4	alpha	DSA-065-1 samba	2001-6-23
    samba	2.0.7-3.4	alpha	DSA-065-1 samba	2001-6-23
    smbclient	2.0.7-3.4	alpha	DSA-065-1 samba	2001-6-23
    smbfs	2.0.7-3.4	alpha	DSA-065-1 samba	2001-6-23
    swat	2.0.7-3.4	alpha	DSA-065-1 samba	2001-6-23
    samba-common	2.0.7-3.4	arm	DSA-065-1 samba	2001-6-23
    samba	2.0.7-3.4	arm	DSA-065-1 samba	2001-6-23
    smbclient	2.0.7-3.4	arm	DSA-065-1 samba	2001-6-23
    smbfs	2.0.7-3.4	arm	DSA-065-1 samba	2001-6-23
    swat	2.0.7-3.4	arm	DSA-065-1 samba	2001-6-23
    samba-common	2.0.7-3.4	i386	DSA-065-1 samba	2001-6-23
    samba	2.0.7-3.4	i386	DSA-065-1 samba	2001-6-23
    smbclient	2.0.7-3.4	i386	DSA-065-1 samba	2001-6-23
    smbfs	2.0.7-3.4	i386	DSA-065-1 samba	2001-6-23
    swat	2.0.7-3.4	i386	DSA-065-1 samba	2001-6-23
    samba-common	2.0.7-3.4	m68k	DSA-065-1 samba	2001-6-23
    samba	2.0.7-3.4	m68k	DSA-065-1 samba	2001-6-23
    smbclient	2.0.7-3.4	m68k	DSA-065-1 samba	2001-6-23
    smbfs	2.0.7-3.4	m68k	DSA-065-1 samba	2001-6-23
    swat	2.0.7-3.4	m68k	DSA-065-1 samba	2001-6-23
    samba-common	2.0.7-3.4	powerpc	DSA-065-1 samba	2001-6-23
    samba	2.0.7-3.4	powerpc	DSA-065-1 samba	2001-6-23
    smbclient	2.0.7-3.4	powerpc	DSA-065-1 samba	2001-6-23
    smbfs	2.0.7-3.4	powerpc	DSA-065-1 samba	2001-6-23
    swat	2.0.7-3.4	powerpc	DSA-065-1 samba	2001-6-23
    samba-common	2.0.7-3.4	sparc	DSA-065-1 samba	2001-6-23
    samba	2.0.7-3.4	sparc	DSA-065-1 samba	2001-6-23
    smbclient	2.0.7-3.4	sparc	DSA-065-1 samba	2001-6-23
    smbfs	2.0.7-3.4	sparc	DSA-065-1 samba	2001-6-23
    swat	2.0.7-3.4	sparc	DSA-065-1 samba	2001-6-23
    jazip	0.33-1	alpha	DSA-017-1 jazip	2001-01-23
    jazip	0.33-1	arm	DSA-017-1 jazip	2001-01-23
    jazip	0.33-1	i386	DSA-017-1 jazip	2001-01-23
    jazip	0.33-1	m68k	DSA-017-1 jazip	2001-01-23
    jazip	0.33-1	powerpc	DSA-017-1 jazip	2001-01-23
    jazip	0.33-1	sparc	DSA-017-1 jazip	2001-01-23
    mysql-doc	3.22.32-4	all	DSA-013 MySQL	2001-01-23
    mysql-client	3.22.32-4	alpha	DSA-013 MySQL	2001-01-23
    mysql-server	3.22.32-4	alpha	DSA-013 MySQL	2001-01-23
    mysql-client	3.22.32-4	arm	DSA-013 MySQL	2001-01-23
    mysql-server	3.22.32-4	arm	DSA-013 MySQL	2001-01-23
    mysql-client	3.22.32-4	i386	DSA-013 MySQL	2001-01-23
    mysql-server	3.22.32-4	i386	DSA-013 MySQL	2001-01-23
    mysql-client	3.22.32-4	m68k	DSA-013 MySQL	2001-01-23
    mysql-server	3.22.32-4	m68k	DSA-013 MySQL	2001-01-23
    mysql-client	3.22.32-4	powerpc	DSA-013 MySQL	2001-01-23
    mysql-server	3.22.32-4	powerpc	DSA-013 MySQL	2001-01-23
    mysql-client	3.22.32-4	sparc	DSA-013 MySQL	2001-01-23
    mysql-server	3.22.32-4	sparc	DSA-013 MySQL	2001-01-23
    joe	2.8-15.3	alpha	DSA-041-1 joe	2001-03-09
    joe	2.8-15.3	arm	DSA-041-1 joe	2001-03-09
    joe	2.8-15.3	i386	DSA-041-1 joe	2001-03-09
    joe	2.8-15.3	m68k	DSA-041-1 joe	2001-03-09
    joe	2.8-15.3	powerpc	DSA-041-1 joe	2001-03-09
    joe	2.8-15.3	sparc	DSA-041-1 joe	2001-03-09
    sendfile	2.1-20.3	alpha	DSA-052-1 sendfile	2001-4-23
    sendfile	2.1-20.3	arm	DSA-052-1 sendfile	2001-4-23
    sendfile	2.1-20.3	i386	DSA-052-1 sendfile	2001-4-23
    sendfile	2.1-20.3	m68k	DSA-052-1 sendfile	2001-4-23
    sendfile	2.1-20.3	powerpc	DSA-052-1 sendfile	2001-4-23
    sendfile	2.1-20.3	sparc	DSA-052-1 sendfile	2001-4-23
    libdockapp-dev	0.61.1-4.1	alpha	DSA-074-1 wmaker	2001-8-12
    libwings-dev	0.61.1-4.1	alpha	DSA-074-1 wmaker	2001-8-12
    libwmaker0-dev	0.61.1-4.1	alpha	DSA-074-1 wmaker	2001-8-12
    libwraster1-dev	0.61.1-4.1	alpha	DSA-074-1 wmaker	2001-8-12
    libwraster1	0.61.1-4.1	alpha	DSA-074-1 wmaker	2001-8-12
    wmaker	0.61.1-4.1	alpha	DSA-074-1 wmaker	2001-8-12
    libdockapp-dev	0.61.1-4.1	arm	DSA-074-1 wmaker	2001-8-12
    libwings-dev	0.61.1-4.1	arm	DSA-074-1 wmaker	2001-8-12
    libwmaker0-dev	0.61.1-4.1	arm	DSA-074-1 wmaker	2001-8-12
    libwraster1-dev	0.61.1-4.1	arm	DSA-074-1 wmaker	2001-8-12
    libwraster1	0.61.1-4.1	arm	DSA-074-1 wmaker	2001-8-12
    wmaker	0.61.1-4.1	arm	DSA-074-1 wmaker	2001-8-12
    libdockapp-dev	0.61.1-4.1	i386	DSA-074-1 wmaker	2001-8-12
    libwings-dev	0.61.1-4.1	i386	DSA-074-1 wmaker	2001-8-12
    libwmaker0-dev	0.61.1-4.1	i386	DSA-074-1 wmaker	2001-8-12
    libwraster1-dev	0.61.1-4.1	i386	DSA-074-1 wmaker	2001-8-12
    libwraster1	0.61.1-4.1	i386	DSA-074-1 wmaker	2001-8-12
    wmaker	0.61.1-4.1	i386	DSA-074-1 wmaker	2001-8-12
    libdockapp-dev	0.61.1-4.1	m68k	DSA-074-1 wmaker	2001-8-12
    libwings-dev	0.61.1-4.1	m68k	DSA-074-1 wmaker	2001-8-12
    libwmaker0-dev	0.61.1-4.1	m68k	DSA-074-1 wmaker	2001-8-12
    libwraster1-dev	0.61.1-4.1	m68k	DSA-074-1 wmaker	2001-8-12
    libwraster1	0.61.1-4.1	m68k	DSA-074-1 wmaker	2001-8-12
    wmaker	0.61.1-4.1	m68k	DSA-074-1 wmaker	2001-8-12
    libdockapp-dev	0.61.1-4.1	powerpc	DSA-074-1 wmaker	2001-8-12
    libwings-dev	0.61.1-4.1	powerpc	DSA-074-1 wmaker	2001-8-12
    libwmaker0-dev	0.61.1-4.1	powerpc	DSA-074-1 wmaker	2001-8-12
    libwraster1-dev	0.61.1-4.1	powerpc	DSA-074-1 wmaker	2001-8-12
    libwraster1	0.61.1-4.1	powerpc	DSA-074-1 wmaker	2001-8-12
    wmaker	0.61.1-4.1	powerpc	DSA-074-1 wmaker	2001-8-12
    libdockapp-dev	0.61.1-4.1	sparc	DSA-074-1 wmaker	2001-8-12
    libwings-dev	0.61.1-4.1	sparc	DSA-074-1 wmaker	2001-8-12
    libwmaker0-dev	0.61.1-4.1	sparc	DSA-074-1 wmaker	2001-8-12
    libwraster1-dev	0.61.1-4.1	sparc	DSA-074-1 wmaker	2001-8-12
    libwraster1	0.61.1-4.1	sparc	DSA-074-1 wmaker	2001-8-12
    wmaker	0.61.1-4.1	sparc	DSA-074-1 wmaker	2001-8-12
    ssh-askpass-gnome	1.2.3-9.2	alpha	DSA-027-1 OpenSSH	2001-02-09
    ssh	1.2.3-9.2	alpha	DSA-027-1 OpenSSH	2001-02-09
    ssh-askpass-gnome	1.2.3-9.2	arm	DSA-027-1 OpenSSH	2001-02-09
    ssh	1.2.3-9.2	arm	DSA-027-1 OpenSSH	2001-02-09
    ssh-askpass-gnome	1.2.3-9.2	i386	DSA-027-1 OpenSSH	2001-02-09
    ssh	1.2.3-9.2	i386	DSA-027-1 OpenSSH	2001-02-09
    ssh-askpass-gnome	1.2.3-9.2	m68k	DSA-027-1 OpenSSH	2001-02-09
    ssh	1.2.3-9.2	m68k	DSA-027-1 OpenSSH	2001-02-09
    ssh-askpass-gnome	1.2.3-9.2	powerpc	DSA-027-1 OpenSSH	2001-02-09
    ssh	1.2.3-9.2	powerpc	DSA-027-1 OpenSSH	2001-02-09
    ssh-askpass-gnome	1.2.3-9.2	sparc	DSA-027-1 OpenSSH	2001-02-09
    ssh	1.2.3-9.2	sparc	DSA-027-1 OpenSSH	2001-02-09
    groff	1.15.2-2	alpha	DSA-072-1 groff	2001-8-10
    groff	1.15.2-2	arm	DSA-072-1 groff	2001-8-10
    groff	1.15.2-2	i386	DSA-072-1 groff	2001-8-10
    groff	1.15.2-2	m68k	DSA-072-1 groff	2001-8-10
    groff	1.15.2-2	powerpc	DSA-072-1 groff	2001-8-10
    groff	1.15.2-2	sparc	DSA-072-1 groff	2001-8-10
    exuberant-ctags	3.2.4-0.1	alpha	DSA-046-2 exuberant-ctags	2001-4-15
    exuberant-ctags	3.2.4-0.1	arm	DSA-046-2 exuberant-ctags	2001-4-15
    exuberant-ctags	3.2.4-0.1	i386	DSA-046-2 exuberant-ctags	2001-4-15
    exuberant-ctags	3.2.4-0.1	m68k	DSA-046-2 exuberant-ctags	2001-4-15
    exuberant-ctags	3.2.4-0.1	powerpc	DSA-046-2 exuberant-ctags	2001-4-15
    exuberant-ctags	3.2.4-0.1.1	sparc	DSA-046-2 exuberant-ctags	2001-4-15
    fetchmailconf	5.3.3-3	all	DSA-071-1 fetchmail	2001-8-10
    fetchmail	5.3.3-3	alpha	DSA-071-1 fetchmail	2001-8-10
    fetchmail	5.3.3-3	arm	DSA-071-1 fetchmail	2001-8-10
    fetchmail	5.3.3-3	i386	DSA-071-1 fetchmail	2001-8-10
    fetchmail	5.3.3-3	m68k	DSA-071-1 fetchmail	2001-8-10
    fetchmail	5.3.3-3	powerpc	DSA-071-1 fetchmail	2001-8-10
    fetchmail	5.3.3-3	sparc	DSA-071-1 fetchmail	2001-8-10
    fetchmailconf	5.3.3-1.2	all	DSA-060-1 fetchmail	2001-6-16
    fetchmail	5.3.3-1.2	alpha	DSA-060-1 fetchmail	2001-6-16
    fetchmail	5.3.3-1.2	arm	DSA-060-1 fetchmail	2001-6-16
    fetchmail	5.3.3-1.2	i386	DSA-060-1 fetchmail	2001-6-16
    fetchmail	5.3.3-1.2	m68k	DSA-060-1 fetchmail	2001-6-16
    fetchmail	5.3.3-1.2	powerpc	DSA-060-1 fetchmail	2001-6-16
    fetchmail	5.3.3-1.2	sparc	DSA-060-1 fetchmail	2001-6-16
    man-db	2.3.16-4	alpha	DSA-059-1 man-db	2001-6-12
    man-db	2.3.16-4	arm	DSA-059-1 man-db	2001-6-12
    man-db	2.3.16-4	i386	DSA-059-1 man-db	2001-6-12
    man-db	2.3.16-4	m68k	DSA-059-1 man-db	2001-6-12
    man-db	2.3.16-4	powerpc	DSA-059-1 man-db	2001-6-12
    man-db	2.3.16-4	sparc	DSA-059-1 man-db	2001-6-12
    ssh-askpass-nonfree	1.2.27-6.2	alpha	DSA-086-1 ssh-nonfree	2001-11-13
    ssh-nonfree	1.2.27-6.2	alpha	DSA-086-1 ssh-nonfree	2001-11-13
    ssh-socks	1.2.27-6.2	alpha	DSA-086-1 ssh-nonfree	2001-11-13
    ssh-askpass-nonfree	1.2.27-6.2	i386	DSA-086-1 ssh-nonfree	2001-11-13
    ssh-nonfree	1.2.27-6.2	i386	DSA-086-1 ssh-nonfree	2001-11-13
    ssh-socks	1.2.27-6.2	i386	DSA-086-1 ssh-nonfree	2001-11-13
    ssh-askpass-nonfree	1.2.27-6.2	m68k	DSA-086-1 ssh-nonfree	2001-11-13
    ssh-nonfree	1.2.27-6.2	m68k	DSA-086-1 ssh-nonfree	2001-11-13
    ssh-socks	1.2.27-6.2	m68k	DSA-086-1 ssh-nonfree	2001-11-13
    ssh-askpass-nonfree	1.2.27-6.2	powerpc	DSA-086-1 ssh-nonfree	2001-11-13
    ssh-nonfree	1.2.27-6.2	powerpc	DSA-086-1 ssh-nonfree	2001-11-13
    ssh-socks	1.2.27-6.2	powerpc	DSA-086-1 ssh-nonfree	2001-11-13
    ssh-askpass-nonfree	1.2.27-6.2	sparc	DSA-086-1 ssh-nonfree	2001-11-13
    ssh-nonfree	1.2.27-6.2	sparc	DSA-086-1 ssh-nonfree	2001-11-13
    ssh-socks	1.2.27-6.2	sparc	DSA-086-1 ssh-nonfree	2001-11-13
    squid-cgi	2.2.5-3.1	alpha	DSA-019-1 squid	2001-01-25
    squid	2.2.5-3.1	alpha	DSA-019-1 squid	2001-01-25
    squidclient	2.2.5-3.1	alpha	DSA-019-1 squid	2001-01-25
    squid-cgi	2.2.5-3.1	arm	DSA-019-1 squid	2001-01-25
    squid	2.2.5-3.1	arm	DSA-019-1 squid	2001-01-25
    squidclient	2.2.5-3.1	arm	DSA-019-1 squid	2001-01-25
    squid-cgi	2.2.5-3.1	i386	DSA-019-1 squid	2001-01-25
    squid	2.2.5-3.1	i386	DSA-019-1 squid	2001-01-25
    squidclient	2.2.5-3.1	i386	DSA-019-1 squid	2001-01-25
    squid-cgi	2.2.5-3.1	m68k	DSA-019-1 squid	2001-01-25
    squid	2.2.5-3.1	m68k	DSA-019-1 squid	2001-01-25
    squidclient	2.2.5-3.1	m68k	DSA-019-1 squid	2001-01-25
    squid-cgi	2.2.5-3.1	powerpc	DSA-019-1 squid	2001-01-25
    squid	2.2.5-3.1	powerpc	DSA-019-1 squid	2001-01-25
    squidclient	2.2.5-3.1	powerpc	DSA-019-1 squid	2001-01-25
    squid-cgi	2.2.5-3.1	sparc	DSA-019-1 squid	2001-01-25
    squid	2.2.5-3.1	sparc	DSA-019-1 squid	2001-01-25
    squidclient	2.2.5-3.1	sparc	DSA-019-1 squid	2001-01-25
    wu-ftpd-academ	2.6.0-6	all	DSA-087-1 wu-ftpd	2001-12-3
    wu-ftpd	2.6.0-6	alpha	DSA-087-1 wu-ftpd	2001-12-3
    wu-ftpd	2.6.1-6	arm	DSA-087-1 wu-ftpd	2001-12-3
    wu-ftpd	2.6.0-6	i386	DSA-087-1 wu-ftpd	2001-12-3
    wu-ftpd	2.6.0-6	powerpc	DSA-087-1 wu-ftpd	2001-12-3
    wu-ftpd	2.6.0-6	sparc	DSA-087-1 wu-ftpd	2001-12-3
    man-db	2.3.16-3	alpha	DSA-056-1 man-db	2001-5-8
    man-db	2.3.16-3	arm	DSA-056-1 man-db	2001-5-8
    man-db	2.3.16-3	i386	DSA-056-1 man-db	2001-5-8
    man-db	2.3.16-3	m68k	DSA-056-1 man-db	2001-5-8
    man-db	2.3.16-3	powerpc	DSA-056-1 man-db	2001-5-8
    man-db	2.3.16-3	sparc	DSA-056-1 man-db	2001-5-8
    icecast-server	1.3.10-1	alpha	DSA-089-2 icecast-server	2001-12-5
    icecast-server	1.3.10-1	arm	DSA-089-2 icecast-server	2001-12-5
    icecast-server	1.3.10-1.1	i386	DSA-089-2 icecast-server	2001-12-5
    icecast-server	1.3.10-1	m68k	DSA-089-2 icecast-server	2001-12-5
    icecast-server	1.3.10-1	powerpc	DSA-089-2 icecast-server	2001-12-5
    icecast-server	1.3.10-1	sparc	DSA-089-2 icecast-server	2001-12-5
    mailman	1.1-10	alpha	DSA-094-1 mailman	2001-12-16
    mailman	1.1-10	arm	DSA-094-1 mailman	2001-12-16
    mailman	1.1-10	i386	DSA-094-1 mailman	2001-12-16
    mailman	1.1-10	m68k	DSA-094-1 mailman	2001-12-16
    mailman	1.1-10	powerpc	DSA-094-1 mailman	2001-12-16
    mailman	1.1-10	sparc	DSA-094-1 mailman	2001-12-16
    ssh-askpass-ptk	1.2.3-9.4	all	DSA-091-1 ssh	2001-12-5
    ssh-askpass-gnome	1.2.3-9.4	alpha	DSA-091-1 ssh	2001-12-5
    ssh	1.2.3-9.4	alpha	DSA-091-1 ssh	2001-12-5
    ssh-askpass-gnome	1.2.3-9.4	arm	DSA-091-1 ssh	2001-12-5
    ssh	1.2.3-9.4	arm	DSA-091-1 ssh	2001-12-5
    ssh-askpass-gnome	1.2.3-9.4	i386	DSA-091-1 ssh	2001-12-5
    ssh	1.2.3-9.4	i386	DSA-091-1 ssh	2001-12-5
    ssh-askpass-gnome	1.2.3-9.4	m68k	DSA-091-1 ssh	2001-12-5
    ssh	1.2.3-9.4	m68k	DSA-091-1 ssh	2001-12-5
    ssh-askpass-gnome	1.2.3-9.4	powerpc	DSA-091-1 ssh	2001-12-5
    ssh	1.2.3-9.4	powerpc	DSA-091-1 ssh	2001-12-5
    ssh-askpass-gnome	1.2.3-9.4	sparc	DSA-091-1 ssh	2001-12-5
    ssh	1.2.3-9.4	sparc	DSA-091-1 ssh	2001-12-5
    wu-ftpd	2.6.0-5.2	alpha	DSA-016-3 wu-ftpd	2001-01-23
    wu-ftpd	2.6.0-5.2	arm	DSA-016-3 wu-ftpd	2001-01-23
    wu-ftpd	2.6.0-5.2.1	i386	DSA-016-3 wu-ftpd	2001-01-23
    wu-ftpd	2.6.0-5.2	m68k	DSA-016-3 wu-ftpd	2001-01-23
    wu-ftpd	2.6.0-5.2	powerpc	DSA-016-3 wu-ftpd	2001-01-23
    wu-ftpd	2.6.0-5.2	sparc	DSA-016-3 wu-ftpd	2001-01-23
    nedit	5.02-7.1	alpha	DSA-053-1 nedit	2001-4-27
    nedit	5.02-7.1	arm	DSA-053-1 nedit	2001-4-27
    nedit	5.02-7.1	i386	DSA-053-1 nedit	2001-4-27
    nedit	5.02-7.1	m68k	DSA-053-1 nedit	2001-4-27
    nedit	5.02-7.1	powerpc	DSA-053-1 nedit	2001-4-27
    nedit	5.02-7.1	sparc	DSA-053-1 nedit	2001-4-27
    exmh	2.1.1-1.1	all	DSA-022-1 exmh	2001-01-26
    ldap-rfc	1.2.12-1	all	DSA-068-1 openldap	2001-8-9
    libopenldap-runtime	1.2.12-1	all	DSA-068-1 openldap	2001-8-9
    libopenldap-dev	1.2.12-1	arm	DSA-068-1 openldap	2001-8-9
    libopenldap1	1.2.12-1	arm	DSA-068-1 openldap	2001-8-9
    openldap-gateways	1.2.12-1	arm	DSA-068-1 openldap	2001-8-9
    openldap-utils	1.2.12-1	arm	DSA-068-1 openldap	2001-8-9
    openldapd	1.2.12-1	arm	DSA-068-1 openldap	2001-8-9
    libopenldap-dev	1.2.12-1	alpha	DSA-068-1 openldap	2001-8-9
    libopenldap1	1.2.12-1	alpha	DSA-068-1 openldap	2001-8-9
    openldap-gateways	1.2.12-1	alpha	DSA-068-1 openldap	2001-8-9
    openldap-utils	1.2.12-1	alpha	DSA-068-1 openldap	2001-8-9
    openldapd	1.2.12-1	alpha	DSA-068-1 openldap	2001-8-9
    libopenldap-dev	1.2.12-1	i386	DSA-068-1 openldap	2001-8-9
    libopenldap1	1.2.12-1	i386	DSA-068-1 openldap	2001-8-9
    openldap-gateways	1.2.12-1	i386	DSA-068-1 openldap	2001-8-9
    openldap-utils	1.2.12-1	i386	DSA-068-1 openldap	2001-8-9
    openldapd	1.2.12-1	i386	DSA-068-1 openldap	2001-8-9
    libopenldap-dev	1.2.12-1	m68k	DSA-068-1 openldap	2001-8-9
    libopenldap1	1.2.12-1	m68k	DSA-068-1 openldap	2001-8-9
    openldap-gateways	1.2.12-1	m68k	DSA-068-1 openldap	2001-8-9
    openldap-utils	1.2.12-1	m68k	DSA-068-1 openldap	2001-8-9
    openldapd	1.2.12-1	m68k	DSA-068-1 openldap	2001-8-9
    libopenldap-dev	1.2.12-1	powerpc	DSA-068-1 openldap	2001-8-9
    libopenldap1	1.2.12-1	powerpc	DSA-068-1 openldap	2001-8-9
    openldap-gateways	1.2.12-1	powerpc	DSA-068-1 openldap	2001-8-9
    openldap-utils	1.2.12-1	powerpc	DSA-068-1 openldap	2001-8-9
    openldapd	1.2.12-1	powerpc	DSA-068-1 openldap	2001-8-9
    libopenldap-dev	1.2.12-1	sparc	DSA-068-1 openldap	2001-8-9
    libopenldap1	1.2.12-1	sparc	DSA-068-1 openldap	2001-8-9
    openldap-gateways	1.2.12-1	sparc	DSA-068-1 openldap	2001-8-9
    openldap-utils	1.2.12-1	sparc	DSA-068-1 openldap	2001-8-9
    openldapd	1.2.12-1	sparc	DSA-068-1 openldap	2001-8-9
    samba-doc	2.0.7-3.3	all	DSA-048-3 samba	2001-5-9
    samba-common	2.0.7-3.3	alpha	DSA-048-3 samba	2001-5-9
    samba	2.0.7-3.3	alpha	DSA-048-3 samba	2001-5-9
    smbclient	2.0.7-3.3	alpha	DSA-048-3 samba	2001-5-9
    smbfs	2.0.7-3.3	alpha	DSA-048-3 samba	2001-5-9
    swat	2.0.7-3.3	alpha	DSA-048-3 samba	2001-5-9
    samba-common	2.0.7-3.3	arm	DSA-048-3 samba	2001-5-9
    samba	2.0.7-3.3	arm	DSA-048-3 samba	2001-5-9
    smbclient	2.0.7-3.3	arm	DSA-048-3 samba	2001-5-9
    smbfs	2.0.7-3.3	arm	DSA-048-3 samba	2001-5-9
    swat	2.0.7-3.3	arm	DSA-048-3 samba	2001-5-9
    samba-common	2.0.7-3.3	i386	DSA-048-3 samba	2001-5-9
    samba	2.0.7-3.3	i386	DSA-048-3 samba	2001-5-9
    smbclient	2.0.7-3.3	i386	DSA-048-3 samba	2001-5-9
    smbfs	2.0.7-3.3	i386	DSA-048-3 samba	2001-5-9
    swat	2.0.7-3.3	i386	DSA-048-3 samba	2001-5-9
    samba-common	2.0.7-3.3	m68k	DSA-048-3 samba	2001-5-9
    samba	2.0.7-3.3	m68k	DSA-048-3 samba	2001-5-9
    smbclient	2.0.7-3.3	m68k	DSA-048-3 samba	2001-5-9
    smbfs	2.0.7-3.3	m68k	DSA-048-3 samba	2001-5-9
    swat	2.0.7-3.3	m68k	DSA-048-3 samba	2001-5-9
    samba-common	2.0.7-3.3	powerpc	DSA-048-3 samba	2001-5-9
    samba	2.0.7-3.3	powerpc	DSA-048-3 samba	2001-5-9
    smbclient	2.0.7-3.3	powerpc	DSA-048-3 samba	2001-5-9
    smbfs	2.0.7-3.3	powerpc	DSA-048-3 samba	2001-5-9
    swat	2.0.7-3.3	powerpc	DSA-048-3 samba	2001-5-9
    samba-common	2.0.7-3.3	sparc	DSA-048-3 samba	2001-5-9
    samba	2.0.7-3.3	sparc	DSA-048-3 samba	2001-5-9
    smbclient	2.0.7-3.3	sparc	DSA-048-3 samba	2001-5-9
    smbfs	2.0.7-3.3	sparc	DSA-048-3 samba	2001-5-9
    swat	2.0.7-3.3	sparc	DSA-048-3 samba	2001-5-9
    gpm	1.17.8-18.1	alpha	DSA-095-1 gpm	2001-12-27
    libgpmg1-dev	1.17.8-18.1	alpha	DSA-095-1 gpm	2001-12-27
    libgpmg1	1.17.8-18.1	alpha	DSA-095-1 gpm	2001-12-27
    gpm	1.17.8-18.1	arm	DSA-095-1 gpm	2001-12-27
    libgpmg1-dev	1.17.8-18.1	arm	DSA-095-1 gpm	2001-12-27
    libgpmg1	1.17.8-18.1	arm	DSA-095-1 gpm	2001-12-27
    gpm	1.17.8-18.1	i386	DSA-095-1 gpm	2001-12-27
    libgpm1-altdev	1.17.8-18.1	i386	DSA-095-1 gpm	2001-12-27
    libgpm1	1.17.8-18.1	i386	DSA-095-1 gpm	2001-12-27
    libgpmg1-dev	1.17.8-18.1	i386	DSA-095-1 gpm	2001-12-27
    libgpmg1	1.17.8-18.1	i386	DSA-095-1 gpm	2001-12-27
    gpm	1.17.8-18.1	m68k	DSA-095-1 gpm	2001-12-27
    libgpm1-altdev	1.17.8-18.1	m68k	DSA-095-1 gpm	2001-12-27
    libgpm1	1.17.8-18.1	m68k	DSA-095-1 gpm	2001-12-27
    libgpmg1-dev	1.17.8-18.1	m68k	DSA-095-1 gpm	2001-12-27
    libgpmg1	1.17.8-18.1	m68k	DSA-095-1 gpm	2001-12-27
    gpm	1.17.8-18.1	powerpc	DSA-095-1 gpm	2001-12-27
    libgpmg1-dev	1.17.8-18.1	powerpc	DSA-095-1 gpm	2001-12-27
    libgpmg1	1.17.8-18.1	powerpc	DSA-095-1 gpm	2001-12-27
    gpm	1.17.8-18.1	sparc	DSA-095-1 gpm	2001-12-27
    libgpmg1-dev	1.17.8-18.1	sparc	DSA-095-1 gpm	2001-12-27
    libgpmg1	1.17.8-18.1	sparc	DSA-095-1 gpm	2001-12-27
    sash	3.4-6	alpha	DSA-015-1 sash	2001-01-23
    sash	3.4-6	arm	DSA-015-1 sash	2001-01-23
    sash	3.4-6	i386	DSA-015-1 sash	2001-01-23
    sash	3.4-6	m68k	DSA-015-1 sash	2001-01-23
    sash	3.4-6	powerpc	DSA-015-1 sash	2001-01-23
    sash	3.4-6	sparc	DSA-015-1 sash	2001-01-23
    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
    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
    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
    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
    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
    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
    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
    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
    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
    getmail	2.3.7-2	all	DSA-553-1 getmail	2004-9-27
    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
    kernel-image-apus	2.4.17-4	powerpc	DSA-440-1 linux-kernel-2.4.17-powerpc-apus	2004-2-18
    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
    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
    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
    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
    squirrelmail	1.2.6-1.4	all	DSA-535-1 squirrelmail	2004-8-2
    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
    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
    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
    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
    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
    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
    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
    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
    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
    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
    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
    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
    kernel-image-apus	2.4.17-5	powerpc	DSA-482-1 linux-kernel-2.4.17-apus+s390	2004-4-14
    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
    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
    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
    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
    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
    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
    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
    backup-manager-doc	0.7.5-4	all	DSA-1518-1 backup-manager	2008-3-15
    backup-manager	0.7.5-4	all	DSA-1518-1 backup-manager	2008-3-15
    gs	8.01-6	all	DSA-1510-1 ghostscript	2008-2-27
    gs-gpl	8.01-6	alpha	DSA-1510-1 ghostscript	2008-2-27
    gs-gpl	8.01-6	amd64	DSA-1510-1 ghostscript	2008-2-27
    gs-gpl	8.01-6	arm	DSA-1510-1 ghostscript	2008-2-27
    gs-gpl	8.01-6	hppa	DSA-1510-1 ghostscript	2008-2-27
    gs-gpl	8.01-6	i386	DSA-1510-1 ghostscript	2008-2-27
    gs-gpl	8.01-6	ia64	DSA-1510-1 ghostscript	2008-2-27
    gs-gpl	8.01-6	m68k	DSA-1510-1 ghostscript	2008-2-27
    gs-gpl	8.01-6	mips	DSA-1510-1 ghostscript	2008-2-27
    gs-gpl	8.01-6	mipsel	DSA-1510-1 ghostscript	2008-2-27
    gs-gpl	8.01-6	powerpc	DSA-1510-1 ghostscript	2008-2-27
    gs-gpl	8.01-6	s390	DSA-1510-1 ghostscript	2008-2-27
    gs-gpl	8.01-6	sparc	DSA-1510-1 ghostscript	2008-2-27
    phpmyadmin	2.9.1.1-7	all	DSA-1557-1 phpmyadmin	2008-4-24
    openssh-blacklist	0.1.1	all	DSA-1576-1 openssh	2008-5-14
    xsltproc	1.1.19-3	alpha	DSA-1624-1 libxslt	2008-7-31
    libxslt1-dbg	1.1.19-3	alpha	DSA-1624-1 libxslt	2008-7-31
    libxslt1-dev	1.1.19-3	alpha	DSA-1624-1 libxslt	2008-7-31
    python-libxslt1	1.1.19-3	alpha	DSA-1624-1 libxslt	2008-7-31
    libxslt1-dbg	1.1.19-3	amd64	DSA-1624-1 libxslt	2008-7-31
    libxslt1-dev	1.1.19-3	amd64	DSA-1624-1 libxslt	2008-7-31
    xsltproc	1.1.19-3	amd64	DSA-1624-1 libxslt	2008-7-31
    python-libxslt1	1.1.19-3	amd64	DSA-1624-1 libxslt	2008-7-31
    xsltproc	1.1.19-3	arm	DSA-1624-1 libxslt	2008-7-31
    libxslt1-dbg	1.1.19-3	arm	DSA-1624-1 libxslt	2008-7-31
    libxslt1-dev	1.1.19-3	arm	DSA-1624-1 libxslt	2008-7-31
    python-libxslt1	1.1.19-3	arm	DSA-1624-1 libxslt	2008-7-31
    libxslt1-dev	1.1.19-3	hppa	DSA-1624-1 libxslt	2008-7-31
    xsltproc	1.1.19-3	hppa	DSA-1624-1 libxslt	2008-7-31
    python-libxslt1	1.1.19-3	hppa	DSA-1624-1 libxslt	2008-7-31
    libxslt1-dbg	1.1.19-3	hppa	DSA-1624-1 libxslt	2008-7-31
    xsltproc	1.1.19-3	i386	DSA-1624-1 libxslt	2008-7-31
    python-libxslt1	1.1.19-3	i386	DSA-1624-1 libxslt	2008-7-31
    libxslt1-dbg	1.1.19-3	i386	DSA-1624-1 libxslt	2008-7-31
    libxslt1-dev	1.1.19-3	i386	DSA-1624-1 libxslt	2008-7-31
    libxslt1-dbg	1.1.19-3	ia64	DSA-1624-1 libxslt	2008-7-31
    xsltproc	1.1.19-3	ia64	DSA-1624-1 libxslt	2008-7-31
    libxslt1-dev	1.1.19-3	ia64	DSA-1624-1 libxslt	2008-7-31
    python-libxslt1	1.1.19-3	ia64	DSA-1624-1 libxslt	2008-7-31
    libxslt1-dev	1.1.19-3	mips	DSA-1624-1 libxslt	2008-7-31
    python-libxslt1	1.1.19-3	mips	DSA-1624-1 libxslt	2008-7-31
    xsltproc	1.1.19-3	mips	DSA-1624-1 libxslt	2008-7-31
    libxslt1-dbg	1.1.19-3	mips	DSA-1624-1 libxslt	2008-7-31
    libxslt1-dev	1.1.19-3	mipsel	DSA-1624-1 libxslt	2008-7-31
    libxslt1-dbg	1.1.19-3	mipsel	DSA-1624-1 libxslt	2008-7-31
    xsltproc	1.1.19-3	mipsel	DSA-1624-1 libxslt	2008-7-31
    python-libxslt1	1.1.19-3	mipsel	DSA-1624-1 libxslt	2008-7-31
    xsltproc	1.1.19-3	powerpc	DSA-1624-1 libxslt	2008-7-31
    python-libxslt1	1.1.19-3	powerpc	DSA-1624-1 libxslt	2008-7-31
    libxslt1-dev	1.1.19-3	powerpc	DSA-1624-1 libxslt	2008-7-31
    libxslt1-dbg	1.1.19-3	powerpc	DSA-1624-1 libxslt	2008-7-31
    libxslt1-dev	1.1.19-3	s390	DSA-1624-1 libxslt	2008-7-31
    xsltproc	1.1.19-3	s390	DSA-1624-1 libxslt	2008-7-31
    python-libxslt1	1.1.19-3	s390	DSA-1624-1 libxslt	2008-7-31
    libxslt1-dbg	1.1.19-3	s390	DSA-1624-1 libxslt	2008-7-31
    libxslt1-dev	1.1.19-3	sparc	DSA-1624-1 libxslt	2008-7-31
    xsltproc	1.1.19-3	sparc	DSA-1624-1 libxslt	2008-7-31
    python-libxslt1	1.1.19-3	sparc	DSA-1624-1 libxslt	2008-7-31
    libxslt1-dbg	1.1.19-3	sparc	DSA-1624-1 libxslt	2008-7-31
    xsltproc	1.1.19-2	alpha	DSA-1589-1 libxslt	2008-5-28
    python-libxslt1	1.1.19-2	alpha	DSA-1589-1 libxslt	2008-5-28
    libxslt1-dev	1.1.19-2	alpha	DSA-1589-1 libxslt	2008-5-28
    libxslt1-dbg	1.1.19-2	alpha	DSA-1589-1 libxslt	2008-5-28
    python-libxslt1	1.1.19-2	amd64	DSA-1589-1 libxslt	2008-5-28
    libxslt1-dev	1.1.19-2	amd64	DSA-1589-1 libxslt	2008-5-28
    xsltproc	1.1.19-2	amd64	DSA-1589-1 libxslt	2008-5-28
    libxslt1-dbg	1.1.19-2	amd64	DSA-1589-1 libxslt	2008-5-28
    python-libxslt1	1.1.19-2	arm	DSA-1589-1 libxslt	2008-5-28
    xsltproc	1.1.19-2	arm	DSA-1589-1 libxslt	2008-5-28
    libxslt1-dbg	1.1.19-2	arm	DSA-1589-1 libxslt	2008-5-28
    libxslt1-dev	1.1.19-2	arm	DSA-1589-1 libxslt	2008-5-28
    python-libxslt1	1.1.19-2	hppa	DSA-1589-1 libxslt	2008-5-28
    libxslt1-dev	1.1.19-2	hppa	DSA-1589-1 libxslt	2008-5-28
    xsltproc	1.1.19-2	hppa	DSA-1589-1 libxslt	2008-5-28
    libxslt1-dbg	1.1.19-2	hppa	DSA-1589-1 libxslt	2008-5-28
    xsltproc	1.1.19-2	i386	DSA-1589-1 libxslt	2008-5-28
    libxslt1-dev	1.1.19-2	i386	DSA-1589-1 libxslt	2008-5-28
    python-libxslt1	1.1.19-2	i386	DSA-1589-1 libxslt	2008-5-28
    libxslt1-dbg	1.1.19-2	i386	DSA-1589-1 libxslt	2008-5-28
    xsltproc	1.1.19-2	ia64	DSA-1589-1 libxslt	2008-5-28
    libxslt1-dev	1.1.19-2	ia64	DSA-1589-1 libxslt	2008-5-28
    libxslt1-dbg	1.1.19-2	ia64	DSA-1589-1 libxslt	2008-5-28
    python-libxslt1	1.1.19-2	ia64	DSA-1589-1 libxslt	2008-5-28
    xsltproc	1.1.19-2	mips	DSA-1589-1 libxslt	2008-5-28
    libxslt1-dev	1.1.19-2	mips	DSA-1589-1 libxslt	2008-5-28
    python-libxslt1	1.1.19-2	mips	DSA-1589-1 libxslt	2008-5-28
    libxslt1-dbg	1.1.19-2	mips	DSA-1589-1 libxslt	2008-5-28
    libxslt1-dev	1.1.19-2	mipsel	DSA-1589-1 libxslt	2008-5-28
    libxslt1-dbg	1.1.19-2	mipsel	DSA-1589-1 libxslt	2008-5-28
    xsltproc	1.1.19-2	mipsel	DSA-1589-1 libxslt	2008-5-28
    python-libxslt1	1.1.19-2	mipsel	DSA-1589-1 libxslt	2008-5-28
    libxslt1-dev	1.1.19-2	powerpc	DSA-1589-1 libxslt	2008-5-28
    libxslt1-dbg	1.1.19-2	powerpc	DSA-1589-1 libxslt	2008-5-28
    xsltproc	1.1.19-2	powerpc	DSA-1589-1 libxslt	2008-5-28
    python-libxslt1	1.1.19-2	powerpc	DSA-1589-1 libxslt	2008-5-28
    xsltproc	1.1.19-2	s390	DSA-1589-1 libxslt	2008-5-28
    python-libxslt1	1.1.19-2	s390	DSA-1589-1 libxslt	2008-5-28
    libxslt1-dev	1.1.19-2	s390	DSA-1589-1 libxslt	2008-5-28
    libxslt1-dbg	1.1.19-2	s390	DSA-1589-1 libxslt	2008-5-28
    xsltproc	1.1.19-2	sparc	DSA-1589-1 libxslt	2008-5-28
    python-libxslt1	1.1.19-2	sparc	DSA-1589-1 libxslt	2008-5-28
    libxslt1-dev	1.1.19-2	sparc	DSA-1589-1 libxslt	2008-5-28
    libxslt1-dbg	1.1.19-2	sparc	DSA-1589-1 libxslt	2008-5-28
    maradns	1.0.27-2	alpha	DSA-1445-1 maradns	2008-1-03
    maradns	1.0.27-2	amd64	DSA-1445-1 maradns	2008-1-03
    maradns	1.0.27-2	arm	DSA-1445-1 maradns	2008-1-03
    maradns	1.0.27-2	hppa	DSA-1445-1 maradns	2008-1-03
    maradns	1.0.27-2	i386	DSA-1445-1 maradns	2008-1-03
    maradns	1.0.27-2	ia64	DSA-1445-1 maradns	2008-1-03
    maradns	1.0.27-2	m68k	DSA-1445-1 maradns	2008-1-03
    maradns	1.0.27-2	mips	DSA-1445-1 maradns	2008-1-03
    maradns	1.0.27-2	mipsel	DSA-1445-1 maradns	2008-1-03
    maradns	1.0.27-2	powerpc	DSA-1445-1 maradns	2008-1-03
    maradns	1.0.27-2	s390	DSA-1445-1 maradns	2008-1-03
    maradns	1.0.27-2	sparc	DSA-1445-1 maradns	2008-1-03
    libexiv2-doc	0.10-1.5	all	DSA-1474-1 exiv2	2008-1-23
    exiv2	0.10-1.5	alpha	DSA-1474-1 exiv2	2008-1-23
    libexiv2-dev	0.10-1.5	alpha	DSA-1474-1 exiv2	2008-1-23
    exiv2	0.10-1.5	amd64	DSA-1474-1 exiv2	2008-1-23
    libexiv2-dev	0.10-1.5	amd64	DSA-1474-1 exiv2	2008-1-23
    exiv2	0.10-1.5	arm	DSA-1474-1 exiv2	2008-1-23
    libexiv2-dev	0.10-1.5	arm	DSA-1474-1 exiv2	2008-1-23
    libexiv2-dev	0.10-1.5	hppa	DSA-1474-1 exiv2	2008-1-23
    exiv2	0.10-1.5	hppa	DSA-1474-1 exiv2	2008-1-23
    exiv2	0.10-1.5	i386	DSA-1474-1 exiv2	2008-1-23
    libexiv2-dev	0.10-1.5	i386	DSA-1474-1 exiv2	2008-1-23
    libexiv2-dev	0.10-1.5	ia64	DSA-1474-1 exiv2	2008-1-23
    exiv2	0.10-1.5	ia64	DSA-1474-1 exiv2	2008-1-23
    libexiv2-dev	0.10-1.5	mips	DSA-1474-1 exiv2	2008-1-23
    exiv2	0.10-1.5	mips	DSA-1474-1 exiv2	2008-1-23
    libexiv2-dev	0.10-1.5	mipsel	DSA-1474-1 exiv2	2008-1-23
    exiv2	0.10-1.5	mipsel	DSA-1474-1 exiv2	2008-1-23
    libexiv2-dev	0.10-1.5	powerpc	DSA-1474-1 exiv2	2008-1-23
    exiv2	0.10-1.5	powerpc	DSA-1474-1 exiv2	2008-1-23
    exiv2	0.10-1.5	s390	DSA-1474-1 exiv2	2008-1-23
    libexiv2-dev	0.10-1.5	s390	DSA-1474-1 exiv2	2008-1-23
    libexiv2-dev	0.10-1.5	sparc	DSA-1474-1 exiv2	2008-1-23
    exiv2	0.10-1.5	sparc	DSA-1474-1 exiv2	2008-1-23
    libflac-doc	1.1.2-8	all	DSA-1469-1 flac	2008-1-20
    liboggflac-dev	1.1.2-8	alpha	DSA-1469-1 flac	2008-1-20
    liboggflac3	1.1.2-8	alpha	DSA-1469-1 flac	2008-1-20
    xmms-flac	1.1.2-8	alpha	DSA-1469-1 flac	2008-1-20
    libflac-dev	1.1.2-8	alpha	DSA-1469-1 flac	2008-1-20
    libflac7	1.1.2-8	alpha	DSA-1469-1 flac	2008-1-20
    flac	1.1.2-8	alpha	DSA-1469-1 flac	2008-1-20
    libflac-dev	1.1.2-8	amd64	DSA-1469-1 flac	2008-1-20
    liboggflac3	1.1.2-8	amd64	DSA-1469-1 flac	2008-1-20
    flac	1.1.2-8	amd64	DSA-1469-1 flac	2008-1-20
    xmms-flac	1.1.2-8	amd64	DSA-1469-1 flac	2008-1-20
    liboggflac-dev	1.1.2-8	amd64	DSA-1469-1 flac	2008-1-20
    libflac7	1.1.2-8	amd64	DSA-1469-1 flac	2008-1-20
    flac	1.1.2-8	arm	DSA-1469-1 flac	2008-1-20
    liboggflac-dev	1.1.2-8	arm	DSA-1469-1 flac	2008-1-20
    liboggflac3	1.1.2-8	arm	DSA-1469-1 flac	2008-1-20
    libflac7	1.1.2-8	arm	DSA-1469-1 flac	2008-1-20
    libflac-dev	1.1.2-8	arm	DSA-1469-1 flac	2008-1-20
    xmms-flac	1.1.2-8	arm	DSA-1469-1 flac	2008-1-20
    libflac7	1.1.2-8	hppa	DSA-1469-1 flac	2008-1-20
    xmms-flac	1.1.2-8	hppa	DSA-1469-1 flac	2008-1-20
    liboggflac3	1.1.2-8	hppa	DSA-1469-1 flac	2008-1-20
    flac	1.1.2-8	hppa	DSA-1469-1 flac	2008-1-20
    liboggflac-dev	1.1.2-8	hppa	DSA-1469-1 flac	2008-1-20
    libflac-dev	1.1.2-8	hppa	DSA-1469-1 flac	2008-1-20
    liboggflac3	1.1.2-8	i386	DSA-1469-1 flac	2008-1-20
    flac	1.1.2-8	i386	DSA-1469-1 flac	2008-1-20
    liboggflac-dev	1.1.2-8	i386	DSA-1469-1 flac	2008-1-20
    xmms-flac	1.1.2-8	i386	DSA-1469-1 flac	2008-1-20
    libflac-dev	1.1.2-8	i386	DSA-1469-1 flac	2008-1-20
    libflac7	1.1.2-8	i386	DSA-1469-1 flac	2008-1-20
    xmms-flac	1.1.2-8	ia64	DSA-1469-1 flac	2008-1-20
    flac	1.1.2-8	ia64	DSA-1469-1 flac	2008-1-20
    liboggflac3	1.1.2-8	ia64	DSA-1469-1 flac	2008-1-20
    libflac7	1.1.2-8	ia64	DSA-1469-1 flac	2008-1-20
    libflac-dev	1.1.2-8	ia64	DSA-1469-1 flac	2008-1-20
    liboggflac-dev	1.1.2-8	ia64	DSA-1469-1 flac	2008-1-20
    liboggflac3	1.1.2-8	mips	DSA-1469-1 flac	2008-1-20
    liboggflac-dev	1.1.2-8	mips	DSA-1469-1 flac	2008-1-20
    flac	1.1.2-8	mips	DSA-1469-1 flac	2008-1-20
    xmms-flac	1.1.2-8	mips	DSA-1469-1 flac	2008-1-20
    libflac7	1.1.2-8	mips	DSA-1469-1 flac	2008-1-20
    libflac-dev	1.1.2-8	mips	DSA-1469-1 flac	2008-1-20
    xmms-flac	1.1.2-8	mipsel	DSA-1469-1 flac	2008-1-20
    libflac-dev	1.1.2-8	mipsel	DSA-1469-1 flac	2008-1-20
    liboggflac3	1.1.2-8	mipsel	DSA-1469-1 flac	2008-1-20
    liboggflac-dev	1.1.2-8	mipsel	DSA-1469-1 flac	2008-1-20
    flac	1.1.2-8	mipsel	DSA-1469-1 flac	2008-1-20
    libflac7	1.1.2-8	mipsel	DSA-1469-1 flac	2008-1-20
    liboggflac3	1.1.2-8	powerpc	DSA-1469-1 flac	2008-1-20
    liboggflac-dev	1.1.2-8	powerpc	DSA-1469-1 flac	2008-1-20
    xmms-flac	1.1.2-8	powerpc	DSA-1469-1 flac	2008-1-20
    libflac-dev	1.1.2-8	powerpc	DSA-1469-1 flac	2008-1-20
    libflac7	1.1.2-8	powerpc	DSA-1469-1 flac	2008-1-20
    flac	1.1.2-8	powerpc	DSA-1469-1 flac	2008-1-20
    liboggflac-dev	1.1.2-8	s390	DSA-1469-1 flac	2008-1-20
    liboggflac3	1.1.2-8	s390	DSA-1469-1 flac	2008-1-20
    libflac-dev	1.1.2-8	s390	DSA-1469-1 flac	2008-1-20
    libflac7	1.1.2-8	s390	DSA-1469-1 flac	2008-1-20
    xmms-flac	1.1.2-8	s390	DSA-1469-1 flac	2008-1-20
    flac	1.1.2-8	s390	DSA-1469-1 flac	2008-1-20
    libflac7	1.1.2-8	sparc	DSA-1469-1 flac	2008-1-20
    libflac-dev	1.1.2-8	sparc	DSA-1469-1 flac	2008-1-20
    flac	1.1.2-8	sparc	DSA-1469-1 flac	2008-1-20
    xmms-flac	1.1.2-8	sparc	DSA-1469-1 flac	2008-1-20
    liboggflac3	1.1.2-8	sparc	DSA-1469-1 flac	2008-1-20
    liboggflac-dev	1.1.2-8	sparc	DSA-1469-1 flac	2008-1-20
    ikiwiki	1.33.4	all	DSA-1523-1 ikiwiki	2008-3-17
    ikiwiki	1.33.5	all	DSA-1553-1 ikiwiki	2008-4-20
    libvorbis-dev	1.1.0-2	alpha	DSA-1471-1 libvorbis	2008-1-21
    libvorbisenc2	1.1.0-2	alpha	DSA-1471-1 libvorbis	2008-1-21
    libvorbis0a	1.1.0-2	alpha	DSA-1471-1 libvorbis	2008-1-21
    libvorbisfile3	1.1.0-2	alpha	DSA-1471-1 libvorbis	2008-1-21
    libvorbis0a	1.1.0-2	amd64	DSA-1471-1 libvorbis	2008-1-21
    libvorbis-dev	1.1.0-2	amd64	DSA-1471-1 libvorbis	2008-1-21
    libvorbisenc2	1.1.0-2	amd64	DSA-1471-1 libvorbis	2008-1-21
    libvorbisfile3	1.1.0-2	amd64	DSA-1471-1 libvorbis	2008-1-21
    libvorbis-dev	1.1.0-2	arm	DSA-1471-1 libvorbis	2008-1-21
    libvorbisenc2	1.1.0-2	arm	DSA-1471-1 libvorbis	2008-1-21
    libvorbis0a	1.1.0-2	arm	DSA-1471-1 libvorbis	2008-1-21
    libvorbisfile3	1.1.0-2	arm	DSA-1471-1 libvorbis	2008-1-21
    libvorbisenc2	1.1.0-2	hppa	DSA-1471-1 libvorbis	2008-1-21
    libvorbis0a	1.1.0-2	hppa	DSA-1471-1 libvorbis	2008-1-21
    libvorbisfile3	1.1.0-2	hppa	DSA-1471-1 libvorbis	2008-1-21
    libvorbis-dev	1.1.0-2	hppa	DSA-1471-1 libvorbis	2008-1-21
    libvorbis-dev	1.1.0-2	i386	DSA-1471-1 libvorbis	2008-1-21
    libvorbis0a	1.1.0-2	i386	DSA-1471-1 libvorbis	2008-1-21
    libvorbisenc2	1.1.0-2	i386	DSA-1471-1 libvorbis	2008-1-21
    libvorbisfile3	1.1.0-2	i386	DSA-1471-1 libvorbis	2008-1-21
    libvorbisfile3	1.1.0-2	ia64	DSA-1471-1 libvorbis	2008-1-21
    libvorbis-dev	1.1.0-2	ia64	DSA-1471-1 libvorbis	2008-1-21
    libvorbisenc2	1.1.0-2	ia64	DSA-1471-1 libvorbis	2008-1-21
    libvorbis0a	1.1.0-2	ia64	DSA-1471-1 libvorbis	2008-1-21
    libvorbisenc2	1.1.0-2	m68k	DSA-1471-1 libvorbis	2008-1-21
    libvorbis-dev	1.1.0-2	m68k	DSA-1471-1 libvorbis	2008-1-21
    libvorbisfile3	1.1.0-2	m68k	DSA-1471-1 libvorbis	2008-1-21
    libvorbis0a	1.1.0-2	m68k	DSA-1471-1 libvorbis	2008-1-21
    libvorbisenc2	1.1.0-2	mips	DSA-1471-1 libvorbis	2008-1-21
    libvorbis-dev	1.1.0-2	mips	DSA-1471-1 libvorbis	2008-1-21
    libvorbis0a	1.1.0-2	mips	DSA-1471-1 libvorbis	2008-1-21
    libvorbisfile3	1.1.0-2	mips	DSA-1471-1 libvorbis	2008-1-21
    libvorbisenc2	1.1.0-2	mipsel	DSA-1471-1 libvorbis	2008-1-21
    libvorbis-dev	1.1.0-2	mipsel	DSA-1471-1 libvorbis	2008-1-21
    libvorbisfile3	1.1.0-2	mipsel	DSA-1471-1 libvorbis	2008-1-21
    libvorbis0a	1.1.0-2	mipsel	DSA-1471-1 libvorbis	2008-1-21
    libvorbis0a	1.1.0-2	powerpc	DSA-1471-1 libvorbis	2008-1-21
    libvorbisfile3	1.1.0-2	powerpc	DSA-1471-1 libvorbis	2008-1-21
    libvorbisenc2	1.1.0-2	powerpc	DSA-1471-1 libvorbis	2008-1-21
    libvorbis-dev	1.1.0-2	powerpc	DSA-1471-1 libvorbis	2008-1-21
    libvorbisenc2	1.1.0-2	s390	DSA-1471-1 libvorbis	2008-1-21
    libvorbisfile3	1.1.0-2	s390	DSA-1471-1 libvorbis	2008-1-21
    libvorbis0a	1.1.0-2	s390	DSA-1471-1 libvorbis	2008-1-21
    libvorbis-dev	1.1.0-2	s390	DSA-1471-1 libvorbis	2008-1-21
    libvorbisenc2	1.1.0-2	sparc	DSA-1471-1 libvorbis	2008-1-21
    libvorbis0a	1.1.0-2	sparc	DSA-1471-1 libvorbis	2008-1-21
    libvorbisfile3	1.1.0-2	sparc	DSA-1471-1 libvorbis	2008-1-21
    libvorbis-dev	1.1.0-2	sparc	DSA-1471-1 libvorbis	2008-1-21
    phpbb2-languages	2.0.21-7	all	DSA-1488-1 phpbb2	2008-02-09
    phpbb2	2.0.21-7	all	DSA-1488-1 phpbb2	2008-02-09
    phpbb2-conf-mysql	2.0.21-7	all	DSA-1488-1 phpbb2	2008-02-09
    mantis	0.17.1-2.5	all	DSA-161-1 mantis	2002-9-4
    micq	0.4.3-4.1	alpha	DSA-211-1 micq	2002-12-13
    micq	0.4.3-4.1	arm	DSA-211-1 micq	2002-12-13
    micq	0.4.3-4.1	i386	DSA-211-1 micq	2002-12-13
    micq	0.4.3-4.1	m68k	DSA-211-1 micq	2002-12-13
    micq	0.4.3-4.1	powerpc	DSA-211-1 micq	2002-12-13
    micq	0.4.3-4.1	sparc	DSA-211-1 micq	2002-12-13
    xtell	1.91.1	alpha	DSA-121-1 xtell	2002-3-11
    xtell	1.91.1	arm	DSA-121-1 xtell	2002-3-11
    xtell	1.91.1	i386	DSA-121-1 xtell	2002-3-11
    xtell	1.91.1	m68k	DSA-121-1 xtell	2002-3-11
    xtell	1.91.1	powerpc	DSA-121-1 xtell	2002-3-11
    xtell	1.91.1	sparc	DSA-121-1 xtell	2002-3-11
    mutt	1.2.5-5	alpha	DSA-096-2 mutt	2002-1-3
    mutt	1.2.5-5	arm	DSA-096-2 mutt	2002-1-3
    mutt	1.2.5-5	i386	DSA-096-2 mutt	2002-1-3
    mutt	1.2.5-5	m68k	DSA-096-2 mutt	2002-1-3
    mutt	1.2.5-5	powerpc	DSA-096-2 mutt	2002-1-3
    mutt	1.2.5-5	sparc	DSA-096-2 mutt	2002-1-3
    wmaker	0.80.0-4.1	alpha	DSA-190-1 wmaker	2002-11-7
    libwings-dev	0.80.0-4.1	alpha	DSA-190-1 wmaker	2002-11-7
    libwraster2-dev	0.80.0-4.1	alpha	DSA-190-1 wmaker	2002-11-7
    libwmaker0-dev	0.80.0-4.1	alpha	DSA-190-1 wmaker	2002-11-7
    libwraster2	0.80.0-4.1	alpha	DSA-190-1 wmaker	2002-11-7
    libwings-dev	0.80.0-4.1	arm	DSA-190-1 wmaker	2002-11-7
    libwraster2-dev	0.80.0-4.1	arm	DSA-190-1 wmaker	2002-11-7
    wmaker	0.80.0-4.1	arm	DSA-190-1 wmaker	2002-11-7
    libwmaker0-dev	0.80.0-4.1	arm	DSA-190-1 wmaker	2002-11-7
    libwraster2	0.80.0-4.1	arm	DSA-190-1 wmaker	2002-11-7
    wmaker	0.80.0-4.1	hppa	DSA-190-1 wmaker	2002-11-7
    libwraster2-dev	0.80.0-4.1	hppa	DSA-190-1 wmaker	2002-11-7
    libwraster2	0.80.0-4.1	hppa	DSA-190-1 wmaker	2002-11-7
    libwmaker0-dev	0.80.0-4.1	hppa	DSA-190-1 wmaker	2002-11-7
    libwings-dev	0.80.0-4.1	hppa	DSA-190-1 wmaker	2002-11-7
    libwmaker0-dev	0.80.0-4.1	i386	DSA-190-1 wmaker	2002-11-7
    libwraster2-dev	0.80.0-4.1	i386	DSA-190-1 wmaker	2002-11-7
    wmaker	0.80.0-4.1	i386	DSA-190-1 wmaker	2002-11-7
    libwraster2	0.80.0-4.1	i386	DSA-190-1 wmaker	2002-11-7
    libwings-dev	0.80.0-4.1	i386	DSA-190-1 wmaker	2002-11-7
    libwraster2-dev	0.80.0-4.1	ia64	DSA-190-1 wmaker	2002-11-7
    wmaker	0.80.0-4.1	ia64	DSA-190-1 wmaker	2002-11-7
    libwmaker0-dev	0.80.0-4.1	ia64	DSA-190-1 wmaker	2002-11-7
    libwraster2	0.80.0-4.1	ia64	DSA-190-1 wmaker	2002-11-7
    libwings-dev	0.80.0-4.1	ia64	DSA-190-1 wmaker	2002-11-7
    libwraster2	0.80.0-4.1	m68k	DSA-190-1 wmaker	2002-11-7
    libwings-dev	0.80.0-4.1	m68k	DSA-190-1 wmaker	2002-11-7
    libwmaker0-dev	0.80.0-4.1	m68k	DSA-190-1 wmaker	2002-11-7
    libwraster2-dev	0.80.0-4.1	m68k	DSA-190-1 wmaker	2002-11-7
    wmaker	0.80.0-4.1	m68k	DSA-190-1 wmaker	2002-11-7
    libwings-dev	0.80.0-4.1	mips	DSA-190-1 wmaker	2002-11-7
    libwraster2	0.80.0-4.1	mips	DSA-190-1 wmaker	2002-11-7
    wmaker	0.80.0-4.1	mips	DSA-190-1 wmaker	2002-11-7
    libwraster2-dev	0.80.0-4.1	mips	DSA-190-1 wmaker	2002-11-7
    libwmaker0-dev	0.80.0-4.1	mips	DSA-190-1 wmaker	2002-11-7
    libwraster2-dev	0.80.0-4.1	powerpc	DSA-190-1 wmaker	2002-11-7
    wmaker	0.80.0-4.1	powerpc	DSA-190-1 wmaker	2002-11-7
    libwmaker0-dev	0.80.0-4.1	powerpc	DSA-190-1 wmaker	2002-11-7
    libwings-dev	0.80.0-4.1	powerpc	DSA-190-1 wmaker	2002-11-7
    libwraster2	0.80.0-4.1	powerpc	DSA-190-1 wmaker	2002-11-7
    wmaker	0.80.0-4.1	s390	DSA-190-1 wmaker	2002-11-7
    libwraster2-dev	0.80.0-4.1	s390	DSA-190-1 wmaker	2002-11-7
    libwraster2	0.80.0-4.1	s390	DSA-190-1 wmaker	2002-11-7
    libwings-dev	0.80.0-4.1	s390	DSA-190-1 wmaker	2002-11-7
    libwmaker0-dev	0.80.0-4.1	s390	DSA-190-1 wmaker	2002-11-7
    libwmaker0-dev	0.80.0-4.1	sparc	DSA-190-1 wmaker	2002-11-7
    wmaker	0.80.0-4.1	sparc	DSA-190-1 wmaker	2002-11-7
    libwraster2	0.80.0-4.1	sparc	DSA-190-1 wmaker	2002-11-7
    libwraster2-dev	0.80.0-4.1	sparc	DSA-190-1 wmaker	2002-11-7
    libwings-dev	0.80.0-4.1	sparc	DSA-190-1 wmaker	2002-11-7
    libmm10	1.0.11-1.2	alpha	DSA-137-1 mm	2002-7-30
    libmm10-dev	1.0.11-1.2	alpha	DSA-137-1 mm	2002-7-30
    libmm10	1.0.11-1.2	arm	DSA-137-1 mm	2002-7-30
    libmm10-dev	1.0.11-1.2	arm	DSA-137-1 mm	2002-7-30
    libmm10	1.0.11-1.2	i386	DSA-137-1 mm	2002-7-30
    libmm10-dev	1.0.11-1.2	i386	DSA-137-1 mm	2002-7-30
    libmm10	1.0.11-1.2	m68k	DSA-137-1 mm	2002-7-30
    libmm10-dev	1.0.11-1.2	m68k	DSA-137-1 mm	2002-7-30
    libmm10	1.0.11-1.2	powerpc	DSA-137-1 mm	2002-7-30
    libmm10-dev	1.0.11-1.2	powerpc	DSA-137-1 mm	2002-7-30
    libmm10	1.0.11-1.2	sparc	DSA-137-1 mm	2002-7-30
    libmm10-dev	1.0.11-1.2	sparc	DSA-137-1 mm	2002-7-30
    libmm11	1.1.3-6.1	alpha	DSA-137-1 mm	2002-7-30
    libmm11-dev	1.1.3-6.1	alpha	DSA-137-1 mm	2002-7-30
    libmm11	1.1.3-6.1	arm	DSA-137-1 mm	2002-7-30
    libmm11-dev	1.1.3-6.1	arm	DSA-137-1 mm	2002-7-30
    libmm11	1.1.3-6.1	i386	DSA-137-1 mm	2002-7-30
    libmm11-dev	1.1.3-6.1	i386	DSA-137-1 mm	2002-7-30
    libmm11	1.1.3-6.1	ia64	DSA-137-1 mm	2002-7-30
    libmm11-dev	1.1.3-6.1	ia64	DSA-137-1 mm	2002-7-30
    libmm11	1.1.3-6.1	hppa	DSA-137-1 mm	2002-7-30
    libmm11-dev	1.1.3-6.1	hppa	DSA-137-1 mm	2002-7-30
    libmm11	1.1.3-6.1	m68k	DSA-137-1 mm	2002-7-30
    libmm11-dev	1.1.3-6.1	m68k	DSA-137-1 mm	2002-7-30
    libmm11	1.1.3-6.1	mips	DSA-137-1 mm	2002-7-30
    libmm11-dev	1.1.3-6.1	mips	DSA-137-1 mm	2002-7-30
    libmm11	1.1.3-6.1	mipsel	DSA-137-1 mm	2002-7-30
    libmm11-dev	1.1.3-6.1	mipsel	DSA-137-1 mm	2002-7-30
    libmm11	1.1.3-6.1	powerpc	DSA-137-1 mm	2002-7-30
    libmm11-dev	1.1.3-6.1	powerpc	DSA-137-1 mm	2002-7-30
    libmm11	1.1.3-6.1	s390	DSA-137-1 mm	2002-7-30
    libmm11-dev	1.1.3-6.1	s390	DSA-137-1 mm	2002-7-30
    libmm11	1.1.3-6.1	sparc	DSA-137-1 mm	2002-7-30
    libmm11-dev	1.1.3-6.1	sparc	DSA-137-1 mm	2002-7-30
    kerberos4kth-clients	1.0-2.2	alpha	DSA-184-1 krb4	2002-10-30
    kerberos4kth-dev	1.0-2.2	alpha	DSA-184-1 krb4	2002-10-30
    kerberos4kth-kdc	1.0-2.2	alpha	DSA-184-1 krb4	2002-10-30
    kerberos4kth-services	1.0-2.2	alpha	DSA-184-1 krb4	2002-10-30
    kerberos4kth-user	1.0-2.2	alpha	DSA-184-1 krb4	2002-10-30
    kerberos4kth-x11	1.0-2.2	alpha	DSA-184-1 krb4	2002-10-30
    kerberos4kth1	1.0-2.2	alpha	DSA-184-1 krb4	2002-10-30
    kerberos4kth-clients	1.0-2.2	arm	DSA-184-1 krb4	2002-10-30
    kerberos4kth-dev	1.0-2.2	arm	DSA-184-1 krb4	2002-10-30
    kerberos4kth-kdc	1.0-2.2	arm	DSA-184-1 krb4	2002-10-30
    kerberos4kth-services	1.0-2.2	arm	DSA-184-1 krb4	2002-10-30
    kerberos4kth-user	1.0-2.2	arm	DSA-184-1 krb4	2002-10-30
    kerberos4kth-x11	1.0-2.2	arm	DSA-184-1 krb4	2002-10-30
    kerberos4kth1	1.0-2.2	arm	DSA-184-1 krb4	2002-10-30
    kerberos4kth-clients	1.0-2.2	i386	DSA-184-1 krb4	2002-10-30
    kerberos4kth-dev	1.0-2.2	i386	DSA-184-1 krb4	2002-10-30
    kerberos4kth-kdc	1.0-2.2	i386	DSA-184-1 krb4	2002-10-30
    kerberos4kth-services	1.0-2.2	i386	DSA-184-1 krb4	2002-10-30
    kerberos4kth-user	1.0-2.2	i386	DSA-184-1 krb4	2002-10-30
    kerberos4kth-x11	1.0-2.2	i386	DSA-184-1 krb4	2002-10-30
    kerberos4kth1	1.0-2.2	i386	DSA-184-1 krb4	2002-10-30
    kerberos4kth-clients	1.0-2.2	m68k	DSA-184-1 krb4	2002-10-30
    kerberos4kth-dev	1.0-2.2	m68k	DSA-184-1 krb4	2002-10-30
    kerberos4kth-kdc	1.0-2.2	m68k	DSA-184-1 krb4	2002-10-30
    kerberos4kth-services	1.0-2.2	m68k	DSA-184-1 krb4	2002-10-30
    kerberos4kth-user	1.0-2.2	m68k	DSA-184-1 krb4	2002-10-30
    kerberos4kth-x11	1.0-2.2	m68k	DSA-184-1 krb4	2002-10-30
    kerberos4kth1	1.0-2.2	m68k	DSA-184-1 krb4	2002-10-30
    kerberos4kth-clients	1.0-2.2	sparc	DSA-184-1 krb4	2002-10-30
    kerberos4kth-dev	1.0-2.2	sparc	DSA-184-1 krb4	2002-10-30
    kerberos4kth-kdc	1.0-2.2	sparc	DSA-184-1 krb4	2002-10-30
    kerberos4kth-services	1.0-2.2	sparc	DSA-184-1 krb4	2002-10-30
    kerberos4kth-user	1.0-2.2	sparc	DSA-184-1 krb4	2002-10-30
    kerberos4kth-x11	1.0-2.2	sparc	DSA-184-1 krb4	2002-10-30
    kerberos4kth1	1.0-2.2	sparc	DSA-184-1 krb4	2002-10-30
    kerberos4kth-docs	1.1-8-2.2	all	DSA-184-1 krb4	2002-10-30
    kerberos4kth-services	1.1-8-2.2	all	DSA-184-1 krb4	2002-10-30
    kerberos4kth-user	1.1-8-2.2	all	DSA-184-1 krb4	2002-10-30
    kerberos4kth-x11	1.1-8-2.2	all	DSA-184-1 krb4	2002-10-30
    kerberos4kth1	1.1-8-2.2	all	DSA-184-1 krb4	2002-10-30
    kerberos4kth-clients	1.1-8-2.2	alpha	DSA-184-1 krb4	2002-10-30
    kerberos4kth-clients-x	1.1-8-2.2	alpha	DSA-184-1 krb4	2002-10-30
    kerberos4kth-dev	1.1-8-2.2	alpha	DSA-184-1 krb4	2002-10-30
    kerberos4kth-dev-common	1.1-8-2.2	alpha	DSA-184-1 krb4	2002-10-30
    kerberos4kth-kdc	1.1-8-2.2	alpha	DSA-184-1 krb4	2002-10-30
    kerberos4kth-kip	1.1-8-2.2	alpha	DSA-184-1 krb4	2002-10-30
    kerberos4kth-servers	1.1-8-2.2	alpha	DSA-184-1 krb4	2002-10-30
    kerberos4kth-servers-x	1.1-8-2.2	alpha	DSA-184-1 krb4	2002-10-30
    libacl1-kerberos4kth	1.1-8-2.2	alpha	DSA-184-1 krb4	2002-10-30
    libkadm1-kerberos4kth	1.1-8-2.2	alpha	DSA-184-1 krb4	2002-10-30
    libkdb-1-kerberos4kth	1.1-8-2.2	alpha	DSA-184-1 krb4	2002-10-30
    libkrb-1-kerberos4kth	1.1-8-2.2	alpha	DSA-184-1 krb4	2002-10-30
    kerberos4kth-clients	1.1-8-2.2	arm	DSA-184-1 krb4	2002-10-30
    kerberos4kth-clients-x	1.1-8-2.2	arm	DSA-184-1 krb4	2002-10-30
    kerberos4kth-dev	1.1-8-2.2	arm	DSA-184-1 krb4	2002-10-30
    kerberos4kth-dev-common	1.1-8-2.2	arm	DSA-184-1 krb4	2002-10-30
    kerberos4kth-kdc	1.1-8-2.2	arm	DSA-184-1 krb4	2002-10-30
    kerberos4kth-kip	1.1-8-2.2	arm	DSA-184-1 krb4	2002-10-30
    kerberos4kth-servers	1.1-8-2.2	arm	DSA-184-1 krb4	2002-10-30
    kerberos4kth-servers-x	1.1-8-2.2	arm	DSA-184-1 krb4	2002-10-30
    libacl1-kerberos4kth	1.1-8-2.2	arm	DSA-184-1 krb4	2002-10-30
    libkadm1-kerberos4kth	1.1-8-2.2	arm	DSA-184-1 krb4	2002-10-30
    libkdb-1-kerberos4kth	1.1-8-2.2	arm	DSA-184-1 krb4	2002-10-30
    libkrb-1-kerberos4kth	1.1-8-2.2	arm	DSA-184-1 krb4	2002-10-30
    kerberos4kth-clients	1.1-8-2.2	i386	DSA-184-1 krb4	2002-10-30
    kerberos4kth-clients-x	1.1-8-2.2	i386	DSA-184-1 krb4	2002-10-30
    kerberos4kth-dev	1.1-8-2.2	i386	DSA-184-1 krb4	2002-10-30
    kerberos4kth-dev-common	1.1-8-2.2	i386	DSA-184-1 krb4	2002-10-30
    kerberos4kth-kdc	1.1-8-2.2	i386	DSA-184-1 krb4	2002-10-30
    kerberos4kth-kip	1.1-8-2.2	i386	DSA-184-1 krb4	2002-10-30
    kerberos4kth-servers	1.1-8-2.2	i386	DSA-184-1 krb4	2002-10-30
    kerberos4kth-servers-x	1.1-8-2.2	i386	DSA-184-1 krb4	2002-10-30
    libacl1-kerberos4kth	1.1-8-2.2	i386	DSA-184-1 krb4	2002-10-30
    libkadm1-kerberos4kth	1.1-8-2.2	i386	DSA-184-1 krb4	2002-10-30
    libkdb-1-kerberos4kth	1.1-8-2.2	i386	DSA-184-1 krb4	2002-10-30
    libkrb-1-kerberos4kth	1.1-8-2.2	i386	DSA-184-1 krb4	2002-10-30
    kerberos4kth-clients	1.1-8-2.2	ia64	DSA-184-1 krb4	2002-10-30
    kerberos4kth-clients-x	1.1-8-2.2	ia64	DSA-184-1 krb4	2002-10-30
    kerberos4kth-dev	1.1-8-2.2	ia64	DSA-184-1 krb4	2002-10-30
    kerberos4kth-dev-common	1.1-8-2.2	ia64	DSA-184-1 krb4	2002-10-30
    kerberos4kth-kdc	1.1-8-2.2	ia64	DSA-184-1 krb4	2002-10-30
    kerberos4kth-kip	1.1-8-2.2	ia64	DSA-184-1 krb4	2002-10-30
    kerberos4kth-servers	1.1-8-2.2	ia64	DSA-184-1 krb4	2002-10-30
    kerberos4kth-servers-x	1.1-8-2.2	ia64	DSA-184-1 krb4	2002-10-30
    libacl1-kerberos4kth	1.1-8-2.2	ia64	DSA-184-1 krb4	2002-10-30
    libkadm1-kerberos4kth	1.1-8-2.2	ia64	DSA-184-1 krb4	2002-10-30
    libkdb-1-kerberos4kth	1.1-8-2.2	ia64	DSA-184-1 krb4	2002-10-30
    libkrb-1-kerberos4kth	1.1-8-2.2	ia64	DSA-184-1 krb4	2002-10-30
    kerberos4kth-clients	1.1-8-2.2	hppa	DSA-184-1 krb4	2002-10-30
    kerberos4kth-clients-x	1.1-8-2.2	hppa	DSA-184-1 krb4	2002-10-30
    kerberos4kth-dev	1.1-8-2.2	hppa	DSA-184-1 krb4	2002-10-30
    kerberos4kth-dev-common	1.1-8-2.2	hppa	DSA-184-1 krb4	2002-10-30
    kerberos4kth-kdc	1.1-8-2.2	hppa	DSA-184-1 krb4	2002-10-30
    kerberos4kth-kip	1.1-8-2.2	hppa	DSA-184-1 krb4	2002-10-30
    kerberos4kth-servers	1.1-8-2.2	hppa	DSA-184-1 krb4	2002-10-30
    kerberos4kth-servers-x	1.1-8-2.2	hppa	DSA-184-1 krb4	2002-10-30
    libacl1-kerberos4kth	1.1-8-2.2	hppa	DSA-184-1 krb4	2002-10-30
    libkadm1-kerberos4kth	1.1-8-2.2	hppa	DSA-184-1 krb4	2002-10-30
    libkdb-1-kerberos4kth	1.1-8-2.2	hppa	DSA-184-1 krb4	2002-10-30
    libkrb-1-kerberos4kth	1.1-8-2.2	hppa	DSA-184-1 krb4	2002-10-30
    kerberos4kth-clients	1.1-8-2.2	m68k	DSA-184-1 krb4	2002-10-30
    kerberos4kth-clients-x	1.1-8-2.2	m68k	DSA-184-1 krb4	2002-10-30
    kerberos4kth-dev	1.1-8-2.2	m68k	DSA-184-1 krb4	2002-10-30
    kerberos4kth-dev-common	1.1-8-2.2	m68k	DSA-184-1 krb4	2002-10-30
    kerberos4kth-kdc	1.1-8-2.2	m68k	DSA-184-1 krb4	2002-10-30
    kerberos4kth-kip	1.1-8-2.2	m68k	DSA-184-1 krb4	2002-10-30
    kerberos4kth-servers	1.1-8-2.2	m68k	DSA-184-1 krb4	2002-10-30
    kerberos4kth-servers-x	1.1-8-2.2	m68k	DSA-184-1 krb4	2002-10-30
    libacl1-kerberos4kth	1.1-8-2.2	m68k	DSA-184-1 krb4	2002-10-30
    libkadm1-kerberos4kth	1.1-8-2.2	m68k	DSA-184-1 krb4	2002-10-30
    libkdb-1-kerberos4kth	1.1-8-2.2	m68k	DSA-184-1 krb4	2002-10-30
    libkrb-1-kerberos4kth	1.1-8-2.2	m68k	DSA-184-1 krb4	2002-10-30
    kerberos4kth-clients	1.1-8-2.2	mips	DSA-184-1 krb4	2002-10-30
    kerberos4kth-clients-x	1.1-8-2.2	mips	DSA-184-1 krb4	2002-10-30
    kerberos4kth-dev	1.1-8-2.2	mips	DSA-184-1 krb4	2002-10-30
    kerberos4kth-dev-common	1.1-8-2.2	mips	DSA-184-1 krb4	2002-10-30
    kerberos4kth-kdc	1.1-8-2.2	mips	DSA-184-1 krb4	2002-10-30
    kerberos4kth-kip	1.1-8-2.2	mips	DSA-184-1 krb4	2002-10-30
    kerberos4kth-servers	1.1-8-2.2	mips	DSA-184-1 krb4	2002-10-30
    kerberos4kth-servers-x	1.1-8-2.2	mips	DSA-184-1 krb4	2002-10-30
    libacl1-kerberos4kth	1.1-8-2.2	mips	DSA-184-1 krb4	2002-10-30
    libkadm1-kerberos4kth	1.1-8-2.2	mips	DSA-184-1 krb4	2002-10-30
    libkdb-1-kerberos4kth	1.1-8-2.2	mips	DSA-184-1 krb4	2002-10-30
    libkrb-1-kerberos4kth	1.1-8-2.2	mips	DSA-184-1 krb4	2002-10-30
    kerberos4kth-clients	1.1-8-2.2	mipsel	DSA-184-1 krb4	2002-10-30
    kerberos4kth-clients-x	1.1-8-2.2	mipsel	DSA-184-1 krb4	2002-10-30
    kerberos4kth-dev	1.1-8-2.2	mipsel	DSA-184-1 krb4	2002-10-30
    kerberos4kth-dev-common	1.1-8-2.2	mipsel	DSA-184-1 krb4	2002-10-30
    kerberos4kth-kdc	1.1-8-2.2	mipsel	DSA-184-1 krb4	2002-10-30
    kerberos4kth-kip	1.1-8-2.2	mipsel	DSA-184-1 krb4	2002-10-30
    kerberos4kth-servers	1.1-8-2.2	mipsel	DSA-184-1 krb4	2002-10-30
    kerberos4kth-servers-x	1.1-8-2.2	mipsel	DSA-184-1 krb4	2002-10-30
    libacl1-kerberos4kth	1.1-8-2.2	mipsel	DSA-184-1 krb4	2002-10-30
    libkadm1-kerberos4kth	1.1-8-2.2	mipsel	DSA-184-1 krb4	2002-10-30
    libkdb-1-kerberos4kth	1.1-8-2.2	mipsel	DSA-184-1 krb4	2002-10-30
    libkrb-1-kerberos4kth	1.1-8-2.2	mipsel	DSA-184-1 krb4	2002-10-30
    kerberos4kth-clients	1.1-8-2.2	powerpc	DSA-184-1 krb4	2002-10-30
    kerberos4kth-clients-x	1.1-8-2.2	powerpc	DSA-184-1 krb4	2002-10-30
    kerberos4kth-dev	1.1-8-2.2	powerpc	DSA-184-1 krb4	2002-10-30
    kerberos4kth-dev-common	1.1-8-2.2	powerpc	DSA-184-1 krb4	2002-10-30
    kerberos4kth-kdc	1.1-8-2.2	powerpc	DSA-184-1 krb4	2002-10-30
    kerberos4kth-kip	1.1-8-2.2	powerpc	DSA-184-1 krb4	2002-10-30
    kerberos4kth-servers	1.1-8-2.2	powerpc	DSA-184-1 krb4	2002-10-30
    kerberos4kth-servers-x	1.1-8-2.2	powerpc	DSA-184-1 krb4	2002-10-30
    libacl1-kerberos4kth	1.1-8-2.2	powerpc	DSA-184-1 krb4	2002-10-30
    libkadm1-kerberos4kth	1.1-8-2.2	powerpc	DSA-184-1 krb4	2002-10-30
    libkdb-1-kerberos4kth	1.1-8-2.2	powerpc	DSA-184-1 krb4	2002-10-30
    libkrb-1-kerberos4kth	1.1-8-2.2	powerpc	DSA-184-1 krb4	2002-10-30
    kerberos4kth-clients	1.1-8-2.2	s390	DSA-184-1 krb4	2002-10-30
    kerberos4kth-clients-x	1.1-8-2.2	s390	DSA-184-1 krb4	2002-10-30
    kerberos4kth-dev	1.1-8-2.2	s390	DSA-184-1 krb4	2002-10-30
    kerberos4kth-dev-common	1.1-8-2.2	s390	DSA-184-1 krb4	2002-10-30
    kerberos4kth-kdc	1.1-8-2.2	s390	DSA-184-1 krb4	2002-10-30
    kerberos4kth-kip	1.1-8-2.2	s390	DSA-184-1 krb4	2002-10-30
    kerberos4kth-servers	1.1-8-2.2	s390	DSA-184-1 krb4	2002-10-30
    kerberos4kth-servers-x	1.1-8-2.2	s390	DSA-184-1 krb4	2002-10-30
    libacl1-kerberos4kth	1.1-8-2.2	s390	DSA-184-1 krb4	2002-10-30
    libkadm1-kerberos4kth	1.1-8-2.2	s390	DSA-184-1 krb4	2002-10-30
    libkdb-1-kerberos4kth	1.1-8-2.2	s390	DSA-184-1 krb4	2002-10-30
    libkrb-1-kerberos4kth	1.1-8-2.2	s390	DSA-184-1 krb4	2002-10-30
    kerberos4kth-clients	1.1-8-2.2	sparc	DSA-184-1 krb4	2002-10-30
    kerberos4kth-clients-x	1.1-8-2.2	sparc	DSA-184-1 krb4	2002-10-30
    kerberos4kth-dev	1.1-8-2.2	sparc	DSA-184-1 krb4	2002-10-30
    kerberos4kth-dev-common	1.1-8-2.2	sparc	DSA-184-1 krb4	2002-10-30
    kerberos4kth-kdc	1.1-8-2.2	sparc	DSA-184-1 krb4	2002-10-30
    kerberos4kth-kip	1.1-8-2.2	sparc	DSA-184-1 krb4	2002-10-30
    kerberos4kth-servers	1.1-8-2.2	sparc	DSA-184-1 krb4	2002-10-30
    kerberos4kth-servers-x	1.1-8-2.2	sparc	DSA-184-1 krb4	2002-10-30
    libacl1-kerberos4kth	1.1-8-2.2	sparc	DSA-184-1 krb4	2002-10-30
    libkadm1-kerberos4kth	1.1-8-2.2	sparc	DSA-184-1 krb4	2002-10-30
    libkdb-1-kerberos4kth	1.1-8-2.2	sparc	DSA-184-1 krb4	2002-10-30
    libkrb-1-kerberos4kth	1.1-8-2.2	sparc	DSA-184-1 krb4	2002-10-30
    kernel-patch-freeswan	1.96-1.4	all	DSA-201-1 freeswan	2002-12-2
    freeswan	1.96-1.4	alpha	DSA-201-1 freeswan	2002-12-2
    freeswan	1.96-1.4	arm	DSA-201-1 freeswan	2002-12-2
    freeswan	1.96-1.4	i386	DSA-201-1 freeswan	2002-12-2
    freeswan	1.96-1.4	ia64	DSA-201-1 freeswan	2002-12-2
    freeswan	1.96-1.4	hppa	DSA-201-1 freeswan	2002-12-2
    freeswan	1.96-1.4	m68k	DSA-201-1 freeswan	2002-12-2
    freeswan	1.96-1.4	mips	DSA-201-1 freeswan	2002-12-2
    freeswan	1.96-1.4	mipsel	DSA-201-1 freeswan	2002-12-2
    freeswan	1.96-1.4	powerpc	DSA-201-1 freeswan	2002-12-2
    freeswan	1.96-1.4	s390	DSA-201-1 freeswan	2002-12-2
    freeswan	1.96-1.4	sparc	DSA-201-1 freeswan	2002-12-2
    fetchmailconf	5.3.3-4.2	all	DSA-171-1 fetchmail	2002-10-7
    fetchmail	5.3.3-4.2	alpha	DSA-171-1 fetchmail	2002-10-7
    fetchmail	5.3.3-4.2	arm	DSA-171-1 fetchmail	2002-10-7
    fetchmail	5.3.3-4.2	i386	DSA-171-1 fetchmail	2002-10-7
    fetchmail	5.3.3-4.2	m68k	DSA-171-1 fetchmail	2002-10-7
    fetchmail	5.3.3-4.2	powerpc	DSA-171-1 fetchmail	2002-10-7
    fetchmail	5.3.3-4.2	sparc	DSA-171-1 fetchmail	2002-10-7
    fetchmail-common	5.9.11-6.1	all	DSA-171-1 fetchmail	2002-10-7
    fetchmailconf	5.9.11-6.1	all	DSA-171-1 fetchmail	2002-10-7
    fetchmail	5.9.11-6.1	alpha	DSA-171-1 fetchmail	2002-10-7
    fetchmail-ssl	5.9.11-6.1	alpha	DSA-171-1 fetchmail	2002-10-7
    fetchmail	5.9.11-6.1	arm	DSA-171-1 fetchmail	2002-10-7
    fetchmail-ssl	5.9.11-6.1	arm	DSA-171-1 fetchmail	2002-10-7
    fetchmail	5.9.11-6.1	i386	DSA-171-1 fetchmail	2002-10-7
    fetchmail-ssl	5.9.11-6.1	i386	DSA-171-1 fetchmail	2002-10-7
    fetchmail	5.9.11-6.1	ia64	DSA-171-1 fetchmail	2002-10-7
    fetchmail-ssl	5.9.11-6.1	ia64	DSA-171-1 fetchmail	2002-10-7
    fetchmail	5.9.11-6.1	hppa	DSA-171-1 fetchmail	2002-10-7
    fetchmail-ssl	5.9.11-6.1	hppa	DSA-171-1 fetchmail	2002-10-7
    fetchmail	5.9.11-6.1	m68k	DSA-171-1 fetchmail	2002-10-7
    fetchmail-ssl	5.9.11-6.1	m68k	DSA-171-1 fetchmail	2002-10-7
    fetchmail	5.9.11-6.1	mips	DSA-171-1 fetchmail	2002-10-7
    fetchmail-ssl	5.9.11-6.1	mips	DSA-171-1 fetchmail	2002-10-7
    fetchmail	5.9.11-6.1	mipsel	DSA-171-1 fetchmail	2002-10-7
    fetchmail-ssl	5.9.11-6.1	mipsel	DSA-171-1 fetchmail	2002-10-7
    fetchmail	5.9.11-6.1	powerpc	DSA-171-1 fetchmail	2002-10-7
    fetchmail-ssl	5.9.11-6.1	powerpc	DSA-171-1 fetchmail	2002-10-7
    fetchmail	5.9.11-6.1	s390	DSA-171-1 fetchmail	2002-10-7
    fetchmail-ssl	5.9.11-6.1	s390	DSA-171-1 fetchmail	2002-10-7
    fetchmail	5.9.11-6.1	sparc	DSA-171-1 fetchmail	2002-10-7
    fetchmail-ssl	5.9.11-6.1	sparc	DSA-171-1 fetchmail	2002-10-7
    cacti	0.6.7-2.1	all	DSA-164-1 cacti	2002-9-10
    libpam-doc	0.76-6	all	DSA-177-1 pam	2002-10-17
    libpam-runtime	0.76-6	all	DSA-177-1 pam	2002-10-17
    libpam-cracklib	0.76-6	alpha	DSA-177-1 pam	2002-10-17
    libpam-modules	0.76-6	alpha	DSA-177-1 pam	2002-10-17
    libpam0g	0.76-6	alpha	DSA-177-1 pam	2002-10-17
    libpam0g-dev	0.76-6	alpha	DSA-177-1 pam	2002-10-17
    libpam-cracklib	0.76-6	arm	DSA-177-1 pam	2002-10-17
    libpam-modules	0.76-6	arm	DSA-177-1 pam	2002-10-17
    libpam0g	0.76-6	arm	DSA-177-1 pam	2002-10-17
    libpam0g-dev	0.76-6	arm	DSA-177-1 pam	2002-10-17
    libpam-cracklib	0.76-6	i386	DSA-177-1 pam	2002-10-17
    libpam-modules	0.76-6	i386	DSA-177-1 pam	2002-10-17
    libpam0g	0.76-6	i386	DSA-177-1 pam	2002-10-17
    libpam0g-dev	0.76-6	i386	DSA-177-1 pam	2002-10-17
    libpam-cracklib	0.76-6	ia64	DSA-177-1 pam	2002-10-17
    libpam-modules	0.76-6	ia64	DSA-177-1 pam	2002-10-17
    libpam0g	0.76-6	ia64	DSA-177-1 pam	2002-10-17
    libpam0g-dev	0.76-6	ia64	DSA-177-1 pam	2002-10-17
    libpam-cracklib	0.76-6	hppa	DSA-177-1 pam	2002-10-17
    libpam-modules	0.76-6	hppa	DSA-177-1 pam	2002-10-17
    libpam0g	0.76-6	hppa	DSA-177-1 pam	2002-10-17
    libpam0g-dev	0.76-6	hppa	DSA-177-1 pam	2002-10-17
    libpam-cracklib	0.76-6	m68k	DSA-177-1 pam	2002-10-17
    libpam-modules	0.76-6	m68k	DSA-177-1 pam	2002-10-17
    libpam0g	0.76-6	m68k	DSA-177-1 pam	2002-10-17
    libpam0g-dev	0.76-6	m68k	DSA-177-1 pam	2002-10-17
    libpam-cracklib	0.76-6	mips	DSA-177-1 pam	2002-10-17
    libpam-modules	0.76-6	mips	DSA-177-1 pam	2002-10-17
    libpam0g	0.76-6	mips	DSA-177-1 pam	2002-10-17
    libpam0g-dev	0.76-6	mips	DSA-177-1 pam	2002-10-17
    libpam-cracklib	0.76-6	mipsel	DSA-177-1 pam	2002-10-17
    libpam-modules	0.76-6	mipsel	DSA-177-1 pam	2002-10-17
    libpam0g	0.76-6	mipsel	DSA-177-1 pam	2002-10-17
    libpam0g-dev	0.76-6	mipsel	DSA-177-1 pam	2002-10-17
    libpam-cracklib	0.76-6	powerpc	DSA-177-1 pam	2002-10-17
    libpam-modules	0.76-6	powerpc	DSA-177-1 pam	2002-10-17
    libpam0g	0.76-6	powerpc	DSA-177-1 pam	2002-10-17
    libpam0g-dev	0.76-6	powerpc	DSA-177-1 pam	2002-10-17
    libpam-cracklib	0.76-6	s390	DSA-177-1 pam	2002-10-17
    libpam-modules	0.76-6	s390	DSA-177-1 pam	2002-10-17
    libpam0g	0.76-6	s390	DSA-177-1 pam	2002-10-17
    libpam0g-dev	0.76-6	s390	DSA-177-1 pam	2002-10-17
    libpam-cracklib	0.76-6	sparc	DSA-177-1 pam	2002-10-17
    libpam-modules	0.76-6	sparc	DSA-177-1 pam	2002-10-17
    libpam0g	0.76-6	sparc	DSA-177-1 pam	2002-10-17
    libpam0g-dev	0.76-6	sparc	DSA-177-1 pam	2002-10-17
    log2mail	0.2.5.1	alpha	DSA-186-1 log2mail	2002-11-1
    log2mail	0.2.5.1	arm	DSA-186-1 log2mail	2002-11-1
    log2mail	0.2.5.1	i386	DSA-186-1 log2mail	2002-11-1
    log2mail	0.2.5.1	ia64	DSA-186-1 log2mail	2002-11-1
    log2mail	0.2.5.1	hppa	DSA-186-1 log2mail	2002-11-1
    log2mail	0.2.5.1	m68k	DSA-186-1 log2mail	2002-11-1
    log2mail	0.2.5.1	mips	DSA-186-1 log2mail	2002-11-1
    log2mail	0.2.5.1	mipsel	DSA-186-1 log2mail	2002-11-1
    log2mail	0.2.5.1	powerpc	DSA-186-1 log2mail	2002-11-1
    log2mail	0.2.5.1	s390	DSA-186-1 log2mail	2002-11-1
    log2mail	0.2.5.1	sparc	DSA-186-1 log2mail	2002-11-1
    libgtop-daemon	1.0.6-1.1	alpha	DSA-098-1 libgtop	2002-1-9
    libgtop-dev	1.0.6-1.1	alpha	DSA-098-1 libgtop	2002-1-9
    libgtop1	1.0.6-1.1	alpha	DSA-098-1 libgtop	2002-1-9
    libgtop-daemon	1.0.6-1.1	arm	DSA-098-1 libgtop	2002-1-9
    libgtop-dev	1.0.6-1.1	arm	DSA-098-1 libgtop	2002-1-9
    libgtop1	1.0.6-1.1	arm	DSA-098-1 libgtop	2002-1-9
    libgtop-daemon	1.0.6-1.1	i386	DSA-098-1 libgtop	2002-1-9
    libgtop-dev	1.0.6-1.1	i386	DSA-098-1 libgtop	2002-1-9
    libgtop1	1.0.6-1.1	i386	DSA-098-1 libgtop	2002-1-9
    libgtop-daemon	1.0.6-1.1	m68k	DSA-098-1 libgtop	2002-1-9
    libgtop-dev	1.0.6-1.1	m68k	DSA-098-1 libgtop	2002-1-9
    libgtop1	1.0.6-1.1	m68k	DSA-098-1 libgtop	2002-1-9
    libgtop-daemon	1.0.6-1.1	powerpc	DSA-098-1 libgtop	2002-1-9
    libgtop-dev	1.0.6-1.1	powerpc	DSA-098-1 libgtop	2002-1-9
    libgtop1	1.0.6-1.1	powerpc	DSA-098-1 libgtop	2002-1-9
    libgtop-daemon	1.0.6-1.1	sparc	DSA-098-1 libgtop	2002-1-9
    libgtop-dev	1.0.6-1.1	sparc	DSA-098-1 libgtop	2002-1-9
    libgtop1	1.0.6-1.1	sparc	DSA-098-1 libgtop	2002-1-9
    libscrollkeeper-dev	0.3.6-3.1	alpha	DSA-160-1 scrollkeeper	2002-9-3
    libscrollkeeper0	0.3.6-3.1	alpha	DSA-160-1 scrollkeeper	2002-9-3
    scrollkeeper	0.3.6-3.1	alpha	DSA-160-1 scrollkeeper	2002-9-3
    libscrollkeeper-dev	0.3.6-3.1	arm	DSA-160-1 scrollkeeper	2002-9-3
    libscrollkeeper0	0.3.6-3.1	arm	DSA-160-1 scrollkeeper	2002-9-3
    scrollkeeper	0.3.6-3.1	arm	DSA-160-1 scrollkeeper	2002-9-3
    libscrollkeeper-dev	0.3.6-3.1	i386	DSA-160-1 scrollkeeper	2002-9-3
    libscrollkeeper0	0.3.6-3.1	i386	DSA-160-1 scrollkeeper	2002-9-3
    scrollkeeper	0.3.6-3.1	i386	DSA-160-1 scrollkeeper	2002-9-3
    libscrollkeeper-dev	0.3.6-3.1	ia64	DSA-160-1 scrollkeeper	2002-9-3
    libscrollkeeper0	0.3.6-3.1	ia64	DSA-160-1 scrollkeeper	2002-9-3
    scrollkeeper	0.3.6-3.1	ia64	DSA-160-1 scrollkeeper	2002-9-3
    libscrollkeeper-dev	0.3.6-3.1	hppa	DSA-160-1 scrollkeeper	2002-9-3
    libscrollkeeper0	0.3.6-3.1	hppa	DSA-160-1 scrollkeeper	2002-9-3
    scrollkeeper	0.3.6-3.1	hppa	DSA-160-1 scrollkeeper	2002-9-3
    libscrollkeeper-dev	0.3.6-3.1	m68k	DSA-160-1 scrollkeeper	2002-9-3
    libscrollkeeper0	0.3.6-3.1	m68k	DSA-160-1 scrollkeeper	2002-9-3
    scrollkeeper	0.3.6-3.1	m68k	DSA-160-1 scrollkeeper	2002-9-3
    libscrollkeeper-dev	0.3.6-3.1	mips	DSA-160-1 scrollkeeper	2002-9-3
    libscrollkeeper0	0.3.6-3.1	mips	DSA-160-1 scrollkeeper	2002-9-3
    scrollkeeper	0.3.6-3.1	mips	DSA-160-1 scrollkeeper	2002-9-3
    libscrollkeeper-dev	0.3.6-3.1	mipsel	DSA-160-1 scrollkeeper	2002-9-3
    libscrollkeeper0	0.3.6-3.1	mipsel	DSA-160-1 scrollkeeper	2002-9-3
    scrollkeeper	0.3.6-3.1	mipsel	DSA-160-1 scrollkeeper	2002-9-3
    libscrollkeeper-dev	0.3.6-3.1	powerpc	DSA-160-1 scrollkeeper	2002-9-3
    libscrollkeeper0	0.3.6-3.1	powerpc	DSA-160-1 scrollkeeper	2002-9-3
    scrollkeeper	0.3.6-3.1	powerpc	DSA-160-1 scrollkeeper	2002-9-3
    libscrollkeeper-dev	0.3.6-3.1	s390	DSA-160-1 scrollkeeper	2002-9-3
    libscrollkeeper0	0.3.6-3.1	s390	DSA-160-1 scrollkeeper	2002-9-3
    scrollkeeper	0.3.6-3.1	s390	DSA-160-1 scrollkeeper	2002-9-3
    libscrollkeeper-dev	0.3.6-3.1	sparc	DSA-160-1 scrollkeeper	2002-9-3
    libscrollkeeper0	0.3.6-3.1	sparc	DSA-160-1 scrollkeeper	2002-9-3
    scrollkeeper	0.3.6-3.1	sparc	DSA-160-1 scrollkeeper	2002-9-3
    postgresql-doc	6.5.3-27.2	all	DSA-165-1 postgresql	2002-9-12
    ecpg	6.5.3-27.2	alpha	DSA-165-1 postgresql	2002-9-12
    libpgperl	6.5.3-27.2	alpha	DSA-165-1 postgresql	2002-9-12
    libpgsql2	6.5.3-27.2	alpha	DSA-165-1 postgresql	2002-9-12
    libpgtcl	6.5.3-27.2	alpha	DSA-165-1 postgresql	2002-9-12
    odbc-postgresql	6.5.3-27.2	alpha	DSA-165-1 postgresql	2002-9-12
    pgaccess	6.5.3-27.2	alpha	DSA-165-1 postgresql	2002-9-12
    postgresql	6.5.3-27.2	alpha	DSA-165-1 postgresql	2002-9-12
    postgresql-client	6.5.3-27.2	alpha	DSA-165-1 postgresql	2002-9-12
    postgresql-contrib	6.5.3-27.2	alpha	DSA-165-1 postgresql	2002-9-12
    postgresql-dev	6.5.3-27.2	alpha	DSA-165-1 postgresql	2002-9-12
    postgresql-pl	6.5.3-27.2	alpha	DSA-165-1 postgresql	2002-9-12
    postgresql-test	6.5.3-27.2	alpha	DSA-165-1 postgresql	2002-9-12
    python-pygresql	6.5.3-27.2	alpha	DSA-165-1 postgresql	2002-9-12
    ecpg	6.5.3-27.2	arm	DSA-165-1 postgresql	2002-9-12
    libpgperl	6.5.3-27.2	arm	DSA-165-1 postgresql	2002-9-12
    libpgsql2	6.5.3-27.2	arm	DSA-165-1 postgresql	2002-9-12
    libpgtcl	6.5.3-27.2	arm	DSA-165-1 postgresql	2002-9-12
    odbc-postgresql	6.5.3-27.2	arm	DSA-165-1 postgresql	2002-9-12
    pgaccess	6.5.3-27.2	arm	DSA-165-1 postgresql	2002-9-12
    postgresql	6.5.3-27.2	arm	DSA-165-1 postgresql	2002-9-12
    postgresql-client	6.5.3-27.2	arm	DSA-165-1 postgresql	2002-9-12
    postgresql-contrib	6.5.3-27.2	arm	DSA-165-1 postgresql	2002-9-12
    postgresql-dev	6.5.3-27.2	arm	DSA-165-1 postgresql	2002-9-12
    postgresql-pl	6.5.3-27.2	arm	DSA-165-1 postgresql	2002-9-12
    postgresql-test	6.5.3-27.2	arm	DSA-165-1 postgresql	2002-9-12
    python-pygresql	6.5.3-27.2	arm	DSA-165-1 postgresql	2002-9-12
    ecpg	6.5.3-27.2	i386	DSA-165-1 postgresql	2002-9-12
    libpgperl	6.5.3-27.2	i386	DSA-165-1 postgresql	2002-9-12
    libpgsql2	6.5.3-27.2	i386	DSA-165-1 postgresql	2002-9-12
    libpgtcl	6.5.3-27.2	i386	DSA-165-1 postgresql	2002-9-12
    odbc-postgresql	6.5.3-27.2	i386	DSA-165-1 postgresql	2002-9-12
    pgaccess	6.5.3-27.2	i386	DSA-165-1 postgresql	2002-9-12
    postgresql	6.5.3-27.2	i386	DSA-165-1 postgresql	2002-9-12
    postgresql-client	6.5.3-27.2	i386	DSA-165-1 postgresql	2002-9-12
    postgresql-contrib	6.5.3-27.2	i386	DSA-165-1 postgresql	2002-9-12
    postgresql-dev	6.5.3-27.2	i386	DSA-165-1 postgresql	2002-9-12
    postgresql-pl	6.5.3-27.2	i386	DSA-165-1 postgresql	2002-9-12
    postgresql-test	6.5.3-27.2	i386	DSA-165-1 postgresql	2002-9-12
    python-pygresql	6.5.3-27.2	i386	DSA-165-1 postgresql	2002-9-12
    ecpg	6.5.3-27.2	m68k	DSA-165-1 postgresql	2002-9-12
    libpgperl	6.5.3-27.2	m68k	DSA-165-1 postgresql	2002-9-12
    libpgsql2	6.5.3-27.2	m68k	DSA-165-1 postgresql	2002-9-12
    libpgtcl	6.5.3-27.2	m68k	DSA-165-1 postgresql	2002-9-12
    odbc-postgresql	6.5.3-27.2	m68k	DSA-165-1 postgresql	2002-9-12
    pgaccess	6.5.3-27.2	m68k	DSA-165-1 postgresql	2002-9-12
    postgresql	6.5.3-27.2	m68k	DSA-165-1 postgresql	2002-9-12
    postgresql-client	6.5.3-27.2	m68k	DSA-165-1 postgresql	2002-9-12
    postgresql-contrib	6.5.3-27.2	m68k	DSA-165-1 postgresql	2002-9-12
    postgresql-dev	6.5.3-27.2	m68k	DSA-165-1 postgresql	2002-9-12
    postgresql-pl	6.5.3-27.2	m68k	DSA-165-1 postgresql	2002-9-12
    postgresql-test	6.5.3-27.2	m68k	DSA-165-1 postgresql	2002-9-12
    python-pygresql	6.5.3-27.2	m68k	DSA-165-1 postgresql	2002-9-12
    ecpg	6.5.3-27.2	powerpc	DSA-165-1 postgresql	2002-9-12
    libpgperl	6.5.3-27.2	powerpc	DSA-165-1 postgresql	2002-9-12
    libpgsql2	6.5.3-27.2	powerpc	DSA-165-1 postgresql	2002-9-12
    libpgtcl	6.5.3-27.2	powerpc	DSA-165-1 postgresql	2002-9-12
    odbc-postgresql	6.5.3-27.2	powerpc	DSA-165-1 postgresql	2002-9-12
    pgaccess	6.5.3-27.2	powerpc	DSA-165-1 postgresql	2002-9-12
    postgresql	6.5.3-27.2	powerpc	DSA-165-1 postgresql	2002-9-12
    postgresql-client	6.5.3-27.2	powerpc	DSA-165-1 postgresql	2002-9-12
    postgresql-contrib	6.5.3-27.2	powerpc	DSA-165-1 postgresql	2002-9-12
    postgresql-dev	6.5.3-27.2	powerpc	DSA-165-1 postgresql	2002-9-12
    postgresql-pl	6.5.3-27.2	powerpc	DSA-165-1 postgresql	2002-9-12
    postgresql-test	6.5.3-27.2	powerpc	DSA-165-1 postgresql	2002-9-12
    python-pygresql	6.5.3-27.2	powerpc	DSA-165-1 postgresql	2002-9-12
    ecpg	6.5.3-27.2	sparc	DSA-165-1 postgresql	2002-9-12
    libpgperl	6.5.3-27.2	sparc	DSA-165-1 postgresql	2002-9-12
    libpgsql2	6.5.3-27.2	sparc	DSA-165-1 postgresql	2002-9-12
    libpgtcl	6.5.3-27.2	sparc	DSA-165-1 postgresql	2002-9-12
    odbc-postgresql	6.5.3-27.2	sparc	DSA-165-1 postgresql	2002-9-12
    pgaccess	6.5.3-27.2	sparc	DSA-165-1 postgresql	2002-9-12
    postgresql	6.5.3-27.2	sparc	DSA-165-1 postgresql	2002-9-12
    postgresql-client	6.5.3-27.2	sparc	DSA-165-1 postgresql	2002-9-12
    postgresql-contrib	6.5.3-27.2	sparc	DSA-165-1 postgresql	2002-9-12
    postgresql-dev	6.5.3-27.2	sparc	DSA-165-1 postgresql	2002-9-12
    postgresql-pl	6.5.3-27.2	sparc	DSA-165-1 postgresql	2002-9-12
    postgresql-test	6.5.3-27.2	sparc	DSA-165-1 postgresql	2002-9-12
    python-pygresql	6.5.3-27.2	sparc	DSA-165-1 postgresql	2002-9-12
    courier-authpostgresql	0.37.3-3.1	alpha	DSA-165-1 postgresql	2002-9-12
    courier-authpostgresql	0.37.3-3.1	arm	DSA-165-1 postgresql	2002-9-12
    courier-authpostgresql	0.37.3-3.1	i386	DSA-165-1 postgresql	2002-9-12
    courier-authpostgresql	0.37.3-3.1	ia64	DSA-165-1 postgresql	2002-9-12
    courier-authpostgresql	0.37.3-3.1	hppa	DSA-165-1 postgresql	2002-9-12
    courier-authpostgresql	0.37.3-3.1	m68k	DSA-165-1 postgresql	2002-9-12
    courier-authpostgresql	0.37.3-3.1	mips	DSA-165-1 postgresql	2002-9-12
    courier-authpostgresql	0.37.3-3.1	mipsel	DSA-165-1 postgresql	2002-9-12
    courier-authpostgresql	0.37.3-3.1	powerpc	DSA-165-1 postgresql	2002-9-12
    courier-authpostgresql	0.37.3-3.1	s390	DSA-165-1 postgresql	2002-9-12
    courier-authpostgresql	0.37.3-3.1	sparc	DSA-165-1 postgresql	2002-9-12
    wget	1.5.3-3.1	alpha	DSA-209-1 wget	2002-12-12
    wget	1.5.3-3.1	arm	DSA-209-1 wget	2002-12-12
    wget	1.5.3-3.1	i386	DSA-209-1 wget	2002-12-12
    wget	1.5.3-3.1	m68k	DSA-209-1 wget	2002-12-12
    wget	1.5.3-3.1	powerpc	DSA-209-1 wget	2002-12-12
    wget	1.5.3-3.1	sparc	DSA-209-1 wget	2002-12-12
    wget	1.8.1-6.1	alpha	DSA-209-1 wget	2002-12-12
    wget	1.8.1-6.1	arm	DSA-209-1 wget	2002-12-12
    wget	1.8.1-6.1	hppa	DSA-209-1 wget	2002-12-12
    wget	1.8.1-6.1	i386	DSA-209-1 wget	2002-12-12
    wget	1.8.1-6.1	ia64	DSA-209-1 wget	2002-12-12
    wget	1.8.1-6.1	m68k	DSA-209-1 wget	2002-12-12
    wget	1.8.1-6.1	mips	DSA-209-1 wget	2002-12-12
    wget	1.8.1-6.1	powerpc	DSA-209-1 wget	2002-12-12
    wget	1.8.1-6.1	s390	DSA-209-1 wget	2002-12-12
    wget	1.8.1-6.1	sparc	DSA-209-1 wget	2002-12-12
    apache-ssl	1.3.9.13-4	alpha	DSA-120-1 mod_ssl	2002-3-10
    apache-ssl	1.3.9.13-4	arm	DSA-120-1 mod_ssl	2002-3-10
    apache-ssl	1.3.9.13-4	i386	DSA-120-1 mod_ssl	2002-3-10
    apache-ssl	1.3.9.13-4	m68k	DSA-120-1 mod_ssl	2002-3-10
    apache-ssl	1.3.9.13-4	powerpc	DSA-120-1 mod_ssl	2002-3-10
    apache-ssl	1.3.9.13-4	sparc	DSA-120-1 mod_ssl	2002-3-10
    mhonarc	2.4.4-1.1	all	DSA-163-1 mhonarc	2002-9-9
    mhonarc	2.5.2-1.1	all	DSA-163-1 mhonarc	2002-9-9
    libpng2	1.0.5-1.1	alpha	DSA-213-1 libpng	2002-12-19
    libpng2-dev	1.0.5-1.1	alpha	DSA-213-1 libpng	2002-12-19
    libpng2	1.0.5-1.1	arm	DSA-213-1 libpng	2002-12-19
    libpng2-dev	1.0.5-1.1	arm	DSA-213-1 libpng	2002-12-19
    libpng2	1.0.5-1.1	i386	DSA-213-1 libpng	2002-12-19
    libpng2-dev	1.0.5-1.1	i386	DSA-213-1 libpng	2002-12-19
    libpng2	1.0.5-1.1	m68k	DSA-213-1 libpng	2002-12-19
    libpng2-dev	1.0.5-1.1	m68k	DSA-213-1 libpng	2002-12-19
    libpng2	1.0.5-1.1	powerpc	DSA-213-1 libpng	2002-12-19
    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
    exim	3.12-10.2	alpha	DSA-097-1 exim	2002-1-3
    eximon	3.12-10.2	alpha	DSA-097-1 exim	2002-1-3
    exim	3.12-10.2	arm	DSA-097-1 exim	2002-1-3
    eximon	3.12-10.2	arm	DSA-097-1 exim	2002-1-3
    exim	3.12-10.2	i386	DSA-097-1 exim	2002-1-3
    eximon	3.12-10.2	i386	DSA-097-1 exim	2002-1-3
    exim	3.12-10.2	m68k	DSA-097-1 exim	2002-1-3
    eximon	3.12-10.2	m68k	DSA-097-1 exim	2002-1-3
    exim	3.12-10.2	powerpc	DSA-097-1 exim	2002-1-3
    eximon	3.12-10.2	powerpc	DSA-097-1 exim	2002-1-3
    exim	3.12-10.2	sparc	DSA-097-1 exim	2002-1-3
    eximon	3.12-10.2	sparc	DSA-097-1 exim	2002-1-3
    hylafax-doc	4.0.2-14.3	all	DSA-148-1 hylafax	2002-8-12
    hylafax-client	4.0.2-14.3	alpha	DSA-148-1 hylafax	2002-8-12
    hylafax-server	4.0.2-14.3	alpha	DSA-148-1 hylafax	2002-8-12
    hylafax-client	4.0.2-14.3	arm	DSA-148-1 hylafax	2002-8-12
    hylafax-server	4.0.2-14.3	arm	DSA-148-1 hylafax	2002-8-12
    hylafax-client	4.0.2-14.3	i386	DSA-148-1 hylafax	2002-8-12
    hylafax-server	4.0.2-14.3	i386	DSA-148-1 hylafax	2002-8-12
    hylafax-client	4.0.2-14.3	m68k	DSA-148-1 hylafax	2002-8-12
    hylafax-server	4.0.2-14.3	m68k	DSA-148-1 hylafax	2002-8-12
    hylafax-client	4.0.2-14.3	powerpc	DSA-148-1 hylafax	2002-8-12
    hylafax-server	4.0.2-14.3	powerpc	DSA-148-1 hylafax	2002-8-12
    hylafax-client	4.0.2-14.3	sparc	DSA-148-1 hylafax	2002-8-12
    hylafax-server	4.0.2-14.3	sparc	DSA-148-1 hylafax	2002-8-12
    hylafax-doc	4.1.1-1.1	all	DSA-148-1 hylafax	2002-8-12
    hylafax-client	4.1.1-1.1	alpha	DSA-148-1 hylafax	2002-8-12
    hylafax-server	4.1.1-1.1	alpha	DSA-148-1 hylafax	2002-8-12
    hylafax-client	4.1.1-1.1	arm	DSA-148-1 hylafax	2002-8-12
    hylafax-server	4.1.1-1.1	arm	DSA-148-1 hylafax	2002-8-12
    hylafax-client	4.1.1-1.1	i386	DSA-148-1 hylafax	2002-8-12
    hylafax-server	4.1.1-1.1	i386	DSA-148-1 hylafax	2002-8-12
    hylafax-client	4.1.1-1.1	ia64	DSA-148-1 hylafax	2002-8-12
    hylafax-server	4.1.1-1.1	ia64	DSA-148-1 hylafax	2002-8-12
    hylafax-client	4.1.1-1.1	hppa	DSA-148-1 hylafax	2002-8-12
    hylafax-server	4.1.1-1.1	hppa	DSA-148-1 hylafax	2002-8-12
    hylafax-client	4.1.1-1.1	m68k	DSA-148-1 hylafax	2002-8-12
    hylafax-server	4.1.1-1.1	m68k	DSA-148-1 hylafax	2002-8-12
    hylafax-client	4.1.1-1.1	powerpc	DSA-148-1 hylafax	2002-8-12
    hylafax-server	4.1.1-1.1	powerpc	DSA-148-1 hylafax	2002-8-12
    hylafax-client	4.1.1-1.1	s390	DSA-148-1 hylafax	2002-8-12
    hylafax-server	4.1.1-1.1	s390	DSA-148-1 hylafax	2002-8-12
    hylafax-client	4.1.1-1.1	sparc	DSA-148-1 hylafax	2002-8-12
    hylafax-server	4.1.1-1.1	sparc	DSA-148-1 hylafax	2002-8-12
    htcheck-php	1.1-1.1	all	DSA-169-1 htcheck	2002-9-25
    htcheck	1.1-1.1	alpha	DSA-169-1 htcheck	2002-9-25
    htcheck	1.1-1.1	arm	DSA-169-1 htcheck	2002-9-25
    htcheck	1.1-1.1	i386	DSA-169-1 htcheck	2002-9-25
    htcheck	1.1-1.1	ia64	DSA-169-1 htcheck	2002-9-25
    htcheck	1.1-1.1	hppa	DSA-169-1 htcheck	2002-9-25
    htcheck	1.1-1.1	m68k	DSA-169-1 htcheck	2002-9-25
    htcheck	1.1-1.1	mips	DSA-169-1 htcheck	2002-9-25
    htcheck	1.1-1.1	mipsel	DSA-169-1 htcheck	2002-9-25
    htcheck	1.1-1.1	powerpc	DSA-169-1 htcheck	2002-9-25
    htcheck	1.1-1.1	s390	DSA-169-1 htcheck	2002-9-25
    htcheck	1.1-1.1	sparc	DSA-169-1 htcheck	2002-9-25
    xinetd	2.3.4-1.2	alpha	DSA-151-1 xinetd	2002-8-13
    xinetd	2.3.4-1.2	arm	DSA-151-1 xinetd	2002-8-13
    xinetd	2.3.4-1.2	i386	DSA-151-1 xinetd	2002-8-13
    xinetd	2.3.4-1.2	ia64	DSA-151-1 xinetd	2002-8-13
    xinetd	2.3.4-1.2	hppa	DSA-151-1 xinetd	2002-8-13
    xinetd	2.3.4-1.2	m68k	DSA-151-1 xinetd	2002-8-13
    xinetd	2.3.4-1.2	mips	DSA-151-1 xinetd	2002-8-13
    xinetd	2.3.4-1.2	mipsel	DSA-151-1 xinetd	2002-8-13
    xinetd	2.3.4-1.2	powerpc	DSA-151-1 xinetd	2002-8-13
    xinetd	2.3.4-1.2	s390	DSA-151-1 xinetd	2002-8-13
    xinetd	2.3.4-1.2	sparc	DSA-151-1 xinetd	2002-8-13
    apache-perl	1.3.9-14.1-1.21.20000309-1.1	alpha	DSA-195-1 apache-perl	2002-11-13
    apache-perl	1.3.9-14.1-1.21.20000309-1.1	arm	DSA-195-1 apache-perl	2002-11-13
    apache-perl	1.3.9-14.1-1.21.20000309-1.1	i386	DSA-195-1 apache-perl	2002-11-13
    apache-perl	1.3.9-14.1-1.21.20000309-1.1	m68k	DSA-195-1 apache-perl	2002-11-13
    apache-perl	1.3.9-14.1-1.21.20000309-1.1	powerpc	DSA-195-1 apache-perl	2002-11-13
    apache-perl	1.3.9-14.1-1.21.20000309-1.1	sparc	DSA-195-1 apache-perl	2002-11-13
    libcgi-fast-perl	5.6.1-8.2	all	DSA-208-1 perl	2002-12-12
    perl-doc	5.6.1-8.2	all	DSA-208-1 perl	2002-12-12
    perl-modules	5.6.1-8.2	all	DSA-208-1 perl	2002-12-12
    libperl-dev	5.6.1-8.2	alpha	DSA-208-1 perl	2002-12-12
    perl	5.6.1-8.2	alpha	DSA-208-1 perl	2002-12-12
    perl-base	5.6.1-8.2	alpha	DSA-208-1 perl	2002-12-12
    perl-debug	5.6.1-8.2	alpha	DSA-208-1 perl	2002-12-12
    perl-suid	5.6.1-8.2	alpha	DSA-208-1 perl	2002-12-12
    libperl-dev	5.6.1-8.2	arm	DSA-208-1 perl	2002-12-12
    perl	5.6.1-8.2	arm	DSA-208-1 perl	2002-12-12
    perl-base	5.6.1-8.2	arm	DSA-208-1 perl	2002-12-12
    perl-debug	5.6.1-8.2	arm	DSA-208-1 perl	2002-12-12
    perl-suid	5.6.1-8.2	arm	DSA-208-1 perl	2002-12-12
    libperl-dev	5.6.1-8.2	i386	DSA-208-1 perl	2002-12-12
    perl	5.6.1-8.2	i386	DSA-208-1 perl	2002-12-12
    perl-base	5.6.1-8.2	i386	DSA-208-1 perl	2002-12-12
    perl-debug	5.6.1-8.2	i386	DSA-208-1 perl	2002-12-12
    perl-suid	5.6.1-8.2	i386	DSA-208-1 perl	2002-12-12
    libperl-dev	5.6.1-8.2	ia64	DSA-208-1 perl	2002-12-12
    perl	5.6.1-8.2	ia64	DSA-208-1 perl	2002-12-12
    perl-base	5.6.1-8.2	ia64	DSA-208-1 perl	2002-12-12
    perl-debug	5.6.1-8.2	ia64	DSA-208-1 perl	2002-12-12
    perl-suid	5.6.1-8.2	ia64	DSA-208-1 perl	2002-12-12
    libperl-dev	5.6.1-8.2	hppa	DSA-208-1 perl	2002-12-12
    perl	5.6.1-8.2	hppa	DSA-208-1 perl	2002-12-12
    perl-base	5.6.1-8.2	hppa	DSA-208-1 perl	2002-12-12
    perl-debug	5.6.1-8.2	hppa	DSA-208-1 perl	2002-12-12
    perl-suid	5.6.1-8.2	hppa	DSA-208-1 perl	2002-12-12
    libperl-dev	5.6.1-8.2	m68k	DSA-208-1 perl	2002-12-12
    perl	5.6.1-8.2	m68k	DSA-208-1 perl	2002-12-12
    perl-base	5.6.1-8.2	m68k	DSA-208-1 perl	2002-12-12
    perl-debug	5.6.1-8.2	m68k	DSA-208-1 perl	2002-12-12
    perl-suid	5.6.1-8.2	m68k	DSA-208-1 perl	2002-12-12
    libperl-dev	5.6.1-8.2	mips	DSA-208-1 perl	2002-12-12
    perl	5.6.1-8.2	mips	DSA-208-1 perl	2002-12-12
    perl-base	5.6.1-8.2	mips	DSA-208-1 perl	2002-12-12
    perl-debug	5.6.1-8.2	mips	DSA-208-1 perl	2002-12-12
    perl-suid	5.6.1-8.2	mips	DSA-208-1 perl	2002-12-12
    libperl-dev	5.6.1-8.2	mipsel	DSA-208-1 perl	2002-12-12
    perl	5.6.1-8.2	mipsel	DSA-208-1 perl	2002-12-12
    perl-base	5.6.1-8.2	mipsel	DSA-208-1 perl	2002-12-12
    perl-debug	5.6.1-8.2	mipsel	DSA-208-1 perl	2002-12-12
    perl-suid	5.6.1-8.2	mipsel	DSA-208-1 perl	2002-12-12
    libperl-dev	5.6.1-8.2	powerpc	DSA-208-1 perl	2002-12-12
    perl	5.6.1-8.2	powerpc	DSA-208-1 perl	2002-12-12
    perl-base	5.6.1-8.2	powerpc	DSA-208-1 perl	2002-12-12
    perl-debug	5.6.1-8.2	powerpc	DSA-208-1 perl	2002-12-12
    perl-suid	5.6.1-8.2	powerpc	DSA-208-1 perl	2002-12-12
    libperl-dev	5.6.1-8.2	s390	DSA-208-1 perl	2002-12-12
    perl	5.6.1-8.2	s390	DSA-208-1 perl	2002-12-12
    perl-base	5.6.1-8.2	s390	DSA-208-1 perl	2002-12-12
    perl-debug	5.6.1-8.2	s390	DSA-208-1 perl	2002-12-12
    perl-suid	5.6.1-8.2	s390	DSA-208-1 perl	2002-12-12
    libperl-dev	5.6.1-8.2	sparc	DSA-208-1 perl	2002-12-12
    perl	5.6.1-8.2	sparc	DSA-208-1 perl	2002-12-12
    perl-base	5.6.1-8.2	sparc	DSA-208-1 perl	2002-12-12
    perl-debug	5.6.1-8.2	sparc	DSA-208-1 perl	2002-12-12
    perl-suid	5.6.1-8.2	sparc	DSA-208-1 perl	2002-12-12
    fetchmailconf	5.3.3-4.3	all	DSA-216-1 fetchmail	2002-12-24
    fetchmail	5.3.3-4.3	alpha	DSA-216-1 fetchmail	2002-12-24
    fetchmail	5.3.3-4.3	arm	DSA-216-1 fetchmail	2002-12-24
    fetchmail	5.3.3-4.3	i386	DSA-216-1 fetchmail	2002-12-24
    fetchmail	5.3.3-4.3	m68k	DSA-216-1 fetchmail	2002-12-24
    fetchmail	5.3.3-4.3	powerpc	DSA-216-1 fetchmail	2002-12-24
    fetchmail	5.3.3-4.3	sparc	DSA-216-1 fetchmail	2002-12-24
    fetchmail-common	5.9.11-6.2	all	DSA-216-1 fetchmail	2002-12-24
    fetchmailconf	5.9.11-6.2	all	DSA-216-1 fetchmail	2002-12-24
    fetchmail	5.9.11-6.2	alpha	DSA-216-1 fetchmail	2002-12-24
    fetchmail-ssl	5.9.11-6.2	alpha	DSA-216-1 fetchmail	2002-12-24
    fetchmail	5.9.11-6.2	arm	DSA-216-1 fetchmail	2002-12-24
    fetchmail-ssl	5.9.11-6.2	arm	DSA-216-1 fetchmail	2002-12-24
    fetchmail	5.9.11-6.2	i386	DSA-216-1 fetchmail	2002-12-24
    fetchmail-ssl	5.9.11-6.2	i386	DSA-216-1 fetchmail	2002-12-24
    fetchmail	5.9.11-6.2	ia64	DSA-216-1 fetchmail	2002-12-24
    fetchmail-ssl	5.9.11-6.2	ia64	DSA-216-1 fetchmail	2002-12-24
    fetchmail	5.9.11-6.2	hppa	DSA-216-1 fetchmail	2002-12-24
    fetchmail-ssl	5.9.11-6.2	hppa	DSA-216-1 fetchmail	2002-12-24
    fetchmail	5.9.11-6.2	m68k	DSA-216-1 fetchmail	2002-12-24
    fetchmail-ssl	5.9.11-6.2	m68k	DSA-216-1 fetchmail	2002-12-24
    fetchmail	5.9.11-6.2	mips	DSA-216-1 fetchmail	2002-12-24
    fetchmail-ssl	5.9.11-6.2	mips	DSA-216-1 fetchmail	2002-12-24
    fetchmail	5.9.11-6.2	mipsel	DSA-216-1 fetchmail	2002-12-24
    fetchmail-ssl	5.9.11-6.2	mipsel	DSA-216-1 fetchmail	2002-12-24
    fetchmail	5.9.11-6.2	powerpc	DSA-216-1 fetchmail	2002-12-24
    fetchmail-ssl	5.9.11-6.2	powerpc	DSA-216-1 fetchmail	2002-12-24
    fetchmail	5.9.11-6.2	s390	DSA-216-1 fetchmail	2002-12-24
    fetchmail-ssl	5.9.11-6.2	s390	DSA-216-1 fetchmail	2002-12-24
    fetchmail	5.9.11-6.2	sparc	DSA-216-1 fetchmail	2002-12-24
    fetchmail-ssl	5.9.11-6.2	sparc	DSA-216-1 fetchmail	2002-12-24
    fam	2.6.6.1-5.2	alpha	DSA-154-1 fam	2002-8-15
    libfam-dev	2.6.6.1-5.2	alpha	DSA-154-1 fam	2002-8-15
    libfam0	2.6.6.1-5.2	alpha	DSA-154-1 fam	2002-8-15
    fam	2.6.6.1-5.2	arm	DSA-154-1 fam	2002-8-15
    libfam-dev	2.6.6.1-5.2	arm	DSA-154-1 fam	2002-8-15
    libfam0	2.6.6.1-5.2	arm	DSA-154-1 fam	2002-8-15
    fam	2.6.6.1-5.2	i386	DSA-154-1 fam	2002-8-15
    libfam-dev	2.6.6.1-5.2	i386	DSA-154-1 fam	2002-8-15
    libfam0	2.6.6.1-5.2	i386	DSA-154-1 fam	2002-8-15
    fam	2.6.6.1-5.2	ia64	DSA-154-1 fam	2002-8-15
    libfam-dev	2.6.6.1-5.2	ia64	DSA-154-1 fam	2002-8-15
    libfam0	2.6.6.1-5.2	ia64	DSA-154-1 fam	2002-8-15
    fam	2.6.6.1-5.2	hppa	DSA-154-1 fam	2002-8-15
    libfam-dev	2.6.6.1-5.2	hppa	DSA-154-1 fam	2002-8-15
    libfam0	2.6.6.1-5.2	hppa	DSA-154-1 fam	2002-8-15
    fam	2.6.6.1-5.2	m68k	DSA-154-1 fam	2002-8-15
    libfam-dev	2.6.6.1-5.2	m68k	DSA-154-1 fam	2002-8-15
    libfam0	2.6.6.1-5.2	m68k	DSA-154-1 fam	2002-8-15
    fam	2.6.6.1-5.2	mips	DSA-154-1 fam	2002-8-15
    libfam-dev	2.6.6.1-5.2	mips	DSA-154-1 fam	2002-8-15
    libfam0	2.6.6.1-5.2	mips	DSA-154-1 fam	2002-8-15
    fam	2.6.6.1-5.2	mipsel	DSA-154-1 fam	2002-8-15
    libfam-dev	2.6.6.1-5.2	mipsel	DSA-154-1 fam	2002-8-15
    libfam0	2.6.6.1-5.2	mipsel	DSA-154-1 fam	2002-8-15
    fam	2.6.6.1-5.2	powerpc	DSA-154-1 fam	2002-8-15
    libfam-dev	2.6.6.1-5.2	powerpc	DSA-154-1 fam	2002-8-15
    libfam0	2.6.6.1-5.2	powerpc	DSA-154-1 fam	2002-8-15
    fam	2.6.6.1-5.2	s390	DSA-154-1 fam	2002-8-15
    libfam-dev	2.6.6.1-5.2	s390	DSA-154-1 fam	2002-8-15
    libfam0	2.6.6.1-5.2	s390	DSA-154-1 fam	2002-8-15
    fam	2.6.6.1-5.2	sparc	DSA-154-1 fam	2002-8-15
    libfam-dev	2.6.6.1-5.2	sparc	DSA-154-1 fam	2002-8-15
    libfam0	2.6.6.1-5.2	sparc	DSA-154-1 fam	2002-8-15
    apache-doc	1.3.9-14.1	all	DSA-131-1 apache	2002-6-19
    apache-common	1.3.9-14.1	alpha	DSA-131-1 apache	2002-6-19
    apache-dev	1.3.9-14.1	alpha	DSA-131-1 apache	2002-6-19
    apache	1.3.9-14.1	alpha	DSA-131-1 apache	2002-6-19
    apache-common	1.3.9-14.1	arm	DSA-131-1 apache	2002-6-19
    apache-dev	1.3.9-14.1	arm	DSA-131-1 apache	2002-6-19
    apache	1.3.9-14.1	arm	DSA-131-1 apache	2002-6-19
    apache-common	1.3.9-14.1	i386	DSA-131-1 apache	2002-6-19
    apache-dev	1.3.9-14.1	i386	DSA-131-1 apache	2002-6-19
    apache	1.3.9-14.1	i386	DSA-131-1 apache	2002-6-19
    apache-common	1.3.9-14.1	m68k	DSA-131-1 apache	2002-6-19
    apache-dev	1.3.9-14.1	m68k	DSA-131-1 apache	2002-6-19
    apache	1.3.9-14.1	m68k	DSA-131-1 apache	2002-6-19
    apache-common	1.3.9-14.1	powerpc	DSA-131-1 apache	2002-6-19
    apache-dev	1.3.9-14.1	powerpc	DSA-131-1 apache	2002-6-19
    apache	1.3.9-14.1	powerpc	DSA-131-1 apache	2002-6-19
    apache-common	1.3.9-14.1	sparc	DSA-131-1 apache	2002-6-19
    apache-dev	1.3.9-14.1	sparc	DSA-131-1 apache	2002-6-19
    apache	1.3.9-14.1	sparc	DSA-131-1 apache	2002-6-19
    l2tpd	0.67-1.1	alpha	DSA-152-1 l2tpd	2002-8-13
    l2tpd	0.67-1.1	arm	DSA-152-1 l2tpd	2002-8-13
    l2tpd	0.67-1.1	i386	DSA-152-1 l2tpd	2002-8-13
    l2tpd	0.67-1.1	ia64	DSA-152-1 l2tpd	2002-8-13
    l2tpd	0.67-1.1	hppa	DSA-152-1 l2tpd	2002-8-13
    l2tpd	0.67-1.1	m68k	DSA-152-1 l2tpd	2002-8-13
    l2tpd	0.67-1.1	mips	DSA-152-1 l2tpd	2002-8-13
    l2tpd	0.67-1.1	mipsel	DSA-152-1 l2tpd	2002-8-13
    l2tpd	0.67-1.1	powerpc	DSA-152-1 l2tpd	2002-8-13
    l2tpd	0.67-1.1	s390	DSA-152-1 l2tpd	2002-8-13
    l2tpd	0.67-1.1	sparc	DSA-152-1 l2tpd	2002-8-13
    gnujsp	1.0.0-5	all	DSA-114-1 gnujsp	2002-2-21
    apache-perl	1.3.9-14.1-1.21.20000309-1	alpha	DSA-133-1 apache-perl	2002-6-20
    apache-perl	1.3.9-14.1-1.21.20000309-1	arm	DSA-133-1 apache-perl	2002-6-20
    apache-perl	1.3.9-14.1-1.21.20000309-1	i386	DSA-133-1 apache-perl	2002-6-20
    apache-perl	1.3.9-14.1-1.21.20000309-1	m68k	DSA-133-1 apache-perl	2002-6-20
    apache-perl	1.3.9-14.1-1.21.20000309-1	powerpc	DSA-133-1 apache-perl	2002-6-20
    apache-perl	1.3.9-14.1-1.21.20000309-1	sparc	DSA-133-1 apache-perl	2002-6-20
    gnome-gv	0.82-2.1	alpha	DSA-179-1 gnome-gv	2002-10-18
    gnome-gv	0.82-2.1	arm	DSA-179-1 gnome-gv	2002-10-18
    gnome-gv	0.82-2.1	i386	DSA-179-1 gnome-gv	2002-10-18
    gnome-gv	0.82-2.1	m68k	DSA-179-1 gnome-gv	2002-10-18
    gnome-gv	0.82-2.1	powerpc	DSA-179-1 gnome-gv	2002-10-18
    gnome-gv	0.82-2.1	sparc	DSA-179-1 gnome-gv	2002-10-18
    gnome-gv	1.1.96-3.1	alpha	DSA-179-1 gnome-gv	2002-10-18
    gnome-gv	1.1.96-3.1	arm	DSA-179-1 gnome-gv	2002-10-18
    gnome-gv	1.1.96-3.1	i386	DSA-179-1 gnome-gv	2002-10-18
    gnome-gv	1.1.96-3.1	ia64	DSA-179-1 gnome-gv	2002-10-18
    gnome-gv	1.1.96-3.1	hppa	DSA-179-1 gnome-gv	2002-10-18
    gnome-gv	1.1.96-3.1	m68k	DSA-179-1 gnome-gv	2002-10-18
    gnome-gv	1.1.96-3.1	mips	DSA-179-1 gnome-gv	2002-10-18
    gnome-gv	1.1.96-3.1	mipsel	DSA-179-1 gnome-gv	2002-10-18
    gnome-gv	1.1.96-3.1	powerpc	DSA-179-1 gnome-gv	2002-10-18
    gnome-gv	1.1.96-3.1	s390	DSA-179-1 gnome-gv	2002-10-18
    gnome-gv	1.1.96-3.1	sparc	DSA-179-1 gnome-gv	2002-10-18
    faqomatic	2.603-1.2	all	DSA-109-1 faqomatic	2002-2-13
    gaim	0.58-2.2	alpha	DSA-158-1 gaim	2002-8-27
    gaim-common	0.58-2.2	alpha	DSA-158-1 gaim	2002-8-27
    gaim-gnome	0.58-2.2	alpha	DSA-158-1 gaim	2002-8-27
    gaim	0.58-2.2	arm	DSA-158-1 gaim	2002-8-27
    gaim-common	0.58-2.2	arm	DSA-158-1 gaim	2002-8-27
    gaim-gnome	0.58-2.2	arm	DSA-158-1 gaim	2002-8-27
    gaim	0.58-2.2	i386	DSA-158-1 gaim	2002-8-27
    gaim-common	0.58-2.2	i386	DSA-158-1 gaim	2002-8-27
    gaim-gnome	0.58-2.2	i386	DSA-158-1 gaim	2002-8-27
    gaim	0.58-2.2	ia64	DSA-158-1 gaim	2002-8-27
    gaim-common	0.58-2.2	ia64	DSA-158-1 gaim	2002-8-27
    gaim-gnome	0.58-2.2	ia64	DSA-158-1 gaim	2002-8-27
    gaim	0.58-2.2	hppa	DSA-158-1 gaim	2002-8-27
    gaim-common	0.58-2.2	hppa	DSA-158-1 gaim	2002-8-27
    gaim-gnome	0.58-2.2	hppa	DSA-158-1 gaim	2002-8-27
    gaim	0.58-2.2	m68k	DSA-158-1 gaim	2002-8-27
    gaim-common	0.58-2.2	m68k	DSA-158-1 gaim	2002-8-27
    gaim-gnome	0.58-2.2	m68k	DSA-158-1 gaim	2002-8-27
    gaim	0.58-2.2	mips	DSA-158-1 gaim	2002-8-27
    gaim-common	0.58-2.2	mips	DSA-158-1 gaim	2002-8-27
    gaim-gnome	0.58-2.2	mips	DSA-158-1 gaim	2002-8-27
    gaim	0.58-2.2	mipsel	DSA-158-1 gaim	2002-8-27
    gaim-common	0.58-2.2	mipsel	DSA-158-1 gaim	2002-8-27
    gaim-gnome	0.58-2.2	mipsel	DSA-158-1 gaim	2002-8-27
    gaim	0.58-2.2	powerpc	DSA-158-1 gaim	2002-8-27
    gaim-common	0.58-2.2	powerpc	DSA-158-1 gaim	2002-8-27
    gaim-gnome	0.58-2.2	powerpc	DSA-158-1 gaim	2002-8-27
    gaim	0.58-2.2	s390	DSA-158-1 gaim	2002-8-27
    gaim-common	0.58-2.2	s390	DSA-158-1 gaim	2002-8-27
    gaim-gnome	0.58-2.2	s390	DSA-158-1 gaim	2002-8-27
    gaim	0.58-2.2	sparc	DSA-158-1 gaim	2002-8-27
    gaim-common	0.58-2.2	sparc	DSA-158-1 gaim	2002-8-27
    gaim-gnome	0.58-2.2	sparc	DSA-158-1 gaim	2002-8-27
    cfs	1.3.3-8.1	alpha	DSA-116-1 cfs	2002-3-2
    cfs	1.3.3-8.1	arm	DSA-116-1 cfs	2002-3-2
    cfs	1.3.3-8.1	i386	DSA-116-1 cfs	2002-3-2
    cfs	1.3.3-8.1	m68k	DSA-116-1 cfs	2002-3-2
    cfs	1.3.3-8.1	powerpc	DSA-116-1 cfs	2002-3-2
    cfs	1.3.3-8.1	sparc	DSA-116-1 cfs	2002-3-2
    xchat-common	1.4.3-1	all	DSA-099-1 xchat	2002-1-12
    xchat-gnome	1.4.3-1	alpha	DSA-099-1 xchat	2002-1-12
    xchat-text	1.4.3-1	alpha	DSA-099-1 xchat	2002-1-12
    xchat	1.4.3-1	alpha	DSA-099-1 xchat	2002-1-12
    xchat-gnome	1.4.3-1	arm	DSA-099-1 xchat	2002-1-12
    xchat-text	1.4.3-1	arm	DSA-099-1 xchat	2002-1-12
    xchat	1.4.3-1	arm	DSA-099-1 xchat	2002-1-12
    xchat-gnome	1.4.3-1	i386	DSA-099-1 xchat	2002-1-12
    xchat-text	1.4.3-1	i386	DSA-099-1 xchat	2002-1-12
    xchat	1.4.3-1	i386	DSA-099-1 xchat	2002-1-12
    xchat	1.4.3-1	m68k	DSA-099-1 xchat	2002-1-12
    xchat-gnome	1.4.3-1	m68k	DSA-099-1 xchat	2002-1-12
    xchat-text	1.4.3-1	m68k	DSA-099-1 xchat	2002-1-12
    xchat-gnome	1.4.3-1	powerpc	DSA-099-1 xchat	2002-1-12
    xchat	1.4.3-1	powerpc	DSA-099-1 xchat	2002-1-12
    xchat-text	1.4.3-1	powerpc	DSA-099-1 xchat	2002-1-12
    xchat-text	1.4.3-1	sparc	DSA-099-1 xchat	2002-1-12
    xchat-gnome	1.4.3-1	sparc	DSA-099-1 xchat	2002-1-12
    xchat	1.4.3-1	sparc	DSA-099-1 xchat	2002-1-12
    tetex-bin	1.0.6-7.3	alpha	DSA-207-1 tetex-bin	2002-12-11
    tetex-dev	1.0.6-7.3	alpha	DSA-207-1 tetex-bin	2002-12-11
    tetex-lib	1.0.6-7.3	alpha	DSA-207-1 tetex-bin	2002-12-11
    tetex-bin	1.0.6-7.3	arm	DSA-207-1 tetex-bin	2002-12-11
    tetex-dev	1.0.6-7.3	arm	DSA-207-1 tetex-bin	2002-12-11
    tetex-lib	1.0.6-7.3	arm	DSA-207-1 tetex-bin	2002-12-11
    tetex-bin	1.0.6-7.3	i386	DSA-207-1 tetex-bin	2002-12-11
    tetex-dev	1.0.6-7.3	i386	DSA-207-1 tetex-bin	2002-12-11
    tetex-lib	1.0.6-7.3	i386	DSA-207-1 tetex-bin	2002-12-11
    tetex-bin	1.0.6-7.3	m68k	DSA-207-1 tetex-bin	2002-12-11
    tetex-dev	1.0.6-7.3	m68k	DSA-207-1 tetex-bin	2002-12-11
    tetex-lib	1.0.6-7.3	m68k	DSA-207-1 tetex-bin	2002-12-11
    tetex-bin	1.0.6-7.3	powerpc	DSA-207-1 tetex-bin	2002-12-11
    tetex-dev	1.0.6-7.3	powerpc	DSA-207-1 tetex-bin	2002-12-11
    tetex-lib	1.0.6-7.3	powerpc	DSA-207-1 tetex-bin	2002-12-11
    tetex-bin	1.0.6-7.3	sparc	DSA-207-1 tetex-bin	2002-12-11
    tetex-dev	1.0.6-7.3	sparc	DSA-207-1 tetex-bin	2002-12-11
    tetex-lib	1.0.6-7.3	sparc	DSA-207-1 tetex-bin	2002-12-11
    snmp	4.1.1-2.2	alpha	DSA-111-1 ucd-snmp	2002-2-14
    snmpd	4.1.1-2.2	alpha	DSA-111-1 ucd-snmp	2002-2-14
    snmp	4.1.1-2.2	arm	DSA-111-1 ucd-snmp	2002-2-14
    snmpd	4.1.1-2.2	arm	DSA-111-1 ucd-snmp	2002-2-14
    snmp	4.1.1-2.2	i386	DSA-111-1 ucd-snmp	2002-2-14
    snmpd	4.1.1-2.2	i386	DSA-111-1 ucd-snmp	2002-2-14
    snmp	4.1.1-2.2	m68k	DSA-111-1 ucd-snmp	2002-2-14
    snmpd	4.1.1-2.2	m68k	DSA-111-1 ucd-snmp	2002-2-14
    snmp	4.1.1-2.2	sparc	DSA-111-1 ucd-snmp	2002-2-14
    snmpd	4.1.1-2.2	sparc	DSA-111-1 ucd-snmp	2002-2-14
    cupsys-bsd	1.0.4-10	alpha	DSA-110-1 cups	2002-2-13
    cupsys	1.0.4-10	alpha	DSA-110-1 cups	2002-2-13
    libcupsys1-dev	1.0.4-10	alpha	DSA-110-1 cups	2002-2-13
    libcupsys1	1.0.4-10	alpha	DSA-110-1 cups	2002-2-13
    cupsys-bsd	1.0.4-10	arm	DSA-110-1 cups	2002-2-13
    cupsys	1.0.4-10	arm	DSA-110-1 cups	2002-2-13
    libcupsys1-dev	1.0.4-10	arm	DSA-110-1 cups	2002-2-13
    libcupsys1	1.0.4-10	arm	DSA-110-1 cups	2002-2-13
    cupsys-bsd	1.0.4-10	i386	DSA-110-1 cups	2002-2-13
    cupsys	1.0.4-10	i386	DSA-110-1 cups	2002-2-13
    libcupsys1-dev	1.0.4-10	i386	DSA-110-1 cups	2002-2-13
    libcupsys1	1.0.4-10	i386	DSA-110-1 cups	2002-2-13
    cupsys-bsd	1.0.4-10	m68k	DSA-110-1 cups	2002-2-13
    cupsys	1.0.4-10	m68k	DSA-110-1 cups	2002-2-13
    libcupsys1-dev	1.0.4-10	m68k	DSA-110-1 cups	2002-2-13
    libcupsys1	1.0.4-10	m68k	DSA-110-1 cups	2002-2-13
    cupsys-bsd	1.0.4-10	powerpc	DSA-110-1 cups	2002-2-13
    cupsys	1.0.4-10	powerpc	DSA-110-1 cups	2002-2-13
    libcupsys1-dev	1.0.4-10	powerpc	DSA-110-1 cups	2002-2-13
    libcupsys1	1.0.4-10	powerpc	DSA-110-1 cups	2002-2-13
    cupsys-bsd	1.0.4-10	sparc	DSA-110-1 cups	2002-2-13
    cupsys	1.0.4-10	sparc	DSA-110-1 cups	2002-2-13
    libcupsys1-dev	1.0.4-10	sparc	DSA-110-1 cups	2002-2-13
    libcupsys1	1.0.4-10	sparc	DSA-110-1 cups	2002-2-13
    rsync	2.3.2-1.5	alpha	DSA-106-2 rsync	2002-1-26
    rsync	2.3.2-1.5	arm	DSA-106-2 rsync	2002-1-26
    rsync	2.3.2-1.5	i386	DSA-106-2 rsync	2002-1-26
    rsync	2.3.2-1.5	m68k	DSA-106-2 rsync	2002-1-26
    rsync	2.3.2-1.5	powerpc	DSA-106-2 rsync	2002-1-26
    rsync	2.3.2-1.5	sparc	DSA-106-2 rsync	2002-1-26
    glibc-doc	2.1.3-24	all	DSA-149-1 glibc	2002-8-13
    i18ndata	2.1.3-24	all	DSA-149-1 glibc	2002-8-13
    libnss1-compat	2.1.3-24	alpha	DSA-149-1 glibc	2002-8-13
    locales	2.1.3-24	alpha	DSA-149-1 glibc	2002-8-13
    nscd	2.1.3-24	alpha	DSA-149-1 glibc	2002-8-13
    libc6	2.1.3-24	arm	DSA-149-1 glibc	2002-8-13
    libc6-dbg	2.1.3-24	arm	DSA-149-1 glibc	2002-8-13
    libc6-dev	2.1.3-24	arm	DSA-149-1 glibc	2002-8-13
    libc6-pic	2.1.3-24	arm	DSA-149-1 glibc	2002-8-13
    libc6-prof	2.1.3-24	arm	DSA-149-1 glibc	2002-8-13
    locales	2.1.3-24	arm	DSA-149-1 glibc	2002-8-13
    nscd	2.1.3-24	arm	DSA-149-1 glibc	2002-8-13
    libc6	2.1.3-24	i386	DSA-149-1 glibc	2002-8-13
    libc6-dbg	2.1.3-24	i386	DSA-149-1 glibc	2002-8-13
    libc6-dev	2.1.3-24	i386	DSA-149-1 glibc	2002-8-13
    libc6-pic	2.1.3-24	i386	DSA-149-1 glibc	2002-8-13
    libc6-prof	2.1.3-24	i386	DSA-149-1 glibc	2002-8-13
    libnss1-compat	2.1.3-24	i386	DSA-149-1 glibc	2002-8-13
    locales	2.1.3-24	i386	DSA-149-1 glibc	2002-8-13
    nscd	2.1.3-24	i386	DSA-149-1 glibc	2002-8-13
    libc6	2.1.3-24	m68k	DSA-149-1 glibc	2002-8-13
    libc6-dbg	2.1.3-24	m68k	DSA-149-1 glibc	2002-8-13
    libc6-dev	2.1.3-24	m68k	DSA-149-1 glibc	2002-8-13
    libc6-pic	2.1.3-24	m68k	DSA-149-1 glibc	2002-8-13
    libc6-prof	2.1.3-24	m68k	DSA-149-1 glibc	2002-8-13
    libnss1-compat	2.1.3-24	m68k	DSA-149-1 glibc	2002-8-13
    locales	2.1.3-24	m68k	DSA-149-1 glibc	2002-8-13
    nscd	2.1.3-24	m68k	DSA-149-1 glibc	2002-8-13
    libc6	2.1.3-24	powerpc	DSA-149-1 glibc	2002-8-13
    libc6-dbg	2.1.3-24	powerpc	DSA-149-1 glibc	2002-8-13
    libc6-dev	2.1.3-24	powerpc	DSA-149-1 glibc	2002-8-13
    libc6-pic	2.1.3-24	powerpc	DSA-149-1 glibc	2002-8-13
    libc6-prof	2.1.3-24	powerpc	DSA-149-1 glibc	2002-8-13
    locales	2.1.3-24	powerpc	DSA-149-1 glibc	2002-8-13
    nscd	2.1.3-24	powerpc	DSA-149-1 glibc	2002-8-13
    libc6	2.1.3-24	sparc	DSA-149-1 glibc	2002-8-13
    libc6-dbg	2.1.3-24	sparc	DSA-149-1 glibc	2002-8-13
    libc6-dev	2.1.3-24	sparc	DSA-149-1 glibc	2002-8-13
    libc6-pic	2.1.3-24	sparc	DSA-149-1 glibc	2002-8-13
    libc6-prof	2.1.3-24	sparc	DSA-149-1 glibc	2002-8-13
    locales	2.1.3-24	sparc	DSA-149-1 glibc	2002-8-13
    nscd	2.1.3-24	sparc	DSA-149-1 glibc	2002-8-13
    glibc-doc	2.2.5-11.2	all	DSA-149-1 glibc	2002-8-13
    locales	2.2.5-11.2	all	DSA-149-1 glibc	2002-8-13
    nscd	2.2.5-11.2	alpha	DSA-149-1 glibc	2002-8-13
    libc6	2.2.5-11.2	arm	DSA-149-1 glibc	2002-8-13
    libc6-dbg	2.2.5-11.2	arm	DSA-149-1 glibc	2002-8-13
    libc6-dev	2.2.5-11.2	arm	DSA-149-1 glibc	2002-8-13
    libc6-pic	2.2.5-11.2	arm	DSA-149-1 glibc	2002-8-13
    libc6-prof	2.2.5-11.2	arm	DSA-149-1 glibc	2002-8-13
    nscd	2.2.5-11.2	arm	DSA-149-1 glibc	2002-8-13
    libc6	2.2.5-11.2	i386	DSA-149-1 glibc	2002-8-13
    libc6-dbg	2.2.5-11.2	i386	DSA-149-1 glibc	2002-8-13
    libc6-dev	2.2.5-11.2	i386	DSA-149-1 glibc	2002-8-13
    libc6-pic	2.2.5-11.2	i386	DSA-149-1 glibc	2002-8-13
    libc6-prof	2.2.5-11.2	i386	DSA-149-1 glibc	2002-8-13
    nscd	2.2.5-11.2	i386	DSA-149-1 glibc	2002-8-13
    nscd	2.2.5-11.2	ia64	DSA-149-1 glibc	2002-8-13
    libc6	2.2.5-11.2	hppa	DSA-149-1 glibc	2002-8-13
    libc6-dbg	2.2.5-11.2	hppa	DSA-149-1 glibc	2002-8-13
    libc6-dev	2.2.5-11.2	hppa	DSA-149-1 glibc	2002-8-13
    libc6-pic	2.2.5-11.2	hppa	DSA-149-1 glibc	2002-8-13
    libc6-prof	2.2.5-11.2	hppa	DSA-149-1 glibc	2002-8-13
    nscd	2.2.5-11.2	hppa	DSA-149-1 glibc	2002-8-13
    libc6	2.2.5-11.2	m68k	DSA-149-1 glibc	2002-8-13
    libc6-dbg	2.2.5-11.2	m68k	DSA-149-1 glibc	2002-8-13
    libc6-dev	2.2.5-11.2	m68k	DSA-149-1 glibc	2002-8-13
    libc6-pic	2.2.5-11.2	m68k	DSA-149-1 glibc	2002-8-13
    libc6-prof	2.2.5-11.2	m68k	DSA-149-1 glibc	2002-8-13
    nscd	2.2.5-11.2	m68k	DSA-149-1 glibc	2002-8-13
    libc6	2.2.5-11.2	mips	DSA-149-1 glibc	2002-8-13
    libc6-dbg	2.2.5-11.2	mips	DSA-149-1 glibc	2002-8-13
    libc6-dev	2.2.5-11.2	mips	DSA-149-1 glibc	2002-8-13
    libc6-pic	2.2.5-11.2	mips	DSA-149-1 glibc	2002-8-13
    libc6-prof	2.2.5-11.2	mips	DSA-149-1 glibc	2002-8-13
    nscd	2.2.5-11.2	mips	DSA-149-1 glibc	2002-8-13
    libc6	2.2.5-11.2	mipsel	DSA-149-1 glibc	2002-8-13
    libc6-dbg	2.2.5-11.2	mipsel	DSA-149-1 glibc	2002-8-13
    libc6-dev	2.2.5-11.2	mipsel	DSA-149-1 glibc	2002-8-13
    libc6-pic	2.2.5-11.2	mipsel	DSA-149-1 glibc	2002-8-13
    libc6-prof	2.2.5-11.2	mipsel	DSA-149-1 glibc	2002-8-13
    nscd	2.2.5-11.2	mipsel	DSA-149-1 glibc	2002-8-13
    libc6	2.2.5-11.2	powerpc	DSA-149-1 glibc	2002-8-13
    libc6-dbg	2.2.5-11.2	powerpc	DSA-149-1 glibc	2002-8-13
    libc6-dev	2.2.5-11.2	powerpc	DSA-149-1 glibc	2002-8-13
    libc6-pic	2.2.5-11.2	powerpc	DSA-149-1 glibc	2002-8-13
    libc6-prof	2.2.5-11.2	powerpc	DSA-149-1 glibc	2002-8-13
    nscd	2.2.5-11.2	powerpc	DSA-149-1 glibc	2002-8-13
    libc6	2.2.5-11.2	s390	DSA-149-1 glibc	2002-8-13
    libc6-dbg	2.2.5-11.2	s390	DSA-149-1 glibc	2002-8-13
    libc6-dev	2.2.5-11.2	s390	DSA-149-1 glibc	2002-8-13
    libc6-pic	2.2.5-11.2	s390	DSA-149-1 glibc	2002-8-13
    libc6-prof	2.2.5-11.2	s390	DSA-149-1 glibc	2002-8-13
    nscd	2.2.5-11.2	s390	DSA-149-1 glibc	2002-8-13
    libc6	2.2.5-11.2	sparc	DSA-149-1 glibc	2002-8-13
    libc6-dbg	2.2.5-11.2	sparc	DSA-149-1 glibc	2002-8-13
    libc6-dev	2.2.5-11.2	sparc	DSA-149-1 glibc	2002-8-13
    libc6-dev-sparc64	2.2.5-11.2	sparc	DSA-149-1 glibc	2002-8-13
    libc6-pic	2.2.5-11.2	sparc	DSA-149-1 glibc	2002-8-13
    libc6-prof	2.2.5-11.2	sparc	DSA-149-1 glibc	2002-8-13
    libc6-sparc64	2.2.5-11.2	sparc	DSA-149-1 glibc	2002-8-13
    nscd	2.2.5-11.2	sparc	DSA-149-1 glibc	2002-8-13
    mysql-doc	3.22.32-6.3	all	DSA-212-1 mysql	2002-12-17
    mysql-server	3.22.32-6.3	alpha	DSA-212-1 mysql	2002-12-17
    mysql-client	3.22.32-6.3	alpha	DSA-212-1 mysql	2002-12-17
    mysql-server	3.22.32-6.3	arm	DSA-212-1 mysql	2002-12-17
    mysql-client	3.22.32-6.3	arm	DSA-212-1 mysql	2002-12-17
    mysql-server	3.22.32-6.3	i386	DSA-212-1 mysql	2002-12-17
    mysql-client	3.22.32-6.3	i386	DSA-212-1 mysql	2002-12-17
    mysql-server	3.22.32-6.3	m68k	DSA-212-1 mysql	2002-12-17
    mysql-client	3.22.32-6.3	m68k	DSA-212-1 mysql	2002-12-17
    mysql-server	3.22.32-6.3	powerpc	DSA-212-1 mysql	2002-12-17
    mysql-client	3.22.32-6.3	powerpc	DSA-212-1 mysql	2002-12-17
    mysql-server	3.22.32-6.3	sparc	DSA-212-1 mysql	2002-12-17
    mysql-client	3.22.32-6.3	sparc	DSA-212-1 mysql	2002-12-17
    mysql-doc	3.23.49-8.2	all	DSA-212-1 mysql	2002-12-17
    mysql-common	3.23.49-8.2	all	DSA-212-1 mysql	2002-12-17
    mysql-client	3.23.49-8.2	alpha	DSA-212-1 mysql	2002-12-17
    libmysqlclient10-dev	3.23.49-8.2	alpha	DSA-212-1 mysql	2002-12-17
    mysql-server	3.23.49-8.2	alpha	DSA-212-1 mysql	2002-12-17
    libmysqlclient10	3.23.49-8.2	alpha	DSA-212-1 mysql	2002-12-17
    mysql-server	3.23.49-8.2	arm	DSA-212-1 mysql	2002-12-17
    libmysqlclient10-dev	3.23.49-8.2	arm	DSA-212-1 mysql	2002-12-17
    mysql-client	3.23.49-8.2	arm	DSA-212-1 mysql	2002-12-17
    libmysqlclient10	3.23.49-8.2	arm	DSA-212-1 mysql	2002-12-17
    mysql-server	3.23.49-8.2	hppa	DSA-212-1 mysql	2002-12-17
    mysql-client	3.23.49-8.2	hppa	DSA-212-1 mysql	2002-12-17
    libmysqlclient10-dev	3.23.49-8.2	hppa	DSA-212-1 mysql	2002-12-17
    libmysqlclient10	3.23.49-8.2	hppa	DSA-212-1 mysql	2002-12-17
    libmysqlclient10-dev	3.23.49-8.2	i386	DSA-212-1 mysql	2002-12-17
    mysql-server	3.23.49-8.2	i386	DSA-212-1 mysql	2002-12-17
    libmysqlclient10	3.23.49-8.2	i386	DSA-212-1 mysql	2002-12-17
    mysql-client	3.23.49-8.2	i386	DSA-212-1 mysql	2002-12-17
    libmysqlclient10-dev	3.23.49-8.2	ia64	DSA-212-1 mysql	2002-12-17
    mysql-client	3.23.49-8.2	ia64	DSA-212-1 mysql	2002-12-17
    mysql-server	3.23.49-8.2	ia64	DSA-212-1 mysql	2002-12-17
    libmysqlclient10	3.23.49-8.2	ia64	DSA-212-1 mysql	2002-12-17
    libmysqlclient10	3.23.49-8.2	m68k	DSA-212-1 mysql	2002-12-17
    mysql-client	3.23.49-8.2	m68k	DSA-212-1 mysql	2002-12-17
    libmysqlclient10-dev	3.23.49-8.2	m68k	DSA-212-1 mysql	2002-12-17
    mysql-server	3.23.49-8.2	m68k	DSA-212-1 mysql	2002-12-17
    libmysqlclient10-dev	3.23.49-8.2	mipsel	DSA-212-1 mysql	2002-12-17
    mysql-client	3.23.49-8.2	mipsel	DSA-212-1 mysql	2002-12-17
    libmysqlclient10	3.23.49-8.2	mipsel	DSA-212-1 mysql	2002-12-17
    mysql-server	3.23.49-8.2	mipsel	DSA-212-1 mysql	2002-12-17
    mysql-client	3.23.49-8.2	powerpc	DSA-212-1 mysql	2002-12-17
    libmysqlclient10	3.23.49-8.2	powerpc	DSA-212-1 mysql	2002-12-17
    libmysqlclient10-dev	3.23.49-8.2	powerpc	DSA-212-1 mysql	2002-12-17
    mysql-server	3.23.49-8.2	powerpc	DSA-212-1 mysql	2002-12-17
    mysql-client	3.23.49-8.2	s390	DSA-212-1 mysql	2002-12-17
    mysql-server	3.23.49-8.2	s390	DSA-212-1 mysql	2002-12-17
    libmysqlclient10-dev	3.23.49-8.2	s390	DSA-212-1 mysql	2002-12-17
    libmysqlclient10	3.23.49-8.2	s390	DSA-212-1 mysql	2002-12-17
    mysql-server	3.23.49-8.2	sparc	DSA-212-1 mysql	2002-12-17
    libmysqlclient10	3.23.49-8.2	sparc	DSA-212-1 mysql	2002-12-17
    mysql-client	3.23.49-8.2	sparc	DSA-212-1 mysql	2002-12-17
    libmysqlclient10-dev	3.23.49-8.2	sparc	DSA-212-1 mysql	2002-12-17
    courier-doc	0.37.3-2.3	all	DSA-197-1 courier	2002-11-15
    courier-authdaemon	0.37.3-2.3	alpha	DSA-197-1 courier	2002-11-15
    courier-authmysql	0.37.3-2.3	alpha	DSA-197-1 courier	2002-11-15
    courier-base	0.37.3-2.3	alpha	DSA-197-1 courier	2002-11-15
    courier-debug	0.37.3-2.3	alpha	DSA-197-1 courier	2002-11-15
    courier-imap	1.4.3-2.3	alpha	DSA-197-1 courier	2002-11-15
    courier-imap-ssl	1.4.3-3.1	alpha	DSA-197-1 courier	2002-11-15
    courier-ldap	0.37.3-2.3	alpha	DSA-197-1 courier	2002-11-15
    courier-maildrop	0.37.3-2.3	alpha	DSA-197-1 courier	2002-11-15
    courier-mlm	0.37.3-2.3	alpha	DSA-197-1 courier	2002-11-15
    courier-mta	0.37.3-2.3	alpha	DSA-197-1 courier	2002-11-15
    courier-pcp	0.37.3-2.3	alpha	DSA-197-1 courier	2002-11-15
    courier-pop	0.37.3-2.3	alpha	DSA-197-1 courier	2002-11-15
    courier-webadmin	0.37.3-2.3	alpha	DSA-197-1 courier	2002-11-15
    sqwebmail	0.37.3-2.3	alpha	DSA-197-1 courier	2002-11-15
    courier-authdaemon	0.37.3-2.3	arm	DSA-197-1 courier	2002-11-15
    courier-authmysql	0.37.3-2.3	arm	DSA-197-1 courier	2002-11-15
    courier-base	0.37.3-2.3	arm	DSA-197-1 courier	2002-11-15
    courier-debug	0.37.3-2.3	arm	DSA-197-1 courier	2002-11-15
    courier-imap	1.4.3-2.3	arm	DSA-197-1 courier	2002-11-15
    courier-ldap	0.37.3-2.3	arm	DSA-197-1 courier	2002-11-15
    courier-maildrop	0.37.3-2.3	arm	DSA-197-1 courier	2002-11-15
    courier-mlm	0.37.3-2.3	arm	DSA-197-1 courier	2002-11-15
    courier-mta	0.37.3-2.3	arm	DSA-197-1 courier	2002-11-15
    courier-pcp	0.37.3-2.3	arm	DSA-197-1 courier	2002-11-15
    courier-pop	0.37.3-2.3	arm	DSA-197-1 courier	2002-11-15
    courier-webadmin	0.37.3-2.3	arm	DSA-197-1 courier	2002-11-15
    sqwebmail	0.37.3-2.3	arm	DSA-197-1 courier	2002-11-15
    courier-authdaemon	0.37.3-2.3	i386	DSA-197-1 courier	2002-11-15
    courier-authmysql	0.37.3-2.3	i386	DSA-197-1 courier	2002-11-15
    courier-base	0.37.3-2.3	i386	DSA-197-1 courier	2002-11-15
    courier-debug	0.37.3-2.3	i386	DSA-197-1 courier	2002-11-15
    courier-imap	1.4.3-2.3	i386	DSA-197-1 courier	2002-11-15
    courier-ldap	0.37.3-2.3	i386	DSA-197-1 courier	2002-11-15
    courier-maildrop	0.37.3-2.3	i386	DSA-197-1 courier	2002-11-15
    courier-mlm	0.37.3-2.3	i386	DSA-197-1 courier	2002-11-15
    courier-mta	0.37.3-2.3	i386	DSA-197-1 courier	2002-11-15
    courier-pcp	0.37.3-2.3	i386	DSA-197-1 courier	2002-11-15
    courier-pop	0.37.3-2.3	i386	DSA-197-1 courier	2002-11-15
    courier-webadmin	0.37.3-2.3	i386	DSA-197-1 courier	2002-11-15
    sqwebmail	0.37.3-2.3	i386	DSA-197-1 courier	2002-11-15
    courier-authdaemon	0.37.3-2.3	ia64	DSA-197-1 courier	2002-11-15
    courier-authmysql	0.37.3-2.3	ia64	DSA-197-1 courier	2002-11-15
    courier-base	0.37.3-2.3	ia64	DSA-197-1 courier	2002-11-15
    courier-debug	0.37.3-2.3	ia64	DSA-197-1 courier	2002-11-15
    courier-imap	1.4.3-2.3	ia64	DSA-197-1 courier	2002-11-15
    courier-ldap	0.37.3-2.3	ia64	DSA-197-1 courier	2002-11-15
    courier-maildrop	0.37.3-2.3	ia64	DSA-197-1 courier	2002-11-15
    courier-mlm	0.37.3-2.3	ia64	DSA-197-1 courier	2002-11-15
    courier-mta	0.37.3-2.3	ia64	DSA-197-1 courier	2002-11-15
    courier-pcp	0.37.3-2.3	ia64	DSA-197-1 courier	2002-11-15
    courier-pop	0.37.3-2.3	ia64	DSA-197-1 courier	2002-11-15
    courier-webadmin	0.37.3-2.3	ia64	DSA-197-1 courier	2002-11-15
    sqwebmail	0.37.3-2.3	ia64	DSA-197-1 courier	2002-11-15
    courier-authdaemon	0.37.3-2.3	hppa	DSA-197-1 courier	2002-11-15
    courier-authmysql	0.37.3-2.3	hppa	DSA-197-1 courier	2002-11-15
    courier-base	0.37.3-2.3	hppa	DSA-197-1 courier	2002-11-15
    courier-debug	0.37.3-2.3	hppa	DSA-197-1 courier	2002-11-15
    courier-imap	1.4.3-2.3	hppa	DSA-197-1 courier	2002-11-15
    courier-ldap	0.37.3-2.3	hppa	DSA-197-1 courier	2002-11-15
    courier-maildrop	0.37.3-2.3	hppa	DSA-197-1 courier	2002-11-15
    courier-mlm	0.37.3-2.3	hppa	DSA-197-1 courier	2002-11-15
    courier-mta	0.37.3-2.3	hppa	DSA-197-1 courier	2002-11-15
    courier-pcp	0.37.3-2.3	hppa	DSA-197-1 courier	2002-11-15
    courier-pop	0.37.3-2.3	hppa	DSA-197-1 courier	2002-11-15
    courier-webadmin	0.37.3-2.3	hppa	DSA-197-1 courier	2002-11-15
    sqwebmail	0.37.3-2.3	hppa	DSA-197-1 courier	2002-11-15
    courier-authdaemon	0.37.3-2.3	m68k	DSA-197-1 courier	2002-11-15
    courier-authmysql	0.37.3-2.3	m68k	DSA-197-1 courier	2002-11-15
    courier-base	0.37.3-2.3	m68k	DSA-197-1 courier	2002-11-15
    courier-debug	0.37.3-2.3	m68k	DSA-197-1 courier	2002-11-15
    courier-imap	1.4.3-2.3	m68k	DSA-197-1 courier	2002-11-15
    courier-ldap	0.37.3-2.3	m68k	DSA-197-1 courier	2002-11-15
    courier-maildrop	0.37.3-2.3	m68k	DSA-197-1 courier	2002-11-15
    courier-mlm	0.37.3-2.3	m68k	DSA-197-1 courier	2002-11-15
    courier-mta	0.37.3-2.3	m68k	DSA-197-1 courier	2002-11-15
    courier-pcp	0.37.3-2.3	m68k	DSA-197-1 courier	2002-11-15
    courier-pop	0.37.3-2.3	m68k	DSA-197-1 courier	2002-11-15
    courier-webadmin	0.37.3-2.3	m68k	DSA-197-1 courier	2002-11-15
    sqwebmail	0.37.3-2.3	m68k	DSA-197-1 courier	2002-11-15
    courier-authdaemon	0.37.3-2.3	mips	DSA-197-1 courier	2002-11-15
    courier-authmysql	0.37.3-2.3	mips	DSA-197-1 courier	2002-11-15
    courier-base	0.37.3-2.3	mips	DSA-197-1 courier	2002-11-15
    courier-debug	0.37.3-2.3	mips	DSA-197-1 courier	2002-11-15
    courier-imap	1.4.3-2.3	mips	DSA-197-1 courier	2002-11-15
    courier-ldap	0.37.3-2.3	mips	DSA-197-1 courier	2002-11-15
    courier-maildrop	0.37.3-2.3	mips	DSA-197-1 courier	2002-11-15
    courier-mlm	0.37.3-2.3	mips	DSA-197-1 courier	2002-11-15
    courier-mta	0.37.3-2.3	mips	DSA-197-1 courier	2002-11-15
    courier-pcp	0.37.3-2.3	mips	DSA-197-1 courier	2002-11-15
    courier-pop	0.37.3-2.3	mips	DSA-197-1 courier	2002-11-15
    courier-webadmin	0.37.3-2.3	mips	DSA-197-1 courier	2002-11-15
    sqwebmail	0.37.3-2.3	mips	DSA-197-1 courier	2002-11-15
    courier-authdaemon	0.37.3-2.3	mipsel	DSA-197-1 courier	2002-11-15
    courier-authmysql	0.37.3-2.3	mipsel	DSA-197-1 courier	2002-11-15
    courier-base	0.37.3-2.3	mipsel	DSA-197-1 courier	2002-11-15
    courier-debug	0.37.3-2.3	mipsel	DSA-197-1 courier	2002-11-15
    courier-imap	1.4.3-2.3	mipsel	DSA-197-1 courier	2002-11-15
    courier-ldap	0.37.3-2.3	mipsel	DSA-197-1 courier	2002-11-15
    courier-maildrop	0.37.3-2.3	mipsel	DSA-197-1 courier	2002-11-15
    courier-mlm	0.37.3-2.3	mipsel	DSA-197-1 courier	2002-11-15
    courier-mta	0.37.3-2.3	mipsel	DSA-197-1 courier	2002-11-15
    courier-pcp	0.37.3-2.3	mipsel	DSA-197-1 courier	2002-11-15
    courier-pop	0.37.3-2.3	mipsel	DSA-197-1 courier	2002-11-15
    courier-webadmin	0.37.3-2.3	mipsel	DSA-197-1 courier	2002-11-15
    sqwebmail	0.37.3-2.3	mipsel	DSA-197-1 courier	2002-11-15
    courier-authdaemon	0.37.3-2.3	powerpc	DSA-197-1 courier	2002-11-15
    courier-authmysql	0.37.3-2.3	powerpc	DSA-197-1 courier	2002-11-15
    courier-base	0.37.3-2.3	powerpc	DSA-197-1 courier	2002-11-15
    courier-debug	0.37.3-2.3	powerpc	DSA-197-1 courier	2002-11-15
    courier-imap	1.4.3-2.3	powerpc	DSA-197-1 courier	2002-11-15
    courier-ldap	0.37.3-2.3	powerpc	DSA-197-1 courier	2002-11-15
    courier-maildrop	0.37.3-2.3	powerpc	DSA-197-1 courier	2002-11-15
    courier-mlm	0.37.3-2.3	powerpc	DSA-197-1 courier	2002-11-15
    courier-mta	0.37.3-2.3	powerpc	DSA-197-1 courier	2002-11-15
    courier-pcp	0.37.3-2.3	powerpc	DSA-197-1 courier	2002-11-15
    courier-pop	0.37.3-2.3	powerpc	DSA-197-1 courier	2002-11-15
    courier-webadmin	0.37.3-2.3	powerpc	DSA-197-1 courier	2002-11-15
    sqwebmail	0.37.3-2.3	powerpc	DSA-197-1 courier	2002-11-15
    courier-authdaemon	0.37.3-2.3	s390	DSA-197-1 courier	2002-11-15
    courier-authmysql	0.37.3-2.3	s390	DSA-197-1 courier	2002-11-15
    courier-base	0.37.3-2.3	s390	DSA-197-1 courier	2002-11-15
    courier-debug	0.37.3-2.3	s390	DSA-197-1 courier	2002-11-15
    courier-imap	1.4.3-2.3	s390	DSA-197-1 courier	2002-11-15
    courier-ldap	0.37.3-2.3	s390	DSA-197-1 courier	2002-11-15
    courier-maildrop	0.37.3-2.3	s390	DSA-197-1 courier	2002-11-15
    courier-mlm	0.37.3-2.3	s390	DSA-197-1 courier	2002-11-15
    courier-mta	0.37.3-2.3	s390	DSA-197-1 courier	2002-11-15
    courier-pcp	0.37.3-2.3	s390	DSA-197-1 courier	2002-11-15
    courier-pop	0.37.3-2.3	s390	DSA-197-1 courier	2002-11-15
    courier-webadmin	0.37.3-2.3	s390	DSA-197-1 courier	2002-11-15
    sqwebmail	0.37.3-2.3	s390	DSA-197-1 courier	2002-11-15
    courier-authdaemon	0.37.3-2.3	sparc	DSA-197-1 courier	2002-11-15
    courier-authmysql	0.37.3-2.3	sparc	DSA-197-1 courier	2002-11-15
    courier-base	0.37.3-2.3	sparc	DSA-197-1 courier	2002-11-15
    courier-debug	0.37.3-2.3	sparc	DSA-197-1 courier	2002-11-15
    courier-imap	1.4.3-2.3	sparc	DSA-197-1 courier	2002-11-15
    courier-ldap	0.37.3-2.3	sparc	DSA-197-1 courier	2002-11-15
    courier-maildrop	0.37.3-2.3	sparc	DSA-197-1 courier	2002-11-15
    courier-mlm	0.37.3-2.3	sparc	DSA-197-1 courier	2002-11-15
    courier-mta	0.37.3-2.3	sparc	DSA-197-1 courier	2002-11-15
    courier-pcp	0.37.3-2.3	sparc	DSA-197-1 courier	2002-11-15
    courier-pop	0.37.3-2.3	sparc	DSA-197-1 courier	2002-11-15
    courier-webadmin	0.37.3-2.3	sparc	DSA-197-1 courier	2002-11-15
    sqwebmail	0.37.3-2.3	sparc	DSA-197-1 courier	2002-11-15
    cvs-doc	1.10.7-9	all	DSA-117-1 cvs	2002-3-5
    cvs	1.10.7-9	alpha	DSA-117-1 cvs	2002-3-5
    cvs	1.10.7-9	arm	DSA-117-1 cvs	2002-3-5
    cvs	1.10.7-9	i386	DSA-117-1 cvs	2002-3-5
    cvs	1.10.7-9	m68k	DSA-117-1 cvs	2002-3-5
    cvs	1.10.7-9	powerpc	DSA-117-1 cvs	2002-3-5
    cvs	1.10.7-9	sparc	DSA-117-1 cvs	2002-3-5
    gv	3.5.8-17.1	alpha	DSA-176-1 gv	2002-10-16
    gv	3.5.8-17.1	arm	DSA-176-1 gv	2002-10-16
    gv	3.5.8-17.1	i386	DSA-176-1 gv	2002-10-16
    gv	3.5.8-17.1	m68k	DSA-176-1 gv	2002-10-16
    gv	3.5.8-17.1	powerpc	DSA-176-1 gv	2002-10-16
    gv	3.5.8-17.1	sparc	DSA-176-1 gv	2002-10-16
    gv	3.5.8-26.1	alpha	DSA-176-1 gv	2002-10-16
    gv	3.5.8-26.1	arm	DSA-176-1 gv	2002-10-16
    gv	3.5.8-26.1	i386	DSA-176-1 gv	2002-10-16
    gv	3.5.8-26.1	ia64	DSA-176-1 gv	2002-10-16
    gv	3.5.8-26.1	hppa	DSA-176-1 gv	2002-10-16
    gv	3.5.8-26.1	m68k	DSA-176-1 gv	2002-10-16
    gv	3.5.8-26.1	mips	DSA-176-1 gv	2002-10-16
    gv	3.5.8-26.1	mipsel	DSA-176-1 gv	2002-10-16
    gv	3.5.8-26.1	powerpc	DSA-176-1 gv	2002-10-16
    gv	3.5.8-26.1	s390	DSA-176-1 gv	2002-10-16
    gv	3.5.8-26.1	sparc	DSA-176-1 gv	2002-10-16
    libapache-mod-ssl-doc	2.8.9-2	all	DSA-135-1 libapache-mod-ssl	2002-7-2
    libapache-mod-ssl	2.8.9-2	alpha	DSA-135-1 libapache-mod-ssl	2002-7-2
    libapache-mod-ssl	2.8.9-2	arm	DSA-135-1 libapache-mod-ssl	2002-7-2
    libapache-mod-ssl	2.8.9-2	i386	DSA-135-1 libapache-mod-ssl	2002-7-2
    libapache-mod-ssl	2.8.9-2	m68k	DSA-135-1 libapache-mod-ssl	2002-7-2
    libapache-mod-ssl	2.8.9-2	mips	DSA-135-1 libapache-mod-ssl	2002-7-2
    libapache-mod-ssl	2.8.9-2	mipsel	DSA-135-1 libapache-mod-ssl	2002-7-2
    libapache-mod-ssl	2.8.9-2	powerpc	DSA-135-1 libapache-mod-ssl	2002-7-2
    libapache-mod-ssl	2.8.9-2	s390	DSA-135-1 libapache-mod-ssl	2002-7-2
    kdict	2.2.2-14.2	alpha	DSA-193-1 kdenetwork	2002-11-11
    kit	2.2.2-14.2	alpha	DSA-193-1 kdenetwork	2002-11-11
    klisa	2.2.2-14.2	alpha	DSA-193-1 kdenetwork	2002-11-11
    kmail	2.2.2-14.2	alpha	DSA-193-1 kdenetwork	2002-11-11
    knewsticker	2.2.2-14.2	alpha	DSA-193-1 kdenetwork	2002-11-11
    knode	2.2.2-14.2	alpha	DSA-193-1 kdenetwork	2002-11-11
    korn	2.2.2-14.2	alpha	DSA-193-1 kdenetwork	2002-11-11
    kppp	2.2.2-14.2	alpha	DSA-193-1 kdenetwork	2002-11-11
    ksirc	2.2.2-14.2	alpha	DSA-193-1 kdenetwork	2002-11-11
    ktalkd	2.2.2-14.2	alpha	DSA-193-1 kdenetwork	2002-11-11
    libkdenetwork1	2.2.2-14.2	alpha	DSA-193-1 kdenetwork	2002-11-11
    libmimelib-dev	2.2.2-14.2	alpha	DSA-193-1 kdenetwork	2002-11-11
    libmimelib1	2.2.2-14.2	alpha	DSA-193-1 kdenetwork	2002-11-11
    kdict	2.2.2-14.2	arm	DSA-193-1 kdenetwork	2002-11-11
    kit	2.2.2-14.2	arm	DSA-193-1 kdenetwork	2002-11-11
    klisa	2.2.2-14.2	arm	DSA-193-1 kdenetwork	2002-11-11
    kmail	2.2.2-14.2	arm	DSA-193-1 kdenetwork	2002-11-11
    knewsticker	2.2.2-14.2	arm	DSA-193-1 kdenetwork	2002-11-11
    knode	2.2.2-14.2	arm	DSA-193-1 kdenetwork	2002-11-11
    korn	2.2.2-14.2	arm	DSA-193-1 kdenetwork	2002-11-11
    kppp	2.2.2-14.2	arm	DSA-193-1 kdenetwork	2002-11-11
    ksirc	2.2.2-14.2	arm	DSA-193-1 kdenetwork	2002-11-11
    ktalkd	2.2.2-14.2	arm	DSA-193-1 kdenetwork	2002-11-11
    libkdenetwork1	2.2.2-14.2	arm	DSA-193-1 kdenetwork	2002-11-11
    libmimelib-dev	2.2.2-14.2	arm	DSA-193-1 kdenetwork	2002-11-11
    libmimelib1	2.2.2-14.2	arm	DSA-193-1 kdenetwork	2002-11-11
    kdict	2.2.2-14.2	i386	DSA-193-1 kdenetwork	2002-11-11
    kit	2.2.2-14.2	i386	DSA-193-1 kdenetwork	2002-11-11
    klisa	2.2.2-14.2	i386	DSA-193-1 kdenetwork	2002-11-11
    kmail	2.2.2-14.2	i386	DSA-193-1 kdenetwork	2002-11-11
    knewsticker	2.2.2-14.2	i386	DSA-193-1 kdenetwork	2002-11-11
    knode	2.2.2-14.2	i386	DSA-193-1 kdenetwork	2002-11-11
    korn	2.2.2-14.2	i386	DSA-193-1 kdenetwork	2002-11-11
    kppp	2.2.2-14.2	i386	DSA-193-1 kdenetwork	2002-11-11
    ksirc	2.2.2-14.2	i386	DSA-193-1 kdenetwork	2002-11-11
    ktalkd	2.2.2-14.2	i386	DSA-193-1 kdenetwork	2002-11-11
    libkdenetwork1	2.2.2-14.2	i386	DSA-193-1 kdenetwork	2002-11-11
    libmimelib-dev	2.2.2-14.2	i386	DSA-193-1 kdenetwork	2002-11-11
    libmimelib1	2.2.2-14.2	i386	DSA-193-1 kdenetwork	2002-11-11
    kdict	2.2.2-14.2	ia64	DSA-193-1 kdenetwork	2002-11-11
    kit	2.2.2-14.2	ia64	DSA-193-1 kdenetwork	2002-11-11
    klisa	2.2.2-14.2	ia64	DSA-193-1 kdenetwork	2002-11-11
    kmail	2.2.2-14.2	ia64	DSA-193-1 kdenetwork	2002-11-11
    knewsticker	2.2.2-14.2	ia64	DSA-193-1 kdenetwork	2002-11-11
    knode	2.2.2-14.2	ia64	DSA-193-1 kdenetwork	2002-11-11
    korn	2.2.2-14.2	ia64	DSA-193-1 kdenetwork	2002-11-11
    kppp	2.2.2-14.2	ia64	DSA-193-1 kdenetwork	2002-11-11
    ksirc	2.2.2-14.2	ia64	DSA-193-1 kdenetwork	2002-11-11
    ktalkd	2.2.2-14.2	ia64	DSA-193-1 kdenetwork	2002-11-11
    libkdenetwork1	2.2.2-14.2	ia64	DSA-193-1 kdenetwork	2002-11-11
    libmimelib-dev	2.2.2-14.2	ia64	DSA-193-1 kdenetwork	2002-11-11
    libmimelib1	2.2.2-14.2	ia64	DSA-193-1 kdenetwork	2002-11-11
    kdict	2.2.2-14.2	hppa	DSA-193-1 kdenetwork	2002-11-11
    kit	2.2.2-14.2	hppa	DSA-193-1 kdenetwork	2002-11-11
    klisa	2.2.2-14.2	hppa	DSA-193-1 kdenetwork	2002-11-11
    kmail	2.2.2-14.2	hppa	DSA-193-1 kdenetwork	2002-11-11
    knewsticker	2.2.2-14.2	hppa	DSA-193-1 kdenetwork	2002-11-11
    knode	2.2.2-14.2	hppa	DSA-193-1 kdenetwork	2002-11-11
    korn	2.2.2-14.2	hppa	DSA-193-1 kdenetwork	2002-11-11
    kppp	2.2.2-14.2	hppa	DSA-193-1 kdenetwork	2002-11-11
    ksirc	2.2.2-14.2	hppa	DSA-193-1 kdenetwork	2002-11-11
    ktalkd	2.2.2-14.2	hppa	DSA-193-1 kdenetwork	2002-11-11
    libkdenetwork1	2.2.2-14.2	hppa	DSA-193-1 kdenetwork	2002-11-11
    libmimelib-dev	2.2.2-14.2	hppa	DSA-193-1 kdenetwork	2002-11-11
    libmimelib1	2.2.2-14.2	hppa	DSA-193-1 kdenetwork	2002-11-11
    kdict	2.2.2-14.2	m68k	DSA-193-1 kdenetwork	2002-11-11
    kit	2.2.2-14.2	m68k	DSA-193-1 kdenetwork	2002-11-11
    klisa	2.2.2-14.2	m68k	DSA-193-1 kdenetwork	2002-11-11
    kmail	2.2.2-14.2	m68k	DSA-193-1 kdenetwork	2002-11-11
    knewsticker	2.2.2-14.2	m68k	DSA-193-1 kdenetwork	2002-11-11
    knode	2.2.2-14.2	m68k	DSA-193-1 kdenetwork	2002-11-11
    korn	2.2.2-14.2	m68k	DSA-193-1 kdenetwork	2002-11-11
    kppp	2.2.2-14.2	m68k	DSA-193-1 kdenetwork	2002-11-11
    ksirc	2.2.2-14.2	m68k	DSA-193-1 kdenetwork	2002-11-11
    ktalkd	2.2.2-14.2	m68k	DSA-193-1 kdenetwork	2002-11-11
    libkdenetwork1	2.2.2-14.2	m68k	DSA-193-1 kdenetwork	2002-11-11
    libmimelib-dev	2.2.2-14.2	m68k	DSA-193-1 kdenetwork	2002-11-11
    libmimelib1	2.2.2-14.2	m68k	DSA-193-1 kdenetwork	2002-11-11
    kdict	2.2.2-14.2	mips	DSA-193-1 kdenetwork	2002-11-11
    kit	2.2.2-14.2	mips	DSA-193-1 kdenetwork	2002-11-11
    klisa	2.2.2-14.2	mips	DSA-193-1 kdenetwork	2002-11-11
    kmail	2.2.2-14.2	mips	DSA-193-1 kdenetwork	2002-11-11
    knewsticker	2.2.2-14.2	mips	DSA-193-1 kdenetwork	2002-11-11
    knode	2.2.2-14.2	mips	DSA-193-1 kdenetwork	2002-11-11
    korn	2.2.2-14.2	mips	DSA-193-1 kdenetwork	2002-11-11
    kppp	2.2.2-14.2	mips	DSA-193-1 kdenetwork	2002-11-11
    ksirc	2.2.2-14.2	mips	DSA-193-1 kdenetwork	2002-11-11
    ktalkd	2.2.2-14.2	mips	DSA-193-1 kdenetwork	2002-11-11
    libkdenetwork1	2.2.2-14.2	mips	DSA-193-1 kdenetwork	2002-11-11
    libmimelib-dev	2.2.2-14.2	mips	DSA-193-1 kdenetwork	2002-11-11
    libmimelib1	2.2.2-14.2	mips	DSA-193-1 kdenetwork	2002-11-11
    kdict	2.2.2-14.2	mipsel	DSA-193-1 kdenetwork	2002-11-11
    kit	2.2.2-14.2	mipsel	DSA-193-1 kdenetwork	2002-11-11
    klisa	2.2.2-14.2	mipsel	DSA-193-1 kdenetwork	2002-11-11
    kmail	2.2.2-14.2	mipsel	DSA-193-1 kdenetwork	2002-11-11
    knewsticker	2.2.2-14.2	mipsel	DSA-193-1 kdenetwork	2002-11-11
    knode	2.2.2-14.2	mipsel	DSA-193-1 kdenetwork	2002-11-11
    korn	2.2.2-14.2	mipsel	DSA-193-1 kdenetwork	2002-11-11
    kppp	2.2.2-14.2	mipsel	DSA-193-1 kdenetwork	2002-11-11
    ksirc	2.2.2-14.2	mipsel	DSA-193-1 kdenetwork	2002-11-11
    ktalkd	2.2.2-14.2	mipsel	DSA-193-1 kdenetwork	2002-11-11
    libkdenetwork1	2.2.2-14.2	mipsel	DSA-193-1 kdenetwork	2002-11-11
    libmimelib-dev	2.2.2-14.2	mipsel	DSA-193-1 kdenetwork	2002-11-11
    libmimelib1	2.2.2-14.2	mipsel	DSA-193-1 kdenetwork	2002-11-11
    kdict	2.2.2-14.2	powerpc	DSA-193-1 kdenetwork	2002-11-11
    kit	2.2.2-14.2	powerpc	DSA-193-1 kdenetwork	2002-11-11
    klisa	2.2.2-14.2	powerpc	DSA-193-1 kdenetwork	2002-11-11
    kmail	2.2.2-14.2	powerpc	DSA-193-1 kdenetwork	2002-11-11
    knewsticker	2.2.2-14.2	powerpc	DSA-193-1 kdenetwork	2002-11-11
    knode	2.2.2-14.2	powerpc	DSA-193-1 kdenetwork	2002-11-11
    korn	2.2.2-14.2	powerpc	DSA-193-1 kdenetwork	2002-11-11
    kppp	2.2.2-14.2	powerpc	DSA-193-1 kdenetwork	2002-11-11
    ksirc	2.2.2-14.2	powerpc	DSA-193-1 kdenetwork	2002-11-11
    ktalkd	2.2.2-14.2	powerpc	DSA-193-1 kdenetwork	2002-11-11
    libkdenetwork1	2.2.2-14.2	powerpc	DSA-193-1 kdenetwork	2002-11-11
    libmimelib-dev	2.2.2-14.2	powerpc	DSA-193-1 kdenetwork	2002-11-11
    libmimelib1	2.2.2-14.2	powerpc	DSA-193-1 kdenetwork	2002-11-11
    kdict	2.2.2-14.2	s390	DSA-193-1 kdenetwork	2002-11-11
    kit	2.2.2-14.2	s390	DSA-193-1 kdenetwork	2002-11-11
    klisa	2.2.2-14.2	s390	DSA-193-1 kdenetwork	2002-11-11
    kmail	2.2.2-14.2	s390	DSA-193-1 kdenetwork	2002-11-11
    knewsticker	2.2.2-14.2	s390	DSA-193-1 kdenetwork	2002-11-11
    knode	2.2.2-14.2	s390	DSA-193-1 kdenetwork	2002-11-11
    korn	2.2.2-14.2	s390	DSA-193-1 kdenetwork	2002-11-11
    kppp	2.2.2-14.2	s390	DSA-193-1 kdenetwork	2002-11-11
    ksirc	2.2.2-14.2	s390	DSA-193-1 kdenetwork	2002-11-11
    ktalkd	2.2.2-14.2	s390	DSA-193-1 kdenetwork	2002-11-11
    libkdenetwork1	2.2.2-14.2	s390	DSA-193-1 kdenetwork	2002-11-11
    libmimelib-dev	2.2.2-14.2	s390	DSA-193-1 kdenetwork	2002-11-11
    libmimelib1	2.2.2-14.2	s390	DSA-193-1 kdenetwork	2002-11-11
    kdict	2.2.2-14.2	sparc	DSA-193-1 kdenetwork	2002-11-11
    kit	2.2.2-14.2	sparc	DSA-193-1 kdenetwork	2002-11-11
    klisa	2.2.2-14.2	sparc	DSA-193-1 kdenetwork	2002-11-11
    kmail	2.2.2-14.2	sparc	DSA-193-1 kdenetwork	2002-11-11
    knewsticker	2.2.2-14.2	sparc	DSA-193-1 kdenetwork	2002-11-11
    knode	2.2.2-14.2	sparc	DSA-193-1 kdenetwork	2002-11-11
    korn	2.2.2-14.2	sparc	DSA-193-1 kdenetwork	2002-11-11
    kppp	2.2.2-14.2	sparc	DSA-193-1 kdenetwork	2002-11-11
    ksirc	2.2.2-14.2	sparc	DSA-193-1 kdenetwork	2002-11-11
    ktalkd	2.2.2-14.2	sparc	DSA-193-1 kdenetwork	2002-11-11
    libkdenetwork1	2.2.2-14.2	sparc	DSA-193-1 kdenetwork	2002-11-11
    libmimelib-dev	2.2.2-14.2	sparc	DSA-193-1 kdenetwork	2002-11-11
    libmimelib1	2.2.2-14.2	sparc	DSA-193-1 kdenetwork	2002-11-11
    squirrelmail	1.2.6-1.2	all	DSA-191-1 squirrelmail	2002-11-7
    luxman	0.41-17.1	i386	DSA-189-1 luxman	2002-11-6
    im	133-2.3	all	DSA-202-1 im	2002-12-3
    im	141-18.2	all	DSA-202-1 im	2002-12-3
    super	3.12.2-2.1	alpha	DSA-139-1 super	2002-8-1
    super	3.12.2-2.1	arm	DSA-139-1 super	2002-8-1
    super	3.12.2-2.1	i386	DSA-139-1 super	2002-8-1
    super	3.12.2-2.1	m68k	DSA-139-1 super	2002-8-1
    super	3.12.2-2.1	powerpc	DSA-139-1 super	2002-8-1
    super	3.12.2-2.1	sparc	DSA-139-1 super	2002-8-1
    super	3.16.1-1.1	alpha	DSA-139-1 super	2002-8-1
    super	3.16.1-1.1	i386	DSA-139-1 super	2002-8-1
    super	3.16.1-1.1	ia64	DSA-139-1 super	2002-8-1
    super	3.16.1-1.1	hppa	DSA-139-1 super	2002-8-1
    super	3.16.1-1.1	m68k	DSA-139-1 super	2002-8-1
    super	3.16.1-1.1	mips	DSA-139-1 super	2002-8-1
    super	3.16.1-1.1	mipsel	DSA-139-1 super	2002-8-1
    super	3.16.1-1.1	s390	DSA-139-1 super	2002-8-1
    super	3.16.1-1.1	powerpc	DSA-139-1 super	2002-8-1
    super	3.16.1-1.1	sparc	DSA-139-1 super	2002-8-1
    masqmail	0.1.16-2.1	alpha	DSA-194-1 masqmail	2002-11-12
    masqmail	0.1.16-2.1	arm	DSA-194-1 masqmail	2002-11-12
    masqmail	0.1.16-2.1	i386	DSA-194-1 masqmail	2002-11-12
    masqmail	0.1.16-2.1	ia64	DSA-194-1 masqmail	2002-11-12
    masqmail	0.1.16-2.1	hppa	DSA-194-1 masqmail	2002-11-12
    masqmail	0.1.16-2.1	m68k	DSA-194-1 masqmail	2002-11-12
    masqmail	0.1.16-2.1	mips	DSA-194-1 masqmail	2002-11-12
    masqmail	0.1.16-2.1	mipsel	DSA-194-1 masqmail	2002-11-12
    masqmail	0.1.16-2.1	powerpc	DSA-194-1 masqmail	2002-11-12
    masqmail	0.1.16-2.1	s390	DSA-194-1 masqmail	2002-11-12
    masqmail	0.1.16-2.1	sparc	DSA-194-1 masqmail	2002-11-12
    glibc-doc	2.1.3-20	all	DSA-103-1 glibc	2002-1-13
    i18ndata	2.1.3-20	all	DSA-103-1 glibc	2002-1-13
    libnss1-compat	2.1.3-20	alpha	DSA-103-1 glibc	2002-1-13
    locales	2.1.3-20	alpha	DSA-103-1 glibc	2002-1-13
    nscd	2.1.3-20	alpha	DSA-103-1 glibc	2002-1-13
    libc6-dbg	2.1.3-20	arm	DSA-103-1 glibc	2002-1-13
    libc6-dev	2.1.3-20	arm	DSA-103-1 glibc	2002-1-13
    libc6-pic	2.1.3-20	arm	DSA-103-1 glibc	2002-1-13
    libc6-prof	2.1.3-20	arm	DSA-103-1 glibc	2002-1-13
    libc6	2.1.3-20	arm	DSA-103-1 glibc	2002-1-13
    locales	2.1.3-20	arm	DSA-103-1 glibc	2002-1-13
    nscd	2.1.3-20	arm	DSA-103-1 glibc	2002-1-13
    libc6-dbg	2.1.3-20	i386	DSA-103-1 glibc	2002-1-13
    libc6-dev	2.1.3-20	i386	DSA-103-1 glibc	2002-1-13
    libc6-pic	2.1.3-20	i386	DSA-103-1 glibc	2002-1-13
    libc6-prof	2.1.3-20	i386	DSA-103-1 glibc	2002-1-13
    libc6	2.1.3-20	i386	DSA-103-1 glibc	2002-1-13
    libnss1-compat	2.1.3-20	i386	DSA-103-1 glibc	2002-1-13
    locales	2.1.3-20	i386	DSA-103-1 glibc	2002-1-13
    nscd	2.1.3-20	i386	DSA-103-1 glibc	2002-1-13
    libc6-dbg	2.1.3-20	m68k	DSA-103-1 glibc	2002-1-13
    libc6-dev	2.1.3-20	m68k	DSA-103-1 glibc	2002-1-13
    libc6-pic	2.1.3-20	m68k	DSA-103-1 glibc	2002-1-13
    libc6-prof	2.1.3-20	m68k	DSA-103-1 glibc	2002-1-13
    libc6	2.1.3-20	m68k	DSA-103-1 glibc	2002-1-13
    libnss1-compat	2.1.3-20	m68k	DSA-103-1 glibc	2002-1-13
    locales	2.1.3-20	m68k	DSA-103-1 glibc	2002-1-13
    nscd	2.1.3-20	m68k	DSA-103-1 glibc	2002-1-13
    libc6-dbg	2.1.3-20	powerpc	DSA-103-1 glibc	2002-1-13
    libc6-dev	2.1.3-20	powerpc	DSA-103-1 glibc	2002-1-13
    libc6-pic	2.1.3-20	powerpc	DSA-103-1 glibc	2002-1-13
    libc6-prof	2.1.3-20	powerpc	DSA-103-1 glibc	2002-1-13
    libc6	2.1.3-20	powerpc	DSA-103-1 glibc	2002-1-13
    locales	2.1.3-20	powerpc	DSA-103-1 glibc	2002-1-13
    nscd	2.1.3-20	powerpc	DSA-103-1 glibc	2002-1-13
    libc6-dbg	2.1.3-20	sparc	DSA-103-1 glibc	2002-1-13
    libc6-dev	2.1.3-20	sparc	DSA-103-1 glibc	2002-1-13
    libc6-pic	2.1.3-20	sparc	DSA-103-1 glibc	2002-1-13
    libc6-prof	2.1.3-20	sparc	DSA-103-1 glibc	2002-1-13
    libc6	2.1.3-20	sparc	DSA-103-1 glibc	2002-1-13
    locales	2.1.3-20	sparc	DSA-103-1 glibc	2002-1-13
    nscd	2.1.3-20	sparc	DSA-103-1 glibc	2002-1-13
    nis	3.8-2.1	alpha	DSA-180-1 nis	2002-10-21
    nis	3.8-2.1	arm	DSA-180-1 nis	2002-10-21
    nis	3.8-2.1	i386	DSA-180-1 nis	2002-10-21
    nis	3.8-2.1	m68k	DSA-180-1 nis	2002-10-21
    nis	3.8-2.1	powerpc	DSA-180-1 nis	2002-10-21
    nis	3.8-2.1	sparc	DSA-180-1 nis	2002-10-21
    nis	3.9-6.1	alpha	DSA-180-1 nis	2002-10-21
    nis	3.9-6.1	arm	DSA-180-1 nis	2002-10-21
    nis	3.9-6.1	i386	DSA-180-1 nis	2002-10-21
    nis	3.9-6.1	ia64	DSA-180-1 nis	2002-10-21
    nis	3.9-6.1	hppa	DSA-180-1 nis	2002-10-21
    nis	3.9-6.1	m68k	DSA-180-1 nis	2002-10-21
    nis	3.9-6.1	mips	DSA-180-1 nis	2002-10-21
    nis	3.9-6.1	mipsel	DSA-180-1 nis	2002-10-21
    nis	3.9-6.1	powerpc	DSA-180-1 nis	2002-10-21
    nis	3.9-6.1	s390	DSA-180-1 nis	2002-10-21
    nis	3.9-6.1	sparc	DSA-180-1 nis	2002-10-21
    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
    idle	2.1.3-3.2	all	DSA-159-1 python	2002-8-28
    python-dev	2.1.3-3.2	all	DSA-159-1 python	2002-8-28
    python-doc	2.1.3-3.2	all	DSA-159-1 python	2002-8-28
    python-elisp	2.1.3-3.2	all	DSA-159-1 python	2002-8-28
    python-examples	2.1.3-3.2	all	DSA-159-1 python	2002-8-28
    python-gdbm	2.1.3-3.2	all	DSA-159-1 python	2002-8-28
    python-mpz	2.1.3-3.2	all	DSA-159-1 python	2002-8-28
    python-tk	2.1.3-3.2	all	DSA-159-1 python	2002-8-28
    python-xmlbase	2.1.3-3.2	all	DSA-159-1 python	2002-8-28
    python	2.1.3-3.2	all	DSA-159-1 python	2002-8-28
    typespeed	0.4.0-5.1	alpha	DSA-217-1 typespeed	2002-12-27
    typespeed	0.4.0-5.1	arm	DSA-217-1 typespeed	2002-12-27
    typespeed	0.4.0-5.1	i386	DSA-217-1 typespeed	2002-12-27
    typespeed	0.4.0-5.1	m68k	DSA-217-1 typespeed	2002-12-27
    typespeed	0.4.0-5.1	powerpc	DSA-217-1 typespeed	2002-12-27
    typespeed	0.4.0-5.1	sparc	DSA-217-1 typespeed	2002-12-27
    typespeed	0.4.1-2.1	alpha	DSA-217-1 typespeed	2002-12-27
    typespeed	0.4.1-2.1	arm	DSA-217-1 typespeed	2002-12-27
    typespeed	0.4.1-2.1	i386	DSA-217-1 typespeed	2002-12-27
    typespeed	0.4.1-2.1	ia64	DSA-217-1 typespeed	2002-12-27
    typespeed	0.4.1-2.1	hppa	DSA-217-1 typespeed	2002-12-27
    typespeed	0.4.1-2.1	m68k	DSA-217-1 typespeed	2002-12-27
    typespeed	0.4.1-2.1	mips	DSA-217-1 typespeed	2002-12-27
    typespeed	0.4.1-2.1	mipsel	DSA-217-1 typespeed	2002-12-27
    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
    erlang-base	49.1-10.1	all	DSA-122-1 zlib	2002-3-11
    erlang-erl	49.1-10.1	all	DSA-122-1 zlib	2002-3-11
    erlang-java	49.1-10.1	all	DSA-122-1 zlib	2002-3-11
    freeamp-doc	2.0.6-2.1	all	DSA-122-1 zlib	2002-3-11
    mirrordir	0.10.48-2.1	alpha	DSA-122-1 zlib	2002-3-11
    ppp	2.3.11-1.5	alpha	DSA-122-1 zlib	2002-3-11
    rsync	2.3.2-1.6	alpha	DSA-122-1 zlib	2002-3-11
    vrweb	1.5-5.1	alpha	DSA-122-1 zlib	2002-3-11
    zlib-bin	1.1.3-5.1	alpha	DSA-122-1 zlib	2002-3-11
    zlib1g-dev	1.1.3-5.1	alpha	DSA-122-1 zlib	2002-3-11
    zlib1g	1.1.3-5.1	alpha	DSA-122-1 zlib	2002-3-11
    mirrordir	0.10.48-2.1	arm	DSA-122-1 zlib	2002-3-11
    ppp	2.3.11-1.5	arm	DSA-122-1 zlib	2002-3-11
    rsync	2.3.2-1.6	arm	DSA-122-1 zlib	2002-3-11
    vrweb	1.5-5.1	arm	DSA-122-1 zlib	2002-3-11
    zlib-bin	1.1.3-5.1	arm	DSA-122-1 zlib	2002-3-11
    zlib1g-dev	1.1.3-5.1	arm	DSA-122-1 zlib	2002-3-11
    zlib1g	1.1.3-5.1	arm	DSA-122-1 zlib	2002-3-11
    erlang	49.1-10.1	i386	DSA-122-1 zlib	2002-3-11
    freeamp	2.0.6-2.1	i386	DSA-122-1 zlib	2002-3-11
    libfreeamp-alsa	2.0.6-2.1	i386	DSA-122-1 zlib	2002-3-11
    libfreeamp-esound	2.0.6-2.1	i386	DSA-122-1 zlib	2002-3-11
    mirrordir	0.10.48-2.1	i386	DSA-122-1 zlib	2002-3-11
    ppp	2.3.11-1.5	i386	DSA-122-1 zlib	2002-3-11
    rsync	2.3.2-1.6	i386	DSA-122-1 zlib	2002-3-11
    vrweb	1.5-5.1	i386	DSA-122-1 zlib	2002-3-11
    zlib-bin	1.1.3-5.1	i386	DSA-122-1 zlib	2002-3-11
    zlib1-altdev	1.1.3-5.1	i386	DSA-122-1 zlib	2002-3-11
    zlib1	1.1.3-5.1	i386	DSA-122-1 zlib	2002-3-11
    zlib1g-dev	1.1.3-5.1	i386	DSA-122-1 zlib	2002-3-11
    zlib1g	1.1.3-5.1	i386	DSA-122-1 zlib	2002-3-11
    mirrordir	0.10.48-2.1	m68k	DSA-122-1 zlib	2002-3-11
    ppp	2.3.11-1.5	m68k	DSA-122-1 zlib	2002-3-11
    rsync	2.3.2-1.6	m68k	DSA-122-1 zlib	2002-3-11
    zlib-bin	1.1.3-5.1	m68k	DSA-122-1 zlib	2002-3-11
    zlib1-altdev	1.1.3-5.1	m68k	DSA-122-1 zlib	2002-3-11
    zlib1	1.1.3-5.1	m68k	DSA-122-1 zlib	2002-3-11
    zlib1g-dev	1.1.3-5.1	m68k	DSA-122-1 zlib	2002-3-11
    zlib1g	1.1.3-5.1	m68k	DSA-122-1 zlib	2002-3-11
    erlang	49.1-10.1	powerpc	DSA-122-1 zlib	2002-3-11
    freeamp	2.0.6-2.1	powerpc	DSA-122-1 zlib	2002-3-11
    libfreeamp-alsa	2.0.6-2.1	powerpc	DSA-122-1 zlib	2002-3-11
    libfreeamp-esound	2.0.6-2.1	powerpc	DSA-122-1 zlib	2002-3-11
    ppp	2.3.11-1.5	powerpc	DSA-122-1 zlib	2002-3-11
    rsync	2.3.2-1.6	powerpc	DSA-122-1 zlib	2002-3-11
    vrweb	1.5-5.1	powerpc	DSA-122-1 zlib	2002-3-11
    zlib-bin	1.1.3-5.1	powerpc	DSA-122-1 zlib	2002-3-11
    zlib1g-dev	1.1.3-5.1	powerpc	DSA-122-1 zlib	2002-3-11
    zlib1g	1.1.3-5.1	powerpc	DSA-122-1 zlib	2002-3-11
    freeamp	2.0.6-2.1	sparc	DSA-122-1 zlib	2002-3-11
    libfreeamp-alsa	2.0.6-2.1	sparc	DSA-122-1 zlib	2002-3-11
    libfreeamp-esound	2.0.6-2.1	sparc	DSA-122-1 zlib	2002-3-11
    mirrordir	0.10.48-2.1	sparc	DSA-122-1 zlib	2002-3-11
    ppp	2.3.11-1.5	sparc	DSA-122-1 zlib	2002-3-11
    rsync	2.3.2-1.6	sparc	DSA-122-1 zlib	2002-3-11
    vrweb	1.5-5.1	sparc	DSA-122-1 zlib	2002-3-11
    zlib-bin	1.1.3-5.1	sparc	DSA-122-1 zlib	2002-3-11
    zlib1g-dev	1.1.3-5.1	sparc	DSA-122-1 zlib	2002-3-11
    zlib1g	1.1.3-5.1	sparc	DSA-122-1 zlib	2002-3-11
    lynx-ssl	2.8.3.1-1.1	alpha	DSA-210-1 lynx	2002-12-13
    lynx	2.8.3-1.1	alpha	DSA-210-1 lynx	2002-12-13
    lynx-ssl	2.8.3.1-1.1	arm	DSA-210-1 lynx	2002-12-13
    lynx	2.8.3-1.1	arm	DSA-210-1 lynx	2002-12-13
    lynx	2.8.3-1.1	i386	DSA-210-1 lynx	2002-12-13
    lynx-ssl	2.8.3.1-1.1	i386	DSA-210-1 lynx	2002-12-13
    lynx	2.8.3-1.1	m68k	DSA-210-1 lynx	2002-12-13
    lynx-ssl	2.8.3.1-1.1	m68k	DSA-210-1 lynx	2002-12-13
    lynx-ssl	2.8.3.1-1.1	powerpc	DSA-210-1 lynx	2002-12-13
    lynx	2.8.3-1.1	powerpc	DSA-210-1 lynx	2002-12-13
    lynx	2.8.3-1.1	sparc	DSA-210-1 lynx	2002-12-13
    lynx-ssl	2.8.3.1-1.1	sparc	DSA-210-1 lynx	2002-12-13
    dietlibc-doc	0.12-2.4	all	DSA-146-2 dietlibc	2002-8-8
    dietlibc-dev	0.12-2.4	alpha	DSA-146-2 dietlibc	2002-8-8
    dietlibc-dev	0.12-2.4	arm	DSA-146-2 dietlibc	2002-8-8
    dietlibc-dev	0.12-2.4	i386	DSA-146-2 dietlibc	2002-8-8
    dietlibc-dev	0.12-2.4	mips	DSA-146-2 dietlibc	2002-8-8
    dietlibc-dev	0.12-2.4	mipsel	DSA-146-2 dietlibc	2002-8-8
    dietlibc-dev	0.12-2.4	powerpc	DSA-146-2 dietlibc	2002-8-8
    dietlibc-dev	0.12-2.4	sparc	DSA-146-2 dietlibc	2002-8-8
    purity	1-9.1	alpha	DSA-166-1 purity	2002-9-13
    purity	1-9.1	arm	DSA-166-1 purity	2002-9-13
    purity	1-9.1	i386	DSA-166-1 purity	2002-9-13
    purity	1-9.1	m68k	DSA-166-1 purity	2002-9-13
    purity	1-9.1	powerpc	DSA-166-1 purity	2002-9-13
    purity	1-9.1	sparc	DSA-166-1 purity	2002-9-13
    purity	1-14.2	alpha	DSA-166-1 purity	2002-9-13
    purity	1-14.2	arm	DSA-166-1 purity	2002-9-13
    purity	1-14.2	i386	DSA-166-1 purity	2002-9-13
    purity	1-14.2	ia64	DSA-166-1 purity	2002-9-13
    purity	1-14.2	hppa	DSA-166-1 purity	2002-9-13
    purity	1-14.2	m68k	DSA-166-1 purity	2002-9-13
    purity	1-14.2	mips	DSA-166-1 purity	2002-9-13
    purity	1-14.2	mipsel	DSA-166-1 purity	2002-9-13
    purity	1-14.2	powerpc	DSA-166-1 purity	2002-9-13
    purity	1-14.2	s390	DSA-166-1 purity	2002-9-13
    purity	1-14.2	sparc	DSA-166-1 purity	2002-9-13
    smb2www	980804-8.1	all	DSA-203-1 smb2www	2002-12-4
    smb2www	980804-16.1	all	DSA-203-1 smb2www	2002-12-4
    kamera	2.2.2-6.8	alpha	DSA-182-1 kdegraphics	2002-10-28
    kcoloredit	2.2.2-6.8	alpha	DSA-182-1 kdegraphics	2002-10-28
    kfract	2.2.2-6.8	alpha	DSA-182-1 kdegraphics	2002-10-28
    kghostview	2.2.2-6.8	alpha	DSA-182-1 kdegraphics	2002-10-28
    kiconedit	2.2.2-6.8	alpha	DSA-182-1 kdegraphics	2002-10-28
    kooka	2.2.2-6.8	alpha	DSA-182-1 kdegraphics	2002-10-28
    kpaint	2.2.2-6.8	alpha	DSA-182-1 kdegraphics	2002-10-28
    kruler	2.2.2-6.8	alpha	DSA-182-1 kdegraphics	2002-10-28
    ksnapshot	2.2.2-6.8	alpha	DSA-182-1 kdegraphics	2002-10-28
    kview	2.2.2-6.8	alpha	DSA-182-1 kdegraphics	2002-10-28
    libkscan-dev	2.2.2-6.8	alpha	DSA-182-1 kdegraphics	2002-10-28
    libkscan1	2.2.2-6.8	alpha	DSA-182-1 kdegraphics	2002-10-28
    kamera	2.2.2-6.8	arm	DSA-182-1 kdegraphics	2002-10-28
    kcoloredit	2.2.2-6.8	arm	DSA-182-1 kdegraphics	2002-10-28
    kfract	2.2.2-6.8	arm	DSA-182-1 kdegraphics	2002-10-28
    kghostview	2.2.2-6.8	arm	DSA-182-1 kdegraphics	2002-10-28
    kiconedit	2.2.2-6.8	arm	DSA-182-1 kdegraphics	2002-10-28
    kooka	2.2.2-6.8	arm	DSA-182-1 kdegraphics	2002-10-28
    kpaint	2.2.2-6.8	arm	DSA-182-1 kdegraphics	2002-10-28
    kruler	2.2.2-6.8	arm	DSA-182-1 kdegraphics	2002-10-28
    ksnapshot	2.2.2-6.8	arm	DSA-182-1 kdegraphics	2002-10-28
    kview	2.2.2-6.8	arm	DSA-182-1 kdegraphics	2002-10-28
    libkscan-dev	2.2.2-6.8	arm	DSA-182-1 kdegraphics	2002-10-28
    libkscan1	2.2.2-6.8	arm	DSA-182-1 kdegraphics	2002-10-28
    kamera	2.2.2-6.8	i386	DSA-182-1 kdegraphics	2002-10-28
    kcoloredit	2.2.2-6.8	i386	DSA-182-1 kdegraphics	2002-10-28
    kfract	2.2.2-6.8	i386	DSA-182-1 kdegraphics	2002-10-28
    kghostview	2.2.2-6.8	i386	DSA-182-1 kdegraphics	2002-10-28
    kiconedit	2.2.2-6.8	i386	DSA-182-1 kdegraphics	2002-10-28
    kooka	2.2.2-6.8	i386	DSA-182-1 kdegraphics	2002-10-28
    kpaint	2.2.2-6.8	i386	DSA-182-1 kdegraphics	2002-10-28
    kruler	2.2.2-6.8	i386	DSA-182-1 kdegraphics	2002-10-28
    ksnapshot	2.2.2-6.8	i386	DSA-182-1 kdegraphics	2002-10-28
    kview	2.2.2-6.8	i386	DSA-182-1 kdegraphics	2002-10-28
    libkscan-dev	2.2.2-6.8	i386	DSA-182-1 kdegraphics	2002-10-28
    libkscan1	2.2.2-6.8	i386	DSA-182-1 kdegraphics	2002-10-28
    kamera	2.2.2-6.8	ia64	DSA-182-1 kdegraphics	2002-10-28
    kcoloredit	2.2.2-6.8	ia64	DSA-182-1 kdegraphics	2002-10-28
    kfract	2.2.2-6.8	ia64	DSA-182-1 kdegraphics	2002-10-28
    kghostview	2.2.2-6.8	ia64	DSA-182-1 kdegraphics	2002-10-28
    kiconedit	2.2.2-6.8	ia64	DSA-182-1 kdegraphics	2002-10-28
    kooka	2.2.2-6.8	ia64	DSA-182-1 kdegraphics	2002-10-28
    kpaint	2.2.2-6.8	ia64	DSA-182-1 kdegraphics	2002-10-28
    kruler	2.2.2-6.8	ia64	DSA-182-1 kdegraphics	2002-10-28
    ksnapshot	2.2.2-6.8	ia64	DSA-182-1 kdegraphics	2002-10-28
    kview	2.2.2-6.8	ia64	DSA-182-1 kdegraphics	2002-10-28
    libkscan-dev	2.2.2-6.8	ia64	DSA-182-1 kdegraphics	2002-10-28
    libkscan1	2.2.2-6.8	ia64	DSA-182-1 kdegraphics	2002-10-28
    kamera	2.2.2-6.8	hppa	DSA-182-1 kdegraphics	2002-10-28
    kcoloredit	2.2.2-6.8	hppa	DSA-182-1 kdegraphics	2002-10-28
    kfract	2.2.2-6.8	hppa	DSA-182-1 kdegraphics	2002-10-28
    kghostview	2.2.2-6.8	hppa	DSA-182-1 kdegraphics	2002-10-28
    kiconedit	2.2.2-6.8	hppa	DSA-182-1 kdegraphics	2002-10-28
    kpaint	2.2.2-6.8	hppa	DSA-182-1 kdegraphics	2002-10-28
    kruler	2.2.2-6.8	hppa	DSA-182-1 kdegraphics	2002-10-28
    ksnapshot	2.2.2-6.8	hppa	DSA-182-1 kdegraphics	2002-10-28
    kview	2.2.2-6.8	hppa	DSA-182-1 kdegraphics	2002-10-28
    kamera	2.2.2-6.8	m68k	DSA-182-1 kdegraphics	2002-10-28
    kcoloredit	2.2.2-6.8	m68k	DSA-182-1 kdegraphics	2002-10-28
    kfract	2.2.2-6.8	m68k	DSA-182-1 kdegraphics	2002-10-28
    kghostview	2.2.2-6.8	m68k	DSA-182-1 kdegraphics	2002-10-28
    kiconedit	2.2.2-6.8	m68k	DSA-182-1 kdegraphics	2002-10-28
    kooka	2.2.2-6.8	m68k	DSA-182-1 kdegraphics	2002-10-28
    kpaint	2.2.2-6.8	m68k	DSA-182-1 kdegraphics	2002-10-28
    kruler	2.2.2-6.8	m68k	DSA-182-1 kdegraphics	2002-10-28
    ksnapshot	2.2.2-6.8	m68k	DSA-182-1 kdegraphics	2002-10-28
    kview	2.2.2-6.8	m68k	DSA-182-1 kdegraphics	2002-10-28
    libkscan-dev	2.2.2-6.8	m68k	DSA-182-1 kdegraphics	2002-10-28
    libkscan1	2.2.2-6.8	m68k	DSA-182-1 kdegraphics	2002-10-28
    kamera	2.2.2-6.8	mips	DSA-182-1 kdegraphics	2002-10-28
    kcoloredit	2.2.2-6.8	mips	DSA-182-1 kdegraphics	2002-10-28
    kfract	2.2.2-6.8	mips	DSA-182-1 kdegraphics	2002-10-28
    kghostview	2.2.2-6.8	mips	DSA-182-1 kdegraphics	2002-10-28
    kiconedit	2.2.2-6.8	mips	DSA-182-1 kdegraphics	2002-10-28
    kooka	2.2.2-6.8	mips	DSA-182-1 kdegraphics	2002-10-28
    kpaint	2.2.2-6.8	mips	DSA-182-1 kdegraphics	2002-10-28
    kruler	2.2.2-6.8	mips	DSA-182-1 kdegraphics	2002-10-28
    ksnapshot	2.2.2-6.8	mips	DSA-182-1 kdegraphics	2002-10-28
    kview	2.2.2-6.8	mips	DSA-182-1 kdegraphics	2002-10-28
    libkscan-dev	2.2.2-6.8	mips	DSA-182-1 kdegraphics	2002-10-28
    libkscan1	2.2.2-6.8	mips	DSA-182-1 kdegraphics	2002-10-28
    kamera	2.2.2-6.8	mipsel	DSA-182-1 kdegraphics	2002-10-28
    kcoloredit	2.2.2-6.8	mipsel	DSA-182-1 kdegraphics	2002-10-28
    kfract	2.2.2-6.8	mipsel	DSA-182-1 kdegraphics	2002-10-28
    kghostview	2.2.2-6.8	mipsel	DSA-182-1 kdegraphics	2002-10-28
    kiconedit	2.2.2-6.8	mipsel	DSA-182-1 kdegraphics	2002-10-28
    kooka	2.2.2-6.8	mipsel	DSA-182-1 kdegraphics	2002-10-28
    kpaint	2.2.2-6.8	mipsel	DSA-182-1 kdegraphics	2002-10-28
    kruler	2.2.2-6.8	mipsel	DSA-182-1 kdegraphics	2002-10-28
    ksnapshot	2.2.2-6.8	mipsel	DSA-182-1 kdegraphics	2002-10-28
    kview	2.2.2-6.8	mipsel	DSA-182-1 kdegraphics	2002-10-28
    libkscan-dev	2.2.2-6.8	mipsel	DSA-182-1 kdegraphics	2002-10-28
    libkscan1	2.2.2-6.8	mipsel	DSA-182-1 kdegraphics	2002-10-28
    kamera	2.2.2-6.8	powerpc	DSA-182-1 kdegraphics	2002-10-28
    kcoloredit	2.2.2-6.8	powerpc	DSA-182-1 kdegraphics	2002-10-28
    kfract	2.2.2-6.8	powerpc	DSA-182-1 kdegraphics	2002-10-28
    kghostview	2.2.2-6.8	powerpc	DSA-182-1 kdegraphics	2002-10-28
    kiconedit	2.2.2-6.8	powerpc	DSA-182-1 kdegraphics	2002-10-28
    kooka	2.2.2-6.8	powerpc	DSA-182-1 kdegraphics	2002-10-28
    kpaint	2.2.2-6.8	powerpc	DSA-182-1 kdegraphics	2002-10-28
    kruler	2.2.2-6.8	powerpc	DSA-182-1 kdegraphics	2002-10-28
    ksnapshot	2.2.2-6.8	powerpc	DSA-182-1 kdegraphics	2002-10-28
    kview	2.2.2-6.8	powerpc	DSA-182-1 kdegraphics	2002-10-28
    libkscan-dev	2.2.2-6.8	powerpc	DSA-182-1 kdegraphics	2002-10-28
    libkscan1	2.2.2-6.8	powerpc	DSA-182-1 kdegraphics	2002-10-28
    kamera	2.2.2-6.8	s390	DSA-182-1 kdegraphics	2002-10-28
    kcoloredit	2.2.2-6.8	s390	DSA-182-1 kdegraphics	2002-10-28
    kfract	2.2.2-6.8	s390	DSA-182-1 kdegraphics	2002-10-28
    kghostview	2.2.2-6.8	s390	DSA-182-1 kdegraphics	2002-10-28
    kiconedit	2.2.2-6.8	s390	DSA-182-1 kdegraphics	2002-10-28
    kooka	2.2.2-6.8	s390	DSA-182-1 kdegraphics	2002-10-28
    kpaint	2.2.2-6.8	s390	DSA-182-1 kdegraphics	2002-10-28
    kruler	2.2.2-6.8	s390	DSA-182-1 kdegraphics	2002-10-28
    ksnapshot	2.2.2-6.8	s390	DSA-182-1 kdegraphics	2002-10-28
    kview	2.2.2-6.8	s390	DSA-182-1 kdegraphics	2002-10-28
    libkscan-dev	2.2.2-6.8	s390	DSA-182-1 kdegraphics	2002-10-28
    libkscan1	2.2.2-6.8	s390	DSA-182-1 kdegraphics	2002-10-28
    kamera	2.2.2-6.8	sparc	DSA-182-1 kdegraphics	2002-10-28
    kcoloredit	2.2.2-6.8	sparc	DSA-182-1 kdegraphics	2002-10-28
    kfract	2.2.2-6.8	sparc	DSA-182-1 kdegraphics	2002-10-28
    kghostview	2.2.2-6.8	sparc	DSA-182-1 kdegraphics	2002-10-28
    kiconedit	2.2.2-6.8	sparc	DSA-182-1 kdegraphics	2002-10-28
    kooka	2.2.2-6.8	sparc	DSA-182-1 kdegraphics	2002-10-28
    kpaint	2.2.2-6.8	sparc	DSA-182-1 kdegraphics	2002-10-28
    kruler	2.2.2-6.8	sparc	DSA-182-1 kdegraphics	2002-10-28
    ksnapshot	2.2.2-6.8	sparc	DSA-182-1 kdegraphics	2002-10-28
    kview	2.2.2-6.8	sparc	DSA-182-1 kdegraphics	2002-10-28
    libkscan-dev	2.2.2-6.8	sparc	DSA-182-1 kdegraphics	2002-10-28
    libkscan1	2.2.2-6.8	sparc	DSA-182-1 kdegraphics	2002-10-28
    syslog-ng	1.5.15-1.1	alpha	DSA-175-1 syslog-ng	2002-10-15
    syslog-ng	1.5.15-1.1	arm	DSA-175-1 syslog-ng	2002-10-15
    syslog-ng	1.5.15-1.1	i386	DSA-175-1 syslog-ng	2002-10-15
    syslog-ng	1.5.15-1.1	ia64	DSA-175-1 syslog-ng	2002-10-15
    syslog-ng	1.5.15-1.1	hppa	DSA-175-1 syslog-ng	2002-10-15
    syslog-ng	1.5.15-1.1	m68k	DSA-175-1 syslog-ng	2002-10-15
    syslog-ng	1.5.15-1.1	mips	DSA-175-1 syslog-ng	2002-10-15
    syslog-ng	1.5.15-1.1	mipsel	DSA-175-1 syslog-ng	2002-10-15
    syslog-ng	1.5.15-1.1	powerpc	DSA-175-1 syslog-ng	2002-10-15
    syslog-ng	1.5.15-1.1	s390	DSA-175-1 syslog-ng	2002-10-15
    syslog-ng	1.5.15-1.1	sparc	DSA-175-1 syslog-ng	2002-10-15
    libapache-mod-ssl-doc	2.8.9-2.1	all	DSA-181-1 libapache-mod-ssl	2002-10-22
    libapache-mod-ssl	2.8.9-2.1	alpha	DSA-181-1 libapache-mod-ssl	2002-10-22
    libapache-mod-ssl	2.8.9-2.1	arm	DSA-181-1 libapache-mod-ssl	2002-10-22
    libapache-mod-ssl	2.8.9-2.1	i386	DSA-181-1 libapache-mod-ssl	2002-10-22
    libapache-mod-ssl	2.8.9-2.1	ia64	DSA-181-1 libapache-mod-ssl	2002-10-22
    libapache-mod-ssl	2.8.9-2.1	hppa	DSA-181-1 libapache-mod-ssl	2002-10-22
    libapache-mod-ssl	2.8.9-2.1	m68k	DSA-181-1 libapache-mod-ssl	2002-10-22
    libapache-mod-ssl	2.8.9-2.1	mips	DSA-181-1 libapache-mod-ssl	2002-10-22
    libapache-mod-ssl	2.8.9-2.1	mipsel	DSA-181-1 libapache-mod-ssl	2002-10-22
    libapache-mod-ssl	2.8.9-2.1	powerpc	DSA-181-1 libapache-mod-ssl	2002-10-22
    libapache-mod-ssl	2.8.9-2.1	s390	DSA-181-1 libapache-mod-ssl	2002-10-22
    libapache-mod-ssl	2.8.9-2.1	sparc	DSA-181-1 libapache-mod-ssl	2002-10-22
    mhonarc	2.4.4-1.2	all	DSA-199-1 mhonarc	2002-11-19
    mhonarc	2.5.2-1.2	all	DSA-199-1 mhonarc	2002-11-19
    mailman	1.1-10.1	alpha	DSA-147-1 mailman	2002-8-8
    mailman	1.1-10.1	arm	DSA-147-1 mailman	2002-8-8
    mailman	1.1-10.1	i386	DSA-147-1 mailman	2002-8-8
    mailman	1.1-10.1	m68k	DSA-147-1 mailman	2002-8-8
    mailman	1.1-10.1	powerpc	DSA-147-1 mailman	2002-8-8
    mailman	1.1-10.1	sparc	DSA-147-1 mailman	2002-8-8
    gzip	1.2.4-33.1	alpha	DSA-100-1 gzip	2002-1-13
    gzip	1.2.4-33.1	arm	DSA-100-1 gzip	2002-1-13
    gzip	1.2.4-33.1	i386	DSA-100-1 gzip	2002-1-13
    gzip	1.2.4-33.1	m68k	DSA-100-1 gzip	2002-1-13
    gzip	1.2.4-33.1	powerpc	DSA-100-1 gzip	2002-1-13
    gzip	1.2.4-33.1	sparc	DSA-100-1 gzip	2002-1-13
    tcpdump	3.6.2-2.2	alpha	DSA-206-1 tcpdump	2002-12-10
    tcpdump	3.6.2-2.2	arm	DSA-206-1 tcpdump	2002-12-10
    tcpdump	3.6.2-2.2	hppa	DSA-206-1 tcpdump	2002-12-10
    tcpdump	3.6.2-2.2	i386	DSA-206-1 tcpdump	2002-12-10
    tcpdump	3.6.2-2.2	ia64	DSA-206-1 tcpdump	2002-12-10
    tcpdump	3.6.2-2.2	m68k	DSA-206-1 tcpdump	2002-12-10
    tcpdump	3.6.2-2.2	mips	DSA-206-1 tcpdump	2002-12-10
    tcpdump	3.6.2-2.2	powerpc	DSA-206-1 tcpdump	2002-12-10
    tcpdump	3.6.2-2.2	s390	DSA-206-1 tcpdump	2002-12-10
    tcpdump	3.6.2-2.2	sparc	DSA-206-1 tcpdump	2002-12-10
    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
    cyrus-imapd	1.5.19-2.2	alpha	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-nntp	1.5.19-2.2	alpha	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-pop3d	1.5.19-2.2	alpha	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-admin	1.5.19-2.2	arm	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-common	1.5.19-2.2	arm	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-dev	1.5.19-2.2	arm	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-imapd	1.5.19-2.2	arm	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-nntp	1.5.19-2.2	arm	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-pop3d	1.5.19-2.2	arm	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-admin	1.5.19-2.2	i386	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-common	1.5.19-2.2	i386	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-dev	1.5.19-2.2	i386	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-imapd	1.5.19-2.2	i386	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-nntp	1.5.19-2.2	i386	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-pop3d	1.5.19-2.2	i386	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-admin	1.5.19-2.2	m68k	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-common	1.5.19-2.2	m68k	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-dev	1.5.19-2.2	m68k	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-imapd	1.5.19-2.2	m68k	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-nntp	1.5.19-2.2	m68k	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-pop3d	1.5.19-2.2	m68k	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-admin	1.5.19-2.2	powerpc	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-common	1.5.19-2.2	powerpc	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-dev	1.5.19-2.2	powerpc	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-imapd	1.5.19-2.2	powerpc	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-nntp	1.5.19-2.2	powerpc	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-pop3d	1.5.19-2.2	powerpc	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-admin	1.5.19-2.2	sparc	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-common	1.5.19-2.2	sparc	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-dev	1.5.19-2.2	sparc	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-imapd	1.5.19-2.2	sparc	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-nntp	1.5.19-2.2	sparc	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-pop3d	1.5.19-2.2	sparc	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-admin	1.5.19-9.1	alpha	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-common	1.5.19-9.1	alpha	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-dev	1.5.19-9.1	alpha	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-imapd	1.5.19-9.1	alpha	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-nntp	1.5.19-9.1	alpha	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-pop3d	1.5.19-9.1	alpha	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-admin	1.5.19-9.1	arm	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-common	1.5.19-9.1	arm	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-dev	1.5.19-9.1	arm	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-imapd	1.5.19-9.1	arm	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-nntp	1.5.19-9.1	arm	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-pop3d	1.5.19-9.1	arm	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-admin	1.5.19-9.1	i386	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-common	1.5.19-9.1	i386	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-dev	1.5.19-9.1	i386	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-imapd	1.5.19-9.1	i386	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-nntp	1.5.19-9.1	i386	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-pop3d	1.5.19-9.1	i386	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-admin	1.5.19-9.1	ia64	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-common	1.5.19-9.1	ia64	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-dev	1.5.19-9.1	ia64	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-imapd	1.5.19-9.1	ia64	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-nntp	1.5.19-9.1	ia64	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-pop3d	1.5.19-9.1	ia64	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-admin	1.5.19-9.1	hppa	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-common	1.5.19-9.1	hppa	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-dev	1.5.19-9.1	hppa	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-imapd	1.5.19-9.1	hppa	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-nntp	1.5.19-9.1	hppa	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-pop3d	1.5.19-9.1	hppa	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-admin	1.5.19-9.1	m68k	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-common	1.5.19-9.1	m68k	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-dev	1.5.19-9.1	m68k	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-imapd	1.5.19-9.1	m68k	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-nntp	1.5.19-9.1	m68k	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-pop3d	1.5.19-9.1	m68k	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-admin	1.5.19-9.1	mips	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-common	1.5.19-9.1	mips	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-dev	1.5.19-9.1	mips	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-imapd	1.5.19-9.1	mips	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-nntp	1.5.19-9.1	mips	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-pop3d	1.5.19-9.1	mips	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-admin	1.5.19-9.1	mipsel	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-common	1.5.19-9.1	mipsel	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-dev	1.5.19-9.1	mipsel	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-imapd	1.5.19-9.1	mipsel	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-nntp	1.5.19-9.1	mipsel	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-pop3d	1.5.19-9.1	mipsel	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-admin	1.5.19-9.1	powerpc	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-common	1.5.19-9.1	powerpc	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-dev	1.5.19-9.1	powerpc	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-imapd	1.5.19-9.1	powerpc	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-nntp	1.5.19-9.1	powerpc	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-pop3d	1.5.19-9.1	powerpc	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-admin	1.5.19-9.1	s390	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-common	1.5.19-9.1	s390	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-dev	1.5.19-9.1	s390	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-imapd	1.5.19-9.1	s390	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-nntp	1.5.19-9.1	s390	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-pop3d	1.5.19-9.1	s390	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-admin	1.5.19-9.1	sparc	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-common	1.5.19-9.1	sparc	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-dev	1.5.19-9.1	sparc	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-imapd	1.5.19-9.1	sparc	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-nntp	1.5.19-9.1	sparc	DSA-215-1 cyrus-imapd	2002-12-23
    cyrus-pop3d	1.5.19-9.1	sparc	DSA-215-1 cyrus-imapd	2002-12-23
    at	3.1.8-10.2	alpha	DSA-102-2 at	2002-1-16
    at	3.1.8-10.2	arm	DSA-102-2 at	2002-1-16
    at	3.1.8-10.2	i386	DSA-102-2 at	2002-1-16
    at	3.1.8-10.2	m68k	DSA-102-2 at	2002-1-16
    at	3.1.8-10.2	powerpc	DSA-102-2 at	2002-1-16
    at	3.1.8-10.2	sparc	DSA-102-2 at	2002-1-16
    php4-dev	4.1.2-5	all	DSA-168-1 php	2002-9-18
    php4-pear	4.1.2-5	all	DSA-168-1 php	2002-9-18
    caudium-php4	4.1.2-5	alpha	DSA-168-1 php	2002-9-18
    php4	4.1.2-5	alpha	DSA-168-1 php	2002-9-18
    php4-cgi	4.1.2-5	alpha	DSA-168-1 php	2002-9-18
    php4-curl	4.1.2-5	alpha	DSA-168-1 php	2002-9-18
    php4-domxml	4.1.2-5	alpha	DSA-168-1 php	2002-9-18
    php4-gd	4.1.2-5	alpha	DSA-168-1 php	2002-9-18
    php4-imap	4.1.2-5	alpha	DSA-168-1 php	2002-9-18
    php4-ldap	4.1.2-5	alpha	DSA-168-1 php	2002-9-18
    php4-mcal	4.1.2-5	alpha	DSA-168-1 php	2002-9-18
    php4-mhash	4.1.2-5	alpha	DSA-168-1 php	2002-9-18
    php4-mysql	4.1.2-5	alpha	DSA-168-1 php	2002-9-18
    php4-odbc	4.1.2-5	alpha	DSA-168-1 php	2002-9-18
    php4-recode	4.1.2-5	alpha	DSA-168-1 php	2002-9-18
    php4-snmp	4.1.2-5	alpha	DSA-168-1 php	2002-9-18
    php4-sybase	4.1.2-5	alpha	DSA-168-1 php	2002-9-18
    php4-xslt	4.1.2-5	alpha	DSA-168-1 php	2002-9-18
    caudium-php4	4.1.2-5	arm	DSA-168-1 php	2002-9-18
    php4	4.1.2-5	arm	DSA-168-1 php	2002-9-18
    php4-cgi	4.1.2-5	arm	DSA-168-1 php	2002-9-18
    php4-curl	4.1.2-5	arm	DSA-168-1 php	2002-9-18
    php4-domxml	4.1.2-5	arm	DSA-168-1 php	2002-9-18
    php4-gd	4.1.2-5	arm	DSA-168-1 php	2002-9-18
    php4-imap	4.1.2-5	arm	DSA-168-1 php	2002-9-18
    php4-ldap	4.1.2-5	arm	DSA-168-1 php	2002-9-18
    php4-mcal	4.1.2-5	arm	DSA-168-1 php	2002-9-18
    php4-mhash	4.1.2-5	arm	DSA-168-1 php	2002-9-18
    php4-mysql	4.1.2-5	arm	DSA-168-1 php	2002-9-18
    php4-odbc	4.1.2-5	arm	DSA-168-1 php	2002-9-18
    php4-recode	4.1.2-5	arm	DSA-168-1 php	2002-9-18
    php4-snmp	4.1.2-5	arm	DSA-168-1 php	2002-9-18
    php4-sybase	4.1.2-5	arm	DSA-168-1 php	2002-9-18
    php4-xslt	4.1.2-5	arm	DSA-168-1 php	2002-9-18
    caudium-php4	4.1.2-5	i386	DSA-168-1 php	2002-9-18
    php4	4.1.2-5	i386	DSA-168-1 php	2002-9-18
    php4-cgi	4.1.2-5	i386	DSA-168-1 php	2002-9-18
    php4-curl	4.1.2-5	i386	DSA-168-1 php	2002-9-18
    php4-domxml	4.1.2-5	i386	DSA-168-1 php	2002-9-18
    php4-gd	4.1.2-5	i386	DSA-168-1 php	2002-9-18
    php4-imap	4.1.2-5	i386	DSA-168-1 php	2002-9-18
    php4-ldap	4.1.2-5	i386	DSA-168-1 php	2002-9-18
    php4-mcal	4.1.2-5	i386	DSA-168-1 php	2002-9-18
    php4-mhash	4.1.2-5	i386	DSA-168-1 php	2002-9-18
    php4-mysql	4.1.2-5	i386	DSA-168-1 php	2002-9-18
    php4-odbc	4.1.2-5	i386	DSA-168-1 php	2002-9-18
    php4-recode	4.1.2-5	i386	DSA-168-1 php	2002-9-18
    php4-snmp	4.1.2-5	i386	DSA-168-1 php	2002-9-18
    php4-sybase	4.1.2-5	i386	DSA-168-1 php	2002-9-18
    php4-xslt	4.1.2-5	i386	DSA-168-1 php	2002-9-18
    caudium-php4	4.1.2-5	ia64	DSA-168-1 php	2002-9-18
    php4	4.1.2-5	ia64	DSA-168-1 php	2002-9-18
    php4-cgi	4.1.2-5	ia64	DSA-168-1 php	2002-9-18
    php4-curl	4.1.2-5	ia64	DSA-168-1 php	2002-9-18
    php4-domxml	4.1.2-5	ia64	DSA-168-1 php	2002-9-18
    php4-gd	4.1.2-5	ia64	DSA-168-1 php	2002-9-18
    php4-imap	4.1.2-5	ia64	DSA-168-1 php	2002-9-18
    php4-ldap	4.1.2-5	ia64	DSA-168-1 php	2002-9-18
    php4-mcal	4.1.2-5	ia64	DSA-168-1 php	2002-9-18
    php4-mhash	4.1.2-5	ia64	DSA-168-1 php	2002-9-18
    php4-mysql	4.1.2-5	ia64	DSA-168-1 php	2002-9-18
    php4-odbc	4.1.2-5	ia64	DSA-168-1 php	2002-9-18
    php4-recode	4.1.2-5	ia64	DSA-168-1 php	2002-9-18
    php4-snmp	4.1.2-5	ia64	DSA-168-1 php	2002-9-18
    php4-sybase	4.1.2-5	ia64	DSA-168-1 php	2002-9-18
    php4-xslt	4.1.2-5	ia64	DSA-168-1 php	2002-9-18
    caudium-php4	4.1.2-5	hppa	DSA-168-1 php	2002-9-18
    php4	4.1.2-5	hppa	DSA-168-1 php	2002-9-18
    php4-cgi	4.1.2-5	hppa	DSA-168-1 php	2002-9-18
    php4-curl	4.1.2-5	hppa	DSA-168-1 php	2002-9-18
    php4-domxml	4.1.2-5	hppa	DSA-168-1 php	2002-9-18
    php4-gd	4.1.2-5	hppa	DSA-168-1 php	2002-9-18
    php4-imap	4.1.2-5	hppa	DSA-168-1 php	2002-9-18
    php4-ldap	4.1.2-5	hppa	DSA-168-1 php	2002-9-18
    php4-mcal	4.1.2-5	hppa	DSA-168-1 php	2002-9-18
    php4-mhash	4.1.2-5	hppa	DSA-168-1 php	2002-9-18
    php4-mysql	4.1.2-5	hppa	DSA-168-1 php	2002-9-18
    php4-odbc	4.1.2-5	hppa	DSA-168-1 php	2002-9-18
    php4-recode	4.1.2-5	hppa	DSA-168-1 php	2002-9-18
    php4-snmp	4.1.2-5	hppa	DSA-168-1 php	2002-9-18
    php4-sybase	4.1.2-5	hppa	DSA-168-1 php	2002-9-18
    php4-xslt	4.1.2-5	hppa	DSA-168-1 php	2002-9-18
    caudium-php4	4.1.2-5	m68k	DSA-168-1 php	2002-9-18
    php4	4.1.2-5	m68k	DSA-168-1 php	2002-9-18
    php4-cgi	4.1.2-5	m68k	DSA-168-1 php	2002-9-18
    php4-curl	4.1.2-5	m68k	DSA-168-1 php	2002-9-18
    php4-domxml	4.1.2-5	m68k	DSA-168-1 php	2002-9-18
    php4-gd	4.1.2-5	m68k	DSA-168-1 php	2002-9-18
    php4-imap	4.1.2-5	m68k	DSA-168-1 php	2002-9-18
    php4-ldap	4.1.2-5	m68k	DSA-168-1 php	2002-9-18
    php4-mcal	4.1.2-5	m68k	DSA-168-1 php	2002-9-18
    php4-mhash	4.1.2-5	m68k	DSA-168-1 php	2002-9-18
    php4-mysql	4.1.2-5	m68k	DSA-168-1 php	2002-9-18
    php4-odbc	4.1.2-5	m68k	DSA-168-1 php	2002-9-18
    php4-recode	4.1.2-5	m68k	DSA-168-1 php	2002-9-18
    php4-snmp	4.1.2-5	m68k	DSA-168-1 php	2002-9-18
    php4-sybase	4.1.2-5	m68k	DSA-168-1 php	2002-9-18
    php4-xslt	4.1.2-5	m68k	DSA-168-1 php	2002-9-18
    caudium-php4	4.1.2-5	mips	DSA-168-1 php	2002-9-18
    php4	4.1.2-5	mips	DSA-168-1 php	2002-9-18
    php4-cgi	4.1.2-5	mips	DSA-168-1 php	2002-9-18
    php4-curl	4.1.2-5	mips	DSA-168-1 php	2002-9-18
    php4-domxml	4.1.2-5	mips	DSA-168-1 php	2002-9-18
    php4-gd	4.1.2-5	mips	DSA-168-1 php	2002-9-18
    php4-imap	4.1.2-5	mips	DSA-168-1 php	2002-9-18
    php4-ldap	4.1.2-5	mips	DSA-168-1 php	2002-9-18
    php4-mcal	4.1.2-5	mips	DSA-168-1 php	2002-9-18
    php4-mhash	4.1.2-5	mips	DSA-168-1 php	2002-9-18
    php4-mysql	4.1.2-5	mips	DSA-168-1 php	2002-9-18
    php4-odbc	4.1.2-5	mips	DSA-168-1 php	2002-9-18
    php4-recode	4.1.2-5	mips	DSA-168-1 php	2002-9-18
    php4-snmp	4.1.2-5	mips	DSA-168-1 php	2002-9-18
    php4-sybase	4.1.2-5	mips	DSA-168-1 php	2002-9-18
    php4-xslt	4.1.2-5	mips	DSA-168-1 php	2002-9-18
    caudium-php4	4.1.2-5	mipsel	DSA-168-1 php	2002-9-18
    php4	4.1.2-5	mipsel	DSA-168-1 php	2002-9-18
    php4-cgi	4.1.2-5	mipsel	DSA-168-1 php	2002-9-18
    php4-curl	4.1.2-5	mipsel	DSA-168-1 php	2002-9-18
    php4-domxml	4.1.2-5	mipsel	DSA-168-1 php	2002-9-18
    php4-gd	4.1.2-5	mipsel	DSA-168-1 php	2002-9-18
    php4-imap	4.1.2-5	mipsel	DSA-168-1 php	2002-9-18
    php4-ldap	4.1.2-5	mipsel	DSA-168-1 php	2002-9-18
    php4-mcal	4.1.2-5	mipsel	DSA-168-1 php	2002-9-18
    php4-mhash	4.1.2-5	mipsel	DSA-168-1 php	2002-9-18
    php4-mysql	4.1.2-5	mipsel	DSA-168-1 php	2002-9-18
    php4-odbc	4.1.2-5	mipsel	DSA-168-1 php	2002-9-18
    php4-recode	4.1.2-5	mipsel	DSA-168-1 php	2002-9-18
    php4-snmp	4.1.2-5	mipsel	DSA-168-1 php	2002-9-18
    php4-sybase	4.1.2-5	mipsel	DSA-168-1 php	2002-9-18
    php4-xslt	4.1.2-5	mipsel	DSA-168-1 php	2002-9-18
    caudium-php4	4.1.2-5	powerpc	DSA-168-1 php	2002-9-18
    php4	4.1.2-5	powerpc	DSA-168-1 php	2002-9-18
    php4-cgi	4.1.2-5	powerpc	DSA-168-1 php	2002-9-18
    php4-curl	4.1.2-5	powerpc	DSA-168-1 php	2002-9-18
    php4-domxml	4.1.2-5	powerpc	DSA-168-1 php	2002-9-18
    php4-gd	4.1.2-5	powerpc	DSA-168-1 php	2002-9-18
    php4-imap	4.1.2-5	powerpc	DSA-168-1 php	2002-9-18
    php4-ldap	4.1.2-5	powerpc	DSA-168-1 php	2002-9-18
    php4-mcal	4.1.2-5	powerpc	DSA-168-1 php	2002-9-18
    php4-mhash	4.1.2-5	powerpc	DSA-168-1 php	2002-9-18
    php4-mysql	4.1.2-5	powerpc	DSA-168-1 php	2002-9-18
    php4-odbc	4.1.2-5	powerpc	DSA-168-1 php	2002-9-18
    php4-recode	4.1.2-5	powerpc	DSA-168-1 php	2002-9-18
    php4-snmp	4.1.2-5	powerpc	DSA-168-1 php	2002-9-18
    php4-sybase	4.1.2-5	powerpc	DSA-168-1 php	2002-9-18
    php4-xslt	4.1.2-5	powerpc	DSA-168-1 php	2002-9-18
    caudium-php4	4.1.2-5	s390	DSA-168-1 php	2002-9-18
    php4	4.1.2-5	s390	DSA-168-1 php	2002-9-18
    php4-cgi	4.1.2-5	s390	DSA-168-1 php	2002-9-18
    php4-curl	4.1.2-5	s390	DSA-168-1 php	2002-9-18
    php4-domxml	4.1.2-5	s390	DSA-168-1 php	2002-9-18
    php4-gd	4.1.2-5	s390	DSA-168-1 php	2002-9-18
    php4-imap	4.1.2-5	s390	DSA-168-1 php	2002-9-18
    php4-ldap	4.1.2-5	s390	DSA-168-1 php	2002-9-18
    php4-mcal	4.1.2-5	s390	DSA-168-1 php	2002-9-18
    php4-mhash	4.1.2-5	s390	DSA-168-1 php	2002-9-18
    php4-mysql	4.1.2-5	s390	DSA-168-1 php	2002-9-18
    php4-odbc	4.1.2-5	s390	DSA-168-1 php	2002-9-18
    php4-recode	4.1.2-5	s390	DSA-168-1 php	2002-9-18
    php4-snmp	4.1.2-5	s390	DSA-168-1 php	2002-9-18
    php4-sybase	4.1.2-5	s390	DSA-168-1 php	2002-9-18
    php4-xslt	4.1.2-5	s390	DSA-168-1 php	2002-9-18
    caudium-php4	4.1.2-5	sparc	DSA-168-1 php	2002-9-18
    php4	4.1.2-5	sparc	DSA-168-1 php	2002-9-18
    php4-cgi	4.1.2-5	sparc	DSA-168-1 php	2002-9-18
    php4-curl	4.1.2-5	sparc	DSA-168-1 php	2002-9-18
    php4-domxml	4.1.2-5	sparc	DSA-168-1 php	2002-9-18
    php4-gd	4.1.2-5	sparc	DSA-168-1 php	2002-9-18
    php4-imap	4.1.2-5	sparc	DSA-168-1 php	2002-9-18
    php4-ldap	4.1.2-5	sparc	DSA-168-1 php	2002-9-18
    php4-mcal	4.1.2-5	sparc	DSA-168-1 php	2002-9-18
    php4-mhash	4.1.2-5	sparc	DSA-168-1 php	2002-9-18
    php4-mysql	4.1.2-5	sparc	DSA-168-1 php	2002-9-18
    php4-odbc	4.1.2-5	sparc	DSA-168-1 php	2002-9-18
    php4-recode	4.1.2-5	sparc	DSA-168-1 php	2002-9-18
    php4-snmp	4.1.2-5	sparc	DSA-168-1 php	2002-9-18
    php4-sybase	4.1.2-5	sparc	DSA-168-1 php	2002-9-18
    php4-xslt	4.1.2-5	sparc	DSA-168-1 php	2002-9-18
    apache-ssl	1.3.9.13-4.2	alpha	DSA-188-1 apache-ssl	2002-11-5
    apache-ssl	1.3.9.13-4.2	arm	DSA-188-1 apache-ssl	2002-11-5
    apache-ssl	1.3.9.13-4.2	i386	DSA-188-1 apache-ssl	2002-11-5
    apache-ssl	1.3.9.13-4.2	m68k	DSA-188-1 apache-ssl	2002-11-5
    apache-ssl	1.3.9.13-4.2	powerpc	DSA-188-1 apache-ssl	2002-11-5
    apache-ssl	1.3.9.13-4.2	sparc	DSA-188-1 apache-ssl	2002-11-5
    enscript	1.6.2-4.1	alpha	DSA-105-1 enscript	2002-1-21
    enscript	1.6.2-4.1	arm	DSA-105-1 enscript	2002-1-21
    enscript	1.6.2-4.1	i386	DSA-105-1 enscript	2002-1-21
    enscript	1.6.2-4.1	m68k	DSA-105-1 enscript	2002-1-21
    enscript	1.6.2-4.1	powerpc	DSA-105-1 enscript	2002-1-21
    enscript	1.6.2-4.1	sparc	DSA-105-1 enscript	2002-1-21
    cipe-common	1.3.0-3	all	DSA-104-1 cipe	2002-1-14
    cipe-source	1.3.0-3	all	DSA-104-1 cipe	2002-1-14
    xsane	0.50-5.1	alpha	DSA-118-1 xsane	2002-3-5
    xsane	0.50-5.1	arm	DSA-118-1 xsane	2002-3-5
    xsane	0.50-5.1	i386	DSA-118-1 xsane	2002-3-5
    xsane	0.50-5.1	m68k	DSA-118-1 xsane	2002-3-5
    xsane	0.50-5.1	powerpc	DSA-118-1 xsane	2002-3-5
    xsane	0.50-5.1	sparc	DSA-118-1 xsane	2002-3-5
    mantis	0.17.1-2.2	all	DSA-153-1 mantis	2002-8-14
    apache-ssl	1.3.9.13-4.1	alpha	DSA-132-1 apache-ssl	2002-6-19
    apache-ssl	1.3.9.13-4.1	arm	DSA-132-1 apache-ssl	2002-6-19
    apache-ssl	1.3.9.13-4.1	i386	DSA-132-1 apache-ssl	2002-6-19
    apache-ssl	1.3.9.13-4.1	m68k	DSA-132-1 apache-ssl	2002-6-19
    apache-ssl	1.3.9.13-4.1	powerpc	DSA-132-1 apache-ssl	2002-6-19
    apache-ssl	1.3.9.13-4.1	sparc	DSA-132-1 apache-ssl	2002-6-19
    apache-doc	1.3.9-14.3	all	DSA-187-1 apache	2002-11-4
    apache	1.3.9-14.3	alpha	DSA-187-1 apache	2002-11-4
    apache-common	1.3.9-14.3	alpha	DSA-187-1 apache	2002-11-4
    apache-dev	1.3.9-14.3	alpha	DSA-187-1 apache	2002-11-4
    apache	1.3.9-14.3	arm	DSA-187-1 apache	2002-11-4
    apache-common	1.3.9-14.3	arm	DSA-187-1 apache	2002-11-4
    apache-dev	1.3.9-14.3	arm	DSA-187-1 apache	2002-11-4
    apache	1.3.9-14.3	i386	DSA-187-1 apache	2002-11-4
    apache-common	1.3.9-14.3	i386	DSA-187-1 apache	2002-11-4
    apache-dev	1.3.9-14.3	i386	DSA-187-1 apache	2002-11-4
    apache	1.3.9-14.3	m68k	DSA-187-1 apache	2002-11-4
    apache-common	1.3.9-14.3	m68k	DSA-187-1 apache	2002-11-4
    apache-dev	1.3.9-14.3	m68k	DSA-187-1 apache	2002-11-4
    apache	1.3.9-14.3	powerpc	DSA-187-1 apache	2002-11-4
    apache-common	1.3.9-14.3	powerpc	DSA-187-1 apache	2002-11-4
    apache-dev	1.3.9-14.3	powerpc	DSA-187-1 apache	2002-11-4
    apache	1.3.9-14.3	sparc	DSA-187-1 apache	2002-11-4
    apache-common	1.3.9-14.3	sparc	DSA-187-1 apache	2002-11-4
    apache-dev	1.3.9-14.3	sparc	DSA-187-1 apache	2002-11-4
    mtr	0.41-6	alpha	DSA-124-1 mtr	2002-3-26
    mtr	0.41-6	arm	DSA-124-1 mtr	2002-3-26
    mtr	0.41-6	i386	DSA-124-1 mtr	2002-3-26
    mtr	0.41-6	m68k	DSA-124-1 mtr	2002-3-26
    mtr	0.41-6	powerpc	DSA-124-1 mtr	2002-3-26
    mtr	0.41-6	sparc	DSA-124-1 mtr	2002-3-26
    irssi-text	0.8.4-3.1	alpha	DSA-157-1 irssi-text	2002-8-23
    irssi-text	0.8.4-3.1	arm	DSA-157-1 irssi-text	2002-8-23
    irssi-text	0.8.4-3.1	i386	DSA-157-1 irssi-text	2002-8-23
    irssi-text	0.8.4-3.1	ia64	DSA-157-1 irssi-text	2002-8-23
    irssi-text	0.8.4-3.1	hppa	DSA-157-1 irssi-text	2002-8-23
    irssi-text	0.8.4-3.1	m68k	DSA-157-1 irssi-text	2002-8-23
    irssi-text	0.8.4-3.1	mips	DSA-157-1 irssi-text	2002-8-23
    irssi-text	0.8.4-3.1	mipsel	DSA-157-1 irssi-text	2002-8-23
    irssi-text	0.8.4-3.1	powerpc	DSA-157-1 irssi-text	2002-8-23
    irssi-text	0.8.4-3.1	s390	DSA-157-1 irssi-text	2002-8-23
    irssi-text	0.8.4-3.1	sparc	DSA-157-1 irssi-text	2002-8-23
    tiger-3.2.3/systems/Linux/2/embedlist0000644000175000017500000000101607720455603016127 0ustar  pacopaco#
    #  These are files which have any embedded pathnames in them checked.
    #  It does not need to include things like /etc/inetd.conf, etc, as
    #  these will be generated during the running of the security system.
    #  They *can* be included if you want to run check_embedded without
    #  running all the other scripts.  This will not cause duplicate output.
    #
    /etc/rc
    /etc/rc?
    /etc/init.d/*
    /etc/rc.d/*
    /etc/rc.d/init.d/*
    /.profile
    /.cshrc
    /.login
    /.kshrc
    /.bashrc
    /root/.profile
    /root/.cshrc
    /root/.login
    /root/.kshrc
    /root/.bashrc
    tiger-3.2.3/systems/Linux/2/facl.strict0000644000175000017500000001263307650720225016377 0ustar  pacopaco#
    #     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/4/file_access_list - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    #                           owner group s g r w x   r w x   r w xLVL MessageIDs
    #------------------------------------------------------------------------------
    /                           root  .     . . 1 . 1   1 0 1   1 0 1 W 018 018 018
    /etc                        root  .     . . 1 . 1   1 0 1   1 0 1 W 019 019 019
    /bin                        root  .     . . 1 . 1   1 0 1   1 0 1 W 001 002 003
    /usr                        root  .     . . 1 . 1   1 0 1   1 0 1 W 001 002 003
    /usr/bin                    root  .     . . 1 . 1   1 0 1   1 0 1 A 001 002 003
    /usr/lib                    root  .     . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /usr/*                      .     .     . . . . .   . 0 .   . 0 . . 001 002 003
    /var                        root  .     . . . . .   1 0 1   1 0 1 . 001 002 003
    /var/spool		    root  .     . . . . .   1 0 1   1 0 1 . 001 002 003
    #
    /dev                        root  .     . . . . .   1 0 1   1 0 1 . 001 002 003
    /dev/tty		    root  .     0 0 1 1 0   1 1 0   1 1 0 . 001 002 003
    /dev/null		    root  .     0 0 1 1 0   1 1 0   1 1 0 . 001 002 003
    /dev/zero		    root  .     0 0 1 1 0   1 1 0   1 1 0 . 001 002 003
    /dev/mem		    root  kmem  0 0 1 1 0   1 0 0   0 0 0 . 001 002 003
    /dev/kmem		    root  kmem  0 0 1 1 0   1 0 0   0 0 0 . 001 002 003
    /dev/console		    .     .     0 0 1 1 0   0 . .   0 . . . 001 002 003
    #
    /vmlinuz                    root  .     0 0 1 . 1   1 0 0   1 0 0 . 001 002 003
    /.cshrc                     root  .     0 0 1 . .   0 0 0   0 0 0 W 006 006 006
    /.login                     root  .     0 0 1 . .   0 0 0   0 0 0 W 006 006 006
    /.profile                   root  .     0 0 1 . .   0 0 0   0 0 0 W 006 006 006
    /.forward                   root  .     . . 1 . .   0 0 0   0 0 0 W 006 006 006
    /.rhosts                    root  .     . . 1 . 0   0 0 0   0 0 0 W 006 006 006
    #
    /usr/lib/aliases                root  .     . . 1 . 0   0 0 0   0 0 0 F 007 007 007
    /usr/lib/aliases.dir            root  .     . . 1 . 0   0 0 0   0 0 0 F 007 007 007
    /usr/lib/aliases.pag            root  .     . . 1 . 0   0 0 0   0 0 0 F 007 007 007
    /etc/exports                root  .     . . 1 . 0   0 0 0   0 0 0 W 008 008 008
    /etc/fstab                  root  .     . . 1 . 0   0 0 0   0 0 0 W 001 002 003
    /etc/group                  root  .     . . 1 . 0   1 0 0   1 0 0 F 009 009 009
    /etc/hosts                  root  .     . . 1 . 0   1 0 0   1 0 0 F 001 002 003
    /etc/hosts.allow            root  .     . . 1 . 0   . 0 0   . 0 0 W 010 010 010
    /etc/hosts.deny		    root  .     . . 1 . 0   . 0 0   . 0 0 W 010 010 010
    /etc/hosts.equiv            root  .     . . 1 . 0   0 0 0   0 0 0 W 011 011 011
    /etc/hosts.lpd              root  .     . . 1 . 0   0 0 0   0 0 0 W 011 011 011
    /etc/inetd.conf             root  .     . . 1 . 0   0 0 0   0 0 0 W 012 012 012
    /etc/motd                   root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/mtab                   root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/netgroup               root  .     . . 1 . 0   0 0 0   0 0 0 F 013 013 013
    /etc/passwd                 root  .     . . 1 . 0   1 0 0   1 0 0 A 014 014 014
    /etc/printcap               root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/rc                     root  .     0 0 1 . 0   0 0 0   0 0 0 F 015 015 015
    /etc/remote                 root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/resolv.conf            root  .     . . 1 . 0   1 0 0   1 0 0 W 016 016 016
    /etc/rpc                    root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /usr/lib/sendmail.cf            root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/services               root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/syslog.conf            root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/syslog.pid             root  .     . . 1 . 0   0 0 0   0 0 0 W 001 002 003
    /etc/utmp                   root  .     . . 1 . 0   1 0 0   1 0 0 W 017 017 017
    /etc/*                      root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    #
    /bin/write              root  tty   0 1 . . 1   . 0 .   . 0 . . 001 002 003
    /bin/wall               root  tty   0 1 . . 1   . 0 .   . 0 . . 001 002 003
    #
    /bin/login              root  .     1 0 1 . 1   1 0 1   1 0 1 F 001 002 003
    /bin/su                 root  .     1 0 1 . 1   . 0 .   . 0 . F 001 002 003
    /usr/bin/passwd             root  .     1 0 1 . 1   . 0 .   . 0 . F 001 002 003
    /bin/sh                 root  .     0 0 1 . 1   1 0 1   1 0 1 W 001 002 003
    /bin/bash                 root  .     0 0 1 . 1   1 0 1   1 0 1 W 001 002 003
    /usr/bin/*                  root  .     . . 1 . 1   . 0 .   . 0 . . 001 002 003
    /bin/*                  root  .     . . 1 . 1   . 0 .   . 0 . . 001 002 003
    
    
    tiger-3.2.3/systems/Linux/2/file_access_list0000644000175000017500000001731407720455603017462 0ustar  pacopaco#
    #     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.
    #
    # file_access_list - DATE
    #
    #-----------------------------------------------------------------------------
    file               owner     group  s  g  r  w  x  r  w  x  r  w  x   LVL  OwnID  GrpID  PermID
    /                  root      root   0  0  1  1  1  1  0  1  1  0  1   W    018    018    018
    /bin               root      root   0  0  1  1  1  1  0  1  1  0  1   .    001    002    003
    /bin/*             root      root   .  0  1  1  1  1  0  1  1  0  1.  001  002    003
    /bin/bash          root      root   0  0  1  1  1  1  0  1  1  0  1   W    001    002    003
    /bin/login         root      root   0  0  1  1  1  1  0  1  1  0  1   F    001    002    003
    /bin/sh            root      root   0  0  1  1  1  1  0  1  1  0  1   W    001    002    003
    /bin/su            root      root   0  0  1  1  1  1  0  1  1  0  1   F    001    002    003
    /bin               root      root   0  0  1  1  1  1  0  1  1  0  1   W    001    002    003
    /boot              root      root   0  0  1  1  1  1  0  1  1  0  1   .    001    002    003
    /dev               root      root   0  0  1  1  1  1  0  1  1  0  1   .    001    002    003
    /etc               root      root   0  0  1  1  1  1  0  1  1  0  1   W    019    019    019
    /etc/*             root      .      0  .  1  .  .  .  .  .  .  0  ..  001  002    003
    /etc/aliases       root      root   0  0  1  1  0  1  0  0  1  0  0   F    007    007    007
    /etc/aliases       root      root   0  0  1  1  0  1  0  0  1  0  0   F    007    007    007
    /etc/exports       root      root   0  0  1  1  0  1  0  0  1  0  0   W    008    008    008
    /etc/fstab         root      root   0  0  1  1  0  1  0  0  1  0  0   W    001    002    003
    /etc/group         root      root   0  0  1  1  0  1  0  0  1  0  0   .    001    002    003
    /etc/group         root      root   0  0  1  1  0  1  0  0  1  0  0   F    009    009    009
    /etc/hosts         root      root   0  0  1  1  0  1  0  0  1  0  0   F    001    002    003
    /etc/hosts.allow   root      root   0  0  1  1  0  1  0  0  1  0  0   W    010    010    010
    /etc/hosts.deny    root      root   0  0  1  1  0  1  0  0  1  0  0   W    010    010    010
    /etc/inetd.conf    root      root   0  0  1  1  0  1  0  0  1  0  0   W    012    012    012
    /etc/init.d        root      root   0  0  1  1  1  1  0  1  1  0  1   F    015    015    015
    /etc/init.d/*      root      root   0  0  1  1  .  1  0  .  1  0  .F  015  015    015
    /etc/inittab       root      root   0  0  1  1  0  1  0  0  1  0  0   W    001    002    003
    /etc/ld.so.cache   root      root   0  0  1  1  0  1  0  0  1  0  0   W    001    002    003
    /etc/modules       root      root   0  0  1  1  0  1  0  0  1  0  0   .    001    002    003
    /etc/motd          root      root   0  0  1  1  0  1  0  0  1  0  0   W    001    002    003
    /etc/mtab          root      root   0  0  1  1  0  1  0  0  1  0  0   W    001    002    003
    /etc/netgroup      root      root   0  0  1  1  0  1  0  0  1  0  0   F    013    013    013
    /etc/pam.d/sudo    root      root   0  0  1  1  0  1  0  0  1  0  0   W    017    017    017
    /etc/passwd        root      root   0  0  1  1  0  1  0  0  1  0  0   A    014    014    014
    /etc/printcap      root      root   0  0  1  1  0  1  0  0  1  0  0   W    001    002    003
    /etc/profile       root      root   0  0  1  1  0  1  0  0  1  0  0   .    001    002    003
    /etc/rc.boot       root      root   0  0  1  1  1  1  0  1  1  0  1   F    015    015    015
    /etc/rc?.d         root      root   0  0  1  1  1  1  0  1  1  0  1F  015  015    015
    /etc/rc?.d/*       root      root   0  0  1  1  .  1  0  .  1  0  .F  015  015    015
    /etc/resolv.conf   root      root   0  0  1  1  0  1  0  0  1  0  0   W    016    016    016
    /etc/rpc           root      root   0  0  1  1  0  1  0  0  1  0  0   W    001    002    003
    /etc/security/*    root      root   0  0  1  1  0  1  0  0  1  0  0A  005  005    005
    /etc/security      root      root   0  0  1  1  1  1  0  1  1  0  1   A    005    005    005
    /etc/services      root      root   0  0  1  1  0  1  0  0  1  0  0   W    001    002    003
    /etc/sudoers       root      root   0  0  1  0  0  1  0  0  0  0  0   W    017    017    017
    /etc/syslog.conf   root      root   0  0  1  1  0  1  0  0  1  0  0   W    001    002    003
    /lib               root      root   0  0  1  1  1  1  0  1  1  0  1   .    001    002    003
    /root/.bashrc      root      root   0  0  1  1  0  1  0  0  1  0  0   W    006    006    006
    /root/.profile     root      root   0  0  1  1  0  1  0  0  1  0  0   W    006    006    006
    /root/.rhosts      jfernand  root   0  0  1  1  0  1  0  0  1  0  0   W    006    006    006
    /sbin              root      root   0  0  1  1  1  1  0  1  1  0  1   W    001    002    003
    /usr               root      root   0  0  1  1  1  1  0  1  1  0  1   .    001    002    003
    /usr/*             root      .      0  .  1  1  1  1  .  1  1  0  1.  001  002    003
    /usr               root      root   0  0  1  1  1  1  0  1  1  0  1   002  003
    /usr/bin           root      root   0  0  1  1  1  1  0  1  1  0  1   A    001    002    003
    /usr/bin/*         root      .      .  .  1  1  1  1  0  1  1  0  1.  001  002    003
    /usr/bin/at        root      root   0  0  1  1  1  1  0  1  1  0  1   .    001    002    003
    /usr/bin/atq       root      root   0  0  1  1  1  1  0  1  1  0  1   .    001    002    003
    /usr/bin/atrm      root      root   0  0  1  1  1  1  0  1  1  0  1   .    001    002    003
    /usr/bin/passwd    root      root   0  0  1  1  1  1  0  1  1  0  1   F    001    002    003
    /usr/bin/uudecode  root      root   0  0  1  1  1  1  0  1  1  0  1   .    001    002    003
    /usr/bin/uuencode  root      root   0  0  1  1  1  1  0  1  1  0  1   .    001    002    003
    /usr/bin/wall      root      tty    1  0  1  1  1  1  0  1  1  0  1   .    001    002    003
    /usr/bin/write     root      tty    1  0  1  1  1  1  0  1  1  0  1   .    001    002    003
    /usr/games         root      root   0  0  1  1  1  1  0  1  1  0  1   .    001    002    003
    /usr/lib           root      root   0  0  1  1  1  1  0  1  1  0  1   .    001    002    003
    /usr/share         root      root   0  0  1  1  1  1  0  1  1  0  1   .    001    002    003
    /usr               root      root   0  0  1  1  1  1  0  1  1  0  1   W    001    002    003
    /var               root      root   0  0  1  1  1  1  0  1  1  0  1   .    001    002    003
    /var/*             root      .      0  .  1  1  1  1  .  1  1  .  1.  001  002    003
    /var/log/*         .         .      0  .  1  1  .  1  .  .  .  0  ..  001  002    003
    /var/log/wtmp      root      utmp   0  0  1  1  0  1  1  0  1  0  0   .    001    002    003
    /var/run/utmp      root      utmp   0  0  1  1  0  1  1  0  1  0  0   W    017    017    017
    /var/spool         root      root   0  0  1  1  1  1  0  1  1  0  1   .    001    002    003
    /var/tmp           root      root   0  1  1  1  1  1  1  1  1  1  1   .    001    002    003
    /var/yp            root      root   0  0  1  1  1  1  0  1  1  0  1   .    001    002    003
    /var/yp/*          root      root   0  0  1  1  .  1  0  .  1  0  ..  001  002    003
    /vmlinuz           root      root   0  0  1  1  0  1  0  0  1  0  0   .    001    002    003
    tiger-3.2.3/systems/Linux/2/gen_alias_sets0000755000175000017500000000203707650720225017143 0ustar  pacopaco#!/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.
    #
    # Linux/2/gen_alias_sets - 06/14/93
    # based on
    # SunOs/4/gen_alias_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    [ -f /etc/aliases ] && {
      $GREP -v '^#' /etc/aliases |
      $SORT > $WORKDIR/etc_aliases.$$
      echo "/etc/aliases" > $WORKDIR/etc_aliases.$$.src
      echo $WORKDIR/etc_aliases.$$
    }
    tiger-3.2.3/systems/Linux/2/gen_bootparam_sets0000755000175000017500000000360110001501473020016 0ustar  pacopaco#!/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.
    #
    # 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' |
      $AWK '
           BEGIN {LINE="";}
           /\\\\$/ {LINE=LINE " " substr($0, 1, length($0)-1);}
           !/\\\\$/ {print LINE $0; LINE="";}
      ' > $WORKDIR/etc_bootparams.$$
      echo "/etc/bootparams" > $WORKDIR/etc_bootparams.$$.src
      echo "$WORKDIR/etc_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.3/systems/Linux/2/gen_cron0000755000175000017500000000670211061317556015760 0ustar  pacopaco#!/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.
    #
    # Linux/2/gen_cron - 06/14/93
    # 11/08/2007 - jfs - Handles properly the case when the special @daily,@reboot,
    #                    etc. definitions are used instead of real times. Also fix
    #                    bug deailing with variables in crontab contents 
    #                    (Debian bug 418440) 
    # 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
    #    and list its contents.
    # 03/27/2002 - jfs 
    #    changed to add CRONSPOOLTAB and included ARSC change to not confuse
    #    empty directories 
    #
    #
    #-----------------------------------------------------------------------------
    #
    # Just in case... (jfs)
    [ -z "$FIND" ] && FIND=`which find` 
    [ -z "$LS" ] && LS=`which ls` 
    [ -z "$GREP" ] && GREP=`which grep` 
    [ -z "$SED" ] && SED=`which sed` 
    [ -z "$BASENAME" ] && BASENAME=`which basename` 
    [ -z "$CRONSPOOL" ] && CRONSPOOL="/var/spool/cron/crontabs"
    
    [ ! -n "$GETUSERHOME" ] && GETUSERHOME=echo
    
    outfile=$1
    [ -z "$outfile" ] && { echo "Bad usage: $0 outfile"; exit 1;  }
    > $outfile
    
    # 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
        if [ -d "$dir" ] && [ -r "$dir" ]; then 
        	$FIND "$dir" -type f -printf "%p %u\n" |
    	while read  file owner
    	do
    	[ "$owner" != "root" ] && {
    		echo "--WARN-- CRON file \`$file' is owned by $owner."
    	}
            echo "$owner $file" >> $outfile
           done
        fi
    done 
    
    # Then check the cron's spool (both of the system's and the user's)
    # TODO (fix): same as above
    if [ -d $CRONSPOOL ] && [ -r $CRONSPOOL ]; then 
    $FIND "$CRONSPOOL" -type f -printf "%p %u %f\n" |
    while read  file owner name
    do
      [ "$owner" != "root" ] && {
        echo "--WARN-- CRON file \`$file' is owned by $owner."
      }
      case $name in
        *[!a-zA-Z0-9]*)
          echo "--WARN-- Unusual cron file \`$file' found."
          ;;
        *)
          $GETUSERHOME "$file" >/dev/null 2>/dev/null
    
          if [ $? = 0 ]; then
            # Parse the crontab file:
            # - Replace '@' commands (Debian-specific), since we don't care on
            #   times we just replace them with '0 0 0 0 0'
            # - Remove variable definitions
    	$SED -e 's/#.*$//' -e '/^$/d' $CRONSPOOL/$name |
            $SED -e 's/^@[A-Za-z]*/0 0 0 0 0/' |
            $SED -e '/^[A-Za-z]*.*=/d' |
    	while read a b c d e command
    	do
              [ -n "$command" ] && echo "$name $command"
    	done >> $outfile
          else
    	echo "--WARN-- Found cron file for unknown user $file."
          fi
          ;;
        esac
    done
    fi
    
    tiger-3.2.3/systems/Linux/2/gen_export_sets0000755000175000017500000000345307650720225017376 0ustar  pacopaco#!/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.
    #
    # Linux/2/gen_export_sets - 12/03/2001
    # 
    # 12/03/2001 jfs  Make it export sets that can be understood by check_exports
    #                 this way it can appropiately find errors 
    #
    #-----------------------------------------------------------------------------
    #
    # For debugging purposes
    [ -z "$GREP" ] && GREP=`which grep`
    [ -z "$SED" ] && SED=`which sed`
    [ -z "$AWK" ] && AWK=`which awk`
    [ -z "$WORKDIR" ] && WORKDIR=/tmp
    
    EXPFILE=/etc/exports
    EXPFILEW=`echo $EXPFILE | $SED -e 's/^\///' | $SED -e 's/\\//\_/g'`
    
    [ -r $EXPFILE ] && {
      $GREP -v '^#' $EXPFILE  | {
      while read dir acl 
      do
        echo $acl | 
        $AWK -F ")" '{split($0,array); for (data in array)  print $data }' | {
    	while read hostaccess
    	do
              [ ! -z "$hostaccess" ] && {
    		domain=`echo $hostaccess | $AWK -F "(" '{print $1}'`
    		[ ! -z "$domain" ] && access="access=$domain"
    		[ -z "$domain" ] && access=""
    		options=`echo $hostaccess | $AWK -F "(" '{print $2}' | $SED -e 's/,/ /g'`
    		echo $dir $access $options 
    	}
    	done 
         }
      done 
      } > $WORKDIR/$EXPFILEW.$$
      echo "$EXPFILE" > $WORKDIR/$EXPFILEW.$$.src
      echo $WORKDIR/$EXPFILEW.$$
    }
    tiger-3.2.3/systems/Linux/2/gen_group_sets0000755000175000017500000000422110147441726017204 0ustar  pacopaco#!/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.
    #
    # 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 "$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.3/systems/Linux/2/gen_inetd0000755000175000017500000000327610001471246016113 0ustar  pacopaco#!/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.
    #
    # 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.
    #
    #-----------------------------------------------------------------------------
    
    [ -n "$INETDCONF" ] && [ -f $INETDCONF ] && {
    $GREP -v '^#' $INETDCONF |
    $SORT > $WORKDIR/etc_inetd.$$
    echo "$INETDCONF" > $WORKDIR/etc_inetd.$$.src
    echo $WORKDIR/etc_inetd.$$
    }
    
    #[ -n "$XINETDCONF" ] && [ -f $XINETDCONF ] && {
    #}
    tiger-3.2.3/systems/Linux/2/gen_mounts0000755000175000017500000002526211113624331016334 0ustar  pacopaco#!/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.
    #
    # 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)
    # Linux/2/gen_mounts - 08/29/2005 - Added vzfs (VPS filesystem) to local fs,
    #     Savannah bug #14299
    # Linux/2/gen_mounts - 05/20/2006 - Added cifs to non local FS (Debian bug #329813)
    # Linux/2/gen_mounts - 11/16/2006 - Added selinuxfs to local FS (Debian bug #397832)
    # Linux/2/gen_mounts - 06/22/2007 - Added fusectl to local FS (Debian bug #409386)
    # Linux/2/gen_mounts - 06/26/2007 - Added Vmware's vmblock as non-local FS
    # Linux/2/gen_mounts - 09/08/2008 - Added reiser4 as a local FS (Debian bug #498203)
    #                                 - Added securityfs as a non-local FS (Ubuntu bug #155211)
    #                                 - Added fuse.gvfs-fuse-daemon as a local FS (Ubuntu bug #155211)
    #                                 - Added fuseblk as a local FS
    #                                 - Added fuse.truecrypt as a local FS
    #                                 - Added fuse.encfs as a local FS (Debian bug #483727)
    #                                 - Added debugfs as a non-local FS, to skip it from checks (Debian bug #469685)
    #                                 - Added afs as a non-local FS (Savannah bug #14028)
    #                                 - Added configfs, gfs and gfs2 as a non-local FS (Debian bug #490344)
    #                                 - Added inotifyfs, hugetlb and subfs as a non-local FS
    #                                 - Make futexfs a non-local FS (Debian bug #490822)
    #                                 - Added bind as a non-local FS (Debian bug #451879)
    #                                 - Skip udev fs even if its in a tmpfs FS, prevent analysis
    #                                   of unexistant symlinks (See Debian bug 434333)
    # Linux/2/gen_mounts - 11/27/2008 - Added ecryptfs, used by ecryptfs-utils (See Debian bug 506512)
    #                                 - Fix bashism (Debian bug #505939)
    #-----------------------------------------------------------------------------
    #
    
    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()
    {
    # 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" = "vzfs" ] && LOCAL=0        # VPS virtual partition
      [ "$1" = "reiserfs" ] && LOCAL=0
      [ "$1" = "reiser4" ] && LOCAL=0
      [ "$1" = "xfs" ] && LOCAL=0
      [ "$1" = "jfs" ] && LOCAL=0
      [ "$1" = "minix" ] && LOCAL=0
      [ "$1" = "xiafs" ] && 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                # Provides an empty root directory for the bootstrap phase
      [ "$1" = "shm" ] && LOCAL=0                   # IPC-shared memory regions
      [ "$1" = "tmpfs" ] && LOCAL=0                 # Temporary files (kept in RAM unless swapped)
      # Exception: udev uses a tmpfs and it has many symlinks that point nowhere, it should be skipped
      [ "$1" = "tmpfs" ] && [ "$2" = "udev" ] && LOCAL=1 
      [ "$1" = "auto" ] && LOCAL=0
      [ "$1" = "selinuxfs" ] && LOCAL=0
      [ "$1" = "fusectl" ] && LOCAL=0
      [ "$1" = "fuseblk" ] && LOCAL=0               # Used in Ubuntu 'hardy'
      [ "$1" = "fuse.truecrypt" ] && LOCAL=0        # Encrypted filesystem, used in Ubuntu 'hardy'
      [ "$1" = "fuse.encfs" ] && LOCAL=0            # Encrypted filesystem
      [ "$1" = "fuse.gvfs-fuse-daemon" ] && LOCAL=0 # Used in Ubuntu 'hardy'
      [ "$1" = "ecryptfs" ] && LOCAL=0              # Encrypted filesystem used by ecryptfs-utils
      # 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" = "cifs" ] && LOCAL=1
      [ "$1" = "coda" ] && LOCAL=1
      [ "$1" = "AFS" ] && LOCAL=1       # Andrew Filesystem
      [ "$1" = "afs" ] && LOCAL=1       # Andrew Filesystem
      [ "$1" = "rpc_pipefs" ] && LOCAL=1
      [ "$1" = "gfs" ] && LOCAL=1       # Red Hat's Global Filesystem
                                        # http://sources.redhat.com/cluster/wiki/
      [ "$1" = "gfs2" ] && LOCAL=1      # Red Hat's Global Filesystem
      # Note: gfs is considered non-local even though remoutely mounted in a SAN as this filesystem could
      # be used exclusively, if your system uses gfs or gfs2 and you want to scan the filesystem
      # set it at Tiger_FSScan_Local
      [ "$1" = "proc" ] && LOCAL=1                  # General access point to kernel data structures
      [ "$1" = "bind" ] && LOCAL=1                  # Used to remount directories, define as virtual
                                                    # as otherwise files would be checked twice
      [ "$1" = "devpts" ] && LOCAL=1                # Pseudoterminal support (Open Group's Unix98 standard)
      [ "$1" = "usbfs" ] && LOCAL=1                 # USB devices
      [ "$1" = "usbdevfs" ] && LOCAL=1
      [ "$1" = "devfs" ] && LOCAL=1
      [ "$1" = "sysfs" ] && LOCAL=1                 # General access point to system data
      [ "$1" = "securityfs" ] && LOCAL=1            # Used by Ubuntu, see http://lwn.net/Articles/153366/ 
      [ "$1" = "none" ] && LOCAL=1
      [ "$1" = "autofs" ] && LOCAL=1
      [ "$1" = "binfmt_misc" ] && LOCAL=1           # Miscellaneous executable formats
      [ "$1" = "cramfs" ] && LOCAL=1
      [ "$1" = "ramfs" ] && LOCAL=1
      [ "$1" = "romfs" ] && LOCAL=1
      [ "$1" = "mqueue" ] && LOCAL=1                # POSIX message queues
      [ "$1" = "sockfs" ] && LOCAL=1                # Sockets
      [ "$1" = "bdev" ] && LOCAL=1                  # Block devices
      [ "$1" = "pipefs" ] && LOCAL=1
      [ "$1" = "eventpollfs" ] && LOCAL=1           # Efficient event polling mechanism
      [ "$1" = "inotifyfs" ] && LOCAL=1 
      [ "$1" = "hugetlbf" ] && LOCAL=1 
      [ "$1" = "subfs" ] && LOCAL=1 
      [ "$1" = "futexfs" ] && LOCAL=1               # futex (Fast Userspace Locking) mechanism
      [ "$1" = "vmblock" ] && LOCAL=1               # Vmware filesystem
      [ "$1" = "debugfs" ] && LOCAL=1               # Debugging filesystem see 
                                                    # http://lwn.net/Articles/115405/
      [ "$1" = "configfs" ] && LOCAL=1
      # 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
    
      # Handle the Tiger_FSScan_Local and Tiger_FSScan_Nonlocal variables, if defined
      if [ ! -z "$Tiger_FSScan_Local" ] ; then
        # List of known filesystems the admin considers to be local to the system
        if echo $1 | $EGREP -q $Tiger_FSScan_Local; then
            LOCAL=0
        fi
      fi
      if [ ! -z "$Tiger_FSScan_NonLocal" ] ; then
        # List of known filesystems the admin considers to be not local to the system
        if echo $1 | $EGREP -q $Tiger_FSScan_NonLocal; then
            LOCAL=1
        fi
      fi
    
      # The rest we warn about
      if [ "$LOCAL" -eq 2 ] ; then
        if [ -z "$Tiger_FSScan_WarnUnknown" ] || [ "$Tiger_FSScan_WarnUnknown" = "Y" ] ; then
            echo "--CONFIG-- [con010c] Filesystem '$1' used by '$2' is not recognised as a valid filesystem" >&2
        fi
        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`
    [ -z "$EGREP" ] && EGREP=`which egrep`
    
    $GETFS  |
    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" "$fs" || PRINT=0; }
      [ "$PRINT" = "1" ] && {
        dir=`dirname $fs`
        file=`$BASENAME $fs`
        rfs="$dir/r$file"
        echo "$mtpoint $fstype $fs"
      }
    done
    
    tiger-3.2.3/systems/Linux/2/gen_passwd_sets0000755000175000017500000001643010274353117017353 0ustar  pacopaco#!/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.
    #
    # Linux/2/gen_passwd_sets - 06/14/93
    # Linux/2/gen_passwd_sets - 12/20/2001 - jfs
    #      changed by jfs to provide support for both shadow and unshadowed
    #      added SunOS gen_passwd_sets so that it works with nsswitch.conf if available
    # Linux/2/gen_passwd_sets - 04/12/2003 - jfs
    #      small change to that outfile gets created when the script is called
    # 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
    #
    #-----------------------------------------------------------------------------
    #
    
    # If run directly do this, just in case:
    [ -z "$SORT" ] && SORT=`which sort`
    [ -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
    for parm
    do
      case "$parm" in
        -p) passwordflag=Y;;
        -l) local=1;;
        *)	outfile="$parm";;
      esac
    done
    
    [ -z "$outfile" ] && {
    	echo "ERROR: Missing argument (outfile)"
    	exit 1
    }
    # Empty the outfile
    # This will prevent errors due to the file not existing
    # if this script FAILs
    > $outfile
    
    zappasswd()
    {
      IFS=:
      while read user passwd rest
      do
        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"
    	   ;;
    # For MD5 passwds (34 chars) starting with $1$ (Linux)
          \$1\$[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\./][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\./][a-zA-Z0-9\./][a-zA-Z0-9\./])
    	     passwd="md5"
    	   ;;
          " ") passwd=""
    	   ;;
    	*|!!)
    	     passwd="*"
    	   ;;
        esac
        echo "$user:$passwd:$rest" 
      done
    }
    
    if [ -f /etc/nsswitch.conf ]
    then
        INPUTS=` $GREP '^passwd' /etc/nsswitch.conf | $AWK '{
    	for(i=2;i<=NF;i++)
              print $i
          }' `
    else
        INPUTS="compat"
    fi
    
    for source in $INPUTS
    do
      case $source in
        files|compat)
    	if [ -f /etc/shadow ] 
    	    then
    		if [ -r /etc/shadow ] 
    		then
    		$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
    			else
    			    zappasswd
    			fi
    		} > $WORKDIR/etc_passwd.$$
    	   
    		[ -s $WORKDIR/etc_passwd.$$ ] && {
    		    echo "/etc/passwd" > $WORKDIR/etc_passwd.$$.src
    		    echo $WORKDIR/etc_passwd.$$ >> $outfile
    		}
    		$RM $WORKDIR/u.$$
    		$RM $WORKDIR/p.$$
    		$RM $WORKDIR/s.$$
    		else 
    		      echo "--ERROR-- [run001e] The file /etc/shadow is available but not readable by the user running Tiger."
    		fi
    
    	    else
                    $CAT /etc/passwd |
                    {
                            if [ "$passwordflag" = 'Y' ]; then
                                    $CAT
                            else
                                    zappasswd
                            fi
                    } > $WORKDIR/etc_passwd.$$
    		echo "/etc/passwd" > $WORKDIR/etc_passwd.$$.src
    		echo $WORKDIR/etc_passwd.$$ >> $outfile
    	    fi
    	   
    	   [ "$source" = "files" ] && $GREP '^+' $WORKDIR/etc_passwd.$$ && {
    	     echo "--WARN-- [miscxxxx] The '+' key in the /etc/passwd file should only be used in nsswitch 'compat' mode."
    	   }
    
    	    [ "$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 ] && [ -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
    	   }
    	 ;;
        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
    #	       echo "$WORKDIR/nisplus_passwd.$$" >> $outfile
    #	     }
    #         ;;
        *)
             ;;
      esac
    done
    
    
    exit 0
    tiger-3.2.3/systems/Linux/2/gen_services0000755000175000017500000000172207650720225016637 0ustar  pacopaco#!/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/4/gen_services - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    $GREP -v '^#' /etc/services |
    $SORT > $WORKDIR/etc_services.$$
    echo "/etc/services" > $WORKDIR/etc_services.$$.src
    echo $WORKDIR/etc_services.$$
    
    tiger-3.2.3/systems/Linux/2/gendlclients0000755000175000017500000000150007650720225016630 0ustar  pacopaco#!/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/4/gendlclients - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    tiger-3.2.3/systems/Linux/2/getdisks0000755000175000017500000000167211061314514015773 0ustar  pacopaco#!/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
    # 09/08/2008 - jfs - Do not warn for non-local filesystems here
    #
    #-----------------------------------------------------------------------------
    #
    
    $GET_MOUNTS local all |
    $AWK '{printf("%s ",$1)}
    END {printf("\n")}' 
    tiger-3.2.3/systems/Linux/2/getuserhome0000755000175000017500000000130307650720225016505 0ustar  pacopaco#!/bin/sh
    #    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.
    
    #
    # cd to / in case we are down in a directory we don't have read
    # access to.  /bin/csh will barf if that is the case.
    #
    cd /
    
    user="$1"
    
    /bin/bash -c "echo ~$user" | grep -v \~  2> /dev/null
    
    
    tiger-3.2.3/systems/Linux/2/inetd0000644000175000017500000000272307502327223015262 0ustar  pacopacoecho	stream	tcp	nowait	root	internal
    echo	dgram	udp	wait	root	internal
    discard	stream	tcp	nowait	root	internal
    discard	dgram	udp	wait	root	internal
    daytime	stream	tcp	nowait	root	internal
    daytime	dgram	udp	wait	root	internal
    chargen	stream	tcp	nowait	root	internal
    chargen	dgram	udp	wait	root	internal
    ftp	stream	tcp	nowait	root	/usr/sbin/tcpd	in.ftpd -l -a -i -o
    telnet	stream  tcp     nowait  root    /usr/sbin/tcpd	in.telnetd
    nntp	stream	tcp	nowait	root	/usr/sbin/tcpd	in.nntpd
    shell	stream	tcp	nowait	root	/usr/sbin/tcpd	in.rshd
    login	stream	tcp	nowait	root	/usr/sbin/tcpd	in.rlogind
    exec	stream	tcp	nowait	root	/usr/sbin/tcpd	in.rexecd
    talk	dgram	udp	wait	root	/usr/sbin/tcpd	in.talkd
    ntalk	dgram	udp	wait	root	/usr/sbin/tcpd	in.ntalkd
    pop-2	stream	tcp	nowait	root	/usr/sbin/tcpd	ipop2d
    pop-3	stream	tcp	nowait	root	/usr/sbin/tcpd	ipop3d
    imap	stream	tcp	nowait	root	/usr/sbin/tcpd	imapd
    uucp	stream	tcp	nowait	uucp	/usr/sbin/tcpd	/usr/lib/uucp/uucico	-l
    tftp	dgram	udp	wait	root	/usr/sbin/tcpd	in.tftpd
    bootps	dgram	udp	wait	root	/usr/sbin/tcpd	bootpd
    finger	stream	tcp	nowait	root	/usr/sbin/tcpd	in.fingerd
    systat	stream	tcp	nowait	guest	/usr/sbin/tcpd	/bin/ps auwwx
    netstat	stream	tcp	nowait	guest	/usr/sbin/tcpd	/bin/netstat	-f inet
    time	stream	tcp	nowait	nobody	/usr/sbin/tcpd	in.timed
    time	dgram	udp	wait	nobody	/usr/sbin/tcpd	timed
    auth   stream  tcp     wait    nobody    /usr/sbin/tcpd in.identd -w -l -e -o -t120
    linuxconf stream tcp wait root /usr/sbin/tcpd  linuxconf --http
    tiger-3.2.3/systems/Linux/2/read_services.sh0000755000175000017500000000120207660507011017400 0ustar  pacopaco#!/bin/sh
    #    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.
    
    /bin/cat /etc/services | grep -v '^#' | 
    while read service type other other2
    do
    	[ ! -z "$service" ] && echo $service $type
    done
    tiger-3.2.3/systems/Linux/2/rel_file_exp_list0000644000175000017500000000000007502327223017631 0ustar  pacopacotiger-3.2.3/systems/Linux/2/retrieve-advisories.pl0000755000175000017500000000210707650720225020566 0ustar  pacopaco#!/usr/bin/perl -n
    # Run with:
    # find . -name "*data" -exec cat \{\} \; | perl retrieve-advisories.pl >debian_advisories
    # on the webml sources of Debian WWW to retrieve information
    # on all advisories and output a database for use on Tiger checks.
    # Writen for Debian's Tiger by Javier Fernández-Sanguino Peña
    # Distributed under the GPL see www.gnu.org
    
    #    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.
    #
    
    
    $advisory=$1 if /pagetitle\>(.*?)\<\/define/ ;
    $date=$1 if /date\>(.*?)\<\/define/ ;
    
    if ( /\/([\w\-]+)\_([\.\d\-]+)\_(\w+)\.deb/ ) {
    	$package=$1;
    	$version=$2;
    	$arch=$3;
    	print "$package\t$version\t$arch\t$advisory\t$date\n";
    }
    tiger-3.2.3/systems/Linux/2/rh7.3.baseline0000644000175000017500000000225407651563411016606 0ustar  pacopacoLogin ID nfsnobody has a duplicate home directory \(/var/lib/nfs\) with another user
    Login ID \w+ is disabled, but still has a valid shell (\/sbin\/nologin)
    Login ID nfsnobody appears to be a dormant account
    /bin/rpm in root's PATH from default is not owned by root \(owned by rpm\). 
    /usr/bin/gendiff in root's PATH from default is not owned by root \(owned by rpm\)
    /usr/bin/rpm2cpio in root's PATH from default is not owned by root \(owned by rpm\)
    /usr/bin/rpmdb in root's PATH from default is not owned by root \(owned by rpm\)
    /usr/bin/rpmquery in root's PATH from default is not owned by root \(owned by rpm\)
    /usr/bin/rpmsign in root's PATH from default is not owned by root \(owned by rpm\)
    /usr/bin/rpmverify in root's PATH from default is not owned by root \(owned by rpm\)
    /dev/agpgart has world permissions 
    /dev/log has world permissions 
    /dev/null has world permissions 
    /dev/ptmx has world permissions 
    /dev/qng has world permissions 
    /dev/rtc has world permissions 
    /dev/vsys has world permissions 
    Log file /var/log/wtmp permission should be 644 
    Log file /var/log/btmp does not exist 
    Log file /var/run/utmp permission should be 644 
    Log file /var/log/loginlog does not exist 
    tiger-3.2.3/systems/Linux/2/services0000644000175000017500000001332007502327223015775 0ustar  pacopacotcpmux 1/tcp
    echo 7/tcp
    echo 7/udp
    discard 9/tcp
    discard 9/udp
    systat 11/tcp
    daytime 13/tcp
    daytime 13/udp
    netstat 15/tcp
    qotd 17/tcp
    msp 18/tcp
    msp 18/udp
    chargen 19/tcp
    chargen 19/udp
    ftp-data 20/tcp
    ftp 21/tcp
    fsp 21/udp
    ssh 22/tcp
    ssh 22/udp
    telnet 23/tcp
    smtp 25/tcp
    time 37/tcp
    time 37/udp
    rlp 39/udp
    nameserver 42/tcp
    whois 43/tcp
    re-mail-ck 50/tcp
    re-mail-ck 50/udp
    domain 53/tcp
    domain 53/udp
    mtp 57/tcp
    bootps 67/tcp
    bootps 67/udp
    bootpc 68/tcp
    bootpc 68/udp
    tftp 69/udp
    gopher 70/tcp
    gopher 70/udp
    rje 77/tcp
    finger 79/tcp
    www 80/tcp
    www 80/udp
    link 87/tcp
    kerberos 88/tcp
    kerberos 88/udp
    supdup 95/tcp
    hostnames 101/tcp
    iso-tsap 102/tcp
    csnet-ns 105/tcp
    csnet-ns 105/udp
    rtelnet 107/tcp
    rtelnet 107/udp
    pop2 109/tcp
    pop2 109/udp
    pop3 110/tcp
    pop3 110/udp
    sunrpc 111/tcp
    sunrpc 111/udp
    auth 113/tcp
    sftp 115/tcp
    uucp-path 117/tcp
    nntp 119/tcp
    ntp 123/tcp
    ntp 123/udp
    pwdgen 129/tcp
    pwdgen 129/udp
    netbios-ns 137/tcp
    netbios-ns 137/udp
    netbios-dgm 138/tcp
    netbios-dgm 138/udp
    netbios-ssn 139/tcp
    netbios-ssn 139/udp
    imap2 143/tcp
    imap2 143/udp
    snmp 161/udp
    snmp-trap 162/udp
    cmip-man 163/tcp
    cmip-man 163/udp
    cmip-agent 164/tcp
    cmip-agent 164/udp
    mailq 174/tcp
    mailq 174/udp
    xdmcp 177/tcp
    xdmcp 177/udp
    nextstep 178/tcp
    nextstep 178/udp
    bgp 179/tcp
    bgp 179/udp
    prospero 191/tcp
    prospero 191/udp
    irc 194/tcp
    irc 194/udp
    smux 199/tcp
    smux 199/udp
    at-rtmp 201/tcp
    at-rtmp 201/udp
    at-nbp 202/tcp
    at-nbp 202/udp
    at-echo 204/tcp
    at-echo 204/udp
    at-zis 206/tcp
    at-zis 206/udp
    qmtp 209/tcp
    qmtp 209/udp
    z3950 210/tcp
    z3950 210/udp
    ipx 213/tcp
    ipx 213/udp
    imap3 220/tcp
    imap3 220/udp
    rpc2portmap 369/tcp
    rpc2portmap 369/udp
    codaauth2 370/tcp
    codaauth2 370/udp
    ulistserv 372/tcp
    ulistserv 372/udp
    ldap 389/tcp
    ldap 389/udp
    https 443/tcp
    https 443/udp
    snpp 444/tcp
    snpp 444/udp
    saft 487/tcp
    saft 487/udp
    npmp-local 610/tcp
    npmp-local 610/udp
    npmp-gui 611/tcp
    npmp-gui 611/udp
    hmmp-ind 612/tcp
    hmmp-ind 612/udp
    ipp 631/tcp
    ipp 631/udp
    exec 512/tcp
    biff 512/udp
    login 513/tcp
    who 513/udp
    shell 514/tcp
    syslog 514/udp
    printer 515/tcp
    talk 517/udp
    ntalk 518/udp
    route 520/udp
    timed 525/udp
    tempo 526/tcp
    courier 530/tcp
    conference 531/tcp
    netnews 532/tcp
    netwall 533/udp
    gdomap 538/tcp
    gdomap 538/udp
    uucp 540/tcp
    afpovertcp 548/tcp
    afpovertcp 548/udp
    remotefs 556/tcp
    klogin 543/tcp
    kshell 544/tcp
    nntps 563/tcp
    nntps 563/udp
    ldaps 636/tcp
    ldaps 636/udp
    tinc 655/tcp
    tinc 655/udp
    kerberos-adm 749/tcp
    webster 765/tcp
    webster 765/udp
    rsync 873/tcp
    rsync 873/udp
    ftps-data 989/tcp
    ftps 990/tcp
    telnets 992/tcp
    telnets 992/udp
    imaps 993/tcp
    imaps 993/udp
    ircs 994/tcp
    ircs 994/udp
    pop3s 995/tcp
    pop3s 995/udp
    socks 1080/tcp
    socks 1080/udp
    lotusnote 1352/tcp
    lotusnote 1352/udp
    ingreslock 1524/tcp
    ingreslock 1524/udp
    prospero-np 1525/tcp
    prospero-np 1525/udp
    datametrics 1645/tcp
    datametrics 1645/udp
    sa-msg-port 1646/tcp
    sa-msg-port 1646/udp
    radius 1812/tcp
    radius 1812/udp
    radius-acct 1813/tcp
    radius-acct 1813/udp
    rtcm-sc104 2101/tcp
    rtcm-sc104 2101/udp
    cvspserver 2401/tcp
    cvspserver 2401/udp
    venus 2430/tcp
    venus 2430/udp
    venus-se 2431/tcp
    venus-se 2431/udp
    codasrv 2432/tcp
    codasrv 2432/udp
    codasrv-se 2433/tcp
    codasrv-se 2433/udp
    mon 2583/tcp
    mon 2583/udp
    dict 2628/tcp
    dict 2628/udp
    gds_db 3050/tcp
    gds_db 3050/udp
    icpv2 3130/tcp
    icpv2 3130/udp
    mysql 3306/tcp
    mysql 3306/udp
    rfe 5002/tcp
    rfe 5002/udp
    cfengine 5308/tcp
    cfengine 5308/udp
    x11 6000/tcp
    x11 6000/udp
    x11-1 6001/tcp
    x11-1 6001/udp
    x11-2 6002/tcp
    x11-2 6002/udp
    x11-3 6003/tcp
    x11-3 6003/udp
    x11-4 6004/tcp
    x11-4 6004/udp
    x11-5 6005/tcp
    x11-5 6005/udp
    x11-6 6006/tcp
    x11-6 6006/udp
    x11-7 6007/tcp
    x11-7 6007/udp
    afs3-fileserver 7000/tcp
    afs3-fileserver 7000/udp
    afs3-callback 7001/tcp
    afs3-callback 7001/udp
    afs3-prserver 7002/tcp
    afs3-prserver 7002/udp
    afs3-vlserver 7003/tcp
    afs3-vlserver 7003/udp
    afs3-kaserver 7004/tcp
    afs3-kaserver 7004/udp
    afs3-volser 7005/tcp
    afs3-volser 7005/udp
    afs3-errors 7006/tcp
    afs3-errors 7006/udp
    afs3-bos 7007/tcp
    afs3-bos 7007/udp
    afs3-update 7008/tcp
    afs3-update 7008/udp
    afs3-rmtsys 7009/tcp
    afs3-rmtsys 7009/udp
    font-service 7100/tcp
    font-service 7100/udp
    wnn6 22273/tcp
    wnn6 22273/udp
    
    kerberos4 750/udp
    kerberos4 750/tcp
    kerberos_master 751/udp
    kerberos_master 751/tcp
    passwd_server 752/udp
    krb_prop 754/tcp
    krbupdate 760/tcp
    kpasswd 761/tcp
    swat 901/tcp
    kpop 1109/tcp
    knetd 2053/tcp
    zephyr-srv 2102/udp
    zephyr-clt 2103/udp
    zephyr-hm 2104/udp
    eklogin 2105/tcp
    kx 2111/tcp
    supfilesrv 871/tcp
    supfiledbg 1127/tcp
    rtmp 1/ddp
    nbp 2/ddp
    echo 4/ddp
    zip 6/ddp
    linuxconf 98/tcp
    poppassd 106/tcp
    poppassd 106/udp
    imsp 406/tcp
    imsp 406/udp
    ssmtp 465/tcp
    nqs 607/tcp
    moira_db 775/tcp
    moira_update 777/tcp
    moira_ureg 779/udp
    omirr 808/tcp
    omirr 808/udp
    customs 1001/tcp
    customs 1001/udp
    rmiregistry 1099/tcp
    skkserv 1178/tcp
    predict 1210/udp
    rmtcfg 1236/tcp
    xtel 1313/tcp
    xtelw 1314/tcp
    support 1529/tcp
    sieve 2000/tcp
    cfinger 2003/tcp
    ndtp 2010/tcp
    ninstall 2150/tcp
    ninstall 2150/udp
    zebrasrv 2600/tcp
    zebra 2601/tcp
    ripd 2602/tcp
    ripngd 2603/tcp
    ospfd 2604/tcp
    bgpd 2605/tcp
    ospf6d 2606/tcp
    afbackup 2988/tcp
    afbackup 2988/udp
    afmbackup 2989/tcp
    afmbackup 2989/udp
    xtell 4224/tcp
    fax 4557/tcp
    hylafax 4559/tcp
    pcrd 5151/tcp
    noclog 5354/tcp
    noclog 5354/udp
    hostmon 5355/tcp
    hostmon 5355/udp
    postgres 5432/tcp
    postgres 5432/udp
    mrtd 5674/tcp
    bgpsim 5675/tcp
    canna 5680/tcp
    sane 6566/tcp
    ircd 6667/tcp
    ircd 6667/udp
    ircd-dalnet 7000/tcp
    ircd-dalnet 7000/udp
    webcache 8080/tcp
    webcache 8080/udp
    tproxy 8081/tcp
    tproxy 8081/udp
    omniorb 8088/tcp
    omniorb 8088/udp
    mandelspawn 9359/udp
    amanda 10080/udp
    kamanda 10081/tcp
    kamanda 10081/udp
    amandaidx 10082/tcp
    amidxtape 10083/tcp
    smsqp 11201/tcp
    smsqp 11201/udp
    xpilot 15345/tcp
    xpilot 15345/udp
    isdnlog 20011/tcp
    isdnlog 20011/udp
    vboxd 20012/tcp
    vboxd 20012/udp
    binkp 24554/tcp
    binkp 24554/udp
    asp 27374/tcp
    asp 27374/udp
    dircproxy 57000/tcp
    tfido 60177/tcp
    tfido 60177/udp
    fido 60179/tcp
    fido 60179/udp
    tiger-3.2.3/systems/Linux/2/sgid_list0000644000175000017500000000333307720456000016134 0ustar  pacopaco/usr/bin/wall
    /usr/bin/chage
    /usr/bin/expiry
    /usr/bin/write
    /usr/bin/dotlockfile
    /usr/bin/screen
    /usr/bin/mutt_dotlock
    /usr/bin/lpq
    /usr/bin/lpr
    /usr/bin/lprm
    /usr/bin/procmail
    /usr/bin/lockfile
    /usr/bin/xscreensaver
    /usr/sbin/chroot
    /usr/sbin/lpc
    /usr/sbin/gnome-pty-helper
    /usr/sbin/mgt-pty-helper
    /usr/games/atc
    /usr/games/battlestar
    /usr/games/canfield
    /usr/games/cribbage
    /usr/games/phantasia
    /usr/games/robots
    /usr/games/sail
    /usr/games/snake
    /usr/games/tetris-bsd
    /usr/games/crawl
    /usr/games/icebreaker
    /usr/lib/emacs/20.7/i386-debian-linux-gnu/movemail
    /usr/lib/games/nethack/recover
    /usr/lib/games/nethack/nethack-x11
    /usr/lib/squid/pam_auth
    /usr/src
    /usr/X11R6/bin/X
    /etc/ppp/peers
    /etc/chatscripts
    /var/lib/cvs
    /var/lib/cvs/CVSROOT
    /var/lib/cvs/CVSROOT/Emptydir
    /var/cache/man
    /var/cache/man/fsstnd
    /var/cache/man/fsstnd/cat1
    /var/cache/man/fsstnd/cat8
    /var/cache/man/cat1
    /var/cache/man/cat2
    /var/cache/man/cat3
    /var/cache/man/cat4
    /var/cache/man/cat5
    /var/cache/man/cat6
    /var/cache/man/cat7
    /var/cache/man/cat8
    /var/cache/man/oldlocal
    /var/cache/man/oldlocal/cat1
    /var/cache/man/oldlocal/cat3
    /var/cache/man/local
    /var/cache/man/X11R6
    /var/cache/man/X11R6/cat1
    /var/cache/man/X11R6/cat7
    /var/cache/man/X11R6/cat4
    /var/cache/man/X11R6/cat5
    /var/cache/man/X11R6/cat3
    /var/cache/man/opt
    /var/local
    /var/log/exim
    /var/log/news
    /var/log/snort
    /var/spool/lpd
    /var/spool/lpd/remote
    /var/spool/lpd/lp
    /var/spool/lpd/hplj4050c
    /var/spool/lpd/hplj4l
    /var/mail
    /var/chroot/bastille/etc/chatscripts
    /var/chroot/bastille.bak/etc/chatscripts
    /var/chroot/rootkit/etc/chatscripts
    /var/games/bsdgames
    /var/games/bsdgames/phantasia
    /var/games/bsdgames/sail
    /var/games/nethack
    /var/games/nethack/save
    /var/games/crawl
    /var/games/omega-rpg
    /var/games/falconseye
    tiger-3.2.3/systems/Linux/2/signatures0000644000175000017500000000667707720456000016355 0ustar  pacopaco#
    # Signature file for Linux 2.4.17 i586, in a Debian GNU/Linux 3.0 system
    # generated Sat,  9 Aug 2003 14:37:13 +0200
    Y .       /usr/bin/at 8e22c028c8dee590c9d11746dd539e6a Linux 2.4.17
    Y .       /usr/games/atc 90b5f197afe0c92f4aa24b8b64268325 Linux 2.4.17
    Y .       /bin/bash 603492287ea2f26b9fb9266c961d5b0c Linux 2.4.17
    Y .       /sbin/cardctl 0427cd2b35a1a511a9650bff83ec84e9 Linux 2.4.17
    Y .       /usr/bin/chage ca09821681f75065d1f0592c6ec88767 Linux 2.4.17
    Y .       /usr/bin/chfn b8eff3405c4f9a9c872dd5f53e45b83e Linux 2.4.17
    Y .       /usr/bin/chsh f2cd996ab789ff520e5b67551eaf88a6 Linux 2.4.17
    Y .       /usr/bin/crontab eaea7027da3804e31d25d0e25b515e69 Linux 2.4.17
    Y .       /usr/bin/gpasswd 690adb188523013a0f0cc2bba9f04d3f Linux 2.4.17
    Y .       /usr/sbin/inetd c20a2d9e070fa96308a967d45373972a Linux 2.4.17
    Y .       /usr/sbin/in.fingerd aacfcb3bc2156c7de2178acf3fa48975 Linux 2.4.17
    Y .       /usr/sbin/in.ftpd 198d09963ac63edfeecbccb36bd944d3 Linux 2.4.17
    Y .       /usr/sbin/in.telnetd 80fe41cdd1965645217748e375dc9eab Linux 2.4.17
    Y .       /bin/ksh 466b4f3fc52f60dbfba0f5986a0b4215 Linux 2.4.17
    Y .       /usr/bin/lockfile b7c26aa2413e8f45c2b345a7424b53b6 Linux 2.4.17
    Y .       /bin/login 030f3f84ec76a8181cca087c4ba655ea Linux 2.4.17
    Y .       /usr/sbin/lpc ed97ba5420555dd931a23e69336914a1 Linux 2.4.17
    Y .       /usr/sbin/lpd eb5eae88ef36d6cffbdcb99b4f81043f Linux 2.4.17
    Y .       /usr/bin/lpq 11c9c2c3cef4fe026a8060aa41176a5e Linux 2.4.17
    Y .       /usr/bin/lpr 2f5f82881c33dc41695043b0c10910f7 Linux 2.4.17
    Y .       /usr/bin/lprm aebd08dc617c0efdba026044f2dcf387 Linux 2.4.17
    Y .       /bin/ls a5c720b6776331b9695d9a1f4f5c2194 Linux 2.4.17
    Y .       /usr/bin/minicom 32ddb853092585d922f6af79dfbb3dc3 Linux 2.4.17
    Y .       /bin/mount 480590a187244b629202fa51ec543503 Linux 2.4.17
    Y .       /usr/bin/mutt c986a8931b2e79c5406db99152736493 Linux 2.4.17
    Y .       /bin/netstat fd2c999a20b1e9bbb395ee8389208923 Linux 2.4.17
    Y .       /usr/bin/newgrp 60d04ae1f870d15c039d3541f946fd87 Linux 2.4.17
    Y .       /usr/bin/passwd 33871f209e5a92b28f6c6eab01ea5419 Linux 2.4.17
    Y .       /bin/ping b6c0209547d88928f391d2bf88af34aa Linux 2.4.17
    Y .       /sbin/portmap ebc807faaa7313ee5e603e6493d94a2a Linux 2.4.17
    Y .       /usr/bin/procmail c2538809090f85eba5bcae798630b62c Linux 2.4.17
    Y .       /bin/ps c0f2f541bcce2394cb026cfa4ccb5c38 Linux 2.4.17
    Y .       /usr/games/robots fac0181f6b81baa805b17e0c20f48882 Linux 2.4.17
    Y .       /usr/sbin/rpc.mountd 9049b3d70f5a536a238db02b9d4e7c8a Linux 2.4.17
    Y .       /usr/sbin/rpc.yppasswdd def63cbf4522a8bc631007a281f43f91 Linux 2.4.17
    Y .       /usr/bin/screen 980d30a2af5d9526bb327300c4843d15 Linux 2.4.17
    Y .       /usr/bin/ssh 362a84976a7bae98c979235cd92ed5ae Linux 2.4.17
    Y .       /usr/sbin/sshd d2d79d3d26ced48378101f587d3d1d86 Linux 2.4.17
    Y .       /bin/su 5d324ad212b2ff8f767637ac1a8071ec Linux 2.4.17
    Y .       /usr/sbin/tcpd 7e0e16cafcfd32ccb3edb8f9a6097b52 Linux 2.4.17
    Y .       /bin/tcsh 998949282f92e97302b0bdf0a57048cc Linux 2.4.17
    Y .       /usr/bin/traceroute e69c5239fc7b71ba2f5bf6cc6ed62550 Linux 2.4.17
    Y .       /bin/umount 0feed0cb8b04c62eb479ba4c350af2a2 Linux 2.4.17
    Y .       /usr/bin/wall 344dbedc398d5114966914419ef53fcc Linux 2.4.17
    Y .       /usr/bin/write 3f8e6ffb16041da0aae8e1cc33b5b245 Linux 2.4.17
    Y .       /usr/bin/xscreensaver cebea855a123fb32829f3bdf4dfd455f Linux 2.4.17
    Y .       /usr/sbin/ypbind 9d3a64bb4a7c59bf8662642ce4ccb19a Linux 2.4.17
    Y .       /usr/sbin/ypserv 97e5bf897a530a29b27a76bd24c71b9b Linux 2.4.17
    tiger-3.2.3/systems/Linux/2/suid_list0000644000175000017500000000134410664615147016164 0ustar  pacopaco/usr/bin/newgrp
    /usr/bin/chfn
    /usr/bin/chsh
    /usr/bin/gpasswd
    /usr/bin/passwd
    /usr/bin/at
    /usr/bin/crontab
    /usr/bin/lpq
    /usr/bin/lpr
    /usr/bin/lprm
    /usr/bin/procmail
    /usr/bin/mtr
    /usr/bin/traceroute
    /usr/bin/smbumount
    /usr/bin/smbmnt
    /usr/bin/gpg
    /usr/bin/sudo
    /usr/bin/pumount
    /usr/bin/pmount
    /usr/bin/cardinfo
    /usr/bin/splaymidi
    /usr/bin/lockvc
    /usr/sbin/chroot
    /usr/sbin/exim
    /usr/sbin/exim4
    /usr/sbin/pppd
    /usr/sbin/pppoe
    /usr/games/qw-client-svga.real
    /usr/games/quake-svga.real
    /usr/lib/pt_chown
    /usr/lib/man-db/mandb
    /usr/lib/man-db/man
    /usr/lib/telnetlogin
    /usr/lib/apache/suexec
    /usr/lib/apache2/suexec
    /usr/bin/X
    /sbin/unix_chkpwd
    /sbin/cardctl
    /bin/login
    /bin/su
    /bin/mount
    /bin/umount
    /bin/ping
    /bin/ping6
    /usr/bin/traceroute.lbl
    tiger-3.2.3/systems/Linux/2/update_advisories.sh0000644000175000017500000000222111061317621020267 0ustar  pacopaco#!/bin/sh
    #
    # Updates the information distributed by Tiger with the latest security
    # advisories. Currently only works with Debian (DSAs) which are parsed
    # from the WML sources (retrieved from CVS at DEB_ADV_DIR)
    #
    #     Copyright (C) 2002 Javier Fernandez-Sanguino
    #
    #    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.
    
    
    DEB_ADV_DIR=~jfs/debian/www/webwml/english/security/
    if [ -d $DEB_ADV_DIR ] 
    then
    	find $DEB_ADV_DIR -name "*data" -a -type f -exec cat \{\} \; | perl retrieve-advisories.pl >debian_advisories
    else
    	echo "Cannot access the $DEB_ADV_DIR directory."
    	echo "Cannot generate the advisories data for Tiger."
    	exit 1
    fi
    
    exit 0
    
    
    tiger-3.2.3/systems/MacOSX/0000755000175000017500000000000011306441043014054 5ustar  pacopacotiger-3.2.3/systems/MacOSX/getuserhome0000655000175000017500000000027707722705572016357 0ustar  pacopaco#!/bin/sh
    
    #
    # cd to / in case we are down in a directory we don't have read
    # access to.  /bin/csh will barf if that is the case.
    #
    cd /
    
    user="$1"
    
    /bin/csh -c "echo ~$user" 2> /dev/null
    
    
    tiger-3.2.3/systems/MacOSX/check0000655000175000017500000000452607722714143015100 0ustar  pacopaco#!/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 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.
    #
    # MacOSX/check - 05?/15?/2002
    #
    #-----------------------------------------------------------------------------
    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 CAT FMT GEN_PASSWD_SETS JOIN LS RM || exit 1
      haveallfiles BASEDIR WORKDIR || exit 1
      haveallvars TESTLINK HOSTNAME
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    
    check_domain()
    {
      domain="$1"
      what="$2"
      /usr/bin/niutil -read "$domain" "$what" 2> /dev/null |
      /usr/bin/bm -s _writers && {
        echo "--WARN-- [ca9302a] _writers property enabled for $what in NetInfo($domain)"
      }
    
      /usr/bin/niutil -list "$domain" /machines serves 2>/dev/null |
      $AWK '{
        for(i=2;i<=NF;i++){
          len = index($i, "/") - 1;
          if(len == 0)
            printf("%s ", $i);
          else
            printf("%s ", substr($i, 1, len));
        }
      }' |
      while read subdom
      do
        [ "$subdom" != '.' -a "$subdom" != '..' ] && {
          check_domain "$subdom" "$what"
        }
      done
    }
    
    check_domain '/' '/printers'
    check_domain '/' '/fax_modems'
    tiger-3.2.3/systems/MacOSX/5/0000755000175000017500000000000011306441043014220 5ustar  pacopacotiger-3.2.3/systems/MacOSX/5/check_cron0000655000175000017500000000156507722713021016257 0ustar  pacopaco#!/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 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.
    #
    # MacOSX/5/check_cron 
    #
    #-----------------------------------------------------------------------------
    #
    if [ -f "$CRONSPOOL/$1" ]; then
      echo "YES"
    else
      echo "NO"
    fi
    tiger-3.2.3/systems/MacOSX/5/check0000655000175000017500000000605207722713021015232 0ustar  pacopaco#!/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 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.
    #
    # MacOSX/5/check - ARSC
    #
    #-----------------------------------------------------------------------------
    #
    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 GREP SED || exit 1
      haveallfiles BASEDIR WORKDIR || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    
    if [ -x /usr/kvm/eeprom ]; then
      EEPROM="/usr/kvm/eeprom"
    else
      EEPROM="/usr/sbin/eeprom"
    fi
    if [ -x $EEPROM ]; then
      status=`$EEPROM |
            $GREP '^secur.*=' |
            $GREP -v 'badlogins' |
    	$SED -e 's/^secur.*=\(.*\)$/\1/'`
    
      [ ! -n "$status" -o "$status" = "none" ] && {
      message WARN no-id "" "The PROM monitor is not in secure mode."
    }
    fi
    
    #
    # nfs:nfsportmon information due to Caspar Dik via comp.unix.solaris
    #
    
    nfsportmon=0
    $SED -e 's/\*.*$//' -e '/^$/d' -e 's/=/ = /' /etc/system |
    {
      while read _set var eq value
      do
        case "$var" in
          "nfs:nfs_portmon") nfsportmon="$value";;
        esac
      done
    
      [ "$nfsportmon" = 0 ] && {
        message WARN misc008w "" "NFS port checking disabled in kernel."
      }
    }
    
    if $SGREP "/sbin/sh.*/dev/console" /etc/rcS; then
      message WARN misc014w "" "/etc/rcS contains a vulnerability.  See explanation for details."
    fi
    
    [ -f /var/sadm/install/contents ] && {
      $EGREP '^/dev' /var/sadm/install/contents |
      while read file type x x x mode owner group pkg
      do
        [ "$type" = 'c' ] && {
          case "$file" in
    	*clone*:ie|*clone*:le|*clone*:qe) {
    	  [ "$mode" != 0600 ] && {
    	    message WARN misc016w "" "$file is defined with mode \`$mode' in /var/sadm/install/contents; should be \`0600'."
    	  }
    	  [ "$owner" != root ] && {
    	    message WARN misc017w "" "$file is defined with owner \`$owner' in /var/sadm/install/contents; should be \`root'."
    	  }
    	}
            ;;
          esac
        }
      done
    }
    tiger-3.2.3/systems/MacOSX/5/embedlist0000644000175000017500000000012707722705572016134 0ustar  pacopaco/etc/rc
    /etc/rc.boot
    /etc/rc.local
    /etc/rc.uucp
    /etc/rc.swap
    /.profile
    /.cshrc
    /.login
    tiger-3.2.3/systems/MacOSX/5/config0000644000175000017500000000757607722705572015450 0ustar  pacopaco# -*- sh -*-
    #
    #     tiger - A UN*X security checking system
    #     Copyright (C) 1993 Douglas Lee Schales, David K. Hess, David R. Safford
    #
    #     Please see the file `COPYING' for the complete copyright notice.
    #
    # SunOS/5/config - 06/14/93
    # Updated for compiles, findcmd, and whoami
    #
    #-----------------------------------------------------------------------------
    #
    
    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 ] ) 2> $WORKDIR/te.$$
    [ -s $WORKDIR/te.$$ ] && TESTEXEC=-f
    export TESTEXEC
    WHOAMI=`findcmd whoami`
    CAT=`findcmd cat`
    LS=`findcmd ls`
    # With /usr/bin/ls, just '-l' to get group owner
    # For /usr/ucb/ls, use "-lg"
    LSGROUP="-l"
    # -L to show file instead of symlink
    LSLINK="-L"
    RM=`findcmd rm`
    AWK=`findcmd awk`
    GREP=`findcmd grep`
    EGREP=`findcmd egrep`
    SGREP="$EGREP -s"
    SED=`findcmd sed`
    SORT=`findcmd sort`
    COMM=`findcmd comm`
    TAIL=`findcmd tail`
    MV=`findcmd mv`
    TR=`findcmd tr`
    IFCONFIG=`findcmd ifconfig`
    JOIN=`findcmd join`
    GROUPSS=`findcmd groups`
    FILECMD=`findcmd file`
    UNIQ=`findcmd uniq`
    BASENAME=`findcmd basename`
    CHMOD=`findcmd chmod`
    CHOWN=`findcmd chown`
    LN=`findcmd ln`
    PASTE=`findcmd paste`
    DIFF=`findcmd diff`
    DIFFD=' '
    MAILER=`findcmd mail`
    SENDMAILS="/usr/lib/sendmail /usr/lib/sendmail.mx"
    SENDMAILCF="/etc/mail/sendmail.cf"
    export SENDMAILS SENDMAILCF
    #
    export CAT LS LSGROUP LSLINK RM AWK GREP EGREP SGREP SED
    export SORT COMM TAIL MV TR JOIN GROUPSS FILECMD UNIQ BASENAME
    export CHMOD CHOWN LN PASTE DIFF DIFFD MAILER
    #
    UNAME=`findcmd uname`
    GETHOSTNAME="/usr/bin/uname -n"
    EXPR=`findcmd expr`
    STRINGS=`findcmd strings`
    FIND=`findcmd find`
    FINDXDEV=-xdev
    FMT=`findcmd fmt`
    CC=`findcmd gcc`
    if [ -z "$CC" ]; then
      CC=`findcmd cc`
    fi
    CFLAGS="-DNEEDGETWD"
    PS=`findcmd ps`
    DATE=`findcmd date`
    DATECMD="$DATE +%y%m%d"
    TIMECMD="$DATE +%H:%M"
    TESTLINK=-h
    TESTEXEC=-x
    #
    export UNAME GETHOSTNAME EXPR STRINGS FIND FINDXDEV
    export FMT CC PS DATE DATECMD TIMECMD TESTLINK CFLAGS TESTEXEC
    #
    WAIT=wait
    #
    #
    YPCAT=`findcmd ypcat`
    NISCAT=`findcmd niscat`
    TCPD=`findcmd tcpd`
    #
    export WAIT YPCAT NISCAT TCPD
    #
    #
    MAILSPOOL=/var/mail
    ETCSHELLS=/etc/shells
    CRONSPOOL=/var/spool/cron/crontabs
    #
    export MAILSPOOL ETCSHELLS CRONSPOOL
    # egrep regex that defines a local filesystem
    LOCFS="(ufs|tmpfs)"
    export LOCFS
    #
    # System dev directories...
    # 
    DEVDIRSYS="/dev/ /devices"
    #
    export DEVDIRSYS
    #
    SYSDEFAULTPATH="/usr/sbin:/usr/bin"
    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
    EOL
    `
    tiger-3.2.3/systems/MacOSX/5/datecmd0000655000175000017500000000141307722705572015566 0ustar  pacopaco#!/bin/sh
    #
    #     tiger - A UN*X security checking system
    #     Copyright (C) 1993 Douglas Lee Schales, David K. Hess, David R. Safford
    #
    #     Please see the file `COPYING' for the complete copyright notice.
    #
    # NeXT/3/datecmd - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    # Kludged date stamp for NeXT.
    $DATE |
    $AWK '{
    	printf(substr($6,3,2));
    	if ($2 == "Jan") printf "01"
    	if ($2 == "Feb") printf "02"
    	if ($2 == "Mar") printf "03"
    	if ($2 == "Apr") printf "04"
    	if ($2 == "May") printf "05"
    	if ($2 == "Jun") printf "06"
    	if ($2 == "Jul") printf "07"
    	if ($2 == "Aug") printf "08"
    	if ($2 == "Sep") printf "09"
    	if ($2 == "Oct") printf "10"
    	if ($2 == "Nov") printf "11"
    	if ($2 == "Dec") printf "12"
    	printf("%02d\n",$3);
    }'
    tiger-3.2.3/systems/MacOSX/5/file_access_list0000644000175000017500000002052107722705572017457 0ustar  pacopaco#
    #     tiger - A UN*X security checking system
    #     Copyright (C) 1993 Douglas Lee Schales, David K. Hess, David R. Safford
    #
    #     Please see the file `COPYING' for the complete copyright notice.
    #
    # NeXT/3/file_access_list - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    #                           owner group s g r w x   r w x   r w x
    #--------------------------------------------------------------------------
    /                           root  wheel . . 1 . 1   1 0 1   1 0 1 W 018 018 018
    /bin                        root  wheel . . 1 . 1   1 0 1   1 0 1 W 001 002 003
    /usr                        root  wheel . . 1 . 1   1 0 1   1 0 1 W 001 002 003
    /private                    root  staff . . 1 . 1   1 . 1   1 0 1 W 001 002 003
    /lib                        root  wheel . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /usr/prman                  root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/shlib                  root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/pub                    root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/standalone             root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/template               root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/netware                root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/dict                   root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/etc                    root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/filesystems            root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/bin                    root  wheel . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /usr/lib                    root  wheel . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /usr/ucb                    root  wheel . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /usr/*                      root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /private/Net                root  wheel . . . . .   . . .   . 0 . . 001 002 003
    /private/adm                root  staff . . . . .   . . .   . 0 . . 001 002 003
    /private/dev                root  wheel . . . . .   . 0 .   . 0 . . 001 002 003
    /private/etc                root  wheel . . . . .   . 0 .   . 0 . . 001 002 003
    /private/preserve           root  wheel . . . . .   . . .   . 0 . . 001 002 003
    /private/spool              root  wheel . . . . .   . 0 .   . 0 . . 001 002 003
    /private/tftpboot           root  wheel . . . . .   . . .   . 0 . . 001 002 003
    /private/vm                 root  wheel . . . . .   . 0 .   . 0 . . 001 002 003
    /etc/netinfo                root  wheel . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /etc/nulib                  root  wheel . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /etc/sendmail               root  wheel . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /etc/uucp                   root  wheel . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /etc/yp                     root  wheel . . 1 . 1   1 . 1   1 0 1 . 001 002 003
    /etc/zoneinfo               root  wheel . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    #
    /sdmach                     root  wheel . . 1 0 0   1 0 0   1 0 0 . 001 002 003
    /.cshrc                     root  .     . . 1 . .   . 0 .   . 0 . W 006 006 006
    /.login                     root  .     . . 1 . .   . 0 .   . 0 . W 006 006 006
    /.profile                   root  .     . . 1 . .   . 0 .   . 0 . W 006 006 006
    /.forward                   root  .     . . 1 . .   . 0 .   . 0 . W 006 006 006
    /.rhosts                    root  .     . . 1 . 0   0 0 0   0 0 0 W 006 006 006
    #
    /etc/sendmail/aliases       root  .     . . 1 . 0   1 . 0   1 0 0 F 007 007 007
    /etc/sendmail/aliases.dir   root  .     . . 1 . 0   1 0 0   1 0 0 F 007 007 007
    /etc/sendmail/aliases.pag   root  .     . . 1 . 0   1 0 0   1 0 0 F 007 007 007
    /etc/bootparams             root  .     . . 1 . 0   . 0 0   . 0 0 W 001 002 003
    /etc/exports                root  .     . . 1 . 0   . 0 0   . 0 0 W 008 008 008
    /etc/fstab                  root  .     . . 1 . 0   . 0 0   . 0 0 W 001 002 003
    /etc/gettytab               root  .     . . 1 . 0   . 0 0   . 0 0 W 001 002 003
    /etc/group                  root  .     . . 1 . 0   1 0 0   1 0 0 F 009 009 009
    /etc/hosts.allow            root  .     . . 1 . 0   1 0 0   1 0 0 W 010 010 010
    /etc/hosts.deny		    root  .     . . 1 . 0   1 0 0   1 0 0 W 010 010 010
    /etc/hosts.equiv            root  .     . . 1 . 0   0 0 0   0 0 0 W 011 011 011
    /etc/hosts.lpd              root  .     . . 1 . 0   . 0 0   . 0 0 W 011 011 011
    /etc/inetd.conf             root  .     . . 1 . 0   . 0 0   . 0 0 W 012 012 012
    /etc/motd                   root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/mtab                   root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/netgroup               root  .     . . 1 . 0   0 0 0   0 0 0 F 013 013 013
    /etc/passwd                 root  .     . . 1 . 0   1 0 0   1 0 0 A 014 014 014
    /etc/rc                     root  .     . . 1 . 0   . 0 0   . 0 0 F 015 015 015
    /etc/rc.boot                root  .     . . 1 . 0   . 0 0   . 0 0 F 015 015 015
    /etc/rc.local               root  .     . . 1 . 0   . 0 0   . 0 0 F 015 015 015
    /etc/rc.cdrom               root  .     . . 1 . 0   . 0 0   . 0 0 F 015 015 015
    /etc/rc.swap                root  .     . . 1 . 0   . 0 0   . 0 0 F 015 015 015
    /etc/rc.uucp                root  .     . . 1 . 0   . 0 0   . 0 0 F 015 015 015
    /etc/remote                 root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/resolv.conf            root  .     . . 1 . 0   1 0 0   1 0 0 W 016 016 016
    /etc/rpc                    root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/sendmail/sendmail.mailhost.cf root . . . 1 . 0 1 0 0   1 0 0 W 001 002 003
    /etc/sendmail/sendmail.sharedsubsidiary.cf root . . . 1 . 0 1 0 0 1 0 0 W 001 002 003
    /etc/sendmail/sendmail.subsidiary.cf root . . . 1 . 0 1 0 0 1 0 0 W 001 002 003
    /etc/services               root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/syslog.conf            root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/syslog.pid             root  .     . . 1 . 0   . 0 0   . 0 0 W 001 002 003
    /etc/ttys                   root  .     . . 1 . 0   . 0 0   . 0 0 W 001 002 003
    /etc/utmp                   root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    #
    /etc/uucp/L-devices	    uucp  .     . . 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/uucp/L-dialcodes	    uucp  .     . . 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/uucp/L.aliases	    uucp  .     . . 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/uucp/L.cmds	    root  .     . . 1 . 0   0 0 0   0 0 0 . 001 002 003
    /etc/uucp/L.sys  	    uucp  .     . . 1 . 0   1 0 0   1 0 0 . 001 002 003
    #
    /usr/bin/uulog              uucp  daemon . . . 0 1  . 0 1   . 0 . . 001 002 003
    /usr/bin/uusend             uucp  daemon . . . 0 1  . 0 1   . 0 . . 001 002 003
    /usr/bin/ruusend            uucp  daemon . . . 0 1  . 0 1   . 0 . . 001 002 003
    /usr/bin/uusnap             uucp  daemon . . . 0 1  . 0 1   . 0 . . 001 002 003
    /usr/bin/uupick             uucp  daemon . . . 0 1  . 0 1   . 0 . . 001 002 003
    /usr/bin/uuq                uucp  daemon . . . 0 1  . 0 1   . 0 . . 001 002 003
    /usr/bin/uupoll             uucp  daemon . . . 0 1  . 0 1   . 0 . . 001 002 003
    /usr/bin/cu                 root  daemon . . . . 1  . 0 1   . 0 . . 001 002 003
    /usr/bin/tip                root  daemon . . . . 1  . 0 .   . 0 . . 001 002 003
    /usr/bin/uucp               uucp  daemon . . . 0 1  . 0 1   . 0 . . 001 002 003
    /usr/bin/uux                uucp  daemon . . . 0 1  . 0 1   . 0 . . 001 002 003
    /usr/bin/uuname             uucp  daemon . . . 0 1  . 0 1   . 0 . . 001 002 003
    /usr/bin/uudecode           uucp  daemon . . . . 1  . 0 1   . 0 . . 001 002 003
    /usr/bin/uuencode           uucp  daemon . . . . 1  . 0 1   . 0 . . 001 002 003
    /usr/bin/write              root  tty    . . . . 1  . 0 .   . 0 . . 001 002 003
    /usr/bin/wall               root  tty    . . . . 1  . 0 .   . 0 . . 001 002 003
    #
    /usr/bin/login              root  .     . . 1 . 1   1 0 1   1 0 1 F 001 002 003
    /usr/bin/su                 root  .     . . 1 . 1   . 0 .   . 0 . F 001 002 003
    /usr/bin/su.nowheel         root  .     . . 1 . 1   . 0 .   . 0 . F 001 002 003
    /usr/bin/su.wheel           root  .     . . 1 . 1   . 0 .   . 0 . F 001 002 003
    /usr/bin/at                 agent .     . . 1 . 1   . 0 .   . 0 . . 001 002 003
    /usr/bin/atq                agent .     . . 1 . 1   . 0 .   . 0 . . 001 002 003
    /usr/bin/atrm               agent .     . . 1 . 1   . 0 .   . 0 . . 001 002 003
    /usr/bin/*                  root  .     . . 1 . 1   . 0 .   . 0 . . 001 002 003
    tiger-3.2.3/systems/MacOSX/5/gen_alias_sets0000655000175000017500000000232207756435011017140 0ustar  pacopaco#!/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 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.
    #
    # MacOSX/5/gen_alias_sets 
    #
    #-----------------------------------------------------------------------------
    #
    
    outfile="$1"
    
    {
      $GREP -v '^#' /etc/aliases |
      $SORT > $WORKDIR/etc_aliases.$$
      echo "/etc/aliases" > $WORKDIR/etc_aliases.$$.src
      echo $WORKDIR/etc_aliases.$$
    
      [ -n "$YPCAT" ] && {
        $YPCAT -k aliases |
        $SED -e 's/ /:/' | 
        $SORT |
        $COMM -23 - $WORKDIR/etc_aliases.$$ > $WORKDIR/nis_aliases.$$
        echo "NIS" > $WORKDIR/nis_aliases.$$.src
        echo $WORKDIR/nis_aliases.$$
      }
    } > $outfile
    tiger-3.2.3/systems/MacOSX/5/gen_bootparam_sets0000655000175000017500000000247707756435011020046 0ustar  pacopaco#!/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 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.
    #
    # MacOSX/5/gen_bootparam_sets 
    #
    #-----------------------------------------------------------------------------
    #
    
    [ -r /etc/bootparams ] && {
      $SED -e 's/#.*$//' /etc/bootparams |
      $SED -e '/^[ \t]*$/d' |
      $AWK '
           BEGIN {LINE="";}
           /\\\\$/ {LINE=LINE " " substr($0, 1, length($0)-1);}
           !/\\\\$/ {print LINE $0; LINE="";}
      ' > $WORKDIR/etc_bootparams.$$
      echo "/etc/bootparams" > $WORKDIR/etc_bootparams.$$.src
      echo "$WORKDIR/etc_bootparams.$$"
    }
    
    [ -n "$YPCAT" ] && {
      $YPCAT bootparams > $WORKDIR/nis_bootparams.$$
      echo "NIS" > $WORKDIR/nis_bootparams.$$.src
      echo "$WORKDIR/nis_bootparams.$$"
    }
    tiger-3.2.3/systems/MacOSX/5/gen_cron0000655000175000017500000000214407722713021015745 0ustar  pacopaco#!/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 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.
    #
    # MacOSX/5/gen_cron - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    cronfiles=
    [ -f /private/etc/crontab ] &&
      cronfiles="$cronfiles /private/etc/crontab"
    [ -f /private/etc/crontab.local ] &&
      cronfiles="$cronfiles /private/etc/crontab.local"
    
    [ -n "$cronfiles" ] && {
      $AWK '
        for(i=6;i<=NF;i++)
          printf("%s ", $i);
        printf("\n");
      ' $cronfiles
    }
    tiger-3.2.3/systems/MacOSX/5/gen_export_sets0000655000175000017500000000175107722713021017366 0ustar  pacopaco#!/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 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.
    #
    # MacOSX/5/gen_export_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    [ -r /etc/exports ] && {
      $GREP -v '^#' /etc/exports > $WORKDIR/etc_exports.$$
      echo "/etc/exports" > $WORKDIR/etc_exports.$$.src
      echo $WORKDIR/etc_exports.$$
    }
    tiger-3.2.3/systems/MacOSX/5/gen_group_sets0000655000175000017500000000277107756435011017213 0ustar  pacopaco#!/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 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.
    #
    # MacOSX/5/gen_group_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    $GREP -v '^[-+]' /etc/group |
    $SED -e 's/:$/: /' |
    $SORT > $WORKDIR/etc_group.$$
    echo "/etc/group" > $WORKDIR/etc_group.$$.src
    echo $WORKDIR/etc_group.$$
    
    [ -n "$YPCAT" ] && {
      $YPCAT group |
      $SED -e 's/:$/: /' |
      $SORT |
      $COMM -23 - $WORKDIR/etc_group.$$ > $WORKDIR/nis_group.$$
      echo "NIS" > $WORKDIR/nis_group.$$.src
      echo $WORKDIR/nis_group.$$
    }
    
    [ "$SERVERCHECK" = "Y" ] && {
      $GETCLIENTDIRS |
      while read client dir
      do
        [ -f "$dir/etc/group" ] && {
          $GREP -v '^[-+]' $dir/etc/group |
          $SED -e 's/:$/: /' |
          $SORT > $WORKDIR/group.$$.$client
          echo "$client:/etc/group" > $WORKDIR/group.$$.$client.src
          echo $WORKDIR/group.$$.$client
        }
      done
    }
    
    tiger-3.2.3/systems/MacOSX/5/gen_inetd0000655000175000017500000000171207722713021016107 0ustar  pacopaco#!/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 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.
    #
    # MacOSX/5/gen_inetd - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    $GREP -v '^#' /etc/inetd.conf |
    $SORT > $WORKDIR/etc_inetd.$$
    echo "/etc/inetd.conf" > $WORKDIR/etc_inetd.$$.src
    echo $WORKDIR/etc_inetd.$$
    tiger-3.2.3/systems/MacOSX/5/gen_mount0000655000175000017500000000273607722713021016155 0ustar  pacopaco#!/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 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.
    #
    # MacOSX/5/gen_mount - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    
    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" = "jfs" ] && LOCAL=0
    
      return $LOCAL
    }
    
    /etc/mount |
    /usr/ucb/tail +3 |
    /usr/bin/awk '{
    	if(NF == 7){
    	   printf("%s on %s type %s %s\n", $1, $2, $3, $5);
            }
            else if($4 == "nfs"){
               printf("%s:%s on %s type %s %s\n", $1, $2, $3, $4, $6);
    	}
    	else {
            }
    }' |
    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" ] && echo "$mtpoint $fstype $fs"
    done
    tiger-3.2.3/systems/MacOSX/5/gen_mounts0000655000175000017500000000236507722713021016336 0ustar  pacopaco#!/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 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.
    #
    # MacOSX/5/gen_mounts - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    
    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" = "4.2" ] && LOCAL=0
    
      return $LOCAL
    }
    
    /etc/mount |
    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" ] && echo "$mtpoint $fstype $fs"
    done
    
    tiger-3.2.3/systems/MacOSX/5/gen_passwd_sets0000655000175000017500000000551407756435011017356 0ustar  pacopaco#!/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 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.
    #
    # 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=
    
    for parm
    do
      case "$parm" in
        -p) passwordflag=Y;;
        -l) local=1;;
        *) outfile="$parm";;
      esac
    done
    
    zappasswd()
    {
      IFS=:
      while read user passwd rest
      do
        case $passwd in
          [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="xxxxxxxxxxxxx"
    	   ;;
    	*)
    	     passwd='*'
    	   ;;
        esac
        echo "$user:$passwd:$rest" >> $OUTPUT
      done
    }
    
    $GREP -v '^[-+]' /etc/passwd |
    $SORT > $WORKDIR/pass.tmp.$$
    
    $SED -e 's/#.*$//' -e '/^$/d' /etc/security/passwd |
    $AWK '
    /^[^ 	]*:/ {
      if(user != "")
        printf("%s:\n", user);
      for(i=1;i $WORKDIR/etc_passwd.$$
    
    $RM -f $WORKDIR/pass.tmp.$$
    
    echo "/etc/passwd" > $WORKDIR/etc_passwd.$$.src
    echo $WORKDIR/etc_passwd.$$ >> $outfile
    
    [ -n "$YPCAT" ] &&  {
      $YPCAT passwd |
      $SED -e 's/:$/: /' |
      $SORT |
      echo "NIS" > $WORKDIR/nis_passwd.$$.src
      echo $WORKDIR/nis_passwd.$$ >> $outfile
    }
    tiger-3.2.3/systems/MacOSX/5/gen_services0000655000175000017500000000213407756435011016635 0ustar  pacopaco#!/bin/sh
    #
    #     tiger - A UN*X security checking system
    #     Copyright (C) 1993 Douglas Lee Schales, David K. Hess, David R. Safford
    #
    #     Please see the file `COPYING' for the complete copyright notice.
    #
    #    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.
    #
    # MacOSX/5/gen_services - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    $GREP -v '^#' /etc/services > $WORKDIR/etc_services.$$
    echo "/etc/services" > $WORKDIR/etc_services.$$.src
    echo $WORKDIR/etc_services.$$
    
    [ -n "$YPCAT" ] && {
      $YPCAT services > $WORKDIR/nis_services.$$
      echo "NIS" > $WORKDIR/nis_services.$$.src
      echo $WORKDIR/nis_services.$$
    }
    
    tiger-3.2.3/systems/MacOSX/5/gendlclients0000655000175000017500000000176110045247305016631 0ustar  pacopaco#!/bin/sh
    #
    #     tiger - A UN*X security checking system
    #     Copyright (C) 1993 Douglas Lee Schales, David K. Hess, David R. Safford
    #
    #     Please see the file `COPYING' for the complete copyright notice.
    #
    # AIX/3/gendlclients - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    
    parse_bootparam()
    {
      $AWK '
           BEGIN {LINE="";}
           $0 ~ /\\$/ {printf("%s ", substr($0, 1, length($0)-1));}
           $0 !~ /\\$/ {printf("%s\n", $0);}
           END {printf("\n");}
       ' |
      $AWK '{
               for(i=2;i<=NF;i++)
                 if(substr($i, 1,5) == "root="){
    	       x=substr($i, 6, length($i));
                   split(x, ar, ":");
                   print $1, ar[1], ar[2];
       	     }
            }'
    }
    
    $GEN_BOOTPARAM_SETS | 
    while read bootparam_set
    do
      parse_bootparam < $bootparam_set
      
      $RM -f $bootparam_set $bootparam_set.src
    done |
    $SORT -u |
    while read client server filesys
    do
      eval "case \"$server\" in $HOSTNAMESLIST) echo \"$client $filesys\";; esac"
    done
    tiger-3.2.3/systems/MacOSX/5/getdisks0000655000175000017500000000231007722713021015763 0ustar  pacopaco#!/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 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.
    #
    # getdisks - 06/24/93
    #
    #-----------------------------------------------------------------------------
    #
    
    /etc/mount |
    $AWK '$5 == "4.3" {print}' |
    $SORT |
    $AWK '
      BEGIN {lastdisk=""; fslist="";}
      {
        disk=substr($1, 1, length($1)-1);
        if(disk == lastdisk){
           fslist=fslist " " $3;
        }
        else {
    	if(lastdisk != ""){
               printf("%s\n", fslist);
            }
            lastdisk=disk;
            fslist = $3;
        }
      }
      END { if(lastdisk != ""){
              printf("%s\n", fslist);
            } 
      }'
    
    tiger-3.2.3/systems/MacOSX/5/inetd0000644000175000017500000000257407722705572015277 0ustar  pacopacochargen	dgram	udp	wait	root	internal 
    chargen	stream	tcp	nowait	root	internal 
    comsat	dgram	udp	wait	root	/etc/comsat comsat
    daytime	dgram	udp	wait	root	internal 
    daytime	stream	tcp	nowait	root	internal 
    discard	dgram	udp	wait	root	internal 
    discard	stream	tcp	nowait	root	internal 
    echo	dgram	udp	wait	root	internal 
    echo	stream	tcp	nowait	root	internal 
    exec	stream	tcp	nowait	root	/etc/rexecd rexecd
    finger	stream	tcp	nowait	nobody	/etc/fingerd fingerd
    ftp	stream	tcp	nowait	root	/etc/ftpd ftpd
    instsrv	stream	tcp	nowait	netinst	/u/netinst/bin/instsrv instsrv -r /tmp/netinstalllog /u/netinst/scripts
    login	stream	tcp	nowait	root	/etc/rlogind rlogind
    ntalk	dgram	udp	wait	root	/etc/talkd talkd
    pcnfsd	sunrpc_udp udp	wait	root	/etc/rpc.pcnfsd pcnfsd 150001 1
    rexd	sunrpc_tcp tcp	wait	root	/usr/etc/rpc.rexd rexd 100017 1
    rstatd	sunrpc_udp udp	wait	root	/usr/etc/rpc.rstatd rstatd 100001 1-3
    rusersd	sunrpc_udp udp	wait	root	/usr/etc/rpc.rusersd rusersd 100002 1-2
    rwalld	sunrpc_udp udp	wait	root	/usr/etc/rpc.rwalld rwalld 100008 1
    shell	stream	tcp	nowait	root	/etc/rshd rshd
    sprayd	sunrpc_udp udp	wait	root	/usr/etc/rpc.sprayd sprayd 100012 1
    talk	dgram	udp	wait	root	/etc/talkd talkd
    telnet	stream	tcp	nowait	root	/etc/telnetd telnetd
    tftp	dgram	udp	wait	nobody	/etc/tftpd tftpd -n
    time	dgram	udp	wait	root	internal 
    time	stream	tcp	nowait	root	internal 
    uucp	stream	tcp	nowait	root	/etc/uucpd uucpd
    tiger-3.2.3/systems/MacOSX/5/mkshells0000655000175000017500000000251007722713021015772 0ustar  pacopaco#!/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 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.
    #
    # MacOSX/5/mkshells - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    #
    # Parse the AIX /etc/security/login.cfg file and create something
    # that looks like the normal /etc/shells file.
    #
    outputfile=$1
    
    [ -r /etc/security/login.cfg ] && {
      $AWK '/^[ 	]*shells[ ]*=[ ]*.*/ {
        for(i=1;i $1
    }  
    tiger-3.2.3/systems/MacOSX/5/rel_file_exp_list0000644000175000017500000000046107722705572017655 0ustar  pacopaco/NextAdmin/HostManager.app/HostManager
    /NextAdmin/NetWareManager.app/NetWareManager
    /NextAdmin/SimpleNetworkStarter.app/SimpleNetworkStarter
    /NextApps/Terminal.app/Terminal
    /usr/bin/uucp
    /usr/bin/uux
    /usr/lib/NextStep/Workspace.app/Workspace
    /usr/lib/uucp/uucico
    /usr/lib/uucp/uuclean
    /usr/lib/uucp/uuxqt
    tiger-3.2.3/systems/MacOSX/5/services0000644000175000017500000000212707722705572016011 0ustar  pacopacoecho		7/tcp
    echo		7/udp
    discard		9/tcp
    discard		9/udp
    systat		11/tcp
    daytime		13/tcp
    daytime		13/udp		 
    netstat		15/tcp
    qotd		17/tcp
    chargen		19/tcp
    chargen		19/udp
    ftp-data	20/tcp
    ftp		21/tcp		 
    telnet		23/tcp
    smtp		25/tcp
    time		37/tcp
    time		37/udp
    rlp		39/udp
    nameserver	42/udp
    whois		43/tcp
    domain		53/tcp
    domain		53/udp
    mtp		57/tcp
    bootps		67/udp
    bootpc		68/udp
    tftp		69/udp
    rje		77/tcp
    finger		79/tcp
    link		87/tcp
    supdup		95/tcp
    hostnames	101/tcp
    iso_tsap	102/tcp
    x400		103/tcp
    x400-snd	104/tcp
    csnet-ns	105/tcp
    pop		109/tcp
    sunrpc		111/tcp
    sunrpc		111/udp
    auth		113/tcp
    sftp		115/tcp
    uucp-path	117/tcp
    nntp		119/tcp
    ntp		123/tcp
    NeWS		144/tcp
    snmp		161/udp
    snmp-trap	162/udp
    smux		199/tcp
    src		200/udp
    exec		512/tcp
    login		513/tcp
    who		513/udp
    shell		514/tcp
    syslog		514/udp
    printer		515/tcp
    talk		517/udp
    ntalk		518/udp
    efs		520/tcp
    route		520/udp
    timed		525/udp
    tempo		526/tcp
    courier		530/tcp
    conference	531/tcp
    netnews		532/tcp
    netwall		533/udp
    uucp		540/tcp
    new-rwho	550/udp
    remotefs	556/tcp
    rmonitor	560/udp
    monitor		561/udp
    instsrv		1234/tcp
    ingreslock	1524/tcp
    writesrv	2401/tcp
    graPHIGS	8000/tcp
    tiger-3.2.3/systems/MacOSX/5/suid_list0000644000175000017500000000340507722705572016165 0ustar  pacopaco/NextApps/Terminal.app/Terminal
    /NextApps/PrintManager.app/PrintManager
    /NextDeveloper/Demos/CDPlayer.app/CDPlayer
    /NextAdmin/UserManager.app/UserManager
    /NextAdmin/InstallTablet.app/InstallTablet
    /NextAdmin/NetWareManager.app/NetWareManager
    /NextAdmin/HostManager.app/HostManager
    /NextAdmin/SimpleNetworkStarter.app/SimpleNetworkStarter
    /NextAdmin/NFSManager.app/ExportsHelper
    /NextAdmin/BuildDisk.app/BuildDisk
    /NextAdmin/PhoneManager.app/PhoneManager
    /NextAdmin/PhoneConnector.app/PhoneConnector
    /bin/su.nowheel
    /bin/ps
    /bin/passwd
    /bin/mail
    /bin/login
    /usr/netware/etc/nucmessaged
    /usr/filesystems/mac.fs/mac.util
    /usr/filesystems/CDROM.fs/CDROM.util
    /usr/filesystems/DOS.fs/DOS.util
    /usr/filesystems/cdaudio.fs/cdaudio.util
    /usr/ucb/lprm
    /usr/ucb/lpq
    /usr/ucb/lpr
    /usr/ucb/uptime
    /usr/ucb/w
    /usr/ucb/traceroute
    /usr/ucb/rdist
    /usr/ucb/rsh
    /usr/ucb/rlogin
    /usr/ucb/rcp
    /usr/etc/autoNetWaremount
    /usr/etc/timedc
    /usr/etc/ping
    /usr/etc/rdump
    /usr/bin/mailq
    /usr/bin/newaliases
    /usr/bin/ruusend
    /usr/bin/uuq
    /usr/bin/uusend
    /usr/bin/uusnap
    /usr/bin/uupoll
    /usr/bin/uuname
    /usr/bin/uulog
    /usr/bin/uux
    /usr/bin/uucp
    /usr/bin/cu
    /usr/bin/tip
    /usr/bin/atq
    /usr/bin/atrm
    /usr/bin/at
    /usr/lib/Preferences/ntp
    /usr/lib/Preferences/date
    /usr/lib/Preferences/set_time_zone
    /usr/lib/Preferences/check_ntpd
    /usr/lib/Preferences/boot_cmd
    /usr/lib/Preferences/clock_chip
    /usr/lib/phone/PhoneServer
    /usr/lib/MusicKit/bin/fixedpolicy
    /usr/lib/lpd
    /usr/lib/NextPrinter/exec_faxes
    /usr/lib/NextPrinter/Faxxess
    /usr/lib/NextPrinter/FaxDaemon
    /usr/lib/sendmail
    /usr/lib/sendmail.old
    /usr/lib/uucp/uuclean
    /usr/lib/uucp/uuxqt
    /usr/lib/uucp/uucico
    /usr/lib/rcssnoop
    /usr/lib/ex3.7preserve
    /usr/lib/ex3.7recover
    /usr/lib/NextStep/Workspace.app/Workspace
    /usr/lib/fastps
    /usr/lib/installKM
    /Upgrade_3.0.app/Upgrade_3.0
    tiger-3.2.3/systems/MacOSX/5/testsuid.c0000644000175000017500000000022307722705572016246 0ustar  pacopaco
    int
    main()
    {
         int status = 0;
         setuid(1);
         if(
            seteuid(0) != -1 ||
    	setuid(0) != -1)
            status = 1;
         exit(status);
    }
    tiger-3.2.3/systems/MacOSX/5/timecmd0000655000175000017500000000154207722713021015576 0ustar  pacopaco#!/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 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.
    #
    # MacOSX/5/timecmd - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    $DATE |
    $AWK '{print substr($4,1,5);}'
    tiger-3.2.3/systems/NeXT/0000755000175000017500000000000011306441044013601 5ustar  pacopacotiger-3.2.3/systems/NeXT/gen_mounts0000644000175000017500000000240707502327223015712 0ustar  pacopaco#!/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 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.
    #
    # NeXT/gen_mounts - 07/31/97
    #
    #-----------------------------------------------------------------------------
    #
    
    
    LOCAL_ONLY=$1
    CHKRO=$2
    
    ronly()
    {
      RO=1
      case "$1" in
        *[,\(]ro[,\)]*) RO=0
          ;;
      esac
      return $RO
    }
    
    localfs()
    {
      LOCAL=1
      [ "$1" = "4.2" ] && LOCAL=0
      [ "$1" = "4.3" ] && LOCAL=0
    
      return $LOCAL
    }
    
    /etc/mount |
    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" ] && echo "$mtpoint $fstype $fs"
    done
    
    tiger-3.2.3/systems/NeXT/check0000755000175000017500000000452207502327223014614 0ustar  pacopaco#!/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 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.
    #
    # NeXT/check - 06/17/93
    #
    #-----------------------------------------------------------------------------
    #
    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 CAT FMT GEN_PASSWD_SETS JOIN LS RM || exit 1
      haveallfiles BASEDIR WORKDIR || exit 1
      haveallvars TESTLINK HOSTNAME
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    
    check_domain()
    {
      domain="$1"
      what="$2"
      /usr/bin/niutil -read "$domain" "$what" 2> /dev/null |
      /usr/bin/bm -s _writers && {
        echo "--WARN-- [ca9302a] _writers property enabled for $what in NetInfo($domain)"
      }
    
      /usr/bin/niutil -list "$domain" /machines serves 2>/dev/null |
      $AWK '{
        for(i=2;i<=NF;i++){
          len = index($i, "/") - 1;
          if(len == 0)
            printf("%s ", $i);
          else
            printf("%s ", substr($i, 1, len));
        }
      }' |
      while read subdom
      do
        [ "$subdom" != '.' -a "$subdom" != '..' ] && {
          check_domain "$subdom" "$what"
        }
      done
    }
    
    check_domain '/' '/printers'
    check_domain '/' '/fax_modems'
    tiger-3.2.3/systems/NeXT/3/0000755000175000017500000000000011306441044013743 5ustar  pacopacotiger-3.2.3/systems/NeXT/3/3.0/0000755000175000017500000000000011306441044014243 5ustar  pacopacotiger-3.2.3/systems/NeXT/3/3.0/services0000644000175000017500000000147207502327223016022 0ustar  pacopacoNSWS 178/tcp
    auth 113/tcp
    biff 512/udp
    chargen 19/tcp
    chargen 19/udp
    conference 531/tcp
    courier 530/tcp
    daytime 13/tcp
    daytime 13/udp
    dialup-stat 120/tcp
    discard 9/tcp
    discard 9/udp
    domain 53/tcp
    domain 53/udp
    echo 7/tcp
    echo 7/udp
    efs 520/tcp
    exec 512/tcp
    finger 79/tcp
    ftp 21/tcp
    hostnames 101/tcp
    ingreslock 1524/tcp
    link 87/tcp
    login 513/tcp
    mtp 57/tcp
    nameserver 42/tcp
    netnews 532/tcp
    netstat 15/tcp
    netwall 533/udp
    nntp 119/tcp
    ntalk 518/udp
    ntp 123/udp
    pop 109/tcp
    printer 515/tcp
    qotd 17/tcp
    remotefs 556/tcp
    rje 77/tcp
    rlp 39/udp
    route 520/udp
    sftp 115/tcp
    shell 514/tcp
    smtp 25/tcp
    snmp 161/udp
    sunrpc 111/tcp
    sunrpc 111/udp
    supdup 95/tcp
    syslog 514/udp
    systat 11/tcp
    talk 517/udp
    telnet 23/tcp
    tempo 526/tcp
    tftp 69/udp
    time 37/tcp
    time 37/udp
    timed 525/udp
    uucp 540/tcp
    uucp-path 117/tcp
    who 513/udp
    whois 43/tcp
    tiger-3.2.3/systems/NeXT/3/3.0/config0000644000175000017500000000742307502327223015446 0ustar  pacopaco#
    #     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.
    #
    # NeXT/3/config - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    [ "$UUID" = "" ] &&
        UNAME=`whoami`
    
    export UNAME
    
    [ "$UNAME" != 'root' -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
    }
    
    CAT=/bin/cat
    LS=/bin/ls
    # -g to show group ownership
    LSGROUP="-g"
    # -L to ls file instead of symlink
    LSLINK="-L"
    RM=/bin/rm
    AWK=/bin/awk
    GREP=/bin/grep
    EGREP=/usr/bin/egrep
    SGREP="$EGREP -s"
    SED=/bin/sed
    SORT=/usr/bin/sort
    COMM=/usr/bin/comm
    TAIL=/usr/ucb/tail
    MV=/bin/mv
    TR=/usr/bin/tr
    JOIN=/usr/bin/join
    GROUPSS=/usr/ucb/groups
    FILECMD=/bin/file
    UNIQ=/usr/bin/uniq
    BASENAME=/usr/bin/basename
    CHMOD=/bin/chmod
    CHOWN=/usr/etc/chown
    LN=/bin/ln
    PASTE=/usr/bin/paste
    CP=/bin/cp
    DIFF=/bin/diff
    MAILER=/bin/mail
    SENDMAILS="/usr/lib/sendmail"
    SENDMAILCF="/etc/sendmail/sendmail.cf"
    export SENDMAILS SENDMAILCF
    #
    export CAT LS LSGROUP LSLINK RM AWK GREP EGREP SGREP SED
    export SORT COMM TAIL MV TR JOIN GROUPSS FILECMD UNIQ BASENAME
    export CHMOD CHOWN LN PASTE CP DIFF MAILER
    #
    UNAME=/usr/bin/uname
    GETHOSTNAME=/bin/hostname
    EXPR=/bin/expr
    STRINGS=/bin/strings
    FIND=/usr/bin/find
    FINDXDEV=-xdev
    FMT=/usr/ucb/fmt
    CC=/bin/cc
    PS=/bin/ps
    DATE=/bin/date
    DOMAINNAME=/bin/domainname
    TESTLINK=-h
    TESTEXEC=-x
    #
    #
    export UNAME EXPR STRINGS FIND FINDXDEV
    export FMT CC PS DOMAINNAME DATE TESTLINK TESTEXEC
    WAIT=wait
    #
    YPCAT=/usr/bin/ypcat
    #
    #
    #
    YP=
    ($PS -aux | $GREP ypbind | $SGREP -v $GREP) && YP=YES
    export YP
    #
    #
    YPSERVER="NO"
    ($PS -aux | $GREP ypserv | $GREP -v -s $GREP) && YPSERVER="YES"
    export WAIT YPCAT YPSERVER
    #
    MAILSPOOL=/usr/spool/mail
    #
    CRONSPOOL=/var/spool/cron/crontabs
    #
    ETCSHELLS=/etc/shells
    #
    export MAILSPOOL CRONSPOOL ETCSHELLS
    # What type are local mounted file systems?
    LOCFS="4.3"
    #
    export LOCFS
    #
    #
    DEVDIRSYS="/dev/ /private/dev/"
    export DEVDIRSYS
    
    # Check read only filesystems that are mounted for suid?
    #CHECKROFS="YES"
    CHECKROFS="NO"
    #
    export CHECKROFS
    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
    DATECMD datecmd
    TIMECMD timecmd
    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
    EOL
    `
    tiger-3.2.3/systems/NeXT/3/3.0/inetd0000644000175000017500000000277507502327223015311 0ustar  pacopacochargen	dgram	udp	wait	root	internal
    chargen	stream	tcp	nowait	root	internal
    comsat	dgram	udp	wait	root	/usr/etc/comsat	comsat
    daytime	dgram	udp	wait	root	internal
    daytime	stream	tcp	nowait	root	internal
    discard	dgram	udp	wait	root	internal
    discard	stream	tcp	nowait	root	internal
    echo	dgram	udp	wait	root	internal
    echo	stream	tcp	nowait	root	internal
    exec	stream	tcp	nowait	root	/usr/etc/rexecd		rexecd
    finger	stream	tcp	nowait	nobody	/usr/etc/fingerd	fingerd
    ftp	stream	tcp	nowait	root	/usr/etc/ftpd		ftpd
    login	stream	tcp	nowait	root	/usr/etc/rlogind	rlogind
    ntalk	dgram	udp	wait	root	/usr/etc/ntalkd	ntalkd
    renderd/1      dgram   rpc/udp wait root /usr/prman/rpc.renderd     rpc.renderd
    rquotad/1      dgram   rpc/udp wait root /usr/etc/rpc.rquotad   rpc.rquotad
    rstat_svc/1-3  dgram   rpc/udp wait root /usr/etc/rpc.rstatd    rpc.rstatd
    rusersd/1-2    dgram   rpc/udp wait root /usr/etc/rpc.rusersd   rpc.rusersd
    shell	stream	tcp	nowait	root	/usr/etc/rshd		rshd
    sprayd/1       dgram   rpc/udp wait root /usr/etc/rpc.sprayd    rpc.sprayd
    talk	dgram	udp	wait	root	/usr/etc/talkd	talkd
    telnet	stream	tcp	nowait	root	/usr/etc/telnetd	telnetd
    tftp	dgram	udp	wait	nobody	/usr/etc/tftpd		tftpd
    tftp	dgram	udp	wait	root	/usr/etc/tftpd		tftpd -s /private/tftpboot
    time	dgram	udp	wait	root	internal
    time	stream	tcp	nowait	root	internal
    uucp	stream	tcp	nowait	root	/usr/etc/uucpd		uucpd
    walld/1        dgram   rpc/udp wait root /usr/etc/rpc.rwalld    rpc.rwalld
    ypupdated/1   stream  rpc/tcp wait root /usr/etc/rpc.ypupdated rpc.ypupdated
    tiger-3.2.3/systems/NeXT/3/3.0/signatures0000644000175000017500000000542407502327223016364 0ustar  pacopaco#
    #     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.
    #
    #  NeXT/3.0/signatures - 04/22/93
    #
    #-----------------------------------------------------------------------------
    #@DEST=NeXT/3/3.0
    #@CONFIG=NeXT/3
    #
    Y .       /usr/ucb/rdist 3bd39dd5 20f3775a 51a46270 41d848c2 37f74014 7fef1fa8 aad97e6c 9c00fc01 NeXTSTEP 3.0
    Y .       /usr/etc/portmap 52c69fdf 645c567b 1ee09ebe 1f7e1593 d83d4342 3e2418ae cd0b147b fead4561 NeXTSTEP 3.0
    Y .       /usr/etc/ypserv 4f34da2f 610e764c a589b568 700cb6ab b2953ecb f99ea48d 2f0bb25d 700f9554 NeXTSTEP 3.0
    Y .       /bin/login 7be2f89a bd6eaf5e b4fb3b8d 923eca97 f02f4302 ad448831 a91e1468 432a16e5 NeXTSTEP 3.0
    Y .       /bin/su.wheel 860d2953 11fa88df e82a6218 0663a657 e679aa2c 326e2ed3 25144d98 5b668850 NeXTSTEP 3.0
    Y .       /bin/su.nowheel b2638e50 027e2fc3 fc03cb8a 2d5bfa72 f0d8ef49 1555534a b4c5a772 76b7f608 NeXTSTEP 3.0
    Y .       /usr/etc/telnetd f6064198 deeacafa 80d2a54c 43cd7f66 3020d7dd dc8a1562 1806afaf 61d34c88 NeXTSTEP 3.0
    Y .       /usr/etc/uucpd 4959ec03 f2f7700a 92f0a530 bc679f18 ffba6a62 299eb209 1b34a557 4120902f NeXTSTEP 3.0
    Y .       /usr/etc/rshd 16da51f5 f0baa673 2b6a64e6 e4d30922 b2362fc6 9bc313d1 fbc1706d 2421340c NeXTSTEP 3.0
    Y .       /usr/etc/rlogind 71dcb1bf b59b9185 9c4607b0 8730c413 58370491 f34098a2 ca647f60 0b8fec90 NeXTSTEP 3.0
    Y .       /usr/etc/rexecd a39acf2c 192a05e7 9a8768b4 317385a1 6ad0463f f9ff10db 5e1a7bbe c6efa53f NeXTSTEP 3.0
    Y .       /usr/etc/fingerd 1fb6010e d63fb6d3 52568d35 89420b17 737aa960 b00525e4 3bd41e91 79f91751 NeXTSTEP 3.0
    Y .       /usr/etc/ftpd d7cf7fee ce7a8bff 369d28c0 fb6e2960 f723bcc1 27e7a090 d3e5a648 6b827bf4 NeXTSTEP 3.0
    Y .       /usr/etc/tftpd 70a7133d d3879295 d28f6c3f 0a537323 d9e351c2 d11eeae9 ad49f7ba 720ba865 NeXTSTEP 3.0
    Y .       /usr/ucb/telnet c7b1bf27 524b1654 56441538 809f8d48 5082b062 3369cc50 18931383 c3befedd NeXTSTEP 3.0
    Y .       /usr/ucb/rsh 5ca5decc b4013426 5638e989 03b9716b 8eb6eac6 1fa402e6 fc6726ed 5611ccbc NeXTSTEP 3.0
    Y .       /usr/ucb/rlogin 0a292dbf af888364 d86637c0 52ff582e 6418fc2b e504d10b 5b60fb25 ba48f611 NeXTSTEP 3.0
    Y .       /bin/passwd a0313085 e18569eb 254e7889 d8df3d3a dbbb118e 991e6169 73b31261 3e9fb1b5 NeXTSTEP 3.0
    tiger-3.2.3/systems/NeXT/3/3.1/0000755000175000017500000000000011306441044014244 5ustar  pacopacotiger-3.2.3/systems/NeXT/3/3.1/services0000644000175000017500000000147207502327223016023 0ustar  pacopacoNSWS 178/tcp
    auth 113/tcp
    biff 512/udp
    chargen 19/tcp
    chargen 19/udp
    conference 531/tcp
    courier 530/tcp
    daytime 13/tcp
    daytime 13/udp
    dialup-stat 120/tcp
    discard 9/tcp
    discard 9/udp
    domain 53/tcp
    domain 53/udp
    echo 7/tcp
    echo 7/udp
    efs 520/tcp
    exec 512/tcp
    finger 79/tcp
    ftp 21/tcp
    hostnames 101/tcp
    ingreslock 1524/tcp
    link 87/tcp
    login 513/tcp
    mtp 57/tcp
    nameserver 42/tcp
    netnews 532/tcp
    netstat 15/tcp
    netwall 533/udp
    nntp 119/tcp
    ntalk 518/udp
    ntp 123/udp
    pop 109/tcp
    printer 515/tcp
    qotd 17/tcp
    remotefs 556/tcp
    rje 77/tcp
    rlp 39/udp
    route 520/udp
    sftp 115/tcp
    shell 514/tcp
    smtp 25/tcp
    snmp 161/udp
    sunrpc 111/tcp
    sunrpc 111/udp
    supdup 95/tcp
    syslog 514/udp
    systat 11/tcp
    talk 517/udp
    telnet 23/tcp
    tempo 526/tcp
    tftp 69/udp
    time 37/tcp
    time 37/udp
    timed 525/udp
    uucp 540/tcp
    uucp-path 117/tcp
    who 513/udp
    whois 43/tcp
    tiger-3.2.3/systems/NeXT/3/3.1/config0000644000175000017500000000742307502327223015447 0ustar  pacopaco#
    #     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.
    #
    # NeXT/3/config - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    [ "$UUID" = "" ] &&
        UNAME=`whoami`
    
    export UNAME
    
    [ "$UNAME" != 'root' -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
    }
    
    CAT=/bin/cat
    LS=/bin/ls
    # -g to show group ownership
    LSGROUP="-g"
    # -L to ls file instead of symlink
    LSLINK="-L"
    RM=/bin/rm
    AWK=/bin/awk
    GREP=/bin/grep
    EGREP=/usr/bin/egrep
    SGREP="$EGREP -s"
    SED=/bin/sed
    SORT=/usr/bin/sort
    COMM=/usr/bin/comm
    TAIL=/usr/ucb/tail
    MV=/bin/mv
    TR=/usr/bin/tr
    JOIN=/usr/bin/join
    GROUPSS=/usr/ucb/groups
    FILECMD=/bin/file
    UNIQ=/usr/bin/uniq
    BASENAME=/usr/bin/basename
    CHMOD=/bin/chmod
    CHOWN=/usr/etc/chown
    LN=/bin/ln
    PASTE=/usr/bin/paste
    CP=/bin/cp
    DIFF=/bin/diff
    MAILER=/bin/mail
    SENDMAILS="/usr/lib/sendmail"
    SENDMAILCF="/etc/sendmail/sendmail.cf"
    export SENDMAILS SENDMAILCF
    #
    export CAT LS LSGROUP LSLINK RM AWK GREP EGREP SGREP SED
    export SORT COMM TAIL MV TR JOIN GROUPSS FILECMD UNIQ BASENAME
    export CHMOD CHOWN LN PASTE CP DIFF MAILER
    #
    UNAME=/usr/bin/uname
    GETHOSTNAME=/bin/hostname
    EXPR=/bin/expr
    STRINGS=/bin/strings
    FIND=/usr/bin/find
    FINDXDEV=-xdev
    FMT=/usr/ucb/fmt
    CC=/bin/cc
    PS=/bin/ps
    DATE=/bin/date
    DOMAINNAME=/bin/domainname
    TESTLINK=-h
    TESTEXEC=-x
    #
    #
    export UNAME EXPR STRINGS FIND FINDXDEV
    export FMT CC PS DOMAINNAME DATE TESTLINK TESTEXEC
    WAIT=wait
    #
    YPCAT=/usr/bin/ypcat
    #
    #
    #
    YP=
    ($PS -aux | $GREP ypbind | $SGREP -v $GREP) && YP=YES
    export YP
    #
    #
    YPSERVER="NO"
    ($PS -aux | $GREP ypserv | $GREP -v -s $GREP) && YPSERVER="YES"
    export WAIT YPCAT YPSERVER
    #
    MAILSPOOL=/usr/spool/mail
    #
    CRONSPOOL=/var/spool/cron/crontabs
    #
    ETCSHELLS=/etc/shells
    #
    export MAILSPOOL CRONSPOOL ETCSHELLS
    # What type are local mounted file systems?
    LOCFS="4.3"
    #
    export LOCFS
    #
    #
    DEVDIRSYS="/dev/ /private/dev/"
    export DEVDIRSYS
    
    # Check read only filesystems that are mounted for suid?
    #CHECKROFS="YES"
    CHECKROFS="NO"
    #
    export CHECKROFS
    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
    DATECMD datecmd
    TIMECMD timecmd
    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
    EOL
    `
    tiger-3.2.3/systems/NeXT/3/3.1/inetd0000644000175000017500000000277507502327223015312 0ustar  pacopacochargen	dgram	udp	wait	root	internal
    chargen	stream	tcp	nowait	root	internal
    comsat	dgram	udp	wait	root	/usr/etc/comsat	comsat
    daytime	dgram	udp	wait	root	internal
    daytime	stream	tcp	nowait	root	internal
    discard	dgram	udp	wait	root	internal
    discard	stream	tcp	nowait	root	internal
    echo	dgram	udp	wait	root	internal
    echo	stream	tcp	nowait	root	internal
    exec	stream	tcp	nowait	root	/usr/etc/rexecd		rexecd
    finger	stream	tcp	nowait	nobody	/usr/etc/fingerd	fingerd
    ftp	stream	tcp	nowait	root	/usr/etc/ftpd		ftpd
    login	stream	tcp	nowait	root	/usr/etc/rlogind	rlogind
    ntalk	dgram	udp	wait	root	/usr/etc/ntalkd	ntalkd
    renderd/1      dgram   rpc/udp wait root /usr/prman/rpc.renderd     rpc.renderd
    rquotad/1      dgram   rpc/udp wait root /usr/etc/rpc.rquotad   rpc.rquotad
    rstat_svc/1-3  dgram   rpc/udp wait root /usr/etc/rpc.rstatd    rpc.rstatd
    rusersd/1-2    dgram   rpc/udp wait root /usr/etc/rpc.rusersd   rpc.rusersd
    shell	stream	tcp	nowait	root	/usr/etc/rshd		rshd
    sprayd/1       dgram   rpc/udp wait root /usr/etc/rpc.sprayd    rpc.sprayd
    talk	dgram	udp	wait	root	/usr/etc/talkd	talkd
    telnet	stream	tcp	nowait	root	/usr/etc/telnetd	telnetd
    tftp	dgram	udp	wait	nobody	/usr/etc/tftpd		tftpd
    tftp	dgram	udp	wait	root	/usr/etc/tftpd		tftpd -s /private/tftpboot
    time	dgram	udp	wait	root	internal
    time	stream	tcp	nowait	root	internal
    uucp	stream	tcp	nowait	root	/usr/etc/uucpd		uucpd
    walld/1        dgram   rpc/udp wait root /usr/etc/rpc.rwalld    rpc.rwalld
    ypupdated/1   stream  rpc/tcp wait root /usr/etc/rpc.ypupdated rpc.ypupdated
    tiger-3.2.3/systems/NeXT/3/3.1/signatures0000644000175000017500000000652007502327223016363 0ustar  pacopaco#
    # Thanks to William McVey and the rest of the staff at the Purdue CC
    # for the NeXT 3.1 signature file....
    #
    # Signature file for NeXT 3.1 m68k, generated Thu Jul 29 21:47:26 GMT-0500 1993
    #
    #@DEST=NeXT/3/3.1
    #@CONFIG=NeXT/3
    Y .       /bin/sh 2fac976a bbd73102 bc5152c4 ad81c280 41f2cf39 cd6c90f0 6a5ade63 b743ad46 NeXT 3.1
    Y .       /bin/csh 5873876b 08de93ab bcf2b3e8 3947e9b6 e58b9b1e 6eb6a84b 9fa0bee4 bc4c31b6 NeXT 3.1
    Y .       /bin/ksh fb670d8a d8281dd8 b7021f3f 0ba3f957 7109786a b9e82e1b 7b65b18d d36b86ae NeXT 3.1
    Y .       /bin/login e291d104 ba4fa47c 32339f8c fad89212 04f9a5f9 5bc37487 8b176d97 aefe897d NeXT 3.1
    # su not found.
    Y .       /bin/passwd 88d278a1 1c8306bb 6b16774a af1d8466 51a8dca5 e13cdbe7 35f3a266 b05d56b7 NeXT 3.1
    # in.fingerd not found.
    Y .       /usr/etc/fingerd d085c805 d1c43e72 49033d2d 19ea2c11 b4b6d3fc 9eb747ba cdfcbf75 53167501 NeXT 3.1
    # in.ftpd not found.
    Y .       /usr/etc/ftpd 8c8abc1c 034570dc ddd62108 a697b4a8 054bced5 6dd47440 c0201b07 0b60ddd2 NeXT 3.1
    # in.rexecd not found.
    Y .       /usr/etc/rexecd 30c39be2 743afc95 8af7c618 41e4b5ea e0001f18 b852338b c33b3f8d cb440ed6 NeXT 3.1
    # in.rlogind not found.
    Y .       /usr/etc/rlogind 5db126a0 acbd9ec2 e35d3349 30d28893 6dd44f51 afa33ad6 d3b9707b 57ebbd47 NeXT 3.1
    # in.rshd not found.
    Y .       /usr/etc/rshd e188f023 e9cc2a32 933fb6a4 931a2734 a32f8b54 ac224840 4a350782 7dc52f69 NeXT 3.1
    # in.telnetd not found.
    Y .       /usr/etc/telnetd 2efa4b9d 705af04f 55c1206b c8aa5fee fb8a9e82 22f68377 20edf08e 00473af1 NeXT 3.1
    # in.tftpd not found.
    Y .       /usr/etc/tftpd 1f834f1f 4254a4bc f2bae48b b4ee144a eb8c07ec 293aa141 6391e8b4 e8aa6bcb NeXT 3.1
    # in.uucpd not found.
    # uucpd not found.
    Y .       /usr/etc/rpc.yppasswdd d4e11aeb e005b81a 43214fe8 211a744b 919724e2 7b0f17dc 736cde6a 94763aec NeXT 3.1
    # rpc.passwd not found.
    Y .       /usr/etc/portmap ab6040e1 a6a71269 c9656b63 67d48651 8ef32c8b bb95162c 54ce2634 ba7f1972 NeXT 3.1
    Y .       /usr/etc/ypserv 784e3091 0c0d72f9 4d72a054 74d4f74f 0b66d7de baa6976c 6b1a1461 2eaeaf64 NeXT 3.1
    # ypxfrd not found.
    Y .       /usr/etc/ypbind 0af5e129 7b08fcd8 e068defc 95f5c5ca 2ba939db bba21264 ef3ca692 0021db26 NeXT 3.1
    Y .       /usr/lib/sendmail a8854396 ff43740b 92f44522 94441d2a d04e5a49 d396d14e 4ddd801e 06322e11 NeXT 3.1
    # sendmail.mx not found.
    Y .       /usr/ucb/rdist ff914374 ccb27b60 bf1e4015 cbe27e61 2c793517 2f311fd5 0a4aafde 068bbb69 NeXT 3.1
    Y .       /usr/ucb/rlogin b27451bf 927e49ba 3b9b5657 19df5144 0cee2f4c 42f5e925 31e0847f c882c873 NeXT 3.1
    Y .       /usr/ucb/rsh 01d76113 f0edeca0 5b4263c9 5fdc6623 c28816a3 b86f8cb6 67ed811f ada99b7a NeXT 3.1
    Y .       /usr/ucb/telnet a47c630a d6333977 6d0a0c17 bd7c9e81 e4254a78 ca35dc1e cdd31fb7 e424de70 NeXT 3.1
    # lpstat not found.
    Y .       /usr/etc/lpc 06226582 4ef16c3b 87636fd6 55974336 6d161812 a418737f fa895202 6ed7b8a3 NeXT 3.1
    Y .       /usr/lib/lpd d0cb1734 6f529454 56d90c64 9283fd15 dc594348 ec5ebe6b 0c28ee57 d9be89d5 NeXT 3.1
    Y .       /usr/ucb/lpr 23806735 0595076d 10e5501e ae6a3692 ae3ea960 5f64f793 2d323219 b062a969 NeXT 3.1
    Y .       /usr/ucb/lprm 89693e40 b68f2942 d2390054 5ccc2f65 cb45e363 1786f72a 77da24a7 d9019ae0 NeXT 3.1
    Y .       /usr/lib/lpd d0cb1734 6f529454 56d90c64 9283fd15 dc594348 ec5ebe6b 0c28ee57 d9be89d5 NeXT 3.1
    Y .       /usr/etc/rpc.mountd 21c8d0ed a07456db 613e2784 6b274c4e b0dfbfbd 411903a4 8b6e9977 35d7f979 NeXT 3.1
    # expreserve not found.
    tiger-3.2.3/systems/NeXT/3/check_cron0000755000175000017500000000227307502327223016000 0ustar  pacopaco#!/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 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.
    #
    # NeXT/3/check_cron - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    user=$1
    
    cronfiles=
    [ -f /private/etc/crontab ] &&
      cronfiles="$cronfiles /private/etc/crontab"
    [ -f /private/etc/crontab.local ] &&
      cronfiles="$cronfiles /private/etc/crontab.local"
    
    if [ -n "$cronfiles" ]; then
      $AWK '
        $6 == "'$user'" {print "YES"}
      ' $cronfiles |
      {
        read status
    
        [ "$status" != 'YES' ] && status='NO'
    
        echo $status
      }
    else
      echo 'NO'
    fi
    
    
    tiger-3.2.3/systems/NeXT/3/config0000644000175000017500000000742307502327223015146 0ustar  pacopaco#
    #     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.
    #
    # NeXT/3/config - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    [ "$UUID" = "" ] &&
        UNAME=`whoami`
    
    export UNAME
    
    [ "$UNAME" != 'root' -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
    }
    
    CAT=/bin/cat
    LS=/bin/ls
    # -g to show group ownership
    LSGROUP="-g"
    # -L to ls file instead of symlink
    LSLINK="-L"
    RM=/bin/rm
    AWK=/bin/awk
    GREP=/bin/grep
    EGREP=/usr/bin/egrep
    SGREP="$EGREP -s"
    SED=/bin/sed
    SORT=/usr/bin/sort
    COMM=/usr/bin/comm
    TAIL=/usr/ucb/tail
    MV=/bin/mv
    TR=/usr/bin/tr
    JOIN=/usr/bin/join
    GROUPSS=/usr/ucb/groups
    FILECMD=/bin/file
    UNIQ=/usr/bin/uniq
    BASENAME=/usr/bin/basename
    CHMOD=/bin/chmod
    CHOWN=/usr/etc/chown
    LN=/bin/ln
    PASTE=/usr/bin/paste
    CP=/bin/cp
    DIFF=/bin/diff
    MAILER=/bin/mail
    SENDMAILS="/usr/lib/sendmail"
    SENDMAILCF="/etc/sendmail/sendmail.cf"
    export SENDMAILS SENDMAILCF
    #
    export CAT LS LSGROUP LSLINK RM AWK GREP EGREP SGREP SED
    export SORT COMM TAIL MV TR JOIN GROUPSS FILECMD UNIQ BASENAME
    export CHMOD CHOWN LN PASTE CP DIFF MAILER
    #
    UNAME=/usr/bin/uname
    GETHOSTNAME=/bin/hostname
    EXPR=/bin/expr
    STRINGS=/bin/strings
    FIND=/usr/bin/find
    FINDXDEV=-xdev
    FMT=/usr/ucb/fmt
    CC=/bin/cc
    PS=/bin/ps
    DATE=/bin/date
    DOMAINNAME=/bin/domainname
    TESTLINK=-h
    TESTEXEC=-x
    #
    #
    export UNAME EXPR STRINGS FIND FINDXDEV
    export FMT CC PS DOMAINNAME DATE TESTLINK TESTEXEC
    WAIT=wait
    #
    YPCAT=/usr/bin/ypcat
    #
    #
    #
    YP=
    ($PS -aux | $GREP ypbind | $SGREP -v $GREP) && YP=YES
    export YP
    #
    #
    YPSERVER="NO"
    ($PS -aux | $GREP ypserv | $GREP -v -s $GREP) && YPSERVER="YES"
    export WAIT YPCAT YPSERVER
    #
    MAILSPOOL=/usr/spool/mail
    #
    CRONSPOOL=/var/spool/cron/crontabs
    #
    ETCSHELLS=/etc/shells
    #
    export MAILSPOOL CRONSPOOL ETCSHELLS
    # What type are local mounted file systems?
    LOCFS="4.3"
    #
    export LOCFS
    #
    #
    DEVDIRSYS="/dev/ /private/dev/"
    export DEVDIRSYS
    
    # Check read only filesystems that are mounted for suid?
    #CHECKROFS="YES"
    CHECKROFS="NO"
    #
    export CHECKROFS
    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
    DATECMD datecmd
    TIMECMD timecmd
    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
    EOL
    `
    tiger-3.2.3/systems/NeXT/3/datecmd0000755000175000017500000000240207502327223015275 0ustar  pacopaco#!/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 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.
    #
    # NeXT/3/datecmd - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    # Kludged date stamp for NeXT.
    $DATE |
    $AWK '{
    	printf(substr($6,3,2));
    	if ($2 == "Jan") printf "01"
    	if ($2 == "Feb") printf "02"
    	if ($2 == "Mar") printf "03"
    	if ($2 == "Apr") printf "04"
    	if ($2 == "May") printf "05"
    	if ($2 == "Jun") printf "06"
    	if ($2 == "Jul") printf "07"
    	if ($2 == "Aug") printf "08"
    	if ($2 == "Sep") printf "09"
    	if ($2 == "Oct") printf "10"
    	if ($2 == "Nov") printf "11"
    	if ($2 == "Dec") printf "12"
    	printf("%02d\n",$3);
    }'
    tiger-3.2.3/systems/NeXT/3/embedlist0000644000175000017500000000012707502327223015643 0ustar  pacopaco/etc/rc
    /etc/rc.boot
    /etc/rc.local
    /etc/rc.uucp
    /etc/rc.swap
    /.profile
    /.cshrc
    /.login
    tiger-3.2.3/systems/NeXT/3/file_access_list0000644000175000017500000002151007502327223017165 0ustar  pacopaco#
    #     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.
    #
    # NeXT/3/file_access_list - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    #                           owner group s g r w x   r w x   r w x
    #--------------------------------------------------------------------------
    /                           root  wheel . . 1 . 1   1 0 1   1 0 1 W 018 018 018
    /bin                        root  wheel . . 1 . 1   1 0 1   1 0 1 W 001 002 003
    /usr                        root  wheel . . 1 . 1   1 0 1   1 0 1 W 001 002 003
    /private                    root  staff . . 1 . 1   1 . 1   1 0 1 W 001 002 003
    /lib                        root  wheel . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /usr/prman                  root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/shlib                  root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/pub                    root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/standalone             root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/template               root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/netware                root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/dict                   root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/etc                    root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/filesystems            root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/bin                    root  wheel . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /usr/lib                    root  wheel . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /usr/ucb                    root  wheel . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /usr/*                      root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /private/Net                root  wheel . . . . .   . . .   . 0 . . 001 002 003
    /private/adm                root  staff . . . . .   . . .   . 0 . . 001 002 003
    /private/dev                root  wheel . . . . .   . 0 .   . 0 . . 001 002 003
    /private/etc                root  wheel . . . . .   . 0 .   . 0 . . 001 002 003
    /private/preserve           root  wheel . . . . .   . . .   . 0 . . 001 002 003
    /private/spool              root  wheel . . . . .   . 0 .   . 0 . . 001 002 003
    /private/tftpboot           root  wheel . . . . .   . . .   . 0 . . 001 002 003
    /private/vm                 root  wheel . . . . .   . 0 .   . 0 . . 001 002 003
    /etc/netinfo                root  wheel . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /etc/nulib                  root  wheel . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /etc/sendmail               root  wheel . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /etc/uucp                   root  wheel . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /etc/yp                     root  wheel . . 1 . 1   1 . 1   1 0 1 . 001 002 003
    /etc/zoneinfo               root  wheel . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    #
    /sdmach                     root  wheel . . 1 0 0   1 0 0   1 0 0 . 001 002 003
    /.cshrc                     root  .     . . 1 . .   . 0 .   . 0 . W 006 006 006
    /.login                     root  .     . . 1 . .   . 0 .   . 0 . W 006 006 006
    /.profile                   root  .     . . 1 . .   . 0 .   . 0 . W 006 006 006
    /.forward                   root  .     . . 1 . .   . 0 .   . 0 . W 006 006 006
    /.rhosts                    root  .     . . 1 . 0   0 0 0   0 0 0 W 006 006 006
    #
    /etc/sendmail/aliases       root  .     . . 1 . 0   1 . 0   1 0 0 F 007 007 007
    /etc/sendmail/aliases.dir   root  .     . . 1 . 0   1 0 0   1 0 0 F 007 007 007
    /etc/sendmail/aliases.pag   root  .     . . 1 . 0   1 0 0   1 0 0 F 007 007 007
    /etc/bootparams             root  .     . . 1 . 0   . 0 0   . 0 0 W 001 002 003
    /etc/exports                root  .     . . 1 . 0   . 0 0   . 0 0 W 008 008 008
    /etc/fstab                  root  .     . . 1 . 0   . 0 0   . 0 0 W 001 002 003
    /etc/gettytab               root  .     . . 1 . 0   . 0 0   . 0 0 W 001 002 003
    /etc/group                  root  .     . . 1 . 0   1 0 0   1 0 0 F 009 009 009
    /etc/hosts.allow            root  .     . . 1 . 0   1 0 0   1 0 0 W 010 010 010
    /etc/hosts.deny		    root  .     . . 1 . 0   1 0 0   1 0 0 W 010 010 010
    /etc/hosts.equiv            root  .     . . 1 . 0   0 0 0   0 0 0 W 011 011 011
    /etc/hosts.lpd              root  .     . . 1 . 0   . 0 0   . 0 0 W 011 011 011
    /etc/inetd.conf             root  .     . . 1 . 0   . 0 0   . 0 0 W 012 012 012
    /etc/motd                   root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/mtab                   root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/netgroup               root  .     . . 1 . 0   0 0 0   0 0 0 F 013 013 013
    /etc/passwd                 root  .     . . 1 . 0   1 0 0   1 0 0 A 014 014 014
    /etc/rc                     root  .     . . 1 . 0   . 0 0   . 0 0 F 015 015 015
    /etc/rc.boot                root  .     . . 1 . 0   . 0 0   . 0 0 F 015 015 015
    /etc/rc.local               root  .     . . 1 . 0   . 0 0   . 0 0 F 015 015 015
    /etc/rc.cdrom               root  .     . . 1 . 0   . 0 0   . 0 0 F 015 015 015
    /etc/rc.swap                root  .     . . 1 . 0   . 0 0   . 0 0 F 015 015 015
    /etc/rc.uucp                root  .     . . 1 . 0   . 0 0   . 0 0 F 015 015 015
    /etc/remote                 root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/resolv.conf            root  .     . . 1 . 0   1 0 0   1 0 0 W 016 016 016
    /etc/rpc                    root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/sendmail/sendmail.mailhost.cf root . . . 1 . 0 1 0 0   1 0 0 W 001 002 003
    /etc/sendmail/sendmail.sharedsubsidiary.cf root . . . 1 . 0 1 0 0 1 0 0 W 001 002 003
    /etc/sendmail/sendmail.subsidiary.cf root . . . 1 . 0 1 0 0 1 0 0 W 001 002 003
    /etc/services               root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/syslog.conf            root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/syslog.pid             root  .     . . 1 . 0   . 0 0   . 0 0 W 001 002 003
    /etc/ttys                   root  .     . . 1 . 0   . 0 0   . 0 0 W 001 002 003
    /etc/utmp                   root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    #
    /etc/uucp/L-devices	    uucp  .     . . 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/uucp/L-dialcodes	    uucp  .     . . 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/uucp/L.aliases	    uucp  .     . . 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/uucp/L.cmds	    root  .     . . 1 . 0   0 0 0   0 0 0 . 001 002 003
    /etc/uucp/L.sys  	    uucp  .     . . 1 . 0   1 0 0   1 0 0 . 001 002 003
    #
    /usr/bin/uulog              uucp  daemon . . . 0 1  . 0 1   . 0 . . 001 002 003
    /usr/bin/uusend             uucp  daemon . . . 0 1  . 0 1   . 0 . . 001 002 003
    /usr/bin/ruusend            uucp  daemon . . . 0 1  . 0 1   . 0 . . 001 002 003
    /usr/bin/uusnap             uucp  daemon . . . 0 1  . 0 1   . 0 . . 001 002 003
    /usr/bin/uupick             uucp  daemon . . . 0 1  . 0 1   . 0 . . 001 002 003
    /usr/bin/uuq                uucp  daemon . . . 0 1  . 0 1   . 0 . . 001 002 003
    /usr/bin/uupoll             uucp  daemon . . . 0 1  . 0 1   . 0 . . 001 002 003
    /usr/bin/cu                 root  daemon . . . . 1  . 0 1   . 0 . . 001 002 003
    /usr/bin/tip                root  daemon . . . . 1  . 0 .   . 0 . . 001 002 003
    /usr/bin/uucp               uucp  daemon . . . 0 1  . 0 1   . 0 . . 001 002 003
    /usr/bin/uux                uucp  daemon . . . 0 1  . 0 1   . 0 . . 001 002 003
    /usr/bin/uuname             uucp  daemon . . . 0 1  . 0 1   . 0 . . 001 002 003
    /usr/bin/uudecode           uucp  daemon . . . . 1  . 0 1   . 0 . . 001 002 003
    /usr/bin/uuencode           uucp  daemon . . . . 1  . 0 1   . 0 . . 001 002 003
    /usr/bin/write              root  tty    . . . . 1  . 0 .   . 0 . . 001 002 003
    /usr/bin/wall               root  tty    . . . . 1  . 0 .   . 0 . . 001 002 003
    #
    /usr/bin/login              root  .     . . 1 . 1   1 0 1   1 0 1 F 001 002 003
    /usr/bin/su                 root  .     . . 1 . 1   . 0 .   . 0 . F 001 002 003
    /usr/bin/su.nowheel         root  .     . . 1 . 1   . 0 .   . 0 . F 001 002 003
    /usr/bin/su.wheel           root  .     . . 1 . 1   . 0 .   . 0 . F 001 002 003
    /usr/bin/at                 agent .     . . 1 . 1   . 0 .   . 0 . . 001 002 003
    /usr/bin/atq                agent .     . . 1 . 1   . 0 .   . 0 . . 001 002 003
    /usr/bin/atrm               agent .     . . 1 . 1   . 0 .   . 0 . . 001 002 003
    /usr/bin/*                  root  .     . . 1 . 1   . 0 .   . 0 . . 001 002 003
    tiger-3.2.3/systems/NeXT/3/gen_alias_sets0000755000175000017500000000226707756435011016673 0ustar  pacopaco#!/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 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.
    #
    # NeXT/3/gen_alias_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    $GREP -v '^#' /etc/sendmail/aliases |
    $SORT > $WORKDIR/etc_aliases.$$
    echo "/etc/sendmail/aliases" > $WORKDIR/etc_aliases.$$.src
    echo $WORKDIR/etc_aliases.$$
    
    [ -n "$YPCAT" ] && {
      $YPCAT -k aliases |
      $SED -e 's/ /:/' | 
      $SORT |
      $COMM -23 - $WORKDIR/etc_aliases.$$ > $WORKDIR/nis_aliases.$$
      echo "NIS" > $WORKDIR/nis_aliases.$$.src
      echo $WORKDIR/nis_aliases.$$
    }
    tiger-3.2.3/systems/NeXT/3/gen_bootparam_sets0000755000175000017500000000335307756435012017564 0ustar  pacopaco#!/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 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.
    #
    # NeXT/3/gen_bootparam_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    COUNT=1
    
    /usr/etc/nidomain -l | 
    $AWK '{ print substr($1,5,length($1) - 4) }' |
    {
      while read NETINFO_TAG
      do
        BOOTPARAM_SET=$WORKDIR/bootparam.set$COUNT.$$
    
        /usr/bin/nidump -t bootparams localhost/$NETINFO_TAG |
        $SED -e 's/#.*$//' |
        $SED -e '/^[ \t]*$/d' |
        $AWK '
    	 BEGIN {LINE="";}
    	 /\\\\$/ {LINE=LINE " " substr($0, 1, length($0)-1);}
    	!/\\\\$/ {print LINE $0; LINE="";}
        ' > $BOOTPARAM_SET
    
        echo "NetInfo($NETINFO_TAG)" > $BOOTPARAM_SET.src
        echo $BOOTPARAM_SET
        COUNT=`$EXPR $COUNT + 1`
      done
    }
    
    [ -n "$YPCAT" ] && {
      BOOTPARAM_SET=$WORKDIR/bootparam.set.nis.$$
      $YPCAT bootparams > $BOOTPARAM_SET
      echo "NIS" > $BOOTPARAM_SET.src
      echo $BOOTPARAM_SET
    }
    
    [ -r /etc/bootparams ] && {
      BOOTPARAM_SET=$WORKDIR/bootparam.set.etc.$$
      $CAT /etc/bootparams |
      $SED -e 's/#.*$//' |
      $SED -e '/^[ \t]*$/d' > $BOOTPARAM_SET
    
      echo "/etc/bootparams" > $BOOTPARAM_SET.src
      echo $BOOTPARAM_SET
    }
    tiger-3.2.3/systems/NeXT/3/gen_cron0000755000175000017500000000214207502327223015467 0ustar  pacopaco#!/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 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.
    #
    # NeXT/3/gen_cron - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    cronfiles=
    [ -f /private/etc/crontab ] &&
      cronfiles="$cronfiles /private/etc/crontab"
    [ -f /private/etc/crontab.local ] &&
      cronfiles="$cronfiles /private/etc/crontab.local"
    
    [ -n "$cronfiles" ] && {
      $AWK '
        for(i=6;i<=NF;i++)
          printf("%s ", $i);
        printf("\n");
      ' $cronfiles
    }
    tiger-3.2.3/systems/NeXT/3/gen_export_sets0000755000175000017500000000251107502327223017105 0ustar  pacopaco#!/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 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.
    #
    # NeXT/3/gen_export_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    COUNT=1
    
    /usr/etc/nidomain -l | 
    $AWK '{ print substr($1,5,length($1) - 4) }' | (
        while read NETINFO_TAG
        do
    	EXPORT_SET=$WORKDIR/export.set$COUNT.$$
    	/usr/bin/nidump -t exports localhost/$NETINFO_TAG > $EXPORT_SET
    	echo "NetInfo($NETINFO_TAG)" > $EXPORT_SET.src
    	echo $EXPORT_SET
    	COUNT=`$EXPR $COUNT + 1`
        done
        exit $COUNT
    )
    
    COUNT=$?
    
    [ -r /etc/exports ] && {
    	EXPORT_SET=$WORKDIR/export.set$COUNT.$$
    	$GREP -v '^#' /etc/exports > $EXPORT_SET
    	echo "/etc/exports" > $EXPORT_SET.src
    	echo $EXPORT_SET
    }
    tiger-3.2.3/systems/NeXT/3/gen_group_sets0000755000175000017500000000271307756435012016733 0ustar  pacopaco#!/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 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.
    #
    # NeXT/3/gen_group_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    $GREP -v '^[-+#]' /etc/group |
    $SORT > $WORKDIR/etc_group.$$
    echo "/etc/group" > $WORKDIR/etc_group.$$.src
    echo $WORKDIR/etc_group.$$
    
    COUNT=1
    
    /usr/etc/nidomain -l | 
    $AWK '{ print substr($1,5,length($1) - 4) }' | (
        while read NETINFO_TAG
        do
    	GROUP_SET=$WORKDIR/group.set$COUNT.$$
    	/usr/bin/nidump -t group localhost/$NETINFO_TAG > $GROUP_SET
    	echo "NetInfo($NETINFO_TAG)" > $GROUP_SET.src
    	echo $GROUP_SET
    	COUNT=`$EXPR $COUNT + 1`
        done
        exit $COUNT
    )
    
    [ -n "$YPCAT" ] && {
      $YPCAT group |
      $SORT |
      $COMM -23 - $WORKDIR/etc_group.$$ > $WORKDIR/nis_group.$$
      echo "NIS" > $WORKDIR/nis_group.$$.src
      echo $WORKDIR/nis_group.$$
    }
    tiger-3.2.3/systems/NeXT/3/gen_inetd0000755000175000017500000000171007502327223015631 0ustar  pacopaco#!/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 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.
    #
    # NeXT/3/gen_inetd - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    $GREP -v '^#' /etc/inetd.conf |
    $SORT > $WORKDIR/etc_inetd.$$
    echo "/etc/inetd.conf" > $WORKDIR/etc_inetd.$$.src
    echo $WORKDIR/etc_inetd.$$
    tiger-3.2.3/systems/NeXT/3/gen_mounts0000755000175000017500000000236307502327223016060 0ustar  pacopaco#!/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 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.
    #
    # NeXT/3/gen_mounts - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    
    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" = "4.2" ] && LOCAL=0
    
      return $LOCAL
    }
    
    /etc/mount |
    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" ] && echo "$mtpoint $fstype $fs"
    done
    
    tiger-3.2.3/systems/NeXT/3/gen_passwd_sets0000755000175000017500000000310607502327223017066 0ustar  pacopaco#!/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 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.
    #
    # NeXT/3/gen_passwd_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    local=0
    for parm
    do
      case "$parm" in
        -p) ;;
        -l) local=1;;
        *)	outfile="$parm";;
      esac
    done
    
    
    PASSWD_SET=$WORKDIR/passwd.set.etc.$$
    $GREP -v '^[#+-]' /etc/passwd > $PASSWD_SET
    echo "/etc/passwd" > $PASSWD_SET.src
    echo $PASSWD_SET >> $outfile
    
    [ -n "$YPCAT" ] && {
        PASSWD_SET=$WORKDIR/passwd.set.nis.$$
        $YPCAT passwd > $PASSWD_SET
        echo "NIS" > $PASSWD_SET.src
        echo $PASSWD_SET >> $outfile
    }
    
    COUNT=1
    
    /usr/etc/nidomain -l | 
    $AWK '{ print substr($1,5,length($1) - 4) }' | (
        while read NETINFO_TAG
        do
    	PASSWD_SET=$WORKDIR/passwd.set$COUNT.$$
    	/usr/bin/nidump -t passwd localhost/$NETINFO_TAG > $PASSWD_SET
    	echo "NetInfo($NETINFO_TAG)" > $PASSWD_SET.src
    	echo $PASSWD_SET >> $outfile
    	COUNT=`$EXPR $COUNT + 1`
        done
        exit $COUNT
    )
    
    tiger-3.2.3/systems/NeXT/3/gen_services0000755000175000017500000000304407756435012016362 0ustar  pacopaco#!/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 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.
    #
    # NeXT/3/gen_services - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    COUNT=1
    
    /usr/etc/nidomain -l | 
    $AWK '{ print substr($1,5,length($1) - 4) }' | (
        while read NETINFO_TAG
        do
            SERVICES_SET=$WORKDIR/services.set$COUNT.$$
            /usr/bin/nidump -t services localhost/$NETINFO_TAG > $SERVICES_SET
            echo "NetInfo($NETINFO_TAG)" > $SERVICES_SET.src
            echo $SERVICES_SET
            COUNT=`$EXPR $COUNT + 1`
        done
        exit $COUNT
    )
    
    COUNT=$?
    
    [ -n "$YPCAT" ] && {
        SERVICES_SET=$WORKDIR/services.set$COUNT.$$
        $YPCAT services > $SERVICES_SET
        echo "NIS" > $SERVICES_SET.src
        echo $SERVICES_SET
        COUNT=`$EXPR $COUNT + 1`
    }
    
    SERVICES_SET=$WORKDIR/services.set$COUNT.$$
    $GREP -v '^#' /etc/services > $SERVICES_SET
    echo "/etc/services" > $SERVICES_SET.src
    echo $SERVICES_SET
    tiger-3.2.3/systems/NeXT/3/gendlclients0000755000175000017500000000314710045247305016354 0ustar  pacopaco#!/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 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.
    #
    # NeXT/3/gendlclients - 06/14/93
    #
    # 05/02/2004 jfs  Try to avoid eval problems if handling variables with
    #                 special characters (such as space)
    #
    #-----------------------------------------------------------------------------
    #
    
    parse_bootparam()
    {
      $AWK '
           BEGIN {LINE="";}
           $0 ~ /\\$/ {printf("%s ", substr($0, 1, length($0)-1));}
           $0 !~ /\\$/ {printf("%s\n", $0);}
           END {printf("\n");}
       ' |
      $AWK '{
               for(i=2;i<=NF;i++)
                 if(substr($i, 1,5) == "root="){
    	       x=substr($i, 6, length($i));
                   split(x, ar, ":");
                   print $1, ar[1], ar[2];
       	     }
            }'
    }
    
    $GEN_BOOTPARAM_SETS | 
    while read bootparam_set
    do
      parse_bootparam < $bootparam_set
      
      $RM -f $bootparam_set $bootparam_set.src
    done |
    $SORT -u |
    while read client server filesys
    do
      eval "case \"$server\" in $HOSTNAMESLIST) echo \"$client $filesys\";; esac"
    done
    tiger-3.2.3/systems/NeXT/3/getdisks0000755000175000017500000000231007502327223015507 0ustar  pacopaco#!/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 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.
    #
    # getdisks - 06/24/93
    #
    #-----------------------------------------------------------------------------
    #
    
    /etc/mount |
    $AWK '$5 == "4.3" {print}' |
    $SORT |
    $AWK '
      BEGIN {lastdisk=""; fslist="";}
      {
        disk=substr($1, 1, length($1)-1);
        if(disk == lastdisk){
           fslist=fslist " " $3;
        }
        else {
    	if(lastdisk != ""){
               printf("%s\n", fslist);
            }
            lastdisk=disk;
            fslist = $3;
        }
      }
      END { if(lastdisk != ""){
              printf("%s\n", fslist);
            } 
      }'
    
    tiger-3.2.3/systems/NeXT/3/inetd0000644000175000017500000000277507502327223015011 0ustar  pacopacochargen	dgram	udp	wait	root	internal
    chargen	stream	tcp	nowait	root	internal
    comsat	dgram	udp	wait	root	/usr/etc/comsat	comsat
    daytime	dgram	udp	wait	root	internal
    daytime	stream	tcp	nowait	root	internal
    discard	dgram	udp	wait	root	internal
    discard	stream	tcp	nowait	root	internal
    echo	dgram	udp	wait	root	internal
    echo	stream	tcp	nowait	root	internal
    exec	stream	tcp	nowait	root	/usr/etc/rexecd		rexecd
    finger	stream	tcp	nowait	nobody	/usr/etc/fingerd	fingerd
    ftp	stream	tcp	nowait	root	/usr/etc/ftpd		ftpd
    login	stream	tcp	nowait	root	/usr/etc/rlogind	rlogind
    ntalk	dgram	udp	wait	root	/usr/etc/ntalkd	ntalkd
    renderd/1      dgram   rpc/udp wait root /usr/prman/rpc.renderd     rpc.renderd
    rquotad/1      dgram   rpc/udp wait root /usr/etc/rpc.rquotad   rpc.rquotad
    rstat_svc/1-3  dgram   rpc/udp wait root /usr/etc/rpc.rstatd    rpc.rstatd
    rusersd/1-2    dgram   rpc/udp wait root /usr/etc/rpc.rusersd   rpc.rusersd
    shell	stream	tcp	nowait	root	/usr/etc/rshd		rshd
    sprayd/1       dgram   rpc/udp wait root /usr/etc/rpc.sprayd    rpc.sprayd
    talk	dgram	udp	wait	root	/usr/etc/talkd	talkd
    telnet	stream	tcp	nowait	root	/usr/etc/telnetd	telnetd
    tftp	dgram	udp	wait	nobody	/usr/etc/tftpd		tftpd
    tftp	dgram	udp	wait	root	/usr/etc/tftpd		tftpd -s /private/tftpboot
    time	dgram	udp	wait	root	internal
    time	stream	tcp	nowait	root	internal
    uucp	stream	tcp	nowait	root	/usr/etc/uucpd		uucpd
    walld/1        dgram   rpc/udp wait root /usr/etc/rpc.rwalld    rpc.rwalld
    ypupdated/1   stream  rpc/tcp wait root /usr/etc/rpc.ypupdated rpc.ypupdated
    tiger-3.2.3/systems/NeXT/3/rel_file_exp_list0000644000175000017500000000046107502327223017364 0ustar  pacopaco/NextAdmin/HostManager.app/HostManager
    /NextAdmin/NetWareManager.app/NetWareManager
    /NextAdmin/SimpleNetworkStarter.app/SimpleNetworkStarter
    /NextApps/Terminal.app/Terminal
    /usr/bin/uucp
    /usr/bin/uux
    /usr/lib/NextStep/Workspace.app/Workspace
    /usr/lib/uucp/uucico
    /usr/lib/uucp/uuclean
    /usr/lib/uucp/uuxqt
    tiger-3.2.3/systems/NeXT/3/services0000644000175000017500000000147207502327223015522 0ustar  pacopacoNSWS 178/tcp
    auth 113/tcp
    biff 512/udp
    chargen 19/tcp
    chargen 19/udp
    conference 531/tcp
    courier 530/tcp
    daytime 13/tcp
    daytime 13/udp
    dialup-stat 120/tcp
    discard 9/tcp
    discard 9/udp
    domain 53/tcp
    domain 53/udp
    echo 7/tcp
    echo 7/udp
    efs 520/tcp
    exec 512/tcp
    finger 79/tcp
    ftp 21/tcp
    hostnames 101/tcp
    ingreslock 1524/tcp
    link 87/tcp
    login 513/tcp
    mtp 57/tcp
    nameserver 42/tcp
    netnews 532/tcp
    netstat 15/tcp
    netwall 533/udp
    nntp 119/tcp
    ntalk 518/udp
    ntp 123/udp
    pop 109/tcp
    printer 515/tcp
    qotd 17/tcp
    remotefs 556/tcp
    rje 77/tcp
    rlp 39/udp
    route 520/udp
    sftp 115/tcp
    shell 514/tcp
    smtp 25/tcp
    snmp 161/udp
    sunrpc 111/tcp
    sunrpc 111/udp
    supdup 95/tcp
    syslog 514/udp
    systat 11/tcp
    talk 517/udp
    telnet 23/tcp
    tempo 526/tcp
    tftp 69/udp
    time 37/tcp
    time 37/udp
    timed 525/udp
    uucp 540/tcp
    uucp-path 117/tcp
    who 513/udp
    whois 43/tcp
    tiger-3.2.3/systems/NeXT/3/suid_list0000644000175000017500000000340507502327223015674 0ustar  pacopaco/NextApps/Terminal.app/Terminal
    /NextApps/PrintManager.app/PrintManager
    /NextDeveloper/Demos/CDPlayer.app/CDPlayer
    /NextAdmin/UserManager.app/UserManager
    /NextAdmin/InstallTablet.app/InstallTablet
    /NextAdmin/NetWareManager.app/NetWareManager
    /NextAdmin/HostManager.app/HostManager
    /NextAdmin/SimpleNetworkStarter.app/SimpleNetworkStarter
    /NextAdmin/NFSManager.app/ExportsHelper
    /NextAdmin/BuildDisk.app/BuildDisk
    /NextAdmin/PhoneManager.app/PhoneManager
    /NextAdmin/PhoneConnector.app/PhoneConnector
    /bin/su.nowheel
    /bin/ps
    /bin/passwd
    /bin/mail
    /bin/login
    /usr/netware/etc/nucmessaged
    /usr/filesystems/mac.fs/mac.util
    /usr/filesystems/CDROM.fs/CDROM.util
    /usr/filesystems/DOS.fs/DOS.util
    /usr/filesystems/cdaudio.fs/cdaudio.util
    /usr/ucb/lprm
    /usr/ucb/lpq
    /usr/ucb/lpr
    /usr/ucb/uptime
    /usr/ucb/w
    /usr/ucb/traceroute
    /usr/ucb/rdist
    /usr/ucb/rsh
    /usr/ucb/rlogin
    /usr/ucb/rcp
    /usr/etc/autoNetWaremount
    /usr/etc/timedc
    /usr/etc/ping
    /usr/etc/rdump
    /usr/bin/mailq
    /usr/bin/newaliases
    /usr/bin/ruusend
    /usr/bin/uuq
    /usr/bin/uusend
    /usr/bin/uusnap
    /usr/bin/uupoll
    /usr/bin/uuname
    /usr/bin/uulog
    /usr/bin/uux
    /usr/bin/uucp
    /usr/bin/cu
    /usr/bin/tip
    /usr/bin/atq
    /usr/bin/atrm
    /usr/bin/at
    /usr/lib/Preferences/ntp
    /usr/lib/Preferences/date
    /usr/lib/Preferences/set_time_zone
    /usr/lib/Preferences/check_ntpd
    /usr/lib/Preferences/boot_cmd
    /usr/lib/Preferences/clock_chip
    /usr/lib/phone/PhoneServer
    /usr/lib/MusicKit/bin/fixedpolicy
    /usr/lib/lpd
    /usr/lib/NextPrinter/exec_faxes
    /usr/lib/NextPrinter/Faxxess
    /usr/lib/NextPrinter/FaxDaemon
    /usr/lib/sendmail
    /usr/lib/sendmail.old
    /usr/lib/uucp/uuclean
    /usr/lib/uucp/uuxqt
    /usr/lib/uucp/uucico
    /usr/lib/rcssnoop
    /usr/lib/ex3.7preserve
    /usr/lib/ex3.7recover
    /usr/lib/NextStep/Workspace.app/Workspace
    /usr/lib/fastps
    /usr/lib/installKM
    /Upgrade_3.0.app/Upgrade_3.0
    tiger-3.2.3/systems/NeXT/3/timecmd0000755000175000017500000000154007502327223015320 0ustar  pacopaco#!/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 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.
    #
    # NeXT/3/timecmd - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    $DATE |
    $AWK '{print substr($4,1,5);}'
    tiger-3.2.3/systems/NeXT/3/3.3/0000755000175000017500000000000011306441045014247 5ustar  pacopacotiger-3.2.3/systems/NeXT/3/3.3/services0000644000175000017500000000155607502327223016030 0ustar  pacopacoNSWS		178/tcp
    auth		113/tcp
    biff		512/udp
    chargen		19/tcp
    chargen		19/udp
    conference	531/tcp
    courier		530/tcp
    daytime		13/tcp
    daytime		13/udp
    dialup-stat	120/tcp
    discard		9/tcp
    discard		9/udp
    domain		53/tcp
    domain		53/udp
    echo		7/tcp
    echo		7/udp
    efs		520/tcp
    exec		512/tcp
    finger		79/tcp
    ftp		21/tcp
    hostnames	101/tcp
    ingreslock	1524/tcp
    link		87/tcp
    login		513/tcp
    mtp		57/tcp
    nameserver	42/tcp
    netnews		532/tcp
    netstat		15/tcp
    netwall		533/udp
    nntp		119/tcp
    ntalk		518/udp
    ntp		123/udp
    pop		109/tcp
    printer		515/tcp
    qotd		17/tcp
    remotefs	556/tcp
    rje		77/tcp
    rlp		39/udp
    route		520/udp
    sftp		115/tcp
    shell		514/tcp
    smtp		25/tcp
    snmp		161/udp
    sunrpc		111/tcp
    sunrpc		111/udp
    supdup		95/tcp
    syslog		514/udp
    systat		11/tcp
    talk		517/udp
    telnet		23/tcp
    tempo		526/tcp
    tftp		69/udp
    time		37/tcp
    time		37/udp
    timed		525/udp
    uucp		540/tcp
    uucp-path	117/tcp
    who		513/udp
    whois		43/tcp
    tiger-3.2.3/systems/NeXT/3/3.3/inetd0000644000175000017500000000260507502327223015304 0ustar  pacopacoftp	stream	tcp	nowait	root	/usr/etc/ftpd		ftpd
    telnet	stream	tcp	nowait	root	/usr/etc/telnetd	telnetd
    shell	stream	tcp	nowait	root	/usr/etc/rshd		rshd
    login	stream	tcp	nowait	root	/usr/etc/rlogind	rlogind
    exec	stream	tcp	nowait	root	/usr/etc/rexecd		rexecd
    finger	stream	tcp	nowait	nobody	/usr/etc/fingerd	fingerd
    tftp	dgram	udp	wait	root	/usr/etc/tftpd		tftpd -s /private/tftpboot
    comsat	dgram	udp	wait	root	/usr/etc/comsat	comsat
    talk	dgram	udp	wait	root	/usr/etc/talkd	talkd
    ntalk	dgram	udp	wait	root	/usr/etc/ntalkd	ntalkd
    echo	stream	tcp	nowait	root	internal
    discard	stream	tcp	nowait	root	internal
    chargen	stream	tcp	nowait	root	internal
    daytime	stream	tcp	nowait	root	internal
    time	stream	tcp	nowait	root	internal
    echo	dgram	udp	wait	root	internal
    discard	dgram	udp	wait	root	internal
    chargen	dgram	udp	wait	root	internal
    daytime	dgram	udp	wait	root	internal
    time	dgram	udp	wait	root	internal
    NSWS	stream	tcp	wait	root	/usr/lib/NextStep/NSWSd	NSWSd
    rquotad/1      dgram   rpc/udp wait root /usr/etc/rpc.rquotad   rpc.rquotad
    rstat_svc/1-3  dgram   rpc/udp wait root /usr/etc/rpc.rstatd    rpc.rstatd
    rusersd/1-2    dgram   rpc/udp wait root /usr/etc/rpc.rusersd   rpc.rusersd
    sprayd/1       dgram   rpc/udp wait root /usr/etc/rpc.sprayd    rpc.sprayd
    walld/1        dgram   rpc/udp wait root /usr/etc/rpc.rwalld    rpc.rwalld
    renderd/1      dgram   rpc/udp wait root /usr/prman/rpc.renderd     rpc.renderd
    tiger-3.2.3/systems/NeXT/getuserhome0000755000175000017500000000027707502327223016071 0ustar  pacopaco#!/bin/sh
    
    #
    # cd to / in case we are down in a directory we don't have read
    # access to.  /bin/csh will barf if that is the case.
    #
    cd /
    
    user="$1"
    
    /bin/csh -c "echo ~$user" 2> /dev/null
    
    
    tiger-3.2.3/systems/SunOS/0000755000175000017500000000000011306441046013774 5ustar  pacopacotiger-3.2.3/systems/SunOS/4/0000755000175000017500000000000011306441046014137 5ustar  pacopacotiger-3.2.3/systems/SunOS/4/check_cron0000755000175000017500000000161207502327223016166 0ustar  pacopaco#!/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 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/4/check_cron - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    if [ -f /usr/spool/cron/crontabs/$1 ]; then
      echo "YES"
    else
      echo "NO"
    fi
    tiger-3.2.3/systems/SunOS/4/check0000755000175000017500000001064707502327223015155 0ustar  pacopaco#!/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 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/4/check - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    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 CAT CC GREP RM SGREP STRINGS || exit 1
      haveallfiles BASEDIR WORKDIR || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    
    haveallcmds CAT CC GREP RM SGREP STRINGS || exit 1
    haveallfiles BASEDIR WORKDIR || exit 1
    
    $GREP -v '^#' /etc/ttytab |
    $GREP console |
    $SGREP secure && echo "--WARN-- [misc001w] CONSOLE is marked as secure."
    
    $GREP -v '^#' /etc/ttytab |
    $GREP -v console |
    $SGREP secure && echo "--WARN-- [misc002w] TTY's are marked as secure."
    #
    # YPSERVER && not using securenets?
    #
    [ "$YPSERVER" = "YES" -a ! -f /var/yp/securenets ] && {
      echo "--FAIL-- [misc003f] No /var/yp/securenets file."
    }
    
    status=`/usr/etc/eeprom |
            $GREP '^secur.*=' |
            $GREP -v 'badlogins' |
    	$SED -e 's/^secur.*=\(.*\)$/\1/'`
    
    [ ! -n "$status" -o "$status" = "none" ] && {
      echo "--WARN-- [misc004w] The PROM monitor is not in secure mode."
    }
    
    #[ -u /usr/etc/restore ] && {
    #  echo "--WARN-- /usr/etc/restore is setuid but should not be."
    #}
    
    rsig=" 5e62adcc ac948154 e45237db 33b9153d 0e0ccad8 2de71646 84486f31 1b32eda8"
    
    
    if haveallcmds SNEFRU; then
      if [ -x /usr/openwin/bin/loadmodule ]; then
        sig="`$SNEFRU < /usr/openwin/bin/loadmodule`"
        if [ "$sig" = "$rsig" ]; then
          echo "--WARN-- [ca9122f] /usr/openwin/bin/loadmodule is insecure."
        else
          $STRINGS /usr/openwin/bin/loadmodule | $SGREP IFS || {
    	echo "--WARN-- [ca9122w] /usr/openwin/bin/loadmodule may be insecure."
          }
        fi
      elif [ -x $OPENWINHOME/bin/loadmodule ]; then
        sig="`$SNEFRU < $OPENWINHOME/bin/loadmodule`"
        if [ "$sig" = "$rsig" ]; then
          echo "--WARN-- [ca9122f] $OPENWINHOME/bin/loadmodule is insecure."
        else
          $STRINGS /usr/openwin/bin/loadmodule | $SGREP IFS || {
    	echo "--WARN-- [ca9122w] /usr/openwin/bin/loadmodule may be insecure."
          }
        fi
      else
        echo "--INFO-- [ca9122i] Can not locate OpenWindows on this machine."
      fi
    fi
    
    haveallcmds CC && {
      $CAT <$WORKDIR/inv.c
    #include 
    main(){int c; while((c=getchar()) != EOF)putchar(~c);}
    EOF
      (cd $WORKDIR; $CC inv.c -o inv)
      [ -x $WORKDIR/inv ] && {
        $WORKDIR/inv < /usr/bin/login > $WORKDIR/login.tmp.$$
        $STRINGS $WORKDIR/login.tmp.$$ > $WORKDIR/strings.$$
        delete $WORKDIR/login.tmp.$$
        [ -s $WORKDIR/strings.$$ ] && {
          echo "--ALERT-- /usr/bin/login contains these strings in 1's complement form:"
          $CAT $WORKDIR/strings.$$
        }
        delete $WORKDIR/strings.$$
      }
      delete $WORKDIR/inv $WORKDIR/inv.c
    }  
    
    $PS -auxww > $WORKDIR/ps.out.$$
    
    $SGREP "rpc.mountd *-n" $WORKDIR/ps.out.$$ && {
      echo "--WARN-- [misc006w] NFS rpc.mountd running with '-n' option"
    }
    
    $SGREP "ypbind *-ypset" $WORKDIR/ps.out.$$ && {
      echo "--WARN-- [misc007w] NIS ypbind running with a -ypset option."
    }
    
    nfsmon=`echo "nfs_portmon/" |
             /usr/bin/adb /vmunix /dev/kmem |
             $AWK '/_nfs_portmon:/ {print $2}'`
    
    [ "$nfsmon" = '0' ] && {
      echo "--WARN-- [misc008w] NFS port checking disabled in kernel."
    }
    
    delete $WORKDIR/ps.out.$$
    tiger-3.2.3/systems/SunOS/4/embedlist0000644000175000017500000000065507502327223016043 0ustar  pacopaco#
    #  These are files which have any embedded pathnames in them checked.
    #  It does not need to include things like /etc/inetd.conf, etc, as
    #  these will be generated during the running of the security system.
    #  They *can* be included if you want to run check_embedded without
    #  running all the other scripts.  This will not cause duplicate output.
    #
    /etc/rc
    /etc/rc.boot
    /etc/rc.single
    /etc/rc.local
    /.profile
    /.cshrc
    /.login
    tiger-3.2.3/systems/SunOS/4/config0000644000175000017500000001000407531433121015322 0ustar  pacopaco# -*- 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/4/config - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    #   UUID=`/usr/bin/id | /usr/bin/sed -e 's/uid=\([0-9][0-9]*\).*$/\1/'`
    [ "$UUID" = "" ] &&
      UNAME=`whoami`
    
    export UNAME
    
    [ "$UNAME" != "root" ] && {
      echo " " 1>&2
      echo "This script should be run from a super-user account." 1>&2
      echo " " 1>&2
    #  exit 1
    }
    
    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
    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
    SENDMAILS="/usr/lib/sendmail /usr/lib/sendmail.mx"
    SENDMAILCF="/etc/sendmail.cf"
    export SENDMAILS SENDMAILCF
    #
    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
    #
    UNAME=/usr/bin/uname
    GETHOSTNAME=/usr/bin/hostname
    EXPR=/usr/bin/expr
    STRINGS=/usr/ucb/strings
    FIND=/usr/bin/find
    FINDXDEV=-xdev
    FMT=/usr/ucb/fmt
    GETFS=/usr/etc/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
    #
    # 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
    #
    YP=
    ($PS -auxww | $GREP ypbind | $SGREP -v $GREP) && YP=Y
    export YP
    #
    #
    YPSERVER="NO"
    ($PS -aux | $GREP ypserv | $SGREP -v $GREP) && YPSERVER="YES"
    export WAIT YPCAT YPSERVER
    #
    MAILSPOOL=/var/spool/mail
    #
    CRONSPOOL=/var/spool/cron/crontabs
    #
    ETCSHELLS=/etc/shells
    #
    export MAILSPOOL CRONSPOOL ETCSHELLS
    #
    FS_WDIRSYS="/tmp/ /var/tmp/ /var/spool/mail/"
    export FS_WDIRSYS
    #
    SYSDEFAULTPATH="/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
    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
    EOL
    `
    tiger-3.2.3/systems/SunOS/4/4.1.1/0000755000175000017500000000000011306441045014577 5ustar  pacopacotiger-3.2.3/systems/SunOS/4/4.1.1/sun3/0000755000175000017500000000000011306441045015467 5ustar  pacopacotiger-3.2.3/systems/SunOS/4/4.1.1/sun3/signatures0000644000175000017500000003322107650724332017611 0ustar  pacopaco#
    #     tiger - A UN*X security checking system
    #     Copyright (C) 1993 Douglas Lee Schales, David K. Hess, David R. Safford
    #
    #     Please see the file `COPYING' for the complete copyright notice.
    #
    # SunOS/4.1.1/sun3/signatures - 04/22/93
    #
    #-----------------------------------------------------------------------------
    #@DEST=SunOS/4/4.1.1/sun3
    #@CONFIG=SunOS/4
    #
    # SunOS 4.1.1, sun3 signature file
    #
    # No change from -01 to -02, just wanted to use MD5 signature...
    #
    #Y .       /usr/bin/login cd51c569 45a7c608 1446ed6a df9f6a3e 583b1ec6 87b8686a b74bff80 80ea0b46 Sun Patch ID 100630-01
    Y .       /usr/bin/login 11d5ed4445face25642100ec0ab1ed3c Sun Patch ID 100630-01
    Y .       /usr/bin/login ccc3ba04 c32874c4 1b23d7a7 b4411d8f 3cc4ca68 cee89306 e8bb00fc 73cd142c Sun Patch ID 100631-01
    O sig006w /usr/bin/login 6dcd531b b341543e dae01e4e d7af986b 8d6b54cd 10147108 9285a359 b308b2da SunOS 4.1.1 (security patch is 100630)
    #
    # No change from -01 to -02, using MD5 sig instead...
    #
    #Y .       /usr/bin/su 2f1b48a5 35aa51c5 b39261e3 181203d8 1a585852 6012f451 4a3650c9 b8ee5062 Sun Patch ID 100630-01
    Y .       /usr/bin/su c6f2f88e7dc1ef51d53c021af7f4d576 Sun Patch ID 100630-01
    O sig006w /usr/bin/su 5cf97d3e 6e64ce3e b5baadd3 5a998eb1 55a15881 d5a67a2a 0fa63caa f96d4563 SunOS 4.1.1 (security patch is 100630)
    #
    #
    #
    Y .       /usr/5bin/su 5f876e12f1ef816c6bc031509fd1622f Sun Patch ID 100630-02
    O sig019w /usr/5bin/su 5b7a80ef ae8d0c6a db8e0e5b c7e45645 91db22ac 5ab638f6 dd6c20c8 a06727e3 Sun Patch ID 100630-01 (current is 100630-02)
    O sig006w /usr/5bin/su 4ad3803c f3a3d7ae e8ad8746 2681e0d1 1f45712c ce63a0c0 4471f765 bbb806ba SunOS 4.1.1 (security patch is 100630)
    #
    #
    #
    Y .       /usr/etc/rpc.yppasswdd a7d0b627 0ff0eaa6 f7f714ed 89ac76ca 9a411321 bc1dc90c b3dbccf8 35707791 SunOS 4.1.1
    Y .       /usr/etc/in.fingerd 14ff9888 3bfda6b2 6c626117 eeb40460 21e306a1 a0bb93a3 24ce4938 5b0ef4aa SunOS 4.1.1
    Y .       /usr/etc/in.ftpd dad8523d d86db944 bea1e992 51dc8f6f b45bd5d1 17407672 557a379b 265752e7 SunOS 4.1.1
    Y .       /usr/etc/in.rexecd bf18dcb7 de550157 1470029b 3efd72ca 066123db ffecb28f e6fb71d9 b9cab0da SunOS 4.1.1
    Y .       /usr/etc/in.rlogind 7f8b2b43 df1fc2b6 5aa5de4f 167bd3b2 39fd8ab3 97593168 f1b19a79 c8c18a50 SunOS 4.1.1
    Y .       /usr/etc/in.rshd 6f3c1f92 2574108d 5ce59e1c c7900cbc 5c6dd6bf 65653965 3f353827 b2653fd9 SunOS 4.1.1
    Y .       /usr/etc/in.telnetd 657163eb 45e21f05 c7f08784 a8fc6ce7 208ae4f9 2e766d11 6f30f8b6 ec461a4d SunOS 4.1.1
    Y .       /usr/etc/in.tftpd 6766bd4d 30432f57 634d1110 62576221 45c2418e f7e67197 6069bd1f 0c7f02af SunOS 4.1.1
    Y .       /usr/etc/in.uucpd 96a25544 62568c73 87d37f45 8be3e3aa ac3bafdc 1435faa1 84e4fb8b 3fcaa49b SunOS 4.1.1
    #
    #
    #
    Y .       /usr/etc/portmap 5e9daa91 0d237210 074bd6da ae25f7a2 75abb55e 5a8c9769 9231bf4e dd99ccd1 Sun Patch ID 100482-04
    O sig008w /usr/etc/portmap 736f8de9 dc3bca6e 9553c70b 7d58bd81 0231c8f5 85bcd618 b6f25004 c5da6bbe SunOS 4.1.1 (security patch is 100482)
    # No change between -02, -03, & -04
    #
    #
    #
    Y .       /usr/etc/ypserv f5c81a93 4b9ead7d 87bd5fad f532642d 1d708589 00fff939 6c3976c5 8d8f2e3f Sun Patch ID 100482-04
    O sig008w /usr/etc/ypserv 697b1bae dbe40da9 69b7dd22 fef35b73 de7787dc e01ad800 d47ca497 0ee33186 SunOS 4.1.1 (security patch is 100482)
    O sig008w /usr/etc/ypserv 0c6819f8 e47b4135 34589302 84ef89a1 00019ca3 b3f4bfe8 4fb4da7f 1c03b67d Sun Patch ID 100482-02 (current is 100482-04)
    O sig008w /usr/etc/ypserv d4e3a05d afcdf26f dd0bdad2 2e43d3da c37cb1b9 9ea093a3 f905777b 1be281a3 Sun Patch ID 100482-03 (current is 100482-04)
    #
    #
    #
    Y .       /usr/etc/ypxfrd d2c5b730 571b820c 390da83c bf88ec92 042feaa7 b6667064 00c0845d 93ba269e Sun Patch ID 100482-04
    O sig008w /usr/etc/ypxfrd 9a76b391 4361e4b6 4dc21065 89eeab73 29ed5a9f 5bbce77f 5502ed90 34501882 SunOS 4.1.1 (security patch is 100482)
    O sig008w /usr/etc/ypxfrd 703d147b d08c7ddb 22a810c6 b9011498 768ecb40 ec37fd7d 3a0b191f 659eaf13 Sun Patch ID 100482-02 (current is 100482-04)
    O sig008w /usr/etc/ypxfrd 83e8e53c 3d248cfe 5d14feaf 414d3c1d 1d456fa9 feb4519b fe01e8a2 f29a97ec Sun Patch ID 100482-03 (current is 100482-04)
    #
    #
    #
    Y .       /usr/ucb/rdist 8b38c38b 86e5f295 75769eb9 ff6a8272 a4c20d7c a5f5181d a48b43bb e6f9be9e Sun Patch ID 100383-06
    O sig010w /usr/ucb/rdist 598e5627 a14aedd3 16fcc3b5 1e817d31 7a99b5e6 c04f6298 9e753334 c6c74de6 SunOS 4.1.1 (security patch is 100383)
    O sig010w /usr/ucb/rdist 9b2f45f6 61b85d36 274b4d73 2fb1b762 c196182f 91a95c0c d1fd5e0b 55e23ab0 Sun Patch ID 100383-02 (current is 100383-06)
    O sig010w /usr/ucb/rdist b04e0fef 54522356 df04aabe f17a2a55 01c27408 de73d5d5 4f5f4aca e85d7002 Sun Patch ID 100383-03 (current is 100383-06)
    # No change between -04 & -05
    O sig010w /usr/ucb/rdist 0e4b9d37 a62c2fe1 83fb55d4 81e6015e c1fcdf8a 50c7d96e 62d50fd7 81eaa7e0 Sun Patch ID 100383-05 (current is 100383-06)
    #
    #
    #
    Y .       /usr/bin/passwd 45af72b6 04dd5bcb fb19cbfd 259b7b25 09173e34 58e626e9 d9adc029 38e3f684 SunOS 4.1.1
    Y .       /usr/ucb/rlogin 332e5603 9171fbaf 54b933b5 cf3699c3 335dd6f9 d096054a 7d7f5d05 3152aacb SunOS 4.1.1
    Y .       /usr/ucb/rsh 3a259e0c a9e8c0a8 ccf3d46d 2c027c72 98cdeba0 4220f098 a0647c08 6ffe4c20 SunOS 4.1.1
    Y .       /usr/ucb/telnet 9620d145 7237c951 8fb8f23b 74c6a560 b7e4c7fb d650f230 3a4cb2a8 e7e2960b SunOS 4.1.1
    #
    #
    #
    Y .       /usr/lib/sendmail 4739a231b85c41df93b233eb48fc43d0 Sun Patch ID 100377-08
    Y .       /usr/lib/sendmail 6b685b40f46b1adabbc1ebe8a0fc4377 Sun Patch ID 100377-08
    Y .       /usr/lib/sendmail.mx 6b685b40f46b1adabbc1ebe8a0fc4377 Sun Patch ID 100377-08
    #
    O sig016w /usr/lib/sendmail bc89d2ff7d3d143477b0923d5903292d Sun Patch ID 100377-07 (current is 100377-08)
    O sig016w /usr/lib/sendmail.mx a37de5c79013ac88636b0419b040f957 Sun Patch ID 100377-07 (current is 100377-08)
    O sig016w /usr/lib/sendmail a37de5c79013ac88636b0419b040f957 Sun Patch ID 100377-07 (current is 100377-08)
    #
    O sig016w /usr/lib/sendmail 7bf1b8d4 cb1b4079 8a7a8d0e 44400903 6a0147b3 6964fdad dba8480b ec544f4f Sun Patch ID 100377-05 (current is 100377-08)
    O sig016w /usr/lib/sendmail.mx 7bf1b8d4 cb1b4079 8a7a8d0e 44400903 6a0147b3 6964fdad dba8480b ec544f4f Sun Patch ID 100377-05 (current is 100377-08)
    O sig016w /usr/lib/sendmail f536fc3a de0642c0 e9b1f9ec 54a2fbd6 b7b4c7b5 159476c6 eb6bce35 81b6b407 Sun Patch ID 100377-05 (current is 100377-08)
    O sig009w /usr/lib/sendmail 264cb8eb 372d2534 d60490bf 809ec455 fee70ad9 401041a4 23d59ce9 1fc4d0ec SunOS 4.1.1 (security patch is 100377)
    O sig009w /usr/lib/sendmail 3ca1a60e 15c619d6 37f13b21 2f5d5387 08c857ce 2cbdea5f efb25d00 22468d91 SunOS 4.1.1 (security patch is 100377)
    O sig009w /usr/lib/sendmail.mx 3ca1a60e 15c619d6 37f13b21 2f5d5387 08c857ce 2cbdea5f efb25d00 22468d91 SunOS 4.1.1 (security patch is 100377)
    O sig009w /usr/lib/sendmail 2dd426b4 35721bc9 a1df4b32 a0359585 890dc417 c1d6413e a1a0a4c3 25a949e4 Sun Patch ID 100377-04 (current is 100377-08)
    O sig009w /usr/lib/sendmail eebd7413 8019228e 4ebb4ce9 bf867c0e 26cdde40 e82928b9 ccee3e46 cb5eeeb5 Sun Patch ID 100377-04 (current is 100377-08)
    O sig009w /usr/lib/sendmail.mx eebd7413 8019228e 4ebb4ce9 bf867c0e 26cdde40 e82928b9 ccee3e46 cb5eeeb5 Sun Patch ID 100377-04 (current is 100377-08)
    #
    #
    #
    Y .       /usr/bin/cancel 87aa2dea146881850e925f9a020811bb Sun Patch ID 100305-13
    Y .       /usr/etc/lpc 5159898bf75a1b1ccf994792b097682e Sun Patch ID 100305-13
    Y .       /usr/lib/lpd 53ab63dfb8e6b414d593dc77500d169e Sun Patch ID 100305-13
    Y .       /usr/ucb/lpq 4f5f4fddc87ababca137855cdd8be1e9 Sun Patch ID 100305-13
    Y .       /usr/ucb/lpr d233541aa0eb1a6c17cc68a362c3bfde Sun Patch ID 100305-13
    Y .       /usr/ucb/lprm 74e9581df09f8657e49773edbed73e7c Sun Patch ID 100305-13
    Y .       /usr/bin/lpstat 12ffaa377b2f4d851311465d0bd0ccf5 Sun Patch ID 100305-13
    Y .       /usr/etc/pac 7fab1f40c6fe4fc5437617487fa57876 Sun Patch ID 100305-13
    #
    O sig011w /usr/etc/lpc 6966460e d958317c 1d3918af f3a3dba6 597cc6e3 96af699f 72d9965e caafdbbd Sun Patch ID 100305-11 (current is 100305-13)
    O sig011w /usr/lib/lpd f6d7543c 73304b91 a53d3879 aa8287b0 c0eb2ca6 b7077ba6 a2e49f6f d86a4bc8 Sun Patch ID 100305-11 (current is 100305-13)
    O sig011w /usr/ucb/lpr 130c0458 fddb05b3 d5e85834 98878ee7 19b72ab3 e7f39d1b 32553b8d 86ff8f9c Sun Patch ID 100305-11 (current is 100305-13)
    O sig011w /usr/ucb/lprm b62af487 d628a2e6 7f7fc94f 203dff34 acbddc7c 757b8a87 187bda5c e9de8987 Sun Patch ID 100305-11 (current is 100305-13)
    O sig011w /usr/bin/lpstat 8b419aec 115b8e32 b81af839 5ada7659 1142e276 28350044 5f5189c1 1d8b2599 Sun Patch ID 100305-11 (current is 100305-13)
    O sig011w /usr/bin/lpstat ee6c1afc 0fa7b9b0 47c44fa9 26519e4c 6262ae64 bb8e3ae7 2e2ac2f5 d2dd321d SunOS 4.1.1 (security patch is 100305)
    O sig011w /usr/etc/lpc 77ea9f33 5c9bed68 4cea58fd 779957b3 556a58c4 9f16a7af 4bc687c5 5a1bc9b9 SunOS 4.1.1 (security patch is 100305)
    O sig011w /usr/lib/lpd 95bb0d2f 3011db9b 06e4369e 5b2714a6 79e084b6 d519aa35 782aa43f 44a27cf3 SunOS 4.1.1 (security patch is 100305)
    O sig011w /usr/ucb/lpr 743b1ab4 45df1587 e9a87a53 4b3d8e74 aa151409 7c5dde9c f9e2fb80 f0f2e11f SunOS 4.1.1 (security patch is 100305)
    O sig011w /usr/etc/pac 595b226c6df19e1a85d5365dd9897fe3 SunOS 4.1.1 (security patch is 100305)
    O sig011w /usr/bin/cancel 6a70b7ed6443cac7f9ecc14d9ae3649f SunOS 4.1.1 (security patch is 100305)
    O sig011w /usr/ucb/lpq 9a34a10628600380e8abd8e073563cd8 SunOS 4.1.1 (security patch is 100305)
    O sig011w /usr/ucb/lprm 62ca124b 8de4b844 af8e8a61 a37ab977 8e770d22 474690ad 1d7384c5 55204879 SunOS 4.1.1 (security patch is 100305)
    O sig011w /usr/lib/lpd f39fd921 febf14d4 90455b0a 67d3cef9 c80d11dc bf5ef76f 077ac4ab 62c4199f Sun Patch ID 100305-03 (current is 100305-13)
    O sig011w /usr/etc/lpc fd7b55c1 7da62f48 b1e0753d 0a7e9129 b296e977 77f3f7a9 77cd3f05 074d9849 Sun Patch ID 100305-06 (current is 100305-13)
    O sig011w /usr/lib/lpd e72968ac cb5f9761 47d9b175 302d2075 d7b8ee0c 6fbe745d ea9dbb80 77cebd55 Sun Patch ID 100305-06 (current is 100305-13)
    O sig011w /usr/ucb/lpr a9fcf5e8 c33eb428 c229c862 735329e1 e0227d16 b9305a34 5cbdd058 e622c6c5 Sun Patch ID 100305-06 (current is 100305-13)
    O sig011w /usr/etc/lpc 6966460e d958317c 1d3918af f3a3dba6 597cc6e3 96af699f 72d9965e caafdbbd Sun Patch ID 100305-10 (current is 100305-13)
    O sig011w /usr/lib/lpd f6d7543c 73304b91 a53d3879 aa8287b0 c0eb2ca6 b7077ba6 a2e49f6f d86a4bc8 Sun Patch ID 100305-10 (current is 100305-13)
    O sig011w /usr/ucb/lpr 5e9bf7cb 730631ad 70781b83 95cf7244 1cbf5d8c 945a9f48 3bfc3d1d bcc56e38 Sun Patch ID 100305-10 (current is 100305-13)
    O sig011w /usr/bin/lpstat 8b419aec 115b8e32 b81af839 5ada7659 1142e276 28350044 5f5189c1 1d8b2599 Sun Patch ID 100305-10 (current is 100305-13)
    #
    #
    #
    Y .       /usr/lib/expreserve 61f83a16 6f566bcd 00c31a00 c355d1f3 c15c3499 5a076d44 bc3fc90c 4029cd08 Sun Patch ID 101080-01
    O sig013w /usr/lib/expreserve 4edce7d2 44784edb 3b45cfcd d65fe014 ab0f4cca 13df5835 a1cb8f0e 6a797aca SunOS 4.1.1 (security patch is 101080)
    O sig014w /usr/lib/expreserve b0e909b6 f52b92b1 568db581 9ccbf7b1 68759768 d0103d78 da716e6b cee03d8b Sun Patch ID 100251-01 (current is 101080-01)
    #
    #
    #
    Y .       /usr/etc/rpc.mountd 3fadb583 8838b35d 66058f81 cc095190 287b7db3 d7c08b47 2c5ed13c 112aad0c Sun Patch ID 100296-04
    O sig012w /usr/etc/rpc.mountd 9b553329 ef8b8189 306f4df7 6e72aae6 80adb442 911a3798 12f20ea3 80619592 SunOS 4.1.1 (security patch is 100296)
    O sig012w /usr/etc/rpc.mountd c1d684c3 3ed353b1 5c4a7a56 eb5307a3 dc7b1913 51f49137 43a63a1f 815d24ec Sun Patch ID 100296-01 (current is 100296-04)
    O sig012w /usr/etc/rpc.mountd 7cc0cc87 0a5e0554 453b7a6b c275a7f6 7e60d4f9 2f83ac53 d57bbb2b bd0ab91e Sun Patch ID 100296-02 (current is 100296-04)
    #
    #
    #
    Y . /usr/bin/mail 4f3af05141a285cf12a4bdb9aef6c0b7 Sun Patch ID 100224-06
    Y . /usr/bin/rmail 1b7d37607bf1852fc4dad3e48b9db98d Sun Patch ID 100224-06
    O sig015w /usr/bin/mail c1e2607383d18b1a2d301b3b4c3fe5a5 SunOS 4.1.1 (security patch is 100224)
    O sig015w /usr/bin/rmail f40b935d32e5c84837afbaae5423ed04 SunOS 4.1.1 (security patch is 100224)
    O sig015w /usr/bin/mail 03bafb277b2519ded60a21ae00b60247 Sun Patch ID 100224-01 (current is 100224-06)
    O sig015w /usr/bin/mail 03bafb277b2519ded60a21ae00b60247 Sun Patch ID 100224-02 (current is 100224-06)
    O sig015w /usr/bin/rmail bc527776c742963514117b3f780d41b6 Sun Patch ID 100224-02 (current is 100224-06)
    O sig015w /usr/bin/mail 0022c0090bd21152786874aa98ddfcc3 Sun Patch ID 100224-03 (current is 100224-06)
    O sig015w /usr/bin/rmail 1b7d37607bf1852fc4dad3e48b9db98d Sun Patch ID 100224-03 (current is 100224-06)
    O sig015w /usr/bin/mail d4d1824f6d567bd1eb2f87c7636296a0 Sun Patch ID 100224-05 (current is 100224-06)
    O sig015w /usr/bin/rmail 1b7d37607bf1852fc4dad3e48b9db98d Sun Patch ID 100224-05 (current is 100224-06)
    #
    #
    #
    Y .       /usr/bin/sh faa213d0a5144b3a4c4f0f77a83a7099 SunOS 4.1.1
    Y .       /usr/bin/csh 695a7725d988ef3bb47ce09b1fc25002 SunOS 4.1.1
    Y .       /usr/bin/sync 66d25e165c47e192f383ff7a3c5113f1 SunOS 4.1.1
    #
    #
    #
    Y . /usr/etc/in.comsat 7fe8051155d8a054f8d96bcca7e08dbf Sun Patch ID 100272-07
    O sig022w /usr/etc/in.comsat 52a760ea1ab45e01b8e77fa952bf1d4e SunOS 4.1.1 (security patch is 100272-07)
    #
    Y . /usr/etc/dump d00c4f1d593429082b3ea5eef8d5fc88 Sun Patch ID 100593-03
    O sig022w /usr/etc/dump d323bcf7620251b8fde844148f7f0934 SunOS 4.1.1 (security patch is 100593-03)
    #
    Y . /usr/etc/syslogd adead0c3d5ff640252527af6bbd9d2d6 Sun Patch ID 100909-02
    O sig022w /usr/etc/syslogd 7cdc13a9fffb12ba888e959a5835d2ce SunOS 4.1.1 (security patch is 100909-02)
    #
    Y . /usr/etc/in.talkd 2ded60d950655fdea9db359667e16521 Sun Patch ID 101480-01
    O sig022w /usr/etc/in.talkd be6f1e24f487bc21b76139195c9e8c1c SunOS 4.1.1 (security patch is 101480-01)
    #
    Y . /usr/etc/shutdown 1cd8496d454e7ab9f3582cb9adf4c41b Sun Patch ID 101481-01
    O sig022w /usr/etc/shutdown 3dd49e71aa802fd4e74d041f2a5c5612 SunOS 4.1.1 (security patch is 101481-01)
    #
    Y . /usr/bin/write 5499440da299b5fec9cfc20e5e5eb7cb Sun Patch ID 101482-01
    O sig022w /usr/bin/write 233e25ea300f7737f6c4ff744fdcd6dc SunOS 4.1.1 (security patch is 101482-01)
    tiger-3.2.3/systems/SunOS/4/4.1.1/sun3/config0000644000175000017500000001000407650724332016664 0ustar  pacopaco# -*- 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/4/config - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    #   UUID=`/usr/bin/id | /usr/bin/sed -e 's/uid=\([0-9][0-9]*\).*$/\1/'`
    [ "$UUID" = "" ] &&
      UNAME=`whoami`
    
    export UNAME
    
    [ "$UNAME" != "root" ] && {
      echo " " 1>&2
      echo "This script should be run from a super-user account." 1>&2
      echo " " 1>&2
    #  exit 1
    }
    
    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
    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
    SENDMAILS="/usr/lib/sendmail /usr/lib/sendmail.mx"
    SENDMAILCF="/etc/sendmail.cf"
    export SENDMAILS SENDMAILCF
    #
    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
    #
    UNAME=/usr/bin/uname
    GETHOSTNAME=/usr/bin/hostname
    EXPR=/usr/bin/expr
    STRINGS=/usr/ucb/strings
    FIND=/usr/bin/find
    FINDXDEV=-xdev
    FMT=/usr/ucb/fmt
    GETFS=/usr/etc/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
    #
    # 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
    #
    YP=
    ($PS -auxww | $GREP ypbind | $SGREP -v $GREP) && YP=Y
    export YP
    #
    #
    YPSERVER="NO"
    ($PS -aux | $GREP ypserv | $SGREP -v $GREP) && YPSERVER="YES"
    export WAIT YPCAT YPSERVER
    #
    MAILSPOOL=/var/spool/mail
    #
    CRONSPOOL=/var/spool/cron/crontabs
    #
    ETCSHELLS=/etc/shells
    #
    export MAILSPOOL CRONSPOOL ETCSHELLS
    #
    FS_WDIRSYS="/tmp/ /var/tmp/ /var/spool/mail/"
    export FS_WDIRSYS
    #
    SYSDEFAULTPATH="/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
    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
    EOL
    `
    tiger-3.2.3/systems/SunOS/4/4.1.1/sun4/0000755000175000017500000000000011306441046015471 5ustar  pacopacotiger-3.2.3/systems/SunOS/4/4.1.1/sun4/signatures0000644000175000017500000003675107650724332017625 0ustar  pacopaco#
    #     tiger - A UN*X security checking system
    #     Copyright (C) 1993 Douglas Lee Schales, David K. Hess, David R. Safford
    #
    #     Please see the file `COPYING' for the complete copyright notice.
    #
    # SunOS/4.1.1/sun4/signatures - 04/22/93
    #
    #-----------------------------------------------------------------------------
    #@DEST=SunOS/4/4.1.1/sun4
    #@CONFIG=SunOS/4
    #
    # SunOS 4.1.1, sun4 signature file
    #
    #Y .       /usr/bin/login 9bf0d57b b22ed30a 488cdb71 b79d0b3c 34718fb7 c5404441 92b9f84c 5438db5e Sun Patch ID 100630-01
    Y .       /usr/bin/login 0d52a2d5 ec4bee3b cbbbea64 8b96c8fd 77022448 c5142a46 f254cf09 474489e1 Sun Patch ID 100631-01
    Y .       /usr/bin/login b6d013403c54949c0e476afd966ef261 Sun Patch ID 100630-01
    O sig006w /usr/bin/login 9ec4f81b 39a28e3c 26b929ac f89f79e3 3fe9d56c f8192195 98b80da3 7220d937 Sun Patch ID 100633-01 (obsoleted by 100632)
    O sig006w /usr/bin/login 72503758 c2639ffc 8979f3ac 54ae0d20 66a52547 828ab0d9 6539ef3e 19685668 SunOS 4.1.1 (security patch is 100630)
    N sig007a /usr/bin/login 1aa8fe34 6a0ef1f7 6fc46ccb 1404cdeb 3a00872e 006dffc2 9e5b070c 31bac62b contains a backdoor (0892).
    N sig007a /usr/bin/login 59b3d2647a90f070159393bff6a67dba contains a backdoor (1293).
    #
    #
    #
    #Y .       /usr/bin/su 9634015c a4f05802 e205110e 5550f322 5321be3a 85b12ea9 16b6eb27 0f6c3bd4 Sun Patch ID 100630-01
    Y .       /usr/bin/su 01a06e1cf3b7272cfe28aa548037f578 Sun Patch ID 100630-01
    O sig006w /usr/bin/su f7be0a3d c533db79 57c1273f 8959b1fc 59a814d8 b5c441c4 47774863 1c5e4340 Sun Patch ID 100633-01 (obsoleted by 100632)
    O sig006w /usr/bin/su 5431c7a8 0316718d 8cb74bc5 0d428b76 84a8aff6 27061eb2 f20beeae e22eccc3 SunOS 4.1.1 (security patch is 100630)
    #
    #
    #
    Y .       /usr/5bin/su fcde9cae281869964f794bafcc83a5dc Sun Patch ID 100630-02
    O sig019w /usr/5bin/su 65ca43d7 3130938c d59811b5 33a2a088 64760dcb 5bfc45e1 f4625979 cf06759a Sun Patch ID 100630-01 (current is 100630-02)
    O sig006w /usr/5bin/su a0951761 e8c2afc1 09ec172a 44a13bab 5ee4d1a3 58e8eca3 bbd45e49 890cc94d Sun Patch ID 100633-01 (obsoleted by 100632)
    O sig006w /usr/5bin/su 931c75b0 4f759396 b15844e5 53c4793e ce1d7273 018ecb32 25da4a89 091664a0 SunOS 4.1.1 (security patch is 100630)
    #
    #
    #
    Y .       /usr/etc/in.fingerd 70a4dd55 29885849 81c5950d a9e6948e bfab627a 6f0d0878 84ed752b d4890952 SunOS 4.1.1
    Y .       /usr/etc/in.ftpd a0a20b74 5a6e80b8 e8cdb7d5 0c06a348 aca9457e e7263225 038ea5ef 04d37264 SunOS 4.1.1
    Y .       /usr/etc/in.rexecd 4114b047 29f66c3b 86ea0801 c63c8b4f 2e19adee 229de3e2 3e182a87 a1e70949 SunOS 4.1.1
    Y .       /usr/etc/in.rlogind 1d9a234f 7deee60b 1ac84e59 6c5cd470 9c60b3ff c5122f0f a9155ef5 312d1159 SunOS 4.1.1
    Y .       /usr/etc/in.rshd 31ff9739 44943886 79c98e31 71a917ab bdba62e7 58d5388f be76b67c f57e54b9 SunOS 4.1.1
    Y .       /usr/etc/in.telnetd 69ede0b6 9e9c3bf0 6f2948f5 b2796274 acff66e6 ce8e9b21 083e96fd a2f96d92 SunOS 4.1.1
    Y .       /usr/etc/in.tftpd db7b530d 25e7a78a d6b3baa9 b217356f 1dbdd12d a57d7b40 b0590783 d28bc9f8 SunOS 4.1.1
    Y .       /usr/etc/in.uucpd fef5b537 28a242f7 4c114798 09db5b94 2a1ce6f0 3791d17f dd14c6b7 d87a23e0 SunOS 4.1.1
    Y .       /usr/etc/inetd 6a33d9c6 e9734eb0 d91b1b60 eb613de2 3ba4c150 253cf2c3 df152ce3 32fdb3e8 SunOS 4.1.1
    Y .       /usr/etc/rpc.rusersd 2f10fa55 9af23b2f b850b683 092c1f79 f9d58ddf 5cbc2908 b662e747 d8307ae4 SunOS 4.1.1
    Y .       /usr/etc/rpc.yppasswdd 3f39d839 df494a05 0ff0c312 99bff256 f7c95766 3fe3a4e4 06292721 ed2d6793 SunOS 4.1.1
    #
    #
    #
    Y .       /usr/etc/rpc.mountd a9b19ede c48b6515 1776a44a 5a843d0b c53a0a01 a4b8b021 ada13dc4 c0acf031 Sun Patch ID 100296-04
    O sig012w /usr/etc/rpc.mountd d5b01524 0a230725 f02249df d3e8e8aa 91c8e878 69a1d812 f6fc64ff 5cf7966b SunOS 4.1.1 (security patch is 100296)
    O sig012w /usr/etc/rpc.mountd a9b19ede c48b6515 1776a44a 5a843d0b c53a0a01 a4b8b021 ada13dc4 c0acf031 Sun Patch ID 100296-01 (current is 100296-04)
    O sig012w /usr/etc/rpc.mountd 1e294694 f9ba2df6 7832c395 32696a4c 10907d66 ec10a48f bb7ada92 bde89c83 Sun Patch ID 100296-02 (current is 100296-04)
    #
    #
    #
    Y .       /usr/etc/portmap 6c01b3a9 2f9b05cf daeab7c3 66585dde 95a5e456 b47ddb6b ec4ef0b9 ae9e5e0f Sun Patch ID 100482-04
    O sig008w /usr/etc/portmap b8372a64 7bf86ddb ca7e43d9 2fd4076d 2ca5c685 43796d38 b02c4b6b b60d55a0 SunOS 4.1.1 (security patch is 100482)
    # -02, -03 && -04 same for portmap
    #
    #
    #
    Y .       /usr/etc/ypserv 24d6dd53 eef2d5d2 056570a1 c2975cfb 71f6ed53 faf720b7 c6e9b745 fd5d7ed4 Sun Patch ID 100482-04
    O sig008w /usr/etc/ypserv 208f17bd 729304c6 c5541dc8 cf0c73b1 c7fdbebc 603e42cf 83d4b2a8 57283570 SunOS 4.1.1 (security patch is 100482)
    O sig008w /usr/etc/ypserv 2423f0af 38e5c3fa 0b519242 2a7b8197 5291d9e7 88efbce6 25e36a96 40f1e651 Sun Patch ID 100482-02 (current is 100482-04)
    O sig008w /usr/etc/ypserv 5e99c22e b372aced e30c9151 1b899c99 382f354a b690f574 76b5947f f74bfc03 Sun Patch ID 100482-03 (current is 100482-04)
    #
    #
    #
    Y .       /usr/etc/ypxfrd c185309f 9e541ffb 3ca96aeb e9d94013 37c362bf 7f82e513 0b351bfd 61fab18c Sun Patch ID 100482-04
    O sig008w /usr/etc/ypxfrd b513a8b2 e20405d2 ea5c0de1 a2517294 f8db1dfc e986e9c8 8a49ad4f a3e0118a SunOS 4.1.1 (security patch is 100482)
    O sig008w /usr/etc/ypxfrd 370c2e73 4ebc1f9e a2ecac9b ca954c6d 1513bbc1 50557a0c 699de377 659bd8b9 Sun Patch ID 100482-02 (current is 100482-04)
    O sig008w /usr/etc/ypxfrd e43f4061 f51e2899 c081bdaa 61c494f9 81fcf0c6 579445d8 aaf46ddd 969a4496 Sun Patch ID 100482-03 (current is 100482-04)
    #
    #
    #
    Y .       /usr/bin/passwd fb70c37b e3cc64e5 58179d31 f8822fb4 f6edc469 5c0f43a8 73d3d71c bc846a90 SunOS 4.1.1
    Y .       /usr/ucb/ftp 9dfcaaf7 c196bea8 98f3bfb6 8789281e d48a3085 96606c21 980565d1 789062a3 SunOS 4.1.1
    Y .       /usr/ucb/rcp e9c0da33 f239bcf4 fad74ef0 da4edf51 de6bb4b8 6cd62775 220056ce c10c6552 SunOS 4.1.1
    Y .       /usr/ucb/rlogin a086e7e4 e9955fc2 0e0f424f d0805816 892daa25 c60dd220 aeaa376b 557eeb49 SunOS 4.1.1
    Y .       /usr/ucb/rsh d4434072 b19cb460 5c39b815 2c9acbd5 a78c5c9f b89fe23e ce41ecf5 c58f49e0 SunOS 4.1.1
    Y .       /usr/ucb/telnet c70d253e ba2bffb0 5f460dba b093f957 3d16e01f a88c44a2 674a900f c83bc12d SunOS 4.1.1
    Y .       /usr/ucb/tftp 72410fca 1e07d327 0c951024 5f22426d e25f076f f9291719 dfe58eea d8b62e29 SunOS 4.1.1
    #
    #
    #
    Y .       /usr/ucb/rdist 9044001a 6fd26174 c2dd7674 ffbd4290 8af17619 ee9c8bc1 73f90eba 2b2f3329 Sun Patch ID 100383-06
    O sig010w /usr/ucb/rdist 6603561b 197322e9 b3b960b9 d7146fbc 39a1ffb4 442398da f4227134 39fdec7e SunOS 4.1.1 (security patch is 100383)
    O sig010w /usr/ucb/rdist 8b15daf1 d3193a80 2f21cd5b b5fe8cca 27ebbe0d 041b814b a469ad9f 01d6c58e Sun Patch ID 100383-02 (current is 100383-06)
    O sig010w /usr/ucb/rdist 0995a6ec 53bc67fa eb6d423f 11b1c9eb e5b519b6 c0d0649b ba7bb806 c3fcbbd9 Sun Patch ID 100383-03 (current is 100383-06)
    # -04 && -05 same
    O sig010w /usr/ucb/rdist e10ba372 06a1f448 c3b4891c 565ee700 e45d1ecd 88a664eb 877c430a 29a522bd Sun Patch ID 100383-05 (current is 100383-06)
    #
    #
    Y .       /usr/lib/sendmail 94af37524000125bab771b960151c9f9 Sun Patch ID 100377-08
    Y .       /usr/lib/sendmail 114b1a12ec1e2d515fde08b9b17d6603 Sun Patch ID 100377-08
    Y .       /usr/lib/sendmail.mx 114b1a12ec1e2d515fde08b9b17d6603 Sun Patch ID 100377-08
    #
    O sig016w /usr/lib/sendmail e9d8b8b79bd42adc5fab1b35de6f7d9f Sun Patch ID 100377-07 (current is 100377-08)
    O sig016w /usr/lib/sendmail.mx 371d9f26467235b6bc31f9b67ddf7d06 Sun Patch ID 100377-07 (current is 100377-08)
    O sig016w /usr/lib/sendmail 371d9f26467235b6bc31f9b67ddf7d06 Sun Patch ID 100377-07 (current is 100377-08)
    O sig016w /usr/lib/sendmail c6512e90 06b3ac41 0856fc1f 38a05890 d4848eaf 5819de7c 47b93d51 acf9c399 Sun Patch ID 100377-05 (current is 100377-08)
    O sig016w /usr/lib/sendmail.mx c6512e90 06b3ac41 0856fc1f 38a05890 d4848eaf 5819de7c 47b93d51 acf9c399 Sun Patch ID 100377-05 (current is 100377-08)
    O sig016w /usr/lib/sendmail a9f02a38 50dbc234 3e50bd62 0df07467 6d2a7cd1 48f41305 afb2d364 0f85a0f3 Sun Patch ID 100377-05 (current is 100377-08)
    O sig009w /usr/lib/sendmail 41af1d12 45b5ca1b 3bae1ac5 0d9a99a2 3b6b2d6c 1948bdf5 2082167f 9eff9599 SunOS 4.1.1 (security patch is 100377)
    O sig009w /usr/lib/sendmail 0b3e10c9 da3fd904 a2c6aad7 b93d87a3 ab61b79c 4694eb55 71526ae7 78067cdc SunOS 4.1.1 (security patch is 100377)
    O sig009w /usr/lib/sendmail.mx 0b3e10c9 da3fd904 a2c6aad7 b93d87a3 ab61b79c 4694eb55 71526ae7 78067cdc SunOS 4.1.1 (security patch is 100377)
    O sig009w /usr/lib/sendmail a992c230 aead192f 3c413509 bcd22a13 94c81901 db304a83 7521f640 71f275ae Sun Patch ID 100377-04 (current is 100377-08)
    O sig009w /usr/lib/sendmail 571ee183 54da7e23 abffdb8f 8bf28180 6b5daf1c 49d935cf 3ae92928 20e26504 Sun Patch ID 100377-04 (current is 100377-08)
    O sig009w /usr/lib/sendmail.mx 571ee183 54da7e23 abffdb8f 8bf28180 6b5daf1c 49d935cf 3ae92928 20e26504 Sun Patch ID 100377-04 (current is 100377-08)
    #
    #
    #
    Y .       /usr/bin/cancel 75d050b1eece4fbe56abdafec8837aa6 Sun Patch ID 100305-13
    Y .       /usr/etc/lpc 207cef6937b97fa9f0bfe7097afd67df Sun Patch ID 100305-13
    Y .       /usr/lib/lpd 82385dde255d429bfce8c49183c38082 Sun Patch ID 100305-13
    Y .       /usr/ucb/lpq cb03497b28c1e4e504f651e6f949d3e1 Sun Patch ID 100305-13
    Y .       /usr/ucb/lpr 68059ee9ebf0944f106839dc165cd678 Sun Patch ID 100305-13
    Y .       /usr/ucb/lprm 1273e1e305bc812d9d2b445b0ce3ca4b Sun Patch ID 100305-13
    Y .       /usr/bin/lpstat 687810d71afa39ab703b3d35790b398a Sun Patch ID 100305-13
    Y .       /usr/etc/pac 89de16b8b1f8231ad0357d1098209b66 Sun Patch ID 100305-13
    #
    O sig011w /usr/etc/lpc e17dfb36 57e3f0fd 22e60f70 16dcaf84 0b3ce9c9 a6d91560 b135db2d 60951382 Sun Patch ID 100305-11 (current is 100305-13)
    O sig011w /usr/lib/lpd 3786c9a9 d8971cff 70bbffbf ac314e6b 75b5848d c3266766 936ed3c8 211f69f6 Sun Patch ID 100305-11 (current is 100305-13)
    O sig011w /usr/ucb/lpr 80933be3 81adf581 64f92af4 9ca49e3e 9ef686ed 670d3edf fc47f2c9 d9ae20af Sun Patch ID 100305-11 (current is 100305-13)
    O sig011w /usr/ucb/lprm b329422f 2682ee16 4ca12b6e 730b90d7 f9eadd03 5522e8a8 ee6f0e96 ebdcdd79 Sun Patch ID 100305-11 (current is 100305-13)
    O sig011w /usr/bin/lpstat 327233e1 90d1fa8e 2fb6fe23 25a144ab 48db00bd b99e301d 9494cd9c 5068c8ab Sun Patch ID 100305-11 (current is 100305-13)
    O sig011w /usr/bin/lpstat 7c25c2c0 8ffb3743 2f5cf955 6408893c c78a880b 87181162 51fa568c 48429ce6 SunOS 4.1.1 (security patch is 100305)
    O sig011w /usr/etc/pac 736913456da77a93c032a22091e12cdb SunOS 4.1.1 (security patch is 100305)
    O sig011w /usr/bin/cancel cdffdfe293504e49695bd5032a283015 SunOS 4.1.1 (security patch is 100305)
    O sig011w /usr/ucb/lpq c339b2fc8f02669f475b7c2719e9864d SunOS 4.1.1 (security patch is 100305)
    O sig011w /usr/etc/lpc 3f943902 f79da7b3 a62713c7 a9a74f46 fbbc63f2 142d7013 ea8598f0 a46d5ff2 SunOS 4.1.1 (security patch is 100305)
    O sig011w /usr/lib/lpd e6ba94a4 4709d18d b2a9b435 5b5f8952 c017ad62 a0abe4c9 e455b9f6 01e08641 SunOS 4.1.1 (security patch is 100305)
    O sig011w /usr/ucb/lpr 8439202f 4bf6245e b69f69e3 bff46ba2 897ad6e9 814db969 6fc3838c 7a1471c1 SunOS 4.1.1 (security patch is 100305)
    O sig011w /usr/ucb/lprm d77da02e 15ed3503 906965bd 1b6c2888 883861fa 14b3eca2 efd66dc5 d3c5898b SunOS 4.1.1 (security patch is 100305)
    O sig011w /usr/lib/lpd ce40718f 3ec7d48a 0c7d8bb5 38497a5b 6fd7dfec 952cfbd0 310daf43 3041e9e6 Sun Patch ID 100305-03 (current is 100305-13)
    O sig011w /usr/etc/lpc 73990de8 0b7c8861 6100cfd7 47cff465 6e542c05 2eaa2461 a0dce759 73748ac2 Sun Patch ID 100305-06 (current is 100305-13)
    O sig011w /usr/lib/lpd 2ae10db0 c5dbc9ef 093234b4 b7cf9cfa d041e6da b2732420 ce4cd459 d053e575 Sun Patch ID 100305-06 (current is 100305-13)
    O sig011w /usr/ucb/lpr 4ef627c5 8389c520 8c72ca5f 410c9006 b1cf0587 76cca697 28ea21bd 968f45bb Sun Patch ID 100305-06 (current is 100305-13)
    O sig011w /usr/etc/lpc e17dfb36 57e3f0fd 22e60f70 16dcaf84 0b3ce9c9 a6d91560 b135db2d 60951382 Sun Patch ID 100305-10 (current is 100305-13)
    O sig011w /usr/lib/lpd 3786c9a9 d8971cff 70bbffbf ac314e6b 75b5848d c3266766 936ed3c8 211f69f6 Sun Patch ID 100305-10 (current is 100305-13)
    O sig011w /usr/ucb/lpr 3c98c23e e060fa3b 69d7cbbd a9f97eed 438cffea 6f854d93 5ef3812c bad8e310 Sun Patch ID 100305-10 (current is 100305-13)
    O sig011w /usr/bin/lpstat 327233e1 90d1fa8e 2fb6fe23 25a144ab 48db00bd b99e301d 9494cd9c 5068c8ab Sun Patch ID 100305-10 (current is 100305-13)
    #
    #
    #
    Y .       /usr/lib/expreserve 416cf865 f308e029 62994394 85b7b54c cca36972 9b559d0c 82b0c2f1 cca6f7a0 Sun Patch ID 101080-01
    O sig013w /usr/lib/expreserve  eeb59ee4 7bd7cddb 4a95cde0 fb148318 5decfcc3 29998d19 de2ea00d 865174d2 SunOS 4.1.1 (security patch is 101080)
    O sig014w /usr/lib/expreserve 62b66132 cd29eb15 fd9b9d66 8782ee68 c7540591 56a7c0c0 e73aae4a 11048f79 Sun Patch ID 100251-01 (current is 101080-01)
    #
    #
    #
    Y . /usr/bin/mail 43bdf7ae511d7831101af9d991fd5d37 Sun Patch ID 100224-06
    Y . /usr/bin/rmail 8053fa8bee68163155de4f5c8c429a86 Sun Patch ID 100224-06
    O sig015w /usr/bin/mail 9741f67c4bb824ffb57fa54f8f7f2a60 SunOS 4.1.1 (security patch is 100224)
    O sig015w /usr/bin/rmail cd1abe3b6b0845ed7379f77597acf141 SunOS 4.1.1 (security patch is 100224)
    O sig015w /usr/bin/mail d928fd1bf63d1c715889423d09b4bfc8 Sun Patch ID 100224-01 (current is 100224-06)
    O sig015w /usr/bin/mail d928fd1bf63d1c715889423d09b4bfc8 Sun Patch ID 100224-02 (current is 100224-06)
    O sig015w /usr/bin/rmail 7c0aa5e6c2005c066c6acb1c96112668 Sun Patch ID 100224-02 (current is 100224-06)
    O sig015w /usr/bin/mail bc3b531bd638db2359f5684d46ff1628 Sun Patch ID 100224-03 (current is 100224-06)
    O sig015w /usr/bin/rmail 8053fa8bee68163155de4f5c8c429a86 Sun Patch ID 100224-03 (current is 100224-06)
    O sig015w /usr/bin/mail 633e3e237ba6ad048eff8edef70809e8 Sun Patch ID 100224-05 (current is 100224-06)
    O sig015w /usr/bin/rmail 8053fa8bee68163155de4f5c8c429a86 Sun Patch ID 100224-05 (current is 100224-06)
    #
    #
    #
    Y .       /usr/bin/sh 057ae1584ad3893c335380c4f6cc33b9 SunOS 4.1.1
    Y .       /usr/bin/csh 3d07b5cd852bc9ebc67d3452d1fb8b63 SunOS 4.1.1
    Y .       /usr/bin/sync 0a77fe1cf59f9fa6a36fd07bdce8d8b3 SunOS 4.1.1
    #
    #
    #
    Y .       /usr/openwin/bin/loadmodule 0a9216dfe1a8826c4d5e426869370d0a Sun Patch ID 100448-02
    O ca9122f /usr/openwin/bin/loadmodule 0a309572264fc3da2e81c9b2ef4ccbbf Sun Patch ID 100448-01 (current is 100448-02)
    O ca9122f /usr/openwin/bin/loadmodule 5e62adcc ac948154 e45237db 33b9153d 0e0ccad8 2de71646 84486f31 1b32eda8 OpenWindows 3.0 (security patch is 100448)
    #
    #
    #
    Y .       /usr/kvm/modload 42bbe724d71b1dc891f6ee41c288be67 Sun Patch ID 101200-02
    Y .       /usr/kvm/modload 1120180f18b39020f1f2b5af91eb7931 Sun Patch ID 101200-02 (4.1.2 version)
    Y .       /usr/kvm/modload f589cf8e213993f7df14fde98b7944b7 Sun Patch ID 101200-02 (4.1.3 version)
    O sig018w /usr/kvm/modload c010c7948a680b9c0e882bf91939222b SunOS 4.1.2 (security patch is 101200-02)
    #
    Y . /usr/etc/in.comsat f1936b3624b80e1888fd815e38f570dc Sun Patch ID 100272-07
    O sig022w /usr/etc/in.comsat 701c10528e94b5be309638387c6b9bf4 SunOS 4.1.1 (security patch is 100272-07)
    Y . /usr/etc/dump f61a9a7ff50774bed1a9266511f5b676 Sun Patch ID 100593-03
    O sig022w /usr/etc/dump 956847810c3d0985e3ca7b779223dcb7 SunOS 4.1.1 (security patch is 100593-03)
    Y . /usr/etc/syslogd 205590e509427530838daeede99a09cf Sun Patch ID 100909-02 [sun4]
    Y . /usr/etc/syslogd d842a23321d241bde8da905d97b629f2 Sun Patch ID 100909-02 [sun4c]
    O sig022w /usr/etc/syslogd 05a9cf45fa9c2a91c4dab996fe39696b SunOS 4.1.1 (security patch is 100909-02)
    Y . /usr/etc/in.talkd 903f068621b827b008d3d0d127c41a1e Sun Patch ID 101480-01
    O sig022w /usr/etc/in.talkd 1c3f5eead7a4a3d15f314390ac5c5992 SunOS 4.1.1 (security patch is 101480-01)
    Y . /usr/etc/shutdown 7715d31eb5494c98d0d2d02dde3b2394 Sun Patch ID 101481-01
    O sig022w /usr/etc/shutdown 0b300df10155ab2a63f5b8ffda5cf3e1 SunOS 4.1.1 (security patch is 101481-01)
    Y . /usr/bin/write 2b2f50d1848b7097e82c21db359c3c5e Sun Patch ID 101482-01
    O sig022w /usr/bin/write fe364b7ca0223d7fd30e1221e5422d42 SunOS 4.1.1 (security patch is 101482-02)
    tiger-3.2.3/systems/SunOS/4/4.1.1/sun4/config0000644000175000017500000001000407650724332016665 0ustar  pacopaco# -*- 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/4/config - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    #   UUID=`/usr/bin/id | /usr/bin/sed -e 's/uid=\([0-9][0-9]*\).*$/\1/'`
    [ "$UUID" = "" ] &&
      UNAME=`whoami`
    
    export UNAME
    
    [ "$UNAME" != "root" ] && {
      echo " " 1>&2
      echo "This script should be run from a super-user account." 1>&2
      echo " " 1>&2
    #  exit 1
    }
    
    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
    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
    SENDMAILS="/usr/lib/sendmail /usr/lib/sendmail.mx"
    SENDMAILCF="/etc/sendmail.cf"
    export SENDMAILS SENDMAILCF
    #
    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
    #
    UNAME=/usr/bin/uname
    GETHOSTNAME=/usr/bin/hostname
    EXPR=/usr/bin/expr
    STRINGS=/usr/ucb/strings
    FIND=/usr/bin/find
    FINDXDEV=-xdev
    FMT=/usr/ucb/fmt
    GETFS=/usr/etc/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
    #
    # 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
    #
    YP=
    ($PS -auxww | $GREP ypbind | $SGREP -v $GREP) && YP=Y
    export YP
    #
    #
    YPSERVER="NO"
    ($PS -aux | $GREP ypserv | $SGREP -v $GREP) && YPSERVER="YES"
    export WAIT YPCAT YPSERVER
    #
    MAILSPOOL=/var/spool/mail
    #
    CRONSPOOL=/var/spool/cron/crontabs
    #
    ETCSHELLS=/etc/shells
    #
    export MAILSPOOL CRONSPOOL ETCSHELLS
    #
    FS_WDIRSYS="/tmp/ /var/tmp/ /var/spool/mail/"
    export FS_WDIRSYS
    #
    SYSDEFAULTPATH="/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
    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
    EOL
    `
    tiger-3.2.3/systems/SunOS/4/facl.strict0000644000175000017500000002217407502327223016307 0ustar  pacopaco#
    #     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/4/file_access_list - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    #                           owner group s g r w x   r w x   r w xLVL MessageIDs
    #------------------------------------------------------------------------------
    /                           root  .     . . 1 . 1   1 0 1   1 0 1 W 018 018 018
    /etc                        root  .     . . 1 . 1   1 0 1   1 0 1 W 019 019 019
    /bin                        root  .     . . 1 . 1   1 0 1   1 0 1 W 001 002 003
    /sbin                       root  .     . . 1 . 1   1 0 1   1 0 1 W 001 002 003
    /usr                        root  .     . . 1 . 1   1 0 1   1 0 1 W 001 002 003
    /usr/5include               root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/xpg2include            root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/xpg2lib                root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/xpg2bin                root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/hosts                  root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/sccs                   root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/share                  root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/export                 root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/lang                   root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/openwin		    root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/diag                   root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/demo                   root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/5lib                   root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/games                  root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/bin                    root  .     . . 1 . 1   1 0 1   1 0 1 A 001 002 003
    /usr/lib                    root  .     . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /usr/ucb                    root  .     . . 1 . 1   1 0 1   1 0 1 A 001 002 003
    /usr/*                      .     .     . . . . .   . 0 .   . 0 . . 001 002 003
    /var                        root  .     . . . . .   1 0 1   1 0 1 . 001 002 003
    /var/yp			    root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /var/yp/*                   root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /var/yp/*/*                 root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /var/spool		    root  .     . . . . .   1 0 1   1 0 1 . 001 002 003
    /tftpboot                   root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    #
    /dev                        root  .     . . . . .   1 0 1   1 0 1 . 001 002 003
    /dev/tty		    root  .     0 0 1 1 0   1 1 0   1 1 0 . 001 002 003
    /dev/null		    root  .     0 0 1 1 0   1 1 0   1 1 0 . 001 002 003
    /dev/zero		    root  .     0 0 1 1 0   1 1 0   1 1 0 . 001 002 003
    /dev/mem		    root  kmem  0 0 1 1 0   1 0 0   0 0 0 . 001 002 003
    /dev/kmem		    root  kmem  0 0 1 1 0   1 0 0   0 0 0 . 001 002 003
    /dev/mbio		    root  .     0 0 1 1 0   0 0 0   0 0 0 . 001 002 003
    /dev/mbmem		    root  .     0 0 1 1 0   0 0 0   0 0 0 . 001 002 003
    /dev/nit		    root  .     0 0 1 1 0   0 0 0   0 0 0 . 001 002 003
    /dev/audio		    .     .     0 0 . . .   . . .   . . . . 001 002 003
    /dev/audioctl		    .     .     0 0 . . .   . . .   . . . . 001 002 003
    /dev/console		    .     .     0 0 1 1 0   0 . .   0 . . . 001 002 003
    /dev/eeprom		    root  .     0 0 1 1 0   1 0 0   0 0 0 . 001 002 003
    /dev/openprom		    root  .     0 0 1 1 0   1 0 0   1 0 0 . 001 002 003
    /dev/sbus*                  root  .     0 0 . . 0   0 0 0   0 0 0 . 001 002 003
    /dev/vme*                   root  .     0 0 . . 0   0 0 0   0 0 0 . 001 002 003
    #
    /vmunix                     root  .     0 0 1 . 1   1 0 0   1 0 0 . 001 002 003
    /boot                       root  .     0 0 1 . .   0 0 0   0 0 0 . 001 002 003
    /.cshrc                     root  .     0 0 1 . .   0 0 0   0 0 0 W 006 006 006
    /.login                     root  .     0 0 1 . .   0 0 0   0 0 0 W 006 006 006
    /.profile                   root  .     0 0 1 . .   0 0 0   0 0 0 W 006 006 006
    /.forward                   root  .     . . 1 . .   0 0 0   0 0 0 W 006 006 006
    /.rhosts                    root  .     . . 1 . 0   0 0 0   0 0 0 W 006 006 006
    #
    /etc/aliases                root  .     . . 1 . 0   0 0 0   0 0 0 F 007 007 007
    /etc/aliases.dir            root  .     . . 1 . 0   0 0 0   0 0 0 F 007 007 007
    /etc/aliases.pag            root  .     . . 1 . 0   0 0 0   0 0 0 F 007 007 007
    /etc/bootparams             root  .     . . 1 . 0   0 0 0   0 0 0 W 001 002 003
    /etc/exports                root  .     . . 1 . 0   0 0 0   0 0 0 W 008 008 008
    /etc/fstab                  root  .     . . 1 . 0   0 0 0   0 0 0 W 001 002 003
    /etc/gettytab               root  .     . . 1 . 0   0 0 0   0 0 0 W 001 002 003
    /etc/group                  root  .     . . 1 . 0   1 0 0   1 0 0 F 009 009 009
    /etc/hosts                  root  .     . . 1 . 0   1 0 0   1 0 0 F 001 002 003
    /etc/hosts.allow            root  .     . . 1 . 0   . 0 0   . 0 0 W 010 010 010
    /etc/hosts.deny		    root  .     . . 1 . 0   . 0 0   . 0 0 W 010 010 010
    /etc/hosts.equiv            root  .     . . 1 . 0   0 0 0   0 0 0 W 011 011 011
    /etc/hosts.lpd              root  .     . . 1 . 0   0 0 0   0 0 0 W 011 011 011
    /etc/inetd.conf             root  .     . . 1 . 0   0 0 0   0 0 0 W 012 012 012
    /etc/ld.so.cache	    root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/motd                   root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/mtab                   root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/netgroup               root  .     . . 1 . 0   0 0 0   0 0 0 F 013 013 013
    /etc/passwd                 root  .     . . 1 . 0   1 0 0   1 0 0 A 014 014 014
    /etc/printcap               root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/rc                     root  .     0 0 1 . 0   0 0 0   0 0 0 F 015 015 015
    /etc/rc.boot                root  .     0 0 1 . 0   0 0 0   0 0 0 F 015 015 015
    /etc/rc.local               root  .     0 0 1 . 0   0 0 0   0 0 0 F 015 015 015
    /etc/remote                 root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/security               root  wheel . . . . .   0 0 1   0 0 1 A 005 005 005
    /etc/security/passwd.adjunct root wheel . . . . .   0 0 0   0 0 0 A 005 005 005
    /etc/modules		    root  .     . . . . .   1 0 1   1 0 1 . 001 002 003
    /etc/resolv.conf            root  .     . . 1 . 0   1 0 0   1 0 0 W 016 016 016
    /etc/rpc                    root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/sendmail.cf            root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/services               root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/syslog.conf            root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/syslog.pid             root  .     . . 1 . 0   0 0 0   0 0 0 W 001 002 003
    /etc/ttys                   root  .     . . 1 . 0   . 0 0   . 0 0 W 001 002 003
    /etc/ttytab                 root  .     . . 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/utmp                   root  .     . . 1 . 0   1 0 0   1 0 0 W 017 017 017
    /etc/*                      root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    #
    /etc/uucp/Permissions	    root  .     . . 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/uucp/Systems           uucp  .     . . 1 . 0   0 0 0   0 0 0 . 001 002 003
    #
    /usr/bin/uulog              root  .     0 0 . 0 1   . 0 1   . 0 . . 001 002 003
    /usr/bin/uuto               root  .     0 0 . 0 1   . 0 1   . 0 . . 001 002 003
    /usr/bin/uupick             root  .     0 0 . 0 1   . 0 1   . 0 . . 001 002 003
    /usr/bin/cu                 uucp  uucp  1 0 . 0 1   . 0 1   . 0 . . 001 002 003
    /usr/bin/tip                uucp  .     1 0 . 0 1   . 0 .   . 0 . . 001 002 003
    /usr/bin/uucp               uucp  uucp  1 0 . 0 1   . 0 1   . 0 . . 001 002 003
    /usr/bin/uux                uucp  uucp  1 0 . 0 1   . 0 1   . 0 . . 001 002 003
    /usr/bin/uuname             uucp  uucp  1 0 . 0 1   . 0 1   . 0 . . 001 002 003
    /usr/bin/uustat             uucp  uucp  1 0 . 0 1   . 0 1   . 0 . . 001 002 003
    /usr/bin/write              root  tty   0 1 . . 1   . 0 .   . 0 . . 001 002 003
    /usr/bin/wall               root  tty   0 1 . . 1   . 0 .   . 0 . . 001 002 003
    #
    /usr/bin/login              root  .     1 0 1 . 1   1 0 1   1 0 1 F 001 002 003
    /usr/bin/su                 root  .     1 0 1 . 1   . 0 .   . 0 . F 001 002 003
    /usr/bin/passwd             root  .     1 0 1 . 1   . 0 .   . 0 . F 001 002 003
    /usr/bin/sh                 root  .     0 0 1 . 1   1 0 1   1 0 1 W 001 002 003
    /usr/bin/*                  root  .     . . 1 . 1   . 0 .   . 0 . . 001 002 003
    
    
    tiger-3.2.3/systems/SunOS/4/file_access_list0000644000175000017500000002275707720456072017404 0ustar  pacopaco#
    #     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/4/file_access_list - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    #                           owner group s g r w x   r w x   r w xLVL MessageIDs
    #------------------------------------------------------------------------------
    /                           root  .     . . 1 . 1   1 0 1   1 0 1 W 018 018 018
    /etc                        root  .     . . 1 . 1   1 0 1   1 0 1 W 019 019 019
    /bin                        root  .     . . 1 . 1   1 0 1   1 0 1 W 001 002 003
    /sbin                       root  .     . . 1 . 1   1 0 1   1 0 1 W 001 002 003
    /usr                        root  .     . . 1 . 1   1 0 1   1 0 1 W 001 002 003
    /usr/5include               root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/xpg2include            root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/xpg2lib                root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/xpg2bin                root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/hosts                  root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/sccs                   root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/share                  root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/export                 root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/lang                   root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/openwin		    root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/diag                   root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/demo                   root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/5lib                   root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/games                  root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/bin                    root  .     . . 1 . 1   1 0 1   1 0 1 A 001 002 003
    /usr/lib                    root  .     . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /usr/ucb                    root  .     . . 1 . 1   1 0 1   1 0 1 A 001 002 003
    /usr/*                      .     .     . . . . .   . 0 .   . 0 . . 001 002 003
    /var                        root  .     . . . . .   1 0 1   1 0 1 . 001 002 003
    /var/yp 		    root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /var/yp/*                   root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /var/yp/*/*                 root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /var/spool		    root  .     . . . . .   1 0 1   1 0 1 . 001 002 003
    /var/tmp		    root  .     . . 1 1 1   1 1 1   1 1 1 . 001 002 003
    /var/*			    root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /var/log/*                  root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /var/adm/messages*          root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /var/adm/pacct*             root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /tftpboot                   root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    #
    /dev                        root  .     . . . . .   1 0 1   1 0 1 . 001 002 003
    /dev/tty		    root  .     0 0 1 1 0   1 1 0   1 1 0 . 001 002 003
    /dev/null		    root  .     0 0 1 1 0   1 1 0   1 1 0 . 001 002 003
    /dev/zero		    root  .     0 0 1 1 0   1 1 0   1 1 0 . 001 002 003
    /dev/mem		    root  kmem  0 0 1 1 0   1 0 0   0 0 0 . 001 002 003
    /dev/kmem		    root  kmem  0 0 1 1 0   1 0 0   0 0 0 . 001 002 003
    /dev/mbio		    root  .     0 0 1 1 0   0 0 0   0 0 0 . 001 002 003
    /dev/mbmem		    root  .     0 0 1 1 0   0 0 0   0 0 0 . 001 002 003
    /dev/nit		    root  .     0 0 1 1 0   0 0 0   0 0 0 . 001 002 003
    /dev/audio		    .     .     0 0 . . .   . . .   . . . . 001 002 003
    /dev/audioctl		    .     .     0 0 . . .   . . .   . . . . 001 002 003
    /dev/console		    .     .     0 0 1 1 0   0 . .   0 . . . 001 002 003
    /dev/eeprom		    root  .     0 0 1 1 0   1 0 0   0 0 0 . 001 002 003
    /dev/openprom		    root  .     0 0 1 1 0   1 0 0   1 0 0 . 001 002 003
    /dev/sbus*                  root  .     0 0 . . 0   0 0 0   0 0 0 . 001 002 003
    /dev/vme*                   root  .     0 0 . . 0   0 0 0   0 0 0 . 001 002 003
    #
    /vmunix                     root  .     0 0 1 . 1   1 0 0   1 0 0 . 001 002 003
    /boot                       root  .     0 0 1 . .   . 0 .   . 0 . . 001 002 003
    /.cshrc                     root  .     0 0 1 . .   . 0 .   . 0 . W 006 006 006
    /.login                     root  .     0 0 1 . .   . 0 .   . 0 . W 006 006 006
    /.profile                   root  .     0 0 1 . .   . 0 .   . 0 . W 006 006 006
    /.forward                   root  .     . . 1 . .   . 0 .   . 0 . W 006 006 006
    /.rhosts                    root  .     . . 1 . 0   0 0 0   0 0 0 W 006 006 006
    #
    /etc/aliases                root  .     . . 1 . 0   1 0 0   1 0 0 F 007 007 007
    /etc/aliases.dir            root  .     . . 1 . 0   1 0 0   1 0 0 F 007 007 007
    /etc/aliases.pag            root  .     . . 1 . 0   1 0 0   1 0 0 F 007 007 007
    /etc/bootparams             root  .     . . 1 . 0   . 0 0   . 0 0 W 001 002 003
    /etc/exports                root  .     . . 1 . 0   0 0 0   0 0 0 W 008 008 008
    /etc/fstab                  root  .     . . 1 . 0   0 0 0   0 0 0 W 001 002 003
    /etc/gettytab               root  .     . . 1 . 0   . 0 0   . 0 0 W 001 002 003
    /etc/group                  root  .     . . 1 . 0   1 0 0   1 0 0 F 009 009 009
    /etc/hosts                  root  .     . . 1 . 0   1 0 0   1 0 0 F 001 002 003
    /etc/hosts.allow            root  .     . . 1 . 0   . 0 0   . 0 0 W 010 010 010
    /etc/hosts.deny		    root  .     . . 1 . 0   . 0 0   . 0 0 W 010 010 010
    /etc/hosts.equiv            root  .     . . 1 . 0   0 0 0   0 0 0 W 011 011 011
    /etc/hosts.lpd              root  .     . . 1 . 0   0 0 0   0 0 0 W 011 011 011
    /etc/inetd.conf             root  .     . . 1 . 0   . 0 0   . 0 0 W 012 012 012
    /etc/ld.so.cache	    root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/motd                   root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/mtab                   root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/netgroup               root  .     . . 1 . 0   0 0 0   0 0 0 F 013 013 013
    /etc/passwd                 root  .     . . 1 . 0   1 0 0   1 0 0 A 014 014 014
    /etc/printcap               root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/rc                     root  .     0 0 1 . 0   . 0 0   . 0 0 F 015 015 015
    /etc/rc.boot                root  .     0 0 1 . 0   . 0 0   . 0 0 F 015 015 015
    /etc/rc.local               root  .     0 0 1 . 0   . 0 0   . 0 0 F 015 015 015
    /etc/remote                 root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/security               root  .     . . . . .   0 0 1   0 0 1 A 005 005 005
    /etc/security/passwd.adjunct root .     . . . . .   0 0 0   0 0 0 A 005 005 005
    /etc/modules		    root  .     . . . . .   1 0 1   1 0 1 . 001 002 003
    /etc/resolv.conf            root  .     . . 1 . 0   1 0 0   1 0 0 W 016 016 016
    /etc/rpc                    root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/sendmail.cf            root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/services               root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/syslog.conf            root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/syslog.pid             root  .     . . 1 . 0   . 0 0   . 0 0 W 001 002 003
    /etc/ttys                   root  .     . . 1 . 0   . 0 0   . 0 0 W 001 002 003
    /etc/ttytab                 root  .     . . 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/utmp                   root  .     . . 1 . 0   1 0 0   1 0 0 W 017 017 017
    /etc/*                      root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    #
    /etc/uucp/Permissions	    root  .     . . 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/uucp/Systems           uucp  .     . . 1 . 0   0 0 0   0 0 0 . 001 002 003
    #
    /usr/bin/uulog              root  .     0 0 . 0 1   . 0 1   . 0 . . 001 002 003
    /usr/bin/uuto               root  .     0 0 . 0 1   . 0 1   . 0 . . 001 002 003
    /usr/bin/uupick             root  .     0 0 . 0 1   . 0 1   . 0 . . 001 002 003
    /usr/bin/cu                 uucp  uucp  1 0 . 0 1   . 0 1   . 0 . . 001 002 003
    /usr/bin/tip                uucp  .     1 0 . 0 1   . 0 .   . 0 . . 001 002 003
    /usr/bin/uucp               uucp  uucp  1 0 . 0 1   . 0 1   . 0 . . 001 002 003
    /usr/bin/uux                uucp  uucp  1 0 . 0 1   . 0 1   . 0 . . 001 002 003
    /usr/bin/uuname             uucp  uucp  1 0 . 0 1   . 0 1   . 0 . . 001 002 003
    /usr/bin/uustat             uucp  uucp  1 0 . 0 1   . 0 1   . 0 . . 001 002 003
    /usr/bin/write              root  tty   0 1 . . 1   . 0 .   . 0 . . 001 002 003
    /usr/bin/wall               root  tty   0 1 . . 1   . 0 .   . 0 . . 001 002 003
    #
    /usr/bin/login              root  .     1 0 1 . 1   1 0 1   1 0 1 F 001 002 003
    /usr/bin/su                 root  .     1 0 1 . 1   . 0 .   . 0 . F 001 002 003
    /usr/bin/passwd             root  .     1 0 1 . 1   . 0 .   . 0 . F 001 002 003
    /usr/bin/sh                 root  .     0 0 1 . 1   1 0 1   1 0 1 W 001 002 003
    /usr/bin/*                  root  .     . . 1 . 1   . 0 .   . 0 . . 001 002 003
    #
    tiger-3.2.3/systems/SunOS/4/gen_alias_sets0000755000175000017500000000274307756435012017065 0ustar  pacopaco#!/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 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/4/gen_alias_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    $GREP -v '^#' /etc/aliases |
    $SORT > $WORKDIR/etc_aliases.$$
    echo "/etc/aliases" > $WORKDIR/etc_aliases.$$.src
    echo $WORKDIR/etc_aliases.$$
    
    [ -n "$YPCAT" ] && {
      $YPCAT -k aliases |
      $SED -e 's/ /:/' | 
      $SORT |
      $COMM -23 - $WORKDIR/etc_aliases.$$ > $WORKDIR/nis_aliases.$$
      echo "NIS" > $WORKDIR/nis_aliases.$$.src
      echo $WORKDIR/nis_aliases.$$
    }
    
    [ "$SERVERCHECK" = "Y" ] && {
      $GETCLIENTDIRS |
      while read client dir
      do
        [ -f "$dir/etc/aliases" ] && {
          $GREP -v '^#' $dir/etc/aliases |
          $SORT > $WORKDIR/aliases.$$.$client
          echo "$client:/etc/aliases" > $WORKDIR/aliases.$$.$client.src
          echo $WORKDIR/aliases.$$.$client
        }
      done
    }
    tiger-3.2.3/systems/SunOS/4/gen_bootparam_sets0000755000175000017500000000250607756435012017755 0ustar  pacopaco#!/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 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/4/gen_bootparam_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    [ -r /etc/bootparams ] && {
      $SED -e 's/#.*$//' /etc/bootparams |
      $SED -e '/^[ \t]*$/d' |
      $AWK '
           BEGIN {LINE="";}
           /\\\\$/ {LINE=LINE " " substr($0, 1, length($0)-1);}
           !/\\\\$/ {print LINE $0; LINE="";}
      ' > $WORKDIR/etc_bootparams.$$
      echo "/etc/bootparams" > $WORKDIR/etc_bootparams.$$.src
      echo "$WORKDIR/etc_bootparams.$$"
    }
    
    [ -n "$YPCAT" ] && {
      $YPCAT bootparams > $WORKDIR/nis_bootparams.$$
      echo "NIS" > $WORKDIR/nis_bootparams.$$.src
      echo "$WORKDIR/nis_bootparams.$$"
    }
    tiger-3.2.3/systems/SunOS/4/gen_export_sets0000755000175000017500000000175007502327223017303 0ustar  pacopaco#!/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 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/4/gen_export_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    [ -r /etc/exports ] && {
      $GREP -v '^#' /etc/exports > $WORKDIR/etc_exports.$$
      echo "/etc/exports" > $WORKDIR/etc_exports.$$.src
      echo $WORKDIR/etc_exports.$$
    }
    tiger-3.2.3/systems/SunOS/4/gen_group_sets0000755000175000017500000000273007756435012017124 0ustar  pacopaco#!/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 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/4/gen_group_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    $GREP -v '^[-+]' /etc/group |
    $SORT > $WORKDIR/etc_group.$$
    echo "/etc/group" > $WORKDIR/etc_group.$$.src
    echo $WORKDIR/etc_group.$$
    
    [ -n "$YPCAT" ] && {
      $YPCAT group |
      $SORT |
      $AWK '{print substr($0, 1, 255);}' |
      $COMM -23 - $WORKDIR/etc_group.$$ > $WORKDIR/nis_group.$$
      echo "NIS" > $WORKDIR/nis_group.$$.src
      echo $WORKDIR/nis_group.$$
    }
    
    [ "$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.3/systems/SunOS/4/gen_inetd0000755000175000017500000000171107502327223016024 0ustar  pacopaco#!/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 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/4/gen_inetd - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    $GREP -v '^#' /etc/inetd.conf |
    $SORT > $WORKDIR/etc_inetd.$$
    echo "/etc/inetd.conf" > $WORKDIR/etc_inetd.$$.src
    echo $WORKDIR/etc_inetd.$$
    tiger-3.2.3/systems/SunOS/4/gen_mounts0000755000175000017500000000314307502327223016247 0ustar  pacopaco#!/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 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/4/gen_mounts - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    dirname()
    {
      _path="$1"
    
      saveifs=$IFS
      IFS=/
      set X $_path
      IFS=$saveifs
    
      shift
    
      if [ $# -eq 1 ]; then
        _dirname='/'
      else
        _dirname=$1
        shift
        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" = "4.2" ] && LOCAL=0
    
      return $LOCAL
    }
    
    /etc/mount |
    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=`/usr/bin/basename $fs`
        rfs="$dir/r$file"
        echo "$mtpoint $fstype $fs $rfs"
      }
    done
    
    tiger-3.2.3/systems/SunOS/4/gen_passwd_sets0000755000175000017500000000437407756435012017277 0ustar  pacopaco#!/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 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/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
      case "$parm" in
        -p) ;;
        -l) local=1;;
        *)	outfile="$parm";;
      esac
    done
    
    $GREP -v '^[-+]' /etc/passwd |
    $SORT |
    $AWK -F: '
    BEGIN {OFS=":"}
    {
       if(length($2) > 13)
         $2 = substr($2, 1, 13);
       print;
    }' >  $WORKDIR/etc_passwd.$$
       
    echo "/etc/passwd" > $WORKDIR/etc_passwd.$$.src
    echo $WORKDIR/etc_passwd.$$ >> $outfile
    
    [ $local -eq 1 ] && exit
    
    [ -n "$YPCAT" ] && {
      $YPCAT passwd |
      $SORT |
      $AWK -F: '
      BEGIN {OFS=":"}
        {
          if(length($2) > 13)
           $2 = substr($2, 1, 13);
         print;
      }' |
      $COMM -23 - $WORKDIR/etc_passwd.$$ > $WORKDIR/nis_passwd.$$
      echo "NIS" > $WORKDIR/nis_passwd.$$.src
      echo $WORKDIR/nis_passwd.$$ >> $outfile
    }
    
    [ "$SERVERCHECK" = "Y" ] && {
      $GETCLIENTDIRS |
      while read client dir
      do
        [ -f "$dir/etc/passwd" ] && {
          $GREP -v '^[-+]' $dir/etc/passwd |
          $SORT |
          $AWK -F: '
          BEGIN {OFS=":"}
    	{
    	  if(length($2) > 13)
    	  $2 = substr($2, 1, 13);
    	  print;
          }' > $WORKDIR/passwd.$$.$client
          echo "$client:/etc/passwd" > $WORKDIR/passwd.$$.$client.src
          echo $WORKDIR/passwd.$$.$client >> $outfile
        }
      done
    }
    tiger-3.2.3/systems/SunOS/4/gen_services0000755000175000017500000000273007756435012016555 0ustar  pacopaco#!/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 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/4/gen_services - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    $GREP -v '^#' /etc/services |
    $SORT > $WORKDIR/etc_services.$$
    echo "/etc/services" > $WORKDIR/etc_services.$$.src
    echo $WORKDIR/etc_services.$$
    
    [ -n "$YPCAT" ] && {
      $YPCAT services |
      $SORT |
      $COMM -23 - $WORKDIR/etc_services.$$ > $WORKDIR/nis_services.$$
      echo "NIS" > $WORKDIR/nis_services.$$.src
      echo $WORKDIR/nis_services.$$
    }
    
    [ "$SERVERCHECK" = "Y" ] && {
      $GETCLIENTDIRS |
      while read client dir
      do
        [ -f "$dir/etc/services" ] && {
          $GREP -v '^#' $dir/etc/services |
          $SORT > $WORKDIR/services.$$.$client
          echo "$client:/etc/services" > $WORKDIR/services.$$.$client.src
          echo $WORKDIR/services.$$.$client
        }
      done
    }
    tiger-3.2.3/systems/SunOS/4/gendlclients0000755000175000017500000000315010045247305016540 0ustar  pacopaco#!/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 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/4/gendlclients - 06/14/93
    #
    # 05/02/2004 jfs  Try to avoid eval problems if handling variables with
    #                 special characters (such as space)
    #
    #-----------------------------------------------------------------------------
    #
    
    parse_bootparam()
    {
      $AWK '
           BEGIN {LINE="";}
           $0 ~ /\\$/ {printf("%s ", substr($0, 1, length($0)-1));}
           $0 !~ /\\$/ {printf("%s\n", $0);}
           END {printf("\n");}
       ' |
      $AWK '{
               for(i=2;i<=NF;i++)
                 if(substr($i, 1,5) == "root="){
    	       x=substr($i, 6, length($i));
                   split(x, ar, ":");
                   print $1, ar[1], ar[2];
       	     }
            }'
    }
    
    $GEN_BOOTPARAM_SETS | 
    while read bootparam_set
    do
      parse_bootparam < $bootparam_set
      
      $RM -f $bootparam_set $bootparam_set.src
    done |
    $SORT -u |
    while read client server filesys
    do
      eval "case \"$server\" in $HOSTNAMESLIST) echo \"$client $filesys\";; esac"
    done
    tiger-3.2.3/systems/SunOS/4/getdisks0000755000175000017500000000231007502327223015701 0ustar  pacopaco#!/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 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.
    #
    # getdisks - 06/24/93
    #
    #-----------------------------------------------------------------------------
    #
    
    /etc/mount |
    $AWK '$5 == "4.2" {print}' |
    $SORT |
    $AWK '
      BEGIN {lastdisk=""; fslist="";}
      {
        disk=substr($1, 1, length($1)-1);
        if(disk == lastdisk){
           fslist=fslist " " $3;
        }
        else {
    	if(lastdisk != ""){
               printf("%s\n", fslist);
            }
            lastdisk=disk;
            fslist = $3;
        }
      }
      END { if(lastdisk != ""){
              printf("%s\n", fslist);
            } 
      }'
    
    tiger-3.2.3/systems/SunOS/4/inetd0000644000175000017500000000316007502327223015170 0ustar  pacopacochargen	dgram	udp	wait	root	internal
    chargen	stream	tcp	nowait	root	internal
    comsat	dgram	udp	wait	root	/usr/etc/in.comsat	in.comsat
    daytime	dgram	udp	wait	root	internal
    daytime	stream	tcp	nowait	root	internal
    discard	dgram	udp	wait	root	internal
    discard	stream	tcp	nowait	root	internal
    echo	dgram	udp	wait	root	internal
    echo	stream	tcp	nowait	root	internal
    exec	stream	tcp	nowait	root	/usr/etc/in.rexecd	in.rexecd
    finger	stream	tcp	nowait	nobody  /usr/etc/in.fingerd	in.fingerd
    ftp	stream	tcp	nowait	root	/usr/etc/in.ftpd in.ftpd
    login	stream	tcp	nowait	root	/usr/etc/in.rlogind	in.rlogind
    mountd/1	dgram	rpc/udp	wait root /usr/etc/rpc.mountd	rpc.mountd
    name	dgram	udp	wait	root	/usr/etc/in.tnamed	in.tnamed
    netstat	stream	tcp	nowait	root	/usr/ucb/netstat	netstat -f inet
    rexd/1		stream	rpc/tcp	wait root /usr/etc/rpc.rexd	rpc.rexd
    rquotad/1	dgram	rpc/udp	wait root /usr/etc/rpc.rquotad	rpc.rquotad
    rstatd/2-4	dgram	rpc/udp	wait root /usr/etc/rpc.rstatd	rpc.rstatd
    rusersd/1-2	dgram	rpc/udp	wait root /usr/etc/rpc.rusersd	rpc.rusersd
    shell	stream	tcp	nowait	root	/usr/etc/in.rshd	in.rshd
    sprayd/1	dgram	rpc/udp	wait root /usr/etc/rpc.sprayd	rpc.sprayd
    systat	stream	tcp	nowait	root	/usr/bin/ps		ps -auwwx
    talk	dgram	udp	wait	root	/usr/etc/in.talkd	in.talkd
    telnet	stream	tcp	nowait	root	/usr/etc/in.telnetd	in.telnetd
    tftp	dgram	udp	wait	root	/usr/etc/in.tftpd in.tftpd -s /tftpboot
    time	dgram	udp	wait	root	internal
    time	stream	tcp	nowait	root	internal
    uucp	stream	tcp	nowait	root	/usr/etc/in.uucpd	in.uucpd
    walld/1		dgram	rpc/udp	wait root /usr/etc/rpc.rwalld	rpc.rwalld
    ypupdated/1	stream	rpc/tcp	wait root /usr/etc/rpc.ypupdated rpc.ypupdated
    tiger-3.2.3/systems/SunOS/4/rel_file_exp_list0000644000175000017500000000001407502327223017550 0ustar  pacopaco/usr/bin/cu
    tiger-3.2.3/systems/SunOS/4/services0000644000175000017500000000150007502327223015704 0ustar  pacopacoNeWS 144/tcp
    auth 113/tcp
    biff 512/udp
    bootp 67/udp
    chargen 19/tcp
    chargen 19/udp
    courier 530/tcp
    csnet-ns 105/tcp
    daytime 13/tcp
    daytime 13/udp
    discard 9/tcp
    discard 9/udp
    domain 53/tcp
    domain 53/udp
    echo 7/tcp
    echo 7/udp
    exec 512/tcp
    finger 79/tcp
    ftp 21/tcp
    ftp-data 20/tcp
    hostnames 101/tcp
    ingreslock 1524/tcp
    iso-tsap 102/tcp
    link 87/tcp
    login 513/tcp
    monitor 561/udp
    name 42/udp
    netstat 15/tcp
    new-rwho 550/udp
    nntp 119/tcp
    ntalk 518/udp
    ntp 123/tcp
    ntp 123/udp
    pcserver 600/tcp
    pop-2 109/tcp
    pop3 110/tcp
    printer 515/tcp
    rje 77/tcp
    rmonitor 560/udp
    route 520/udp
    shell 514/tcp
    smtp 25/tcp
    sunrpc 111/tcp
    sunrpc 111/udp
    supdup 95/tcp
    syslog 514/udp
    systat 11/tcp
    talk 517/udp
    tcpmux 1/tcp
    telnet 23/tcp
    tftp 69/udp
    time 37/tcp
    time 37/udp
    uucp 540/tcp
    uucp-path 117/tcp
    who 513/udp
    whois 43/tcp
    x400 103/tcp
    x400-snd 104/tcp
    tiger-3.2.3/systems/SunOS/4/suid_list0000644000175000017500000000174307502327223016071 0ustar  pacopaco/usr/bin/mail
    /usr/bin/newgrp
    /usr/bin/chfn
    /usr/bin/chsh
    /usr/bin/passwd
    /usr/bin/ypchfn
    /usr/bin/ypchsh
    /usr/bin/mainlogin
    /usr/bin/crontab
    /usr/bin/at
    /usr/bin/atq
    /usr/bin/atrm
    /usr/bin/cu
    /usr/bin/tip
    /usr/bin/cancel
    /usr/bin/lpstat
    /usr/bin/yppasswd
    /usr/bin/fusage
    /usr/bin/nsquery
    /usr/bin/uucp
    /usr/bin/uuname
    /usr/bin/uustat
    /usr/bin/uux
    /usr/bin/login
    /usr/bin/su
    /usr/bin/sunview1/sv_acquire
    /usr/bin/sunview1/sv_release
    /usr/ucb/rdist
    /usr/ucb/rsh
    /usr/ucb/lpr
    /usr/ucb/lpq
    /usr/ucb/lprm
    /usr/ucb/quota
    /usr/ucb/rcp
    /usr/ucb/rlogin
    /usr/etc/dump
    /usr/etc/restore
    /usr/etc/shutdown
    /usr/etc/keyenvoy
    /usr/etc/auditd
    /usr/etc/ping
    /usr/etc/rfsetup
    /usr/lib/uucp/uuxqt
    /usr/lib/uucp/uucico
    /usr/lib/uucp/uusched
    /usr/lib/uucp/remote.unknown
    /usr/5bin/su
    /usr/lib/sendmail
    /usr/lib/sendmail.mx
    /usr/lib/exrecover
    /usr/lib/expreserve
    /usr/lib/lpd
    /usr/lib/acct/accton
    /usr/games/chesstool
    /usr/games/fortune
    /usr/games/hack
    /usr/games/robots
    /usr/games/snake
    /usr/openwin/bin/loadmodule
    tiger-3.2.3/systems/SunOS/4/4.1.1_U1/0000755000175000017500000000000011306441046015145 5ustar  pacopacotiger-3.2.3/systems/SunOS/4/4.1.1_U1/signatures0000644000175000017500000003275707650724332017303 0ustar  pacopaco#
    #     tiger - A UN*X security checking system
    #     Copyright (C) 1993 Douglas Lee Schales, David K. Hess, David R. Safford
    #
    #     Please see the file `COPYING' for the complete copyright notice.
    #
    # SunOS/4.1.1_U1/signatures - 04/22/93
    #
    #-----------------------------------------------------------------------------
    #@DEST=SunOS/4/4.1.1_U1
    #@CONFIG=SunOS/4
    #
    # SunOS 4.1.1, sun3 signature file
    #
    #Y .       /usr/bin/login cd51c569 45a7c608 1446ed6a df9f6a3e 583b1ec6 87b8686a b74bff80 80ea0b46 Sun Patch ID 100630-01
    Y .       /usr/bin/login 11d5ed4445face25642100ec0ab1ed3c Sun Patch ID 100630-01
    Y .       /usr/bin/login ccc3ba04 c32874c4 1b23d7a7 b4411d8f 3cc4ca68 cee89306 e8bb00fc 73cd142c Sun Patch ID 100631-01
    O sig006w /usr/bin/login 6dcd531b b341543e dae01e4e d7af986b 8d6b54cd 10147108 9285a359 b308b2da SunOS 4.1.1_U1 (security patch is 100630)
    #
    #
    #
    #Y .       /usr/bin/su 2f1b48a5 35aa51c5 b39261e3 181203d8 1a585852 6012f451 4a3650c9 b8ee5062 Sun Patch ID 100630-01
    Y .       /usr/bin/su c6f2f88e7dc1ef51d53c021af7f4d576 Sun Patch ID 100630-01
    O sig006w /usr/bin/su 5cf97d3e 6e64ce3e b5baadd3 5a998eb1 55a15881 d5a67a2a 0fa63caa f96d4563 SunOS 4.1.1_U1 (security patch is 100630)
    #
    #
    #
    Y .       /usr/5bin/su 5f876e12f1ef816c6bc031509fd1622f Sun Patch ID 100630-02
    O sig019w /usr/5bin/su 5b7a80ef ae8d0c6a db8e0e5b c7e45645 91db22ac 5ab638f6 dd6c20c8 a06727e3 Sun Patch ID 100630-01 (current is 100630-02)
    O sig006w /usr/5bin/su 4ad3803c f3a3d7ae e8ad8746 2681e0d1 1f45712c ce63a0c0 4471f765 bbb806ba SunOS 4.1.1_U1 (security patch is 100630)
    #
    #
    #
    Y .       /usr/etc/rpc.yppasswdd bee0b7efeaf800411a797bd302abb06c SunOS 4.1.1_U1
    Y .       /usr/etc/rpc.yppasswdd a7d0b627 0ff0eaa6 f7f714ed 89ac76ca 9a411321 bc1dc90c b3dbccf8 35707791 SunOS 4.1.1
    Y .       /usr/etc/in.fingerd 14ff9888 3bfda6b2 6c626117 eeb40460 21e306a1 a0bb93a3 24ce4938 5b0ef4aa SunOS 4.1.1_U1
    Y .       /usr/etc/in.ftpd dad8523d d86db944 bea1e992 51dc8f6f b45bd5d1 17407672 557a379b 265752e7 SunOS 4.1.1_U1
    Y .       /usr/etc/in.rexecd bf18dcb7 de550157 1470029b 3efd72ca 066123db ffecb28f e6fb71d9 b9cab0da SunOS 4.1.1_U1
    Y .       /usr/etc/in.rlogind 7f8b2b43 df1fc2b6 5aa5de4f 167bd3b2 39fd8ab3 97593168 f1b19a79 c8c18a50 SunOS 4.1.1_U1
    Y .       /usr/etc/in.rshd 6f3c1f92 2574108d 5ce59e1c c7900cbc 5c6dd6bf 65653965 3f353827 b2653fd9 SunOS 4.1.1_U1
    Y .       /usr/etc/in.telnetd 722d84a59be148df3eda9cab5db6d444 SunOS 4.1.1_U1
    Y .       /usr/etc/in.telnetd 657163eb 45e21f05 c7f08784 a8fc6ce7 208ae4f9 2e766d11 6f30f8b6 ec461a4d SunOS 4.1.1
    Y .       /usr/etc/in.tftpd 6766bd4d 30432f57 634d1110 62576221 45c2418e f7e67197 6069bd1f 0c7f02af SunOS 4.1.1_U1
    Y .       /usr/etc/in.uucpd 96a25544 62568c73 87d37f45 8be3e3aa ac3bafdc 1435faa1 84e4fb8b 3fcaa49b SunOS 4.1.1_U1
    #
    #
    #
    # No change between -02, -03, & -04
    Y .       /usr/etc/portmap 5e9daa91 0d237210 074bd6da ae25f7a2 75abb55e 5a8c9769 9231bf4e dd99ccd1 Sun Patch ID 100482-04
    O sig008w /usr/etc/portmap 736f8de9 dc3bca6e 9553c70b 7d58bd81 0231c8f5 85bcd618 b6f25004 c5da6bbe SunOS 4.1.1_U1 (security patch is 100482)
    #
    #
    #
    Y .       /usr/etc/ypserv f5c81a93 4b9ead7d 87bd5fad f532642d 1d708589 00fff939 6c3976c5 8d8f2e3f Sun Patch ID 100482-04
    O .       /usr/etc/ypserv 71fe2e2082d9128b2dc18d3d69df142c SunOS 4.1.1_U1 (security patch is 100482)
    O sig008w /usr/etc/ypserv 697b1bae dbe40da9 69b7dd22 fef35b73 de7787dc e01ad800 d47ca497 0ee33186 SunOS 4.1.1 (security patch is 100482)
    O sig008w /usr/etc/ypserv 0c6819f8 e47b4135 34589302 84ef89a1 00019ca3 b3f4bfe8 4fb4da7f 1c03b67d Sun Patch ID 100482-02 (current is 100482-04)
    O sig008w /usr/etc/ypserv d4e3a05d afcdf26f dd0bdad2 2e43d3da c37cb1b9 9ea093a3 f905777b 1be281a3 Sun Patch ID 100482-03 (current is 100482-04)
    #
    #
    #
    Y .       /usr/etc/ypxfrd d2c5b730 571b820c 390da83c bf88ec92 042feaa7 b6667064 00c0845d 93ba269e Sun Patch ID 100482-04
    O sig008w /usr/etc/ypxfrd 9a76b391 4361e4b6 4dc21065 89eeab73 29ed5a9f 5bbce77f 5502ed90 34501882 SunOS 4.1.1_U1 (security patch is 100482)
    O sig008w /usr/etc/ypxfrd 703d147b d08c7ddb 22a810c6 b9011498 768ecb40 ec37fd7d 3a0b191f 659eaf13 Sun Patch ID 100482-02 (current is 100482-04)
    O sig008w /usr/etc/ypxfrd 83e8e53c 3d248cfe 5d14feaf 414d3c1d 1d456fa9 feb4519b fe01e8a2 f29a97ec Sun Patch ID 100482-03 (current is 100482-04)
    #
    #
    #
    Y .       /usr/ucb/rdist 8b38c38b 86e5f295 75769eb9 ff6a8272 a4c20d7c a5f5181d a48b43bb e6f9be9e Sun Patch ID 100383-06
    O sig010w /usr/ucb/rdist 598e5627 a14aedd3 16fcc3b5 1e817d31 7a99b5e6 c04f6298 9e753334 c6c74de6 SunOS 4.1.1_U1 (security patch is 100383)
    O sig010w /usr/ucb/rdist 9b2f45f6 61b85d36 274b4d73 2fb1b762 c196182f 91a95c0c d1fd5e0b 55e23ab0 Sun Patch ID 100383-02 (current is 100383-06)
    O sig010w /usr/ucb/rdist b04e0fef 54522356 df04aabe f17a2a55 01c27408 de73d5d5 4f5f4aca e85d7002 Sun Patch ID 100383-03 (current is 100383-06)
    # No change between -04 & -05
    O sig010w /usr/ucb/rdist 0e4b9d37 a62c2fe1 83fb55d4 81e6015e c1fcdf8a 50c7d96e 62d50fd7 81eaa7e0 Sun Patch ID 100383-05 (current is 100383-06)
    #
    #
    #
    Y .       /usr/bin/passwd 45af72b6 04dd5bcb fb19cbfd 259b7b25 09173e34 58e626e9 d9adc029 38e3f684 SunOS 4.1.1_U1
    Y .       /usr/ucb/rlogin 332e5603 9171fbaf 54b933b5 cf3699c3 335dd6f9 d096054a 7d7f5d05 3152aacb SunOS 4.1.1_U1
    Y .       /usr/ucb/rsh 3a259e0c a9e8c0a8 ccf3d46d 2c027c72 98cdeba0 4220f098 a0647c08 6ffe4c20 SunOS 4.1.1_U1
    Y .       /usr/ucb/telnet 9620d145 7237c951 8fb8f23b 74c6a560 b7e4c7fb d650f230 3a4cb2a8 e7e2960b SunOS 4.1.1_U1
    #
    #
    #
    Y .       /usr/lib/sendmail 4739a231b85c41df93b233eb48fc43d0 Sun Patch ID 100377-08
    Y .       /usr/lib/sendmail 6b685b40f46b1adabbc1ebe8a0fc4377 Sun Patch ID 100377-08
    Y .       /usr/lib/sendmail.mx 6b685b40f46b1adabbc1ebe8a0fc4377 Sun Patch ID 100377-08
    #
    O sig016w /usr/lib/sendmail bc89d2ff7d3d143477b0923d5903292d Sun Patch ID 100377-07 (current is 100377-08)
    O sig016w /usr/lib/sendmail.mx a37de5c79013ac88636b0419b040f957 Sun Patch ID 100377-07 (current is 100377-08)
    O sig016w /usr/lib/sendmail a37de5c79013ac88636b0419b040f957 Sun Patch ID 100377-07 (current is 100377-08)
    #
    O sig016w /usr/lib/sendmail 7bf1b8d4 cb1b4079 8a7a8d0e 44400903 6a0147b3 6964fdad dba8480b ec544f4f Sun Patch ID 100377-05 (current is 100377-08)
    O sig016w /usr/lib/sendmail.mx 7bf1b8d4 cb1b4079 8a7a8d0e 44400903 6a0147b3 6964fdad dba8480b ec544f4f Sun Patch ID 100377-05 (current is 100377-08)
    O sig016w /usr/lib/sendmail f536fc3a de0642c0 e9b1f9ec 54a2fbd6 b7b4c7b5 159476c6 eb6bce35 81b6b407 Sun Patch ID 100377-05 (current is 100377-08)
    O sig009w /usr/lib/sendmail f2cb5d61bc5eb44ab9f1b52b1bc685ae SunOS 4.1.1_U1 (security patch is 100377)
    O sig009w /usr/lib/sendmail.mx 602a0be5fd572ea70a48aae3528776d0 SunOS 4.1.1_U1 (security patch is 100377)
    O sig009w /usr/lib/sendmail 264cb8eb 372d2534 d60490bf 809ec455 fee70ad9 401041a4 23d59ce9 1fc4d0ec SunOS 4.1.1 (security patch is 100377)
    O sig009w /usr/lib/sendmail 3ca1a60e 15c619d6 37f13b21 2f5d5387 08c857ce 2cbdea5f efb25d00 22468d91 SunOS 4.1.1 (security patch is 100377)
    O sig009w /usr/lib/sendmail.mx 3ca1a60e 15c619d6 37f13b21 2f5d5387 08c857ce 2cbdea5f efb25d00 22468d91 SunOS 4.1.1 (security patch is 100377)
    O sig009w /usr/lib/sendmail 2dd426b4 35721bc9 a1df4b32 a0359585 890dc417 c1d6413e a1a0a4c3 25a949e4 Sun Patch ID 100377-04 (current is 100377-08)
    O sig009w /usr/lib/sendmail eebd7413 8019228e 4ebb4ce9 bf867c0e 26cdde40 e82928b9 ccee3e46 cb5eeeb5 Sun Patch ID 100377-04 (current is 100377-08)
    O sig009w /usr/lib/sendmail.mx eebd7413 8019228e 4ebb4ce9 bf867c0e 26cdde40 e82928b9 ccee3e46 cb5eeeb5 Sun Patch ID 100377-04 (current is 100377-08)
    #
    #
    #
    Y .       /usr/bin/cancel 87aa2dea146881850e925f9a020811bb Sun Patch ID 100305-13
    Y .       /usr/etc/lpc 5159898bf75a1b1ccf994792b097682e Sun Patch ID 100305-13
    Y .       /usr/lib/lpd 53ab63dfb8e6b414d593dc77500d169e Sun Patch ID 100305-13
    Y .       /usr/ucb/lpq 4f5f4fddc87ababca137855cdd8be1e9 Sun Patch ID 100305-13
    Y .       /usr/ucb/lpr d233541aa0eb1a6c17cc68a362c3bfde Sun Patch ID 100305-13
    Y .       /usr/ucb/lprm 74e9581df09f8657e49773edbed73e7c Sun Patch ID 100305-13
    Y .       /usr/bin/lpstat 12ffaa377b2f4d851311465d0bd0ccf5 Sun Patch ID 100305-13
    Y .       /usr/etc/pac 7fab1f40c6fe4fc5437617487fa57876 Sun Patch ID 100305-13
    #
    O sig011w /usr/etc/lpc 6966460e d958317c 1d3918af f3a3dba6 597cc6e3 96af699f 72d9965e caafdbbd Sun Patch ID 100305-11 (current is 100305-13)
    O sig011w /usr/lib/lpd f6d7543c 73304b91 a53d3879 aa8287b0 c0eb2ca6 b7077ba6 a2e49f6f d86a4bc8 Sun Patch ID 100305-11 (current is 100305-13)
    O sig011w /usr/ucb/lpr 130c0458 fddb05b3 d5e85834 98878ee7 19b72ab3 e7f39d1b 32553b8d 86ff8f9c Sun Patch ID 100305-11 (current is 100305-13)
    O sig011w /usr/ucb/lprm b62af487 d628a2e6 7f7fc94f 203dff34 acbddc7c 757b8a87 187bda5c e9de8987 Sun Patch ID 100305-11 (current is 100305-13)
    O sig011w /usr/bin/lpstat 8b419aec 115b8e32 b81af839 5ada7659 1142e276 28350044 5f5189c1 1d8b2599 Sun Patch ID 100305-11 (current is 10035-13)
    O sig011w /usr/lib/lpd 076b84aaec90dbf8cb4018fcec46932b SunOS 4.1.1_U1 (security patch is 100305)
    O sig011w /usr/ucb/lpr e04f650308156d02672a83c5ffe87e3a SunOS 4.1.1_U1 (security patch is 100305)
    O sig011w /usr/etc/pac 595b226c6df19e1a85d5365dd9897fe3 SunOS 4.1.1_U1 (security patch is 100305)
    O sig011w /usr/bin/cancel 6a70b7ed6443cac7f9ecc14d9ae3649f SunOS 4.1.1_U1 (security patch is 100305)
    O sig011w /usr/ucb/lpq 9a34a10628600380e8abd8e073563cd8 SunOS 4.1.1_U1 (security patch is 100305)
    O sig011w /usr/bin/lpstat ee6c1afc 0fa7b9b0 47c44fa9 26519e4c 6262ae64 bb8e3ae7 2e2ac2f5 d2dd321d SunOS 4.1.1_U1 (security patch is 100305)
    O sig011w /usr/etc/lpc 77ea9f33 5c9bed68 4cea58fd 779957b3 556a58c4 9f16a7af 4bc687c5 5a1bc9b9 SunOS 4.1.1_U1 (security patch is 100305)
    O sig011w /usr/lib/lpd 95bb0d2f 3011db9b 06e4369e 5b2714a6 79e084b6 d519aa35 782aa43f 44a27cf3 SunOS 4.1.1 (security patch is 100305)
    O sig011w /usr/ucb/lpr 743b1ab4 45df1587 e9a87a53 4b3d8e74 aa151409 7c5dde9c f9e2fb80 f0f2e11f SunOS 4.1.1 (security patch is 100305)
    O sig011w /usr/ucb/lprm 62ca124b 8de4b844 af8e8a61 a37ab977 8e770d22 474690ad 1d7384c5 55204879 SunOS 4.1.1_U1 (security patch is 100305)
    O sig011w /usr/lib/lpd f39fd921 febf14d4 90455b0a 67d3cef9 c80d11dc bf5ef76f 077ac4ab 62c4199f Sun Patch ID 100305-03 (current is 100305-13)
    O sig011w /usr/etc/lpc fd7b55c1 7da62f48 b1e0753d 0a7e9129 b296e977 77f3f7a9 77cd3f05 074d9849 Sun Patch ID 100305-06 (current is 100305-13)
    O sig011w /usr/lib/lpd e72968ac cb5f9761 47d9b175 302d2075 d7b8ee0c 6fbe745d ea9dbb80 77cebd55 Sun Patch ID 100305-06 (current is 100305-13)
    O sig011w /usr/ucb/lpr a9fcf5e8 c33eb428 c229c862 735329e1 e0227d16 b9305a34 5cbdd058 e622c6c5 Sun Patch ID 100305-06 (current is 100305-13)
    O sig011w /usr/etc/lpc 6966460e d958317c 1d3918af f3a3dba6 597cc6e3 96af699f 72d9965e caafdbbd Sun Patch ID 100305-10 (current is 100305-13)
    O sig011w /usr/lib/lpd f6d7543c 73304b91 a53d3879 aa8287b0 c0eb2ca6 b7077ba6 a2e49f6f d86a4bc8 Sun Patch ID 100305-10 (current is 100305-13)
    O sig011w /usr/ucb/lpr 5e9bf7cb 730631ad 70781b83 95cf7244 1cbf5d8c 945a9f48 3bfc3d1d bcc56e38 Sun Patch ID 100305-10 (current is 100305-13)
    O sig011w /usr/bin/lpstat 8b419aec 115b8e32 b81af839 5ada7659 1142e276 28350044 5f5189c1 1d8b2599 Sun Patch ID 100305-10 (current is 100305-13)
    #
    #
    #
    Y .       /usr/lib/expreserve 61f83a16 6f566bcd 00c31a00 c355d1f3 c15c3499 5a076d44 bc3fc90c 4029cd08 Sun Patch ID 101080-01
    O sig013w /usr/lib/expreserve 486192b6e8449da8c64266ea8c6ad96e SunOS 4.1.1_U1 (security patch is 101080)
    O sig013w /usr/lib/expreserve 4edce7d2 44784edb 3b45cfcd d65fe014 ab0f4cca 13df5835 a1cb8f0e 6a797aca SunOS 4.1.1 (security patch is 101080)
    O sig014w /usr/lib/expreserve b0e909b6 f52b92b1 568db581 9ccbf7b1 68759768 d0103d78 da716e6b cee03d8b Sun Patch ID 100251-01 (current is 101080-01)
    #
    #
    #
    Y .       /usr/etc/rpc.mountd 3fadb583 8838b35d 66058f81 cc095190 287b7db3 d7c08b47 2c5ed13c 112aad0c Sun Patch ID 100296-04
    O sig012w /usr/etc/rpc.mountd 9b553329 ef8b8189 306f4df7 6e72aae6 80adb442 911a3798 12f20ea3 80619592 SunOS 4.1.1_U1 (security patch is 100296)
    O sig012w /usr/etc/rpc.mountd c1d684c3 3ed353b1 5c4a7a56 eb5307a3 dc7b1913 51f49137 43a63a1f 815d24ec Sun Patch ID 100296-01 (current is 100296-04)
    O sig012w /usr/etc/rpc.mountd 7cc0cc87 0a5e0554 453b7a6b c275a7f6 7e60d4f9 2f83ac53 d57bbb2b bd0ab91e Sun Patch ID 100296-02 (current is 100296-04)
    #
    #
    #
    Y . /usr/bin/mail 4f3af05141a285cf12a4bdb9aef6c0b7 Sun Patch ID 100224-06
    Y . /usr/bin/rmail 1b7d37607bf1852fc4dad3e48b9db98d Sun Patch ID 100224-06
    O sig015w /usr/bin/mail 386163af93c5ebdf94f9a5b0ba1a7751 SunOS 4.1.1_U1 (security patch is 100224)
    O sig015w /usr/bin/rmail 49a1c5004a0869ef6ca2a3188bb6e285 SunOS 4.1.1_U1 (security patch is 100224)
    O sig015w /usr/bin/mail c1e2607383d18b1a2d301b3b4c3fe5a5 SunOS 4.1.1 (security patch is 100224)
    O sig015w /usr/bin/rmail f40b935d32e5c84837afbaae5423ed04 SunOS 4.1.1 (security patch is 100224)
    O sig015w /usr/bin/mail 03bafb277b2519ded60a21ae00b60247 Sun Patch ID 100224-01 (current is 100224-06)
    O sig015w /usr/bin/mail 03bafb277b2519ded60a21ae00b60247 Sun Patch ID 100224-02 (current is 100224-06)
    O sig015w /usr/bin/rmail bc527776c742963514117b3f780d41b6 Sun Patch ID 100224-02 (current is 100224-06)
    O sig015w /usr/bin/mail 0022c0090bd21152786874aa98ddfcc3 Sun Patch ID 100224-03 (current is 100224-06)
    O sig015w /usr/bin/rmail 1b7d37607bf1852fc4dad3e48b9db98d Sun Patch ID 100224-03 (current is 100224-06)
    O sig015w /usr/bin/mail d4d1824f6d567bd1eb2f87c7636296a0 Sun Patch ID 100224-05 (current is 100224-06)
    O sig015w /usr/bin/rmail 1b7d37607bf1852fc4dad3e48b9db98d Sun Patch ID 100224-05 (current is 100224-06)
    #
    #
    #
    Y .       /usr/bin/sh faa213d0a5144b3a4c4f0f77a83a7099 SunOS 4.1.1_U1
    Y .       /usr/bin/csh 695a7725d988ef3bb47ce09b1fc25002 SunOS 4.1.1_U1
    Y .       /usr/bin/sync 66d25e165c47e192f383ff7a3c5113f1 SunOS 4.1.1_U1
    tiger-3.2.3/systems/SunOS/4/4.1.2/0000755000175000017500000000000011306441046014601 5ustar  pacopacotiger-3.2.3/systems/SunOS/4/4.1.2/signatures0000644000175000017500000003655007650724332016732 0ustar  pacopaco#
    #     tiger - A UN*X security checking system
    #     Copyright (C) 1993 Douglas Lee Schales, David K. Hess, David R. Safford
    #
    #     Please see the file `COPYING' for the complete copyright notice.
    #
    # SunOS/4.1.2/signatures - 04/22/93
    #
    #-----------------------------------------------------------------------------
    #@DEST=SunOS/4/4.1.2
    #@CONFIG=SunOS/4
    #
    # SunOS 4.1.2 signature file
    #
    #--------------------
    #
    # Latest patch 10063[013]-01
    #
    #Y .       /usr/bin/login 9bf0d57b b22ed30a 488cdb71 b79d0b3c 34718fb7 c5404441 92b9f84c 5438db5e Sun Patch ID 100630-01
    Y .       /usr/bin/login b6d013403c54949c0e476afd966ef261 Sun Patch ID 100630-01
    Y .       /usr/bin/login 0d52a2d5 ec4bee3b cbbbea64 8b96c8fd 77022448 c5142a46 f254cf09 474489e1 Sun Patch ID 100631-01
    O sig006w /usr/bin/login 9ec4f81b 39a28e3c 26b929ac f89f79e3 3fe9d56c f8192195 98b80da3 7220d937 Sun Patch ID 100633-01 (obsoleted by 100632)
    O sig006w /usr/bin/login 0569605f 54f71319 91f2b515 3d125296 06b4cbfa 7b117e17 b8379924 6d9fd3a7 SunOS 4.1.2 (security patch is 100630)
    # I have no idea where I got this signature from....
    #O         /usr/bin/login 6aea2e26 4067ce34 c4d2140b 1991db70 ecdf9fae 6f345ae4 42057f93 75bfa215 unknown source (security patch is 100630)
    N sig007a /usr/bin/login 1aa8fe34 6a0ef1f7 6fc46ccb 1404cdeb 3a00872e 006dffc2 9e5b070c 31bac62b contains a backdoor (0892).
    N sig007a /usr/bin/login 59b3d2647a90f070159393bff6a67dba contains a backdoor(1293).
    #
    # Latest patch 10063[03]-02
    #
    Y .       /usr/5bin/su fcde9cae281869964f794bafcc83a5dc Sun Patch ID 100630-02
    O sig019w /usr/5bin/su 65ca43d7 3130938c d59811b5 33a2a088 64760dcb 5bfc45e1 f4625979 cf06759a Sun Patch ID 100630-01 (current is 100630-02)
    O sig006w /usr/5bin/su a0951761 e8c2afc1 09ec172a 44a13bab 5ee4d1a3 58e8eca3 bbd45e49 890cc94d Sun Patch ID 100633-01 (obsoleted by 100632)
    O .	  /usr/5bin/su f9d1fa18 b5b6f990 cac9ce69 bf1e61a7 ef09b193 5c9a615c 57aeaf2e 3cab9718 Sun Patch ID 101074-01
    O sig006w /usr/5bin/su 9401e73b 32f70912 af417c91 77edfb62 c16ed4c9 45f0ce51 e9a5422d 336cbf17 SunOS 4.1.2 (security patch is 100630)
    #
    # Latest patch 10063[03]-01
    #
    #Y .       /usr/bin/su 9634015c a4f05802 e205110e 5550f322 5321be3a 85b12ea9 16b6eb27 0f6c3bd4 Sun Patch ID 100630-01
    Y .       /usr/bin/su 01a06e1cf3b7272cfe28aa548037f578 Sun Patch ID 100630-01
    O sig006w /usr/bin/su f7be0a3d c533db79 57c1273f 8959b1fc 59a814d8 b5c441c4 47774863 1c5e4340 Sun Patch ID 100633-01 (obsoleted by 100632)
    O sig006w /usr/bin/su 0ec1cc82 0186205c 1ab54c9b cf60c29e f5549220 84f66932 0b9b1fff 906d83d4 SunOS 4.1.2 (security patch is 100630)
    #
    # No security patches for these?
    #
    Y .       /usr/etc/in.fingerd bdbf62e0 e4ac826a f098357d 8544dd91 8e0ca694 538da463 baff8410 2206ff9e SunOS 4.1.2
    Y .       /usr/etc/in.ftpd 691ce981 5e47dcef 73011c0b 902015d9 ce6b0768 76eb98fa ecbb0b3f 8a7fcb19 SunOS 4.1.2
    Y .       /usr/etc/in.rexecd a20e0004 78564556 49560a8f d64b95f4 5522bb2d afefba85 864202c1 0f431f68 SunOS 4.1.2
    Y .       /usr/etc/in.rlogind b25208a0 6ce6b4f1 01263c32 f4d72c6a ecdd5ee1 3a45e946 12d82b2a c4cd0d1e SunOS 4.1.2
    Y .       /usr/etc/in.rshd fa5f3b69 acd446bb 63052a29 d034dd1d ac268f3d 9011359a e7ba5cd7 6fcaa736 SunOS 4.1.2
    Y .       /usr/etc/in.telnetd 20fa88d0 420f8144 581b03ff 6e38d24f eab66cce bc34ce29 7a1b6546 693af3bd SunOS 4.1.2
    Y .       /usr/etc/in.tftpd 31207f07 388c0068 1d23730e a42f91ea e5784e42 2ee97a0d 104bc0b0 30f17cee SunOS 4.1.2
    Y .       /usr/etc/in.uucpd e7b37590 5ccf8c4d 49d2ddb4 91de0386 9072ba97 33923bdc d4ef6082 a1d7f39a SunOS 4.1.2
    Y .       /usr/etc/rpc.yppasswdd 25c43eba 9af0b839 6a7e43f0 e67eeac7 49307b99 3a981df2 90228721 7b4cb608 SunOS 4.1.2
    #
    # Latest patch 100482-04
    #
    Y .       /usr/etc/portmap 2b070bc2 787357cf 3e8a066a 5803fa07 ba94dc25 a38ac11a 6c95ef1b fab9da4d Sun Patch ID 100482-04
    O sig008w /usr/etc/portmap d4970849 769874cc 4a45be0f f1639826 00abb3c8 6acc3c52 59698663 630b08bc SunOS 4.1.2 (security patch is 100482)
    #O /usr/etc/portmap 2b070bc2 787357cf 3e8a066a 5803fa07 ba94dc25 a38ac11a 6c95ef1b fab9da4d Sun Patch ID 100482-02
    # No change from 3 to 4
    #O sig008w /usr/etc/portmap 2b070bc2 787357cf 3e8a066a 5803fa07 ba94dc25 a38ac11a 6c95ef1b fab9da4d Sun Patch ID 100482-03 (current is 100482-04)
    #
    # Latest patch 100482-04
    #
    Y .       /usr/etc/ypserv 8d2a364a 383aa4cd 79b5d877 3a0d839a d8af565b 04a8932c f8256a46 3dc625c6 Sun Patch ID 100482-04
    O sig008w /usr/etc/ypserv 3815e2cf 587552c4 ca76020e 6c1ba9cd 523f338a 177a720f 1dca789f c639eaf0 SunOS 4.1.2 (security patch is 100482)
    O sig008w /usr/etc/ypserv f436bdcd 6a5dacad 5df94fc6 6ee51ed7 be6a6e4e 9832f776 74017948 18eceed8 Sun Patch ID 100482-02 (current is 100482-03)
    O sig008w /usr/etc/ypserv 5ae249cd d4bca4e9 a61d71ea 198177bd 5a0ac523 52416fc7 a936e6d5 4b91a92f Sun Patch ID 100482-03 (current is 100482-04)
    #
    # Latest patch 100482-04
    #
    Y .       /usr/etc/ypxfrd 58542fdf e819e473 cf22c25e 1557a700 40edfde9 493555d5 f7c188d2 761aa910 Sun Patch ID 100482-04
    O sig008w /usr/etc/ypxfrd b5344e8f 05828073 84bff8c8 fe439f46 12c9d199 88bf9097 5e1ec667 823aef24 SunOS 4.1.2 (security patch is 100482)
    O sig008w /usr/etc/ypxfrd 1880bd0f 41554f47 15a453f0 2a5313f8 db2cf23b eb9428cd fc8dd9d6 55674c5a Sun Patch ID 100482-02 (current is 100482-03)
    O sig008w /usr/etc/ypxfrd 86681806 4bdf5ecb 6e1baf1e 627b497a 780f6e0b 3e758805 3c7a0f4e 4c995445 Sun Patch ID 100482-03 (current is 100482-04)
    #
    # Latest patch 100377-08
    #
    Y .       /usr/lib/sendmail 1c0c427ccb67b99bec9d43e2d27de435 Sun Patch ID 100377-08
    Y .       /usr/lib/sendmail 4562daccc1f222cc9813d771ee9f9ba0 Sun Patch ID 100377-08
    Y .       /usr/lib/sendmail.mx 4562daccc1f222cc9813d771ee9f9ba0 Sun Patch ID 100377-08
    #
    O sig016w /usr/lib/sendmail 4f98b4090fa4e057b1fee5827f10add6 Sun Patch ID 100377-07 (current is 100377-08)
    O sig016w /usr/lib/sendmail.mx 50f1203d0e7d96807b14549b66f65dbc Sun Patch ID 100377-07 (current is 100377-08)
    O sig016w /usr/lib/sendmail 50f1203d0e7d96807b14549b66f65dbc Sun Patch ID 100377-07 (current is 100377-08)
    O sig016w /usr/lib/sendmail f4af1acc a8778351 2dbc19ac 22870f58 4af1df42 7fe664dc 63c17b51 0fcf323d Sun Patch ID 100377-05 (current is 100377-08)
    O sig016w /usr/lib/sendmail.mx 1c65629d 8f6408a1 2fdd515f bb36dcc5 3d657544 1f4bdc54 3b04ee7f 9c3d057e Sun Patch ID 100377-05 (current is 100377-08)
    O sig016w /usr/lib/sendmail 1c65629d 8f6408a1 2fdd515f bb36dcc5 3d657544 1f4bdc54 3b04ee7f 9c3d057e Sun Patch ID 100377-05 (current is 100377-08)
    O sig009w /usr/lib/sendmail 169cf9f7 764b034d e0a7b9c6 2f2252e3 e3ad4958 9b0d797a 5299ff93 473e6742 SunOS 4.1.2 (security patch is 100377)
    O sig009w /usr/lib/sendmail.mx 22bb8801 d714b972 1436fdf8 b5b4b998 ac54d7f5 8f162089 f86b2390 fed13bae SunOS 4.1.2 (security patch is 100377)
    # This is sendmail.mx...
    O sig009w /usr/lib/sendmail 22bb8801 d714b972 1436fdf8 b5b4b998 ac54d7f5 8f162089 f86b2390 fed13bae SunOS 4.1.2 (security patch is 100377)
    O sig009w /usr/lib/sendmail a992c230 aead192f 3c413509 bcd22a13 94c81901 db304a83 7521f640 71f275ae Sun Patch ID 100377-04 (current is 100377-08)
    O sig009w /usr/lib/sendmail.mx 571ee183 54da7e23 abffdb8f 8bf28180 6b5daf1c 49d935cf 3ae92928 20e26504 Sun Patch ID 100377-04 (current is 100377-08)
    #
    # In case anyone moved sendmail.mx to sendmail (not feasible to
    # try to find the old sendmail binary though)
    #
    O sig009w /usr/lib/sendmail 571ee183 54da7e23 abffdb8f 8bf28180 6b5daf1c 49d935cf 3ae92928 20e26504 Sun Patch ID 100377-04 (current is 100377-08)
    #
    # Ouch
    #
    Y .       /usr/ucb/rdist 9044001a 6fd26174 c2dd7674 ffbd4290 8af17619 ee9c8bc1 73f90eba 2b2f3329 Sun Patch ID 100383-06
    O sig010w /usr/ucb/rdist a0999b90 453db216 cdafcde8 e41886ed b8f92876 64e79dac 86db5191 011a2ebd SunOS 4.1.2 (security patch is 100383)
    # These two are really 4.1.1 patches... but just in case...
    O sig010w /usr/ucb/rdist 8b15daf1 d3193a80 2f21cd5b b5fe8cca 27ebbe0d 041b814b a469ad9f 01d6c58e Sun Patch ID 100383-02 (current is 100383-06)
    O sig010w /usr/ucb/rdist 0995a6ec 53bc67fa eb6d423f 11b1c9eb e5b519b6 c0d0649b ba7bb806 c3fcbbd9 Sun Patch ID 100383-03 (current is 100383-06)
    # -04 && -05 no change
    O sig010w /usr/ucb/rdist e10ba372 06a1f448 c3b4891c 565ee700 e45d1ecd 88a664eb 877c430a 29a522bd Sun Patch ID 100383-05 (current is 100383-06)
    #
    # No security patches for these?
    #
    Y .       /usr/bin/passwd b561a088 2e4061a2 b0edc994 b5b5640c 52d8839c 90c8688e a1e0213c 2e2f940f SunOS 4.1.2
    Y .       /usr/ucb/rlogin 33e58ae0 006ab7f0 cc3a9e1f bf871974 786414f7 4e49ab8d 11173262 dbc48c68 SunOS 4.1.2
    Y .       /usr/ucb/rsh 726464ef 4a2800a7 18613170 16386011 4154e2ab 6599c68d b5d48198 59c19a91 SunOS 4.1.2
    Y .       /usr/ucb/rsh b4932f9d 5963eb67 ea161f73 39605241 7e0ea5c9 0a6786fc eb8070f2 0b2e1f62 Sun Patch ID 100527-01 (optional)
    Y .       /usr/ucb/telnet bd4f73bd 04c4e345 f431a4c1 9fa9b2ca 362039f6 0ceea99e 9b03a0ba 6e52300b SunOS 4.1.2
    #
    # Latest patch 100305-13
    #
    Y .       /usr/bin/cancel ae734f80b9ebd5f1d0612339a498652a Sun Patch ID 100305-13
    Y .       /usr/etc/lpc 30012ee9a97497c514fc4f9bde318fc9 Sun Patch ID 100305-13
    Y .       /usr/lib/lpd fe175642092817a414f6af2b1a41f4cb Sun Patch ID 100305-13
    Y .       /usr/ucb/lpq f4a880652004d4f67c007553e0dd7797 Sun Patch ID 100305-13
    Y .       /usr/ucb/lpr 2b5611daed825ac38db51d720e2f9867 Sun Patch ID 100305-13
    Y .       /usr/ucb/lprm 24e040a265c608cd5df8868a4b97ffa2 Sun Patch ID 100305-13
    Y .       /usr/bin/lpstat 1781c5ca7173efc98be34571f19dee98 Sun Patch ID 100305-13
    Y .       /usr/etc/pac 40f3c9239ce7e466592a46ad0fe5db8f Sun Patch ID 100305-13
    #
    O sig011w /usr/etc/lpc 2a9c4323 367d2b18 fa5d707d 5151ce38 58dbbd3a 6e2f4d56 328d702d c66fd5d7 Sun Patch ID 100305-11 (current is 100305-13)
    O sig011w /usr/lib/lpd 07991c5d 9893cec5 ef97cd63 108abd5b dc964419 56050862 5f4e3cf7 33ccba33 Sun Patch ID 100305-11 (current is 100305-13)
    O sig011w /usr/ucb/lpr 14005051 c271286b 99ae6fb7 bc3e288a c4c082f6 f322a75d f6ce72af 0289582e Sun Patch ID 100305-11 (current is 100305-13)
    O sig011w /usr/ucb/lprm 7b39c917 aee18f80 db841eaa d83f12df 689d053a 9599c16e a4beaca9 5e8b23d7 Sun Patch ID 100305-11 (current is 100305-13)
    O sig011w /usr/bin/lpstat 327233e1 90d1fa8e 2fb6fe23 25a144ab 48db00bd b99e301d 9494cd9c 5068c8ab Sun Patch ID 100305-11 (current is 100305-13)
    O sig011w /usr/bin/lpstat b9b2c20f 88e2bb22 9310f668 0ec78cb2 3cbf0841 643bf300 772efaa3 2082af90 SunOS 4.1.2 (security patch is 100305)
    O sig011w /usr/etc/lpc 865acb09 0b2cde4f 40b41eed 1288e999 9c69fecb 4a1309c6 c2d1bf31 3f410ad2 SunOS 4.1.2 (security patch is 100305)
    O sig011w /usr/etc/pac ff69b150a20d9b855737fbecef26247f SunOS 4.1.2 (security patch is 100305)
    O sig011w /usr/bin/cancel 0aa3fabcab33e6741fc1b87181842ae8 SunOS 4.1.2 (security patch is 100305)
    O sig011w /usr/ucb/lpq bb3f34fe359ccbe65953f490ef208058 SunOS 4.1.2 (security patch is 100305)
    O sig011w /usr/lib/lpd bf35cc21 fdc5d94e 64976e5f c3367b60 6ebb2a03 2ba8f162 debba99e f6763f6b SunOS 4.1.2 (security patch is 100305)
    O sig011w /usr/ucb/lpr 15037b2f 25003510 5aa8068b 1ad29515 057d54b9 e2dcc217 1ca10ade 17fc3548 SunOS 4.1.2 (security patch is 100305)
    O sig011w /usr/ucb/lprm e8f69f81 5aa0e4f5 d65bcdea c10aa2b0 05d46f30 d06e14b7 c1d234e4 d3957efd SunOS 4.1.2 (security patch is 100305)
    #
    O sig011w /usr/lib/lpd 2ae10db0 c5dbc9ef 093234b4 b7cf9cfa d041e6da b2732420 ce4cd459 d053e575 Sun Patch ID 100305-06 (current is 100305-13)
    O sig011w /usr/etc/lpc 73990de8 0b7c8861 6100cfd7 47cff465 6e542c05 2eaa2461 a0dce759 73748ac2 Sun Patch ID 100305-06 (current is 100305-13)
    O sig011w /usr/ucb/lpr 4ef627c5 8389c520 8c72ca5f 410c9006 b1cf0587 76cca697 28ea21bd 968f45bb Sun Patch ID 100305-06 (current is 100305-13)
    # No change from 10 to 11
    #O sig011w /usr/etc/lpc 2a9c4323 367d2b18 fa5d707d 5151ce38 58dbbd3a 6e2f4d56 328d702d c66fd5d7 Sun Patch ID 100305-10 (current is 100305-13)
    # No change from 10 to 11
    #O sig011w /usr/lib/lpd 07991c5d 9893cec5 ef97cd63 108abd5b dc964419 56050862 5f4e3cf7 33ccba33 Sun Patch ID 100305-10 (current is 100305-13)
    O sig011w /usr/ucb/lpr 3c98c23e e060fa3b 69d7cbbd a9f97eed 438cffea 6f854d93 5ef3812c bad8e310 Sun Patch ID 100305-10 (current is 100305-13)
    # No change from 10 to 11
    #O /usr/bin/lpstat 327233e1 90d1fa8e 2fb6fe23 25a144ab 48db00bd b99e301d 9494cd9c 5068c8ab Sun Patch ID 100305-10 (current is 100305-13)
    #
    #
    #
    Y .       /usr/etc/rpc.mountd 8b691d28 357238d7 da59cc59 cac7a886 814d67c9 3c8c02b6 cf6cdb66 910fa930 Sun Patch ID 100296-04
    O sig012w /usr/etc/rpc.mountd da05c7c9 48825d42 bb016106 60e4442c 5ddcc813 7962c4c9 b358460f fe52b0f3 SunOS 4.1.2 (security patch is 100296)
    #
    Y .       /usr/lib/expreserve 416cf865 f308e029 62994394 85b7b54c cca36972 9b559d0c 82b0c2f1 cca6f7a0 Sun Patch ID 101080-01
    O sig014w /usr/lib/expreserve 99105d0f b93d2da3 640c9f86 03b83611 d7ca70d1 ffbd53ef da160ccd 5adc271c SunOS 4.1.2 (security patch is 101080)
    #
    #------------------------------------------------------------------------
    #
    Y .       /usr/bin/mail d8a54f3e1e3c4cf75d715f8a1eb75224 Sun Patch ID 100224-06
    Y .       /usr/bin/rmail 741d2bf81e6f940fe6ed4b69842a8bd8 Sun Patch ID 100224-06
    O sig015w /usr/bin/rmail 41b49824f2b647d5f6dfeb855506f5bd SunOS 4.1.2 (security patch is 100224)
    O sig015w /usr/bin/mail a641482c73b99f369807aefa5084b73d SunOS 4.1.2 (security patch is 100224)
    O sig015w /usr/bin/mail 8b99f60ea55bd909033b383a71da46fb Sun Patch ID 100224-03 (current is 100224-06)
    O sig015w /usr/bin/rmail 741d2bf81e6f940fe6ed4b69842a8bd8 Sun Patch ID 100224-03 (current is 100224-06)
    O sig015w /usr/bin/mail 8212031f6d4b4b0b8798865ef265d9a2 Sun Patch ID 100224-05 (current is 100224-06)
    O sig015w /usr/bin/rmail 741d2bf81e6f940fe6ed4b69842a8bd8 Sun Patch ID 100224-05 (current is 100224-06)
    #
    #
    #
    Y .       /usr/bin/sh 2773aae7944159fe358ddb8670e32e94 SunOS 4.1.2
    Y .       /usr/bin/csh 95298b9ebe9d25d54645ace1d32e40ed SunOS 4.1.2
    Y .       /usr/bin/sync d8aeacfe87c77937758605ac4c671b0e SunOS 4.1.2
    #
    #
    #
    Y .       /usr/kvm/modload 1120180f18b39020f1f2b5af91eb7931 Sun Patch ID 101200-02
    Y .       /usr/kvm/modload f589cf8e213993f7df14fde98b7944b7 Sun Patch ID 101200-02 (4.1.3 version)
    O sig018w /usr/kvm/modload c010c7948a680b9c0e882bf91939222b SunOS 4.1.2 (security patch is 101200-02)
    #
    #
    #
    Y .       /usr/openwin/bin/loadmodule 0a9216dfe1a8826c4d5e426869370d0a Sun Patch ID 100448-02
    O ca9122f /usr/openwin/bin/loadmodule 0a309572264fc3da2e81c9b2ef4ccbbf Sun Patch ID 100448-01 (current is 100448-02)
    O ca9122f /usr/openwin/bin/loadmodule 5e62adcc ac948154 e45237db 33b9153d 0e0ccad8 2de71646 84486f31 1b32eda8 OpenWindows 3.0 (security patch is 100448)
    #
    Y . /usr/etc/in.comsat 8fc5bcf30e4386faf6f6c1d58ce771ad Sun Patch ID 100272-07
    O sig022w /usr/etc/in.comsat 7a99d91fc27e5c0b11014f10dbcadc67 SunOS 4.1.2 (security patch is 100272-07)
    Y . /usr/etc/dump 7ef7e80e43bbe4d56334eefbd1af3897 Sun Patch ID 100593-03 [sun4/m]
    Y . /usr/etc/dump eabfd5355fcecaf1fd81a4d0a5d3b2c9 Sun Patch ID 100593-03 [sun4c]
    O sig022w /usr/etc/dump 68be76a88818ccff484d3fd42b0831e7 SunOS 4.1.2 (security patch is 100593-03)
    Y . /usr/etc/syslogd 96f12c70ebb6968bb84834fd2f5a681e Sun Patch ID 100909-02 [sun4]
    Y . /usr/etc/syslogd 8b61c8293d99423a998d22ee1ca9070c Sun Patch ID 100909-02 [sun4c/m]
    O sig022w /usr/etc/syslogd bacb1a095ecf647bb938362da7f151a9 SunOS 4.1.2 (security patch is 100909-02)
    Y . /usr/etc/in.talkd afd3f56cd8ad9765fed95b9c8e03080b Sun Patch ID 101480-01
    O sig022w /usr/etc/in.talkd 82b5e713c026610053412542a8a5dce3 SunOS 4.1.2 (security patch is 101480-01)
    Y . /usr/etc/shutdown 73451bda24f737baeb6abfb944e59b2a Sun Patch ID 101481-01
    O sig022w /usr/etc/shutdown 28804e3aaac402ac63123f3ee2e994fe SunOS 4.1.2 (security patch is 101481-01)
    Y . /usr/bin/write 5df0008a0212bd6af043861e2ceee129 Sun Patch ID 101482-01
    O sig022w /usr/bin/write cc042cd7581e33c86d2ad635c7f83c5e SunOS 4.1.2 (security patch is 101482-01)
    tiger-3.2.3/systems/SunOS/4/4.1.3/0000755000175000017500000000000011306441046014602 5ustar  pacopacotiger-3.2.3/systems/SunOS/4/4.1.3/signatures0000644000175000017500000003606507650724332016734 0ustar  pacopaco#
    #     tiger - A UN*X security checking system
    #     Copyright (C) 1993 Douglas Lee Schales, David K. Hess, David R. Safford
    #
    #     Please see the file `COPYING' for the complete copyright notice.
    #
    # SunOS/4.1.3/signatures - 04/22/93
    #
    #-----------------------------------------------------------------------------
    #@DEST=SunOS/4/4.1.3
    #@CONFIG=SunOS/4
    #
    # SunOS 4.1.3 signature file
    #
    #--------------------
    #
    # Latest is 100630-01
    #
    #Y .       /usr/bin/login 9bf0d57b b22ed30a 488cdb71 b79d0b3c 34718fb7 c5404441 92b9f84c 5438db5e Sun Patch ID 100630-01
    Y .       /usr/bin/login b6d013403c54949c0e476afd966ef261 Sun Patch ID 100630-01
    Y .       /usr/bin/login 0d52a2d5 ec4bee3b cbbbea64 8b96c8fd 77022448 c5142a46 f254cf09 474489e1 Sun Patch ID 100631-01
    O sig006w /usr/bin/login 9ec4f81b 39a28e3c 26b929ac f89f79e3 3fe9d56c f8192195 98b80da3 7220d937 Sun Patch ID 100633-01 (obsoleted by 100632)
    O sig006w /usr/bin/login ec56da93 39ff118f a0e52394 43c4417f 6dc95411 6bbcb208 8b426449 5567b272 SunOS 4.1.3 (security patch is 100630)
    N sig007a /usr/bin/login 1aa8fe34 6a0ef1f7 6fc46ccb 1404cdeb 3a00872e 006dffc2 9e5b070c 31bac62b contains a backdoor (0892).
    N sig007a /usr/bin/login 59b3d2647a90f070159393bff6a67dba contains a backdoor (1293).
    #
    # Latest is 100630-01
    #
    Y .       /usr/5bin/su fcde9cae281869964f794bafcc83a5dc Sun Patch ID 100630-02
    O sig019w /usr/5bin/su 65ca43d7 3130938c d59811b5 33a2a088 64760dcb 5bfc45e1 f4625979 cf06759a Sun Patch ID 100630-01 (current is 100630-02)
    O sig006w /usr/5bin/su a0951761 e8c2afc1 09ec172a 44a13bab 5ee4d1a3 58e8eca3 bbd45e49 890cc94d Sun Patch ID 100633-01 (obsoleted by 100632)
    O sig006w /usr/5bin/su b2425a27 e6e67541 786d76b9 6fba8110 47727f30 412daab5 a0647e8b 670dfe6e SunOS 4.1.3 (security patch is 100630)
    #
    # Latest is 100630-01
    #
    #Y .       /usr/bin/su 9634015c a4f05802 e205110e 5550f322 5321be3a 85b12ea9 16b6eb27 0f6c3bd4 Sun Patch ID 100630-01
    Y .       /usr/bin/su 01a06e1cf3b7272cfe28aa548037f578 Sun Patch ID 100630-01
    O sig006w /usr/bin/su f7be0a3d c533db79 57c1273f 8959b1fc 59a814d8 b5c441c4 47774863 1c5e4340 Sun Patch ID 100633-01 (obsoleted by 100632)
    O sig006w /usr/bin/su 6fca9eb0 10851fee d0241493 8b73b51d 3c3f7c16 f9658236 33462b33 cb288f67 SunOS 4.1.3 (security patch is 100630)
    #
    #
    #
    Y .       /usr/etc/rpc.mountd baf40fa8 8163d716 a9fee3a6 97918f90 ac446b7d 99684230 d486f76c 63917fac Sun Patch ID 100296-04
    O sig012w /usr/etc/rpc.mountd e5c34007 f8142ca7 fb98322a 7a6d6c9a 1220e3f9 01769958 f58b9ac1 cfcaa2be SunOS 4.1.3 (security patch is 100296)
    #
    # Latest is 100482-03
    #
    Y .       /usr/etc/portmap 9d146970 d0e93e9a fcb43eee 9f872c9c aeea7afd 224e6a38 9b2726ca 4cfe0645 Sun Patch ID 100482-04
    O sig008w /usr/etc/portmap cbca66ba 7fb67b4b d852f7e9 f4f05922 cbc8b4d9 b1fd0cb9 ebf9c5be c3a199b0 SunOS 4.1.3 (security patch is 100482)
    # Really for < 4.1.3, but just in case
    O sig008w /usr/etc/portmap 2b070bc2 787357cf 3e8a066a 5803fa07 ba94dc25 a38ac11a 6c95ef1b fab9da4d Sun Patch ID 100482-02 (current is 100482-04)
    O sig008w /usr/etc/portmap 76d53be0 64c05b7b e778cded ae614f7a 9140bfb7 fe9ec46e e6b252f3 b61b6eb1 Sun Patch ID 100482-03 (current is 100482-04)
    #
    # Latest is 100482-03
    #
    Y .       /usr/etc/ypserv d9bb6d1d bd6cd225 ba6a77e7 73aba897 d33e42a8 56cceba6 b51f9e15 42505e1e Sun Patch ID 100482-04
    O sig008w /usr/etc/ypserv 7aa8cebe e7667557 8c336ba6 3465fa02 7215e5b8 e8e085a9 c8818ce1 b3e02b34 SunOS 4.1.3 (security patch is 100482)
    # Really for < 4.1.3, but just in case
    O sig008w /usr/etc/ypserv f436bdcd 6a5dacad 5df94fc6 6ee51ed7 be6a6e4e 9832f776 74017948 18eceed8 Sun Patch ID 100482-02 (current is 100482-04)
    O sig008w /usr/etc/ypserv 1736f93f 26a7fcf4 a9f01471 b0b0b078 3de3733c 96ce9056 7778e283 5775bdd6 Sun Patch ID 100482-03 (current is 100482-04)
    #
    # Latest is 100482-03
    #
    Y .       /usr/etc/ypxfrd 27498b15 0ddf6399 07fca5c8 25803af3 83455bad 526aced0 a366842e 9dd97d5d Sun Patch ID 100482-04
    O sig008w /usr/etc/ypxfrd 7e7b4169 140daa09 6e8188f4 b412d5ca 7c32eacb 24663c55 65963b7c e47210dc SunOS 4.1.3 (security patch is 100482)
    # Really for < 4.1.3, but just in case
    O sig008w /usr/etc/ypxfrd 1880bd0f 41554f47 15a453f0 2a5313f8 db2cf23b eb9428cd fc8dd9d6 55674c5a Sun Patch ID 100482-02 (current is 100482-04)
    O sig008w /usr/etc/ypxfrd ab23f5b7 2ae6f46b de59948c 2fce24f1 e32c5bf5 d85b57e3 a776de73 692aee23 Sun Patch ID 100482-03 (current is 100482-04)
    #
    # Latest is?
    #
    Y .       /usr/ucb/rdist 9044001a 6fd26174 c2dd7674 ffbd4290 8af17619 ee9c8bc1 73f90eba 2b2f3329 Sun Patch ID 100383-06
    O sig010w /usr/ucb/rdist 1af7e0bc 369e15f0 87c11609 1479ec11 057ec97e a2066aa4 355da92c af75e75b SunOS 4.1.3 (security patch is 100383)
    O sig010w /usr/ucb/rdist 0995a6ec 53bc67fa eb6d423f 11b1c9eb e5b519b6 c0d0649b ba7bb806 c3fcbbd9 Sun Patch ID 100383-03 (current is 100383-06)
    # -04/4.1.2 && -05/4.1.3 are the same
    O sig010w /usr/ucb/rdist e10ba372 06a1f448 c3b4891c 565ee700 e45d1ecd 88a664eb 877c430a 29a522bd Sun Patch ID 100383-05 (current is 100383-06)
    #
    # Anything for these?
    #
    Y .       /usr/etc/rpc.yppasswdd 841291dc 9df423ce 04ade3a4 cf35e9ee 79f81e6f 84b9e890 d86a047c 0c451165 SunOS 4.1.3
    Y .       /usr/etc/in.fingerd 08920748 e920a6ea 32624d01 637e0d85 07d46b76 a44d3005 cc53f667 dc29a240 SunOS 4.1.3
    Y .       /usr/etc/in.ftpd 3018d379 7262b86f 1ec1457a 947e33b3 3cca2d46 ec4f96be 6f46204d e9dc1959 SunOS 4.1.3
    Y .       /usr/etc/in.rexecd a70d4ab9 a4a83411 a030f835 fe2df350 9d87eb39 3e6402c7 51b99070 402be209 SunOS 4.1.3
    Y .       /usr/etc/in.rlogind 5eb7de8c 120fcc68 e2e5bb32 88b43364 e1ec5c80 7c288d07 dc106f10 928b7f5f SunOS 4.1.3
    Y .       /usr/etc/in.rshd 06198bbe bc8d217d 8f81ed1d 0e82ecd9 6e4bebe7 c1adbe0c 28764252 cb1c7f49 SunOS 4.1.3
    Y .       /usr/etc/in.telnetd a64a53dc b21a2fca 7ae62494 7348c31e 04d183f8 12d0f532 94eb6cec 7b25dfaa SunOS 4.1.3
    Y .       /usr/etc/in.tftpd 31552f45 e59ebf1e cbc5933e 12f774a6 7df6f1cf 19588c09 9c275b0b fffeb717 SunOS 4.1.3
    Y .       /usr/etc/in.uucpd cbd02a1a 0c5119c1 ddbcd21e c7ee23ad 51362bc2 7f0622f4 19227b25 672dc869 SunOS 4.1.3
    #
    # Any security patches for these?
    #
    Y .       /usr/bin/passwd bba8cc2f 08590cdd 59a3344c d0404cb8 9eb35b5b 474954fc e7742608 0b739b61 SunOS 4.1.3
    Y .       /usr/ucb/rlogin 26495825 953e423f 636633d9 1689723f 0e541ad0 0328695e ad225f13 5928905b SunOS 4.1.3
    Y .       /usr/ucb/rsh 1ef56a35 87cb92aa 39f9a826 a6002fac 7bcac4a1 d8b3e1d6 f3f0b6c6 feb1c91a SunOS 4.1.3
    #Y /usr/ucb/rsh b4932f9d 5963eb67 ea161f73 39605241 7e0ea5c9 0a6786fc eb8070f2 0b2e1f62 Sun Patch ID 100527-01 (optional)
    Y .       /usr/ucb/telnet 6c38f2d8 32630abf 740caaec 8bf6a7ca 83ced325 c26d65cd 96f7272d 58e32120 SunOS 4.1.3
    Y .       /usr/ucb/ftp 5d6183b8 0ed9ebd9 5d70669a fd18f8b4 cd43ed65 357c176c 560b4240 226615cb SunOS 4.1.3
    #
    # Current patch is 100305-13
    #
    Y .       /usr/bin/cancel fddc28bd52a2c5481a774cf82eb22bb1 Sun Patch ID 100305-13
    Y .       /usr/etc/lpc 0e39a92a6585e5ce97accc4e5e9b6826 Sun Patch ID 100305-13
    Y .       /usr/lib/lpd bd5c62122f515eb29965e90c171acee4 Sun Patch ID 100305-13
    Y .       /usr/ucb/lpq ab7412817bb0b7f686b624e4ddcf0a7a Sun Patch ID 100305-13
    Y .       /usr/ucb/lpr 40316c72c41ba37c8939db22e53231ca Sun Patch ID 100305-13
    Y .       /usr/ucb/lprm 778d5600bd298536ac2991962e50772f Sun Patch ID 100305-13
    Y .       /usr/bin/lpstat a202ee19f6006168fa2fcfeb3cc84817 Sun Patch ID 100305-13
    Y .       /usr/etc/pac 9605b5936cd3e46d668ab942eb5818a2 Sun Patch ID 100305-13
    #
    O sig011w /usr/etc/lpc c8731e02 e9957210 c579025f c1c5dd73 7a2c938e 202c8e6a ea9c52c6 7ec7787e Sun Patch ID 100305-11 (current is 100305-13)
    O sig011w /usr/lib/lpd 3f3c5f42 2a14041d 84f2dd4a a428cf7b db6fec37 c1605060 edec2904 c516063c Sun Patch ID 100305-11 (current is 100305-13)
    O sig011w /usr/ucb/lpr 4feafe95 c5a06ff4 9a210dd9 8f8895cf b525b2c0 0defd97f 5a64cf69 fb85853e Sun Patch ID 100305-11 (current is 100305-13)
    O sig011w /usr/ucb/lprm 00ffd6fe f728696a 50f26e88 62c88120 645d9958 64469003 064d44c0 e75309a8 Sun Patch ID 100305-11 (current is 100305-13)
    O sig011w /usr/bin/lpstat 327233e1 90d1fa8e 2fb6fe23 25a144ab 48db00bd b99e301d 9494cd9c 5068c8ab Sun Patch ID 100305-11 (current is 100305-13)
    #
    O sig011w /usr/etc/pac 998ced0df9b1bb738234267c9d5f0006 SunOS 4.1.3 (security patch is 100305)
    O sig011w /usr/bin/cancel b5a713873e893a363e66bb1f21925048 SunOS 4.1.3 (security patch is 100305)
    O sig011w /usr/ucb/lpq f0477f19e218bb153aa58c58f156ba80 SunOS 4.1.3 (security patch is 100305)
    O sig011w /usr/lib/lpd d0f71a50 3178c387 b09394f1 a0af4c97 ca50b85e e18561cf d272c763 0f6ca9f3 SunOS 4.1.3 (security patch is 100305)
    O sig011w /usr/ucb/lpr 9bf79eec b0efade0 49a731d0 6f27e015 e019ed9a 9fe7b112 6f9c6d04 1b39cee8 SunOS 4.1.3 (security patch is 100305)
    O sig011w /usr/etc/lpc 8b80eced 1639b5f4 7163915b 96e0f744 3b41dcff b451e72f 24050110 6ab40ffa SunOS 4.1.3 (security patch is 100305)
    O sig011w /usr/ucb/lprm bb718e53 0337f24e 03750224 a5794806 4097d432 f4b6d0e3 e751c37a 9b49973d SunOS 4.1.3 (security patch is 100305)
    O sig011w /usr/bin/lpstat 120f9e11 e46305da 0627aec7 628a578b d41f4cf2 db0021e9 b91b1e15 06b9f22f SunOS 4.1.3 (security patch is 100305)
    O sig011w /usr/lib/lpd 2ae10db0 c5dbc9ef 093234b4 b7cf9cfa d041e6da b2732420 ce4cd459 d053e575 Sun Patch ID 100305-06 (current is 100305-13)
    O sig011w /usr/etc/lpc 73990de8 0b7c8861 6100cfd7 47cff465 6e542c05 2eaa2461 a0dce759 73748ac2 Sun Patch ID 100305-06 (current is 100305-13)
    O sig011w /usr/ucb/lpr 4ef627c5 8389c520 8c72ca5f 410c9006 b1cf0587 76cca697 28ea21bd 968f45bb Sun Patch ID 100305-06 (current is 100305-13)
    O sig011w /usr/etc/lpc 2a9c4323 367d2b18 fa5d707d 5151ce38 58dbbd3a 6e2f4d56 328d702d c66fd5d7 Sun Patch ID 100305-10 (current is 100305-13)
    O sig011w /usr/lib/lpd 07991c5d 9893cec5 ef97cd63 108abd5b dc964419 56050862 5f4e3cf7 33ccba33 Sun Patch ID 100305-10 (current is 100305-13)
    O sig011w /usr/ucb/lpr 3c98c23e e060fa3b 69d7cbbd a9f97eed 438cffea 6f854d93 5ef3812c bad8e310 Sun Patch ID 100305-10 (current is 100305-13)
    # No change from 10 to 11
    #O /usr/bin/lpstat 327233e1 90d1fa8e 2fb6fe23 25a144ab 48db00bd b99e301d 9494cd9c 5068c8ab Sun Patch ID 100305-10 (current is 100305-13)
    #
    #
    #
    Y .       /usr/lib/sendmail 8bd5caae9469049b40d3593a6bebeea4 Sun Patch ID 100377-08
    Y .       /usr/lib/sendmail ae75f109d5628672f1630b113e62d360 Sun Patch ID 100377-08
    Y .       /usr/lib/sendmail.mx ae75f109d5628672f1630b113e62d360 Sun Patch ID 100377-08
    #
    O sig016w /usr/lib/sendmail f04d735c90809b55ee00de8ee891e851 Sun Patch ID 100377-07 (current is 100377-08)
    O sig016w /usr/lib/sendmail.mx bb84836081c7062e2639da4a9e4dff5e Sun Patch ID 100377-07 (current is 100377-08)
    O sig016w /usr/lib/sendmail bb84836081c7062e2639da4a9e4dff5e /usr/lib/sendmail.mx from Sun Patch ID 100377-07 (current is 100377-08) 
    O sig016w /usr/lib/sendmail d2f6e9ca b118957e d4b290f5 0fa97657 e085eaba 4fec490e 9bd4293c 5c61ec2d /usr/lib/sendmail.mx from Sun Patch ID 100377-05 (current is 100377-08)
    O sig016w /usr/lib/sendmail.mx d2f6e9ca b118957e d4b290f5 0fa97657 e085eaba 4fec490e 9bd4293c 5c61ec2d Sun Patch ID 100377-05 (current is 100377-08)
    O sig016w /usr/lib/sendmail 291e0191 464bea52 094d213b 370b7022 35917a00 59c09dfc d4fdff74 9df459b9 Sun Patch ID 100377-05 (current is 100377-08)
    O sig009w /usr/lib/sendmail e48af071 8aad56e4 1a811631 6cb5e7fd 7a231bdc 8d63451f e1dac602 36ca76bc SunOS 4.1.3 (security patch is 100377)
    O sig009w /usr/lib/sendmail 4d9abee9 372dfaa0 3de510b6 0b5f4b80 742412da 96a67840 4fc40347 7d76200e /usr/lib/sendmail.mx from SunOS 4.1.3 (security patch is 100377)
    O sig009w /usr/lib/sendmail.mx 4d9abee9 372dfaa0 3de510b6 0b5f4b80 742412da 96a67840 4fc40347 7d76200e SunOS 4.1.3 (security patch is 100377)
    O sig009w /usr/lib/sendmail a992c230 aead192f 3c413509 bcd22a13 94c81901 db304a83 7521f640 71f275ae Sun Patch ID 100377-04 (current is 100377-08)
    O sig009w /usr/lib/sendmail 571ee183 54da7e23 abffdb8f 8bf28180 6b5daf1c 49d935cf 3ae92928 20e26504 /usr/lib/sendmail.mx from Sun Patch ID 100377-04 (current is 100377-08)
    O sig009w /usr/lib/sendmail.mx 571ee183 54da7e23 abffdb8f 8bf28180 6b5daf1c 49d935cf 3ae92928 20e26504 Sun Patch ID 100377-04 (current is 100377-08)
    #
    #
    Y .       /usr/lib/expreserve 416cf865 f308e029 62994394 85b7b54c cca36972 9b559d0c 82b0c2f1 cca6f7a0 Sun Patch ID 101080-01
    O sig014w /usr/lib/expreserve 3189cdd9 d14365b8 e2b67c8d 78f9a38e acbe1d0c 6f750b81 8e8d3262 7bc47f49 SunOS 4.1.3 (security patch is 101080)
    #
    #
    #
    Y . /usr/bin/mail 8768d8fd823bf89a4aa818fbae88a0cd Sun Patch ID 100224-06
    Y . /usr/bin/rmail 741d2bf81e6f940fe6ed4b69842a8bd8 Sun Patch ID 100224-06
    O sig015w /usr/bin/mail 8212031f6d4b4b0b8798865ef265d9a2 Sun Patch ID 100224-05 (current is 100224-06)
    O sig015w /usr/bin/rmail 741d2bf81e6f940fe6ed4b69842a8bd8 Sun Patch ID 100224-05 (current is 100224-06)
    O sig015w /usr/bin/mail 5a8787d7bd7d436fc164ad2c6707bf88 SunOS 4.1.3 (security patch is 100224)
    O sig015w /usr/bin/rmail fd6e42877f68bf337f21dcc7e859a918 SunOS 4.1.3 (security patch is 100224)
    #
    #
    #
    Y .       /usr/bin/sh e62c686f43e934d5058e714e5347ca99 SunOS 4.1.3
    Y .       /usr/bin/csh eb11ad9c613508fb18b35cabc752efde SunOS 4.1.3
    Y .       /usr/bin/sync 6defbca009dc5e411331387e3f01c671 SunOS 4.1.3
    #
    # No change from -01 to -02 for 4.1.3
    #
    Y .       /usr/kvm/modload f589cf8e213993f7df14fde98b7944b7 Sun Patch ID 101200-02
    O sig018w /usr/kvm/modload 1b1bd9b0ff4e31e12037b0a0aae25f92 SunOS 4.1.3 (security patch is 101200)
    #
    #
    #
    Y .       /usr/openwin/bin/loadmodule 0a9216dfe1a8826c4d5e426869370d0a Sun Patch ID 100448-02
    O ca9122f /usr/openwin/bin/loadmodule 0a309572264fc3da2e81c9b2ef4ccbbf Sun Patch ID 100448-01 (current is 100448-02)
    O ca9122f /usr/openwin/bin/loadmodule 5e62adcc ac948154 e45237db 33b9153d 0e0ccad8 2de71646 84486f31 1b32eda8 OpenWindows 3.0 (security patch is 100448)
    Y . /usr/etc/in.comsat fa885fbdacfcc6d3d70d4dd4a7d732c1 Sun Patch ID 100272-07 [sun4/c]
    Y . /usr/etc/in.comsat 04dcdd8cb2977923def64cf4b7bb5f58 Sun Patch ID 100272-07 [sun4m]
    O sig022w /usr/etc/in.comsat e99ad90c6edc8a2640685311a6f19c56 SunOS 4.1.3 (security patch is 100272-07)
    Y . /usr/etc/dump 2e686fbdd51c392e049e56c35dd3072e Sun Patch ID 100593-03 [sun4/c]
    Y . /usr/etc/dump 2d58b05086b32db5472b67efa8b91249 Sun Patch ID 100593-03 [sun4m]
    O sig022w /usr/etc/dump f40ddfa10fb66429e62d4527a5bc343e SunOS 4.1.3 (security patch is 100593-03)
    Y . /usr/etc/syslogd fa5e33bb4024015834084be6bfccf5d9 Sun Patch ID 100909-02 [sun4]
    Y . /usr/etc/syslogd 537b43e8f3032ca68a9789e308d950cf Sun Patch ID 100909-02 [sun4c]
    Y . /usr/etc/syslogd 6ac558d4a65eb41d8d80090c9b833a3f Sun Patch ID 100909-02 [sun4m]
    O sig022w /usr/etc/syslogd 6bf0186c8349fa004358aab728ff43eb SunOS 4.1.3 (security patch is 100909-02)
    Y . /usr/etc/in.talkd f2f6cc056a4a00f31758c15acabc4c2f Sun Patch ID 101480-01 [sun4/c]
    Y . /usr/etc/in.talkd b8e83781e037ddbe66f7845b5aeec4e5 Sun Patch ID 101480-01 [sun4m]
    O sig022w /usr/etc/in.talkd 3b54f30924689476b2d41c93a05526cf SunOS 4.1.3 (security patch is 101480-01)
    Y . /usr/etc/shutdown 6b63372e9e7132c52a96e399dc0a9aed Sun Patch ID 101481-01 [sun4/c]
    Y . /usr/etc/shutdown 73443af59e4503c33a4bbfcdbf1487ef Sun Patch ID 101481-01 [sun4m]
    O sig022w /usr/etc/shutdown 957a8bcd43a7b8eb6f1ebd8cb99a0943 SunOS 4.1.3 (security patch is 101481-01)
    Y . /usr/bin/write 752386118d2110a73a6f13125e2075a0 Sun Patch ID 101482-01 [sun4/c]
    Y . /usr/bin/write 044fd911ca786790bb3beec7e814e61c Sun Patch ID 101482-01 [sun4m]
    O sig022w /usr/bin/write ab7a3540fcf7d8a33989296d7e746545 SunOS 4.1.3 (security patch is 101482-01)
    tiger-3.2.3/systems/SunOS/4/4.1.3C/0000755000175000017500000000000011306441046014705 5ustar  pacopacotiger-3.2.3/systems/SunOS/4/4.1.3C/signatures0000644000175000017500000003503407650724332017032 0ustar  pacopaco#
    #@DEST=SunOS/4/4.1.3C
    #@CONFIG=SunOS/4
    #
    Y .       /usr/bin/login b6d013403c54949c0e476afd966ef261 Sun Patch ID 100630-01
    Y .       /usr/bin/login 0d52a2d5 ec4bee3b cbbbea64 8b96c8fd 77022448 c5142a46 f254cf09 474489e1 Sun Patch ID 100631-01
    O sig006w /usr/bin/login 9ec4f81b 39a28e3c 26b929ac f89f79e3 3fe9d56c f8192195 98b80da3 7220d937 Sun Patch ID 100633-01 (obsoleted by 100632)
    O sig006w /usr/bin/login ec56da93 39ff118f a0e52394 43c4417f 6dc95411 6bbcb208 8b426449 5567b272 SunOS 4.1.3 (security patch is 100630)
    N sig007a /usr/bin/login 1aa8fe34 6a0ef1f7 6fc46ccb 1404cdeb 3a00872e 006dffc2 9e5b070c 31bac62b contains a backdoor (0892).
    N sig007a /usr/bin/login 59b3d2647a90f070159393bff6a67dba contains a backdoor (1293).
    #
    Y .       /usr/5bin/su fcde9cae281869964f794bafcc83a5dc Sun Patch ID 100630-02
    O sig019w /usr/5bin/su 65ca43d7 3130938c d59811b5 33a2a088 64760dcb 5bfc45e1 f4625979 cf06759a Sun Patch ID 100630-01 (current is 100630-02)
    O sig006w /usr/5bin/su a0951761 e8c2afc1 09ec172a 44a13bab 5ee4d1a3 58e8eca3 bbd45e49 890cc94d Sun Patch ID 100633-01 (obsoleted by 100632)
    O sig006w /usr/5bin/su b2425a27 e6e67541 786d76b9 6fba8110 47727f30 412daab5 a0647e8b 670dfe6e SunOS 4.1.3 (security patch is 100630)
    #
    # Latest is 100630-01
    #
    #Y .       /usr/bin/su 9634015c a4f05802 e205110e 5550f322 5321be3a 85b12ea9 16b6eb27 0f6c3bd4 Sun Patch ID 100630-01
    Y .       /usr/bin/su 01a06e1cf3b7272cfe28aa548037f578 Sun Patch ID 100630-01
    O sig006w /usr/bin/su f7be0a3d c533db79 57c1273f 8959b1fc 59a814d8 b5c441c4 47774863 1c5e4340 Sun Patch ID 100633-01 (obsoleted by 100632)
    O sig006w /usr/bin/su 6fca9eb0 10851fee d0241493 8b73b51d 3c3f7c16 f9658236 33462b33 cb288f67 SunOS 4.1.3 (security patch is 100630)
    #
    #
    #
    Y .       /usr/etc/rpc.mountd baf40fa8 8163d716 a9fee3a6 97918f90 ac446b7d 99684230 d486f76c 63917fac Sun Patch ID 100296-04
    O sig012w /usr/etc/rpc.mountd e5c34007 f8142ca7 fb98322a 7a6d6c9a 1220e3f9 01769958 f58b9ac1 cfcaa2be SunOS 4.1.3 (security patch is 100296)
    #
    # Latest is 100482-03
    #
    Y .       /usr/etc/portmap 9d146970 d0e93e9a fcb43eee 9f872c9c aeea7afd 224e6a38 9b2726ca 4cfe0645 Sun Patch ID 100482-04
    O sig008w /usr/etc/portmap cbca66ba 7fb67b4b d852f7e9 f4f05922 cbc8b4d9 b1fd0cb9 ebf9c5be c3a199b0 SunOS 4.1.3 (security patch is 100482)
    # Really for < 4.1.3, but just in case
    O sig008w /usr/etc/portmap 2b070bc2 787357cf 3e8a066a 5803fa07 ba94dc25 a38ac11a 6c95ef1b fab9da4d Sun Patch ID 100482-02 (current is 100482-04)
    O sig008w /usr/etc/portmap 76d53be0 64c05b7b e778cded ae614f7a 9140bfb7 fe9ec46e e6b252f3 b61b6eb1 Sun Patch ID 100482-03 (current is 100482-04)
    #
    # Latest is 100482-03
    #
    Y .       /usr/etc/ypserv d9bb6d1d bd6cd225 ba6a77e7 73aba897 d33e42a8 56cceba6 b51f9e15 42505e1e Sun Patch ID 100482-04
    O sig008w /usr/etc/ypserv 7aa8cebe e7667557 8c336ba6 3465fa02 7215e5b8 e8e085a9 c8818ce1 b3e02b34 SunOS 4.1.3 (security patch is 100482)
    # Really for < 4.1.3, but just in case
    O sig008w /usr/etc/ypserv f436bdcd 6a5dacad 5df94fc6 6ee51ed7 be6a6e4e 9832f776 74017948 18eceed8 Sun Patch ID 100482-02 (current is 100482-04)
    O sig008w /usr/etc/ypserv 1736f93f 26a7fcf4 a9f01471 b0b0b078 3de3733c 96ce9056 7778e283 5775bdd6 Sun Patch ID 100482-03 (current is 100482-04)
    #
    # Latest is 100482-03
    #
    Y .       /usr/etc/ypxfrd 27498b15 0ddf6399 07fca5c8 25803af3 83455bad 526aced0 a366842e 9dd97d5d Sun Patch ID 100482-04
    O sig008w /usr/etc/ypxfrd 7e7b4169 140daa09 6e8188f4 b412d5ca 7c32eacb 24663c55 65963b7c e47210dc SunOS 4.1.3 (security patch is 100482)
    # Really for < 4.1.3, but just in case
    O sig008w /usr/etc/ypxfrd 1880bd0f 41554f47 15a453f0 2a5313f8 db2cf23b eb9428cd fc8dd9d6 55674c5a Sun Patch ID 100482-02 (current is 100482-04)
    O sig008w /usr/etc/ypxfrd ab23f5b7 2ae6f46b de59948c 2fce24f1 e32c5bf5 d85b57e3 a776de73 692aee23 Sun Patch ID 100482-03 (current is 100482-04)
    #
    # Latest is?
    #
    Y .       /usr/ucb/rdist 9044001a 6fd26174 c2dd7674 ffbd4290 8af17619 ee9c8bc1 73f90eba 2b2f3329 Sun Patch ID 100383-06
    O sig010w /usr/ucb/rdist 1af7e0bc 369e15f0 87c11609 1479ec11 057ec97e a2066aa4 355da92c af75e75b SunOS 4.1.3 (security patch is 100383)
    O sig010w /usr/ucb/rdist 0995a6ec 53bc67fa eb6d423f 11b1c9eb e5b519b6 c0d0649b ba7bb806 c3fcbbd9 Sun Patch ID 100383-03 (current is 100383-06)
    # -04/4.1.2 && -05/4.1.3 are the same
    O sig010w /usr/ucb/rdist e10ba372 06a1f448 c3b4891c 565ee700 e45d1ecd 88a664eb 877c430a 29a522bd Sun Patch ID 100383-05 (current is 100383-06)
    #
    # Anything for these?
    #
    Y .       /usr/etc/rpc.yppasswdd 841291dc 9df423ce 04ade3a4 cf35e9ee 79f81e6f 84b9e890 d86a047c 0c451165 SunOS 4.1.3
    Y .       /usr/etc/in.fingerd 08920748 e920a6ea 32624d01 637e0d85 07d46b76 a44d3005 cc53f667 dc29a240 SunOS 4.1.3
    Y .       /usr/etc/in.ftpd 3018d379 7262b86f 1ec1457a 947e33b3 3cca2d46 ec4f96be 6f46204d e9dc1959 SunOS 4.1.3
    Y .       /usr/etc/in.rexecd a70d4ab9 a4a83411 a030f835 fe2df350 9d87eb39 3e6402c7 51b99070 402be209 SunOS 4.1.3
    Y .       /usr/etc/in.rlogind 5eb7de8c 120fcc68 e2e5bb32 88b43364 e1ec5c80 7c288d07 dc106f10 928b7f5f SunOS 4.1.3
    Y .       /usr/etc/in.rshd 06198bbe bc8d217d 8f81ed1d 0e82ecd9 6e4bebe7 c1adbe0c 28764252 cb1c7f49 SunOS 4.1.3
    Y .       /usr/etc/in.telnetd a64a53dc b21a2fca 7ae62494 7348c31e 04d183f8 12d0f532 94eb6cec 7b25dfaa SunOS 4.1.3
    Y .       /usr/etc/in.tftpd 31552f45 e59ebf1e cbc5933e 12f774a6 7df6f1cf 19588c09 9c275b0b fffeb717 SunOS 4.1.3
    Y .       /usr/etc/in.uucpd cbd02a1a 0c5119c1 ddbcd21e c7ee23ad 51362bc2 7f0622f4 19227b25 672dc869 SunOS 4.1.3
    #
    # Any security patches for these?
    #
    Y .       /usr/bin/passwd bba8cc2f 08590cdd 59a3344c d0404cb8 9eb35b5b 474954fc e7742608 0b739b61 SunOS 4.1.3
    Y .       /usr/ucb/rlogin 26495825 953e423f 636633d9 1689723f 0e541ad0 0328695e ad225f13 5928905b SunOS 4.1.3
    Y .       /usr/ucb/rsh 1ef56a35 87cb92aa 39f9a826 a6002fac 7bcac4a1 d8b3e1d6 f3f0b6c6 feb1c91a SunOS 4.1.3
    #Y /usr/ucb/rsh b4932f9d 5963eb67 ea161f73 39605241 7e0ea5c9 0a6786fc eb8070f2 0b2e1f62 Sun Patch ID 100527-01 (optional)
    Y .       /usr/ucb/telnet 6c38f2d8 32630abf 740caaec 8bf6a7ca 83ced325 c26d65cd 96f7272d 58e32120 SunOS 4.1.3
    Y .       /usr/ucb/ftp 5d6183b8 0ed9ebd9 5d70669a fd18f8b4 cd43ed65 357c176c 560b4240 226615cb SunOS 4.1.3
    #
    # Current patch is 100305-13
    #
    Y .       /usr/bin/cancel fddc28bd52a2c5481a774cf82eb22bb1 Sun Patch ID 100305-13
    Y .       /usr/etc/lpc 0e39a92a6585e5ce97accc4e5e9b6826 Sun Patch ID 100305-13
    Y .       /usr/lib/lpd bd5c62122f515eb29965e90c171acee4 Sun Patch ID 100305-13
    Y .       /usr/ucb/lpq ab7412817bb0b7f686b624e4ddcf0a7a Sun Patch ID 100305-13
    Y .       /usr/ucb/lpr 40316c72c41ba37c8939db22e53231ca Sun Patch ID 100305-13
    Y .       /usr/ucb/lprm 778d5600bd298536ac2991962e50772f Sun Patch ID 100305-13
    Y .       /usr/bin/lpstat a202ee19f6006168fa2fcfeb3cc84817 Sun Patch ID 100305-13
    Y .       /usr/etc/pac 9605b5936cd3e46d668ab942eb5818a2 Sun Patch ID 100305-13
    #
    O sig011w /usr/etc/lpc c8731e02 e9957210 c579025f c1c5dd73 7a2c938e 202c8e6a ea9c52c6 7ec7787e Sun Patch ID 100305-11 (current is 100305-13)
    O sig011w /usr/lib/lpd 3f3c5f42 2a14041d 84f2dd4a a428cf7b db6fec37 c1605060 edec2904 c516063c Sun Patch ID 100305-11 (current is 100305-13)
    O sig011w /usr/ucb/lpr 4feafe95 c5a06ff4 9a210dd9 8f8895cf b525b2c0 0defd97f 5a64cf69 fb85853e Sun Patch ID 100305-11 (current is 100305-13)
    O sig011w /usr/ucb/lprm 00ffd6fe f728696a 50f26e88 62c88120 645d9958 64469003 064d44c0 e75309a8 Sun Patch ID 100305-11 (current is 100305-13)
    O sig011w /usr/bin/lpstat 327233e1 90d1fa8e 2fb6fe23 25a144ab 48db00bd b99e301d 9494cd9c 5068c8ab Sun Patch ID 100305-11 (current is 100305-13)
    #
    O sig011w /usr/etc/pac 998ced0df9b1bb738234267c9d5f0006 SunOS 4.1.3 (security patch is 100305)
    O sig011w /usr/bin/cancel b5a713873e893a363e66bb1f21925048 SunOS 4.1.3 (security patch is 100305)
    O sig011w /usr/ucb/lpq f0477f19e218bb153aa58c58f156ba80 SunOS 4.1.3 (security patch is 100305)
    O sig011w /usr/lib/lpd d0f71a50 3178c387 b09394f1 a0af4c97 ca50b85e e18561cf d272c763 0f6ca9f3 SunOS 4.1.3 (security patch is 100305)
    O sig011w /usr/ucb/lpr 9bf79eec b0efade0 49a731d0 6f27e015 e019ed9a 9fe7b112 6f9c6d04 1b39cee8 SunOS 4.1.3 (security patch is 100305)
    O sig011w /usr/etc/lpc 8b80eced 1639b5f4 7163915b 96e0f744 3b41dcff b451e72f 24050110 6ab40ffa SunOS 4.1.3 (security patch is 100305)
    O sig011w /usr/ucb/lprm bb718e53 0337f24e 03750224 a5794806 4097d432 f4b6d0e3 e751c37a 9b49973d SunOS 4.1.3 (security patch is 100305)
    O sig011w /usr/bin/lpstat 120f9e11 e46305da 0627aec7 628a578b d41f4cf2 db0021e9 b91b1e15 06b9f22f SunOS 4.1.3 (security patch is 100305)
    O sig011w /usr/lib/lpd 2ae10db0 c5dbc9ef 093234b4 b7cf9cfa d041e6da b2732420 ce4cd459 d053e575 Sun Patch ID 100305-06 (current is 100305-13)
    O sig011w /usr/etc/lpc 73990de8 0b7c8861 6100cfd7 47cff465 6e542c05 2eaa2461 a0dce759 73748ac2 Sun Patch ID 100305-06 (current is 100305-13)
    O sig011w /usr/ucb/lpr 4ef627c5 8389c520 8c72ca5f 410c9006 b1cf0587 76cca697 28ea21bd 968f45bb Sun Patch ID 100305-06 (current is 100305-13)
    O sig011w /usr/etc/lpc 2a9c4323 367d2b18 fa5d707d 5151ce38 58dbbd3a 6e2f4d56 328d702d c66fd5d7 Sun Patch ID 100305-10 (current is 100305-13)
    O sig011w /usr/lib/lpd 07991c5d 9893cec5 ef97cd63 108abd5b dc964419 56050862 5f4e3cf7 33ccba33 Sun Patch ID 100305-10 (current is 100305-13)
    O sig011w /usr/ucb/lpr 3c98c23e e060fa3b 69d7cbbd a9f97eed 438cffea 6f854d93 5ef3812c bad8e310 Sun Patch ID 100305-10 (current is 100305-13)
    # No change from 10 to 11
    #O /usr/bin/lpstat 327233e1 90d1fa8e 2fb6fe23 25a144ab 48db00bd b99e301d 9494cd9c 5068c8ab Sun Patch ID 100305-10 (current is 100305-13)
    #
    #
    #
    Y .       /usr/lib/sendmail 8bd5caae9469049b40d3593a6bebeea4 Sun Patch ID 100377-08
    Y .       /usr/lib/sendmail ae75f109d5628672f1630b113e62d360 Sun Patch ID 100377-08
    Y .       /usr/lib/sendmail.mx ae75f109d5628672f1630b113e62d360 Sun Patch ID 100377-08
    #
    O sig016w /usr/lib/sendmail f04d735c90809b55ee00de8ee891e851 Sun Patch ID 100377-07 (current is 100377-08)
    O sig016w /usr/lib/sendmail.mx bb84836081c7062e2639da4a9e4dff5e Sun Patch ID 100377-07 (current is 100377-08)
    Y .       /usr/lib/sendmail bb84836081c7062e2639da4a9e4dff5e /usr/lib/sendmail.mx from Sun Patch ID 100377-07 (current is 100377-08) 
    O sig016w /usr/lib/sendmail d2f6e9ca b118957e d4b290f5 0fa97657 e085eaba 4fec490e 9bd4293c 5c61ec2d /usr/lib/sendmail.mx from Sun Patch ID 100377-05 (current is 100377-08)
    O sig016w /usr/lib/sendmail.mx d2f6e9ca b118957e d4b290f5 0fa97657 e085eaba 4fec490e 9bd4293c 5c61ec2d Sun Patch ID 100377-05 (current is 100377-08)
    O sig016w /usr/lib/sendmail 291e0191 464bea52 094d213b 370b7022 35917a00 59c09dfc d4fdff74 9df459b9 Sun Patch ID 100377-05 (current is 100377-08)
    O sig009w /usr/lib/sendmail e48af071 8aad56e4 1a811631 6cb5e7fd 7a231bdc 8d63451f e1dac602 36ca76bc SunOS 4.1.3 (security patch is 100377)
    O sig009w /usr/lib/sendmail 4d9abee9 372dfaa0 3de510b6 0b5f4b80 742412da 96a67840 4fc40347 7d76200e /usr/lib/sendmail.mx from SunOS 4.1.3 (security patch is 100377)
    O sig009w /usr/lib/sendmail.mx 4d9abee9 372dfaa0 3de510b6 0b5f4b80 742412da 96a67840 4fc40347 7d76200e SunOS 4.1.3 (security patch is 100377)
    O sig009w /usr/lib/sendmail a992c230 aead192f 3c413509 bcd22a13 94c81901 db304a83 7521f640 71f275ae Sun Patch ID 100377-04 (current is 100377-08)
    O sig009w /usr/lib/sendmail 571ee183 54da7e23 abffdb8f 8bf28180 6b5daf1c 49d935cf 3ae92928 20e26504 /usr/lib/sendmail.mx from Sun Patch ID 100377-04 (current is 100377-08)
    O sig009w /usr/lib/sendmail.mx 571ee183 54da7e23 abffdb8f 8bf28180 6b5daf1c 49d935cf 3ae92928 20e26504 Sun Patch ID 100377-04 (current is 100377-08)
    #
    #
    Y .       /usr/lib/expreserve 416cf865 f308e029 62994394 85b7b54c cca36972 9b559d0c 82b0c2f1 cca6f7a0 Sun Patch ID 101080-01
    O sig014w /usr/lib/expreserve 3189cdd9 d14365b8 e2b67c8d 78f9a38e acbe1d0c 6f750b81 8e8d3262 7bc47f49 SunOS 4.1.3 (security patch is 101080)
    #
    #
    #
    Y . /usr/bin/mail 8768d8fd823bf89a4aa818fbae88a0cd Sun Patch ID 100224-06
    Y . /usr/bin/rmail 741d2bf81e6f940fe6ed4b69842a8bd8 Sun Patch ID 100224-06
    O sig015w /usr/bin/mail 8212031f6d4b4b0b8798865ef265d9a2 Sun Patch ID 100224-05 (current is 100224-06)
    O sig015w /usr/bin/rmail 741d2bf81e6f940fe6ed4b69842a8bd8 Sun Patch ID 100224-05 (current is 100224-06)
    O sig015w /usr/bin/mail 5a8787d7bd7d436fc164ad2c6707bf88 SunOS 4.1.3 (security patch is 100224)
    O sig015w /usr/bin/rmail fd6e42877f68bf337f21dcc7e859a918 SunOS 4.1.3 (security patch is 100224)
    Y .       /usr/bin/sh e62c686f43e934d5058e714e5347ca99 SunOS 4.1.3
    Y .       /usr/bin/csh eb11ad9c613508fb18b35cabc752efde SunOS 4.1.3
    Y .       /usr/bin/sync 6defbca009dc5e411331387e3f01c671 SunOS 4.1.3
    #
    # No change from -01 to -02 for 4.1.3
    #
    Y .       /usr/kvm/modload f589cf8e213993f7df14fde98b7944b7 Sun Patch ID 101200-02
    O sig018w /usr/kvm/modload 1b1bd9b0ff4e31e12037b0a0aae25f92 SunOS 4.1.3 (security patch is 101200)
    #
    #
    #
    Y .       /usr/openwin/bin/loadmodule 0a9216dfe1a8826c4d5e426869370d0a Sun Patch ID 100448-02
    O ca9122f /usr/openwin/bin/loadmodule 0a309572264fc3da2e81c9b2ef4ccbbf Sun Patch ID 100448-01 (current is 100448-02)
    O ca9122f /usr/openwin/bin/loadmodule 5e62adcc ac948154 e45237db 33b9153d 0e0ccad8 2de71646 84486f31 1b32eda8 OpenWindows 3.0 (security patch is 100448)
    #
    Y . /usr/etc/in.comsat fa885fbdacfcc6d3d70d4dd4a7d732c1 Sun Patch ID 100272-07 [sun4/c]
    Y . /usr/etc/in.comsat 04dcdd8cb2977923def64cf4b7bb5f58 Sun Patch ID 100272-07 [sun4m]
    O sig022w /usr/etc/in.comsat e99ad90c6edc8a2640685311a6f19c56 SunOS 4.1.3C (security patch is 100272-07)
    Y . /usr/etc/dump 2e686fbdd51c392e049e56c35dd3072e Sun Patch ID 100593-03 [sun4/c]
    Y . /usr/etc/dump 2d58b05086b32db5472b67efa8b91249 Sun Patch ID 100593-03 [sun4m]
    O sig022w /usr/etc/dump f40ddfa10fb66429e62d4527a5bc343e SunOS 4.1.3C (security patch is 100593-03)
    Y . /usr/etc/syslogd fa5e33bb4024015834084be6bfccf5d9 Sun Patch ID 100909-02 [sun4]
    Y . /usr/etc/syslogd 537b43e8f3032ca68a9789e308d950cf Sun Patch ID 100909-02 [sun4c]
    Y . /usr/etc/syslogd 6ac558d4a65eb41d8d80090c9b833a3f Sun Patch ID 100909-02 [sun4m]
    O sig022w /usr/etc/syslogd 6bf0186c8349fa004358aab728ff43eb SunOS 4.1.3C (security patch is 100909-02)
    Y . /usr/etc/in.talkd f2f6cc056a4a00f31758c15acabc4c2f Sun Patch ID 101480-01 [sun4/c]
    Y . /usr/etc/in.talkd b8e83781e037ddbe66f7845b5aeec4e5 Sun Patch ID 101480-01 [sun4m]
    O sig022w /usr/etc/in.talkd 3b54f30924689476b2d41c93a05526cf SunOS 4.1.3C (security patch is 101480-01)
    Y . /usr/etc/shutdown 6b63372e9e7132c52a96e399dc0a9aed Sun Patch ID 101481-01 [sun4/c]
    Y . /usr/etc/shutdown 73443af59e4503c33a4bbfcdbf1487ef Sun Patch ID 101481-01 [sun4m]
    O sig022w /usr/etc/shutdown 957a8bcd43a7b8eb6f1ebd8cb99a0943 SunOS 4.1.3C (security patch is 101481-01)
    Y . /usr/bin/write 752386118d2110a73a6f13125e2075a0 Sun Patch ID 101482-01 [sun4/c]
    Y . /usr/bin/write 044fd911ca786790bb3beec7e814e61c Sun Patch ID 101482-01 [sun4m]
    O sig022w /usr/bin/write ab7a3540fcf7d8a33989296d7e746545 SunOS 4.1.3C (security patch is 101482-01)
    tiger-3.2.3/systems/SunOS/4/4.1.4/0000755000175000017500000000000011306441046014603 5ustar  pacopacotiger-3.2.3/systems/SunOS/4/4.1.4/signatures0000644000175000017500000002377707650724332016743 0ustar  pacopaco#
    #     tiger - A UN*X security checking system
    #     Copyright (C) 1993-1995 Douglas Lee Schales, David K. Hess, David R. Safford
    #
    #     Please see the file `COPYING' for the complete copyright notice.
    #
    # SunOS/4/4.1.4/signatures - 02/21/1995
    #
    #-----------------------------------------------------------------------------
    #
    #
    #@DEST=SunOS/4/4.1.4
    #@CONFIG=SunOS/4
    #
    # Generated 1995/02/21 dls
    #
    Y .       /usr/5lib/libc.a 59564a4e13bbb5e85b4294348b4e89f1 SunOS 4.1.4
    Y .       /usr/5lib/libc.sa.2.9 596defb212cc8c26aa4b5f905a09c62b SunOS 4.1.4
    Y .       /usr/5lib/libc.so.2.9 cc3ea26809fd9f0a9f3bc89163468dfa SunOS 4.1.4
    Y .       /usr/5lib/libc_p.a 7dbe06991d84c921f7676e27c03d4028 SunOS 4.1.4
    Y .       /usr/bin/at fd04aff22e46da9408e7b0f8d3e9062a SunOS 4.1.4
    Y .       /usr/bin/atq df09c6e0ae45425e716a7a65d02ac3c2 SunOS 4.1.4
    Y .       /usr/bin/atrm d5a9b5e69e45e35c792bd2b0a56fdb70 SunOS 4.1.4
    Y .       /usr/bin/cancel 45fc8d4230cb400f8853df0ae4076efa SunOS 4.1.4
    Y .       /usr/bin/csh f8c1a91c2fb063b756e14b8734e06f65 SunOS 4.1.4
    Y .       /usr/bin/login 4e437a85e05f886ff5082ac58108d882 SunOS 4.1.4
    Y .       /usr/bin/lorder 771c6154148387b27e373509a9895c97 SunOS 4.1.4
    Y .       /usr/bin/lp 4545f16f6f6c97f2bb8c470344339d36 SunOS 4.1.4
    Y .       /usr/bin/lpstat b5e617320a3256134732d0adc47eaa33 SunOS 4.1.4
    Y .       /usr/bin/mail 7b8756a37046ffaac4796bd1c1c65307 SunOS 4.1.4
    Y .       /usr/bin/passwd 4993b83597e7b78f6dadaca38bf64a7a SunOS 4.1.4
    Y .       /usr/bin/sh 451056f590c0d9b050dd92c9f3dd953c SunOS 4.1.4
    Y .       /usr/bin/stty 40f9bde92be9d45bf844511067e46aea SunOS 4.1.4
    Y .       /usr/bin/su 7ef5c44b186798a32eb1dd8645e1d4a8 SunOS 4.1.4
    Y .       /usr/bin/sync 4c8a421150f254ec87cb737c114973b6 SunOS 4.1.4
    Y .       /usr/bin/time fe37fefcf892fc274776989948cfa47f SunOS 4.1.4
    Y .       /usr/bin/ypcat 837e627455433615e9a1bbb6e15349e5 SunOS 4.1.4
    Y .       /usr/bin/ypchfn 4993b83597e7b78f6dadaca38bf64a7a SunOS 4.1.4
    Y .       /usr/bin/ypchsh 4993b83597e7b78f6dadaca38bf64a7a SunOS 4.1.4
    Y .       /usr/bin/ypmatch c88389000039ef435747e647d3542b55 SunOS 4.1.4
    Y .       /usr/bin/yppasswd 4993b83597e7b78f6dadaca38bf64a7a SunOS 4.1.4
    Y .       /usr/bin/ypwhich 91e86eb99306b3fa34a1dab769c59461 SunOS 4.1.4
    Y .       /usr/etc/arp 2fa9c719529668515f82f3f877ca715a SunOS 4.1.4
    Y .       /usr/etc/cron ff541dbc881c6484324b84dce0b1bbca SunOS 4.1.4
    Y .       /usr/etc/ifconfig 71ac42458871da30affed3d145454c04 SunOS 4.1.4
    Y .       /usr/etc/in.comsat 5831f81874fa405eeefc1ec69ee1f116 SunOS 4.1.4
    Y .       /usr/etc/in.fingerd b9f3343aff8553ce7e19632b751d8dc9 SunOS 4.1.4
    Y .       /usr/etc/in.ftpd ced2e8cfe199607b07123ba25d5eadfc SunOS 4.1.4
    Y .       /usr/etc/in.named 8b6afe26fe80e8246f2bdad9b7cee256 SunOS 4.1.4
    Y .       /usr/etc/in.named-xfer 2cb89b6c2bce1528b7df4bfdc3bab5e5 SunOS 4.1.4
    Y .       /usr/etc/in.rexecd 0ca40ee9967204d372ca29dd4ba9d6da SunOS 4.1.4
    Y .       /usr/etc/in.rlogind 508ce964864811a0253a41a49895152b SunOS 4.1.4
    Y .       /usr/etc/in.routed e530b7629f63e2b620881b4da99c62b3 SunOS 4.1.4
    Y .       /usr/etc/in.rshd e5ca89c51427d917690fbcc1395507b4 SunOS 4.1.4
    Y .       /usr/etc/in.rwhod 2104577a216bb1ee087ff879e81d9d42 SunOS 4.1.4
    Y .       /usr/etc/in.talkd fdaca27c9144059aa98f135a0acb0cc3 SunOS 4.1.4
    Y .       /usr/etc/in.telnetd 831c59628b1197c612f19289a786eaeb SunOS 4.1.4
    Y .       /usr/etc/in.tftpd d21b378151ed5912115e6aeb95a5e5c2 SunOS 4.1.4
    Y .       /usr/etc/in.tnamed 146623065e48a866555319c25a30ad05 SunOS 4.1.4
    Y .       /usr/etc/in.uucpd 8404d0922a2fb8cc85ce4284ea734802 SunOS 4.1.4
    Y .       /usr/etc/inetd 90ef68b37e72506151750a780a694251 SunOS 4.1.4
    Y .       /usr/etc/init 0c9c5e6106e577a342a64e6a17c0cc3c SunOS 4.1.4
    Y .       /usr/etc/lpc d58fd60b06d09730fcb31d20d019438b SunOS 4.1.4
    Y .       /usr/etc/pac 5ed1b82ad79eef70c5a10d1b217a0e98 SunOS 4.1.4
    Y .       /usr/etc/portmap a93ad8329178b74bed8fa5805141f2ee SunOS 4.1.4
    Y .       /usr/etc/rarpd 3dbcfc063fcf2963a6c31f3f1a8d5383 SunOS 4.1.4
    Y .       /usr/etc/rpc.bootparamd 90d7233199c13b332508b4222ed610d8 SunOS 4.1.4
    Y .       /usr/etc/rpc.cmsd edd5e59a9ba607fe50a7088afde6bc3f SunOS 4.1.4
    Y .       /usr/etc/rpc.etherd 572b891b99c84ea06ac1705e6bf73c02 SunOS 4.1.4
    Y .       /usr/etc/rpc.lockd a41516c10c00351f152c6d0857b6a9f5 SunOS 4.1.4
    Y .       /usr/etc/rpc.mountd 703c9d73bc27df4ef6c4a47bd9744669 SunOS 4.1.4
    Y .       /usr/etc/rpc.pwdauthd 8afdfc2cc894ebdf43f22193a256800c SunOS 4.1.4
    Y .       /usr/etc/rpc.rexd df76d0c8f23c6b98791a8f5d05264870 SunOS 4.1.4
    Y .       /usr/etc/rpc.rquotad a90935937a3abe7b1c6242fabba64fe0 SunOS 4.1.4
    Y .       /usr/etc/rpc.rstatd deafa0c8d72e4f1e4969de106a0e22f7 SunOS 4.1.4
    Y .       /usr/etc/rpc.rusersd d1f44672fc933008001f65a387ac56de SunOS 4.1.4
    Y .       /usr/etc/rpc.rwalld 1db7ed476eb88dd302d9818e96afe73f SunOS 4.1.4
    Y .       /usr/etc/rpc.showfhd c02b12322da4c555d2b2c5e66839c45a SunOS 4.1.4
    Y .       /usr/etc/rpc.sprayd d05b4f5ce92da953dc76881182d96a15 SunOS 4.1.4
    Y .       /usr/etc/rpc.statd 3ad65cb47cd00bbe1e58b7cdfd5fafe0 SunOS 4.1.4
    Y .       /usr/etc/rpc.ttdbserverd fc8b169ee9f539f247fd0b2b03513905 SunOS 4.1.4
    Y .       /usr/etc/rpc.yppasswdd 4090612f06a549cd32df035925def5b5 SunOS 4.1.4
    Y .       /usr/etc/rpc.ypupdated 4a4549ced1cea7bc74a0bc0dc9dffd50 SunOS 4.1.4
    Y .       /usr/etc/showmount ab0395eae9e62cc800ea9c7aed858124 SunOS 4.1.4
    Y .       /usr/etc/shutdown 4530170f27270624d7c7d1c26de368df SunOS 4.1.4
    Y .       /usr/etc/syslogd e4f990216c6e999ebeb5981956ca250e SunOS 4.1.4
    Y .       /usr/etc/ypbind b45619670d1136e16ba1e13aa7c10c5d SunOS 4.1.4
    Y .       /usr/etc/ypserv a73f06b09fc2e0ce768ec9102ac4eebe SunOS 4.1.4
    Y .       /usr/etc/ypxfrd 5cde8b44417f1128ca81bd3a05a72e46 SunOS 4.1.4
    Y .       /usr/lib/crt0.o d8094538d81002aa96b29671f0d79f9f SunOS 4.1.4
    Y .       /usr/lib/expreserve d332f2a208cb96fbace758d814e1a2f2 SunOS 4.1.4
    Y .       /usr/lib/exrecover 30f6b9ed231c2c8704e1286b6743409a SunOS 4.1.4
    Y .       /usr/lib/gcrt0.o ca7931e86be870926e29ccdc70e37aae SunOS 4.1.4
    Y .       /usr/lib/libc.a b05e3a35f627f6b43a60851a6fb487a8 SunOS 4.1.4
    Y .       /usr/lib/libc.sa.1.9 2a35e5b7eaa9666b9a5773d92ac71b2f SunOS 4.1.4
    Y .       /usr/lib/libc.so.1.9 8edfeb4cfb2c22a435a5fe29d14c4e99 SunOS 4.1.4
    Y .       /usr/lib/lpd 24a6a91e8051a9adf42aeb6a933a2cd8 SunOS 4.1.4
    Y .       /usr/lib/newsyslog 7232b3b6da29c3c799dbfaee0ac01661 SunOS 4.1.4
    Y .       /usr/lib/rsh 451056f590c0d9b050dd92c9f3dd953c SunOS 4.1.4
    Y .       /usr/lib/sendmail 25284f7969805edba9f0aabfe0508712 Sun Patch ID 102356-01
    Y .       /usr/lib/sendmail 7cc0561a362fbd17d8d1d4d8695ca536 Sun Patch ID 102356-01
    Y .       /usr/lib/sendmail.mx 7cc0561a362fbd17d8d1d4d8695ca536 Sun Patch ID 102356-01
    O .       /usr/lib/sendmail 96bc463764a66c2cc5fb4582c7e82d39 SunOS 4.1.4 (security patch is 102356)
    O .       /usr/lib/sendmail 7dfb19d38e6a7b7776d6a78f04b76bea SunOS 4.1.4 (security patch is 102356)
    O .       /usr/lib/sendmail.mx 7dfb19d38e6a7b7776d6a78f04b76bea SunOS 4.1.4 (security patch is 102356)
    Y .       /usr/ucb/ftp 7ef8cd94928509dfb9867b07ae039e08 SunOS 4.1.4
    Y .       /usr/ucb/lastcomm ccb6add2b967c1026833677d36af8131 SunOS 4.1.4
    Y .       /usr/ucb/lpq 5e6d326adb20f2f52d66bfd640d0e9b3 SunOS 4.1.4
    Y .       /usr/ucb/lpr 4545f16f6f6c97f2bb8c470344339d36 SunOS 4.1.4
    Y .       /usr/ucb/lprm e8a9b18c4a85d0675765817173e16e94 SunOS 4.1.4
    Y .       /usr/ucb/lptest 0d68fb1efbcc1fd94a67a434c2c19d5d SunOS 4.1.4
    Y .       /usr/ucb/mail 9003cc07d4c54448fadf0948bf7a6d70 SunOS 4.1.4
    Y .       /usr/ucb/netstat 15bfd27474585b48bcd9d5def568ecf3 SunOS 4.1.4
    Y .       /usr/ucb/rcp 2720e68ba8c48f8cd80f91587c34605a SunOS 4.1.4
    Y .       /usr/ucb/rdist 61bb4e10dc6f4fcc63036f733ad07f88 SunOS 4.1.4
    Y .       /usr/ucb/rlogin 1b6eac9de2be4f9e08b6a845e8ecae42 SunOS 4.1.4
    Y .       /usr/ucb/rsh 09954062ab76eeecfe22a3c7742fca03 SunOS 4.1.4
    Y .       /usr/ucb/telnet fddd56dc93822b7c57d24233b34f0e85 SunOS 4.1.4
    #
    # Sun4 specific signatures
    #
    Y .       /usr/boot/ifconfig 71ac42458871da30affed3d145454c04 SunOS 4.1.4 sun4
    Y .       /usr/stand/sh 451056f590c0d9b050dd92c9f3dd953c SunOS 4.1.4 sun4
    Y .       /usr/bin/arch 386fc04c78fa25f101760b0e8733bf6e SunOS 4.1.4 sun4
    Y .       /usr/kvm/arch 386fc04c78fa25f101760b0e8733bf6e SunOS 4.1.4 sun4
    Y .       /usr/kvm/ps a68a59549da6f6976046a2f543a5a9e8 SunOS 4.1.4 sun4
    Y .       /usr/ucb/ps a68a59549da6f6976046a2f543a5a9e8 SunOS 4.1.4 sun4
    Y .       /usr/kvm/modload 2bc5c23021221c7324606210b69cdaab SunOS 4.1.4 sun4
    Y .       /usr/etc/modload 2bc5c23021221c7324606210b69cdaab SunOS 4.1.4 sun4
    Y .       /usr/kvm/fuser 2fc72b4f7cc0a2c18a65254966548b7f SunOS 4.1.4 sun4
    Y .       /usr/etc/fuser 2fc72b4f7cc0a2c18a65254966548b7f SunOS 4.1.4 sun4
    #
    # Sun4c specific signatures
    #
    Y .       /usr/boot/ifconfig 71ac42458871da30affed3d145454c04 SunOS 4.1.4 sun4c
    Y .       /usr/stand/sh 451056f590c0d9b050dd92c9f3dd953c SunOS 4.1.4 sun4c
    Y .       /usr/bin/arch 386fc04c78fa25f101760b0e8733bf6e SunOS 4.1.4 sun4c
    Y .       /usr/kvm/arch 386fc04c78fa25f101760b0e8733bf6e SunOS 4.1.4 sun4c
    Y .       /usr/bin/ps 898ee9e4a0f2800eb17c64316527f34a SunOS 4.1.4 sun4c
    Y .       /usr/kvm/ps 898ee9e4a0f2800eb17c64316527f34a SunOS 4.1.4 sun4c
    Y .       /usr/etc/modload 7bf4f04dbddc17793473baab92adbbb7 SunOS 4.1.4 sun4c
    Y .       /usr/kvm/modload 7bf4f04dbddc17793473baab92adbbb7 SunOS 4.1.4 sun4c
    Y .       /usr/etc/fuser 2fc72b4f7cc0a2c18a65254966548b7f SunOS 4.1.4 sun4c
    Y .       /usr/kvm/fuser 2fc72b4f7cc0a2c18a65254966548b7f SunOS 4.1.4 sun4c
    #
    # Sun4m specific signatures
    #
    Y .       /usr/boot/ifconfig 71ac42458871da30affed3d145454c04 SunOS 4.1.4 sun4m
    Y .       /usr/stand/sh 451056f590c0d9b050dd92c9f3dd953c SunOS 4.1.4 sun4m
    Y .       /usr/bin/arch 386fc04c78fa25f101760b0e8733bf6e SunOS 4.1.4 sun4m
    Y .       /usr/kvm/arch 386fc04c78fa25f101760b0e8733bf6e SunOS 4.1.4 sun4m
    Y .       /usr/ucb/ps c571a27630c29c03d64446104f32805b SunOS 4.1.4 sun4m
    Y .       /usr/kvm/ps c571a27630c29c03d64446104f32805b SunOS 4.1.4 sun4m
    Y .       /usr/kvm/modload dedc25bd08f5caf596458891f3568fbd SunOS 4.1.4 sun4m
    Y .       /usr/etc/modload dedc25bd08f5caf596458891f3568fbd SunOS 4.1.4 sun4m
    Y .       /usr/kvm/fuser f69e944cf6296b7a8d4ea0d970cafbc6 SunOS 4.1.4 sun4m
    Y .       /usr/etc/fuser f69e944cf6296b7a8d4ea0d970cafbc6 SunOS 4.1.4 sun4m
    tiger-3.2.3/systems/SunOS/4/4.1.4/signatures.asc0000644000175000017500000000043207650724332017467 0ustar  pacopaco-----BEGIN PGP MESSAGE-----
    Version: 2.6
    
    iQCVAwUAL0yZcQs/EH0zOMOZAQFkhQP8Czi8XLvHskCDKYAvt+D/C/oAZyH4q1/L
    g7yalZwcGuIVsIDHTBcQCu/xGvrpRGDeeDfrGTpWJ76nfADR3v8WHvKlmjUNZTgl
    Ljhiz3lbLnY/LC76EL8BwdtbDZITAMX+BnrpWdxozBRFp7+GGz0SRTnf0t52Li30
    NJ3alHIQf5A=
    =xxW7
    -----END PGP MESSAGE-----
    tiger-3.2.3/systems/SunOS/5/0000755000175000017500000000000011306441063014137 5ustar  pacopacotiger-3.2.3/systems/SunOS/5/check_cron0000755000175000017500000000170007722712741016174 0ustar  pacopaco#!/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 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/check_cron - 06/14/93
    #
    # 08/26/2003 - jfs - Implemented ARSC use of cronspool variable
    #
    #-----------------------------------------------------------------------------
    #
    if [ -f "$CRONSPOOL/$1" ]; then
      echo "YES"
    else
      echo "NO"
    fi
    tiger-3.2.3/systems/SunOS/5/check0000755000175000017500000000723510016741461015153 0ustar  pacopaco#!/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/check - 08/09/2003
    # 
    # 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
    # 
    #-----------------------------------------------------------------------------
    #
    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 CAT GREP RM EGREP SED SGREP STRINGS || exit 1
      haveallfiles BASEDIR WORKDIR || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    
    haveallcmds CAT GREP RM EGREP SED SGREP STRINGS || exit 1
    haveallfiles BASEDIR WORKDIR || exit 1
    
    SYSTEMDIR=$BASEDIR/systems/SunOS/5
    
    # Generic check_ndd check
    [ "$Tiger_Check_NETWORKCONFIG" != 'N' ] && {
    #  echo "`$TIMECMD`> Checking for network (ndd) configuration..."
    	$BASEDIR/systems/default/check_ndd
    }
    
    # Checks implement by ARSC:
    # TODO: Consider modularisation of these checks
    if [ -x /usr/kvm/eeprom ]; then
      EEPROM="/usr/kvm/eeprom"
    else
      EEPROM="/usr/sbin/eeprom"
    fi
    if [ -x $EEPROM ]; then
      status=`$EEPROM |
            $GREP '^secur.*=' |
            $GREP -v 'badlogins' |
           $SED -e 's/^secur.*=\(.*\)$/\1/'`
    
      [ ! -n "$status" -o "$status" = "none" ] && {
      message WARN no-id "" "The PROM monitor is not in secure mode."
    }
    fi
    
    #
    # nfs:nfsportmon information due to Caspar Dik via comp.unix.solaris
    #
    nfsportmon=0
    $SED -e 's/\*.*$//' -e '/^$/d' -e 's/=/ = /' /etc/system |
    {
      while read _set var eq value
      do
        case "$var" in
          "nfs:nfs_portmon") nfsportmon="$value";;
        esac
      done
      [ "$nfsportmon" = 0 ] && {
        message WARN misc008w "" "NFS port checking disabled in kernel."
      }
    }
    
    if $SGREP "/sbin/sh.*/dev/console" /etc/rcS; then
      message WARN misc014w "" "/etc/rcS contains a vulnerability.  See explanation for details."
    fi
    
    [ -f /var/sadm/install/contents ] && {
      $EGREP '^/dev' /var/sadm/install/contents |
      while read file type x x x mode owner group pkg
      do
        [ "$type" = 'c' ] && {
          case "$file" in
           *clone*:ie|*clone*:le|*clone*:qe) {
             [ "$mode" != 0600 ] && {
               message WARN misc016w "" "$file is defined with mode \`$mode' in /var/sadm/install/contents; should be \`0600'."
             }
             [ "$owner" != root ] && {
               message WARN misc017w "" "$file is defined with owner \`$owner' in /var/sadm/install/contents; should be \`root'."
             }
           }
            ;;
          esac
        }
      done
    }
    
    
    tiger-3.2.3/systems/SunOS/5/5.1/0000755000175000017500000000000011306441047014444 5ustar  pacopacotiger-3.2.3/systems/SunOS/5/5.1/signatures0000644000175000017500000001314507650724675016601 0ustar  pacopaco#
    #     tiger - A UN*X security checking system
    #     Copyright (C) 1993 Douglas Lee Schales, David K. Hess, David R. Safford
    #
    #     Please see the file `COPYING' for the complete copyright notice.
    #
    # SunOS/5.1/signatures - 04/22/93
    #
    #-----------------------------------------------------------------------------
    #@DEST=SunOS/5/5.1/sun4
    #@CONFIG=SunOS/5
    #
    Y .       /usr/sbin/su  3fb72ef6 6f39ba3d 39dc2ada 758e41a1 624856f4 27698c46 61ca9f9f 2441d318 SunOS 5.1
    Y .       /usr/sbin/sulogin  4bb68333 46203871 a85d6fd1 786f55cd 65da09aa 43a9a97e 55f95b04 c550d4f8 SunOS 5.1
    Y .       /usr/bin/login  e7c67ccd db423400 6ba4be12 7fe22cb7 e4f297bf 5a81acf7 04504fec d6b089eb SunOS 5.1
    Y .       /usr/bin/passwd  73bccac9 98edfb65 c54e59d2 b53f41da 5d705ce3 2c973fa0 7e6bfdc0 ce073d2f SunOS 5.1
    Y .       /usr/bin/rdist  b10b8e83 bc3e7729 835b9561 6c881baa 75df6c3a b7f937a3 1cde9878 7fe0d208 SunOS 5.1
    Y .       /usr/bin/rlogin  607878a6 51c58af1 0049ea69 4b034966 8db6b460 da760295 78dce498 b849aa99 SunOS 5.1
    Y .       /usr/bin/rsh  b7d77110 d94507b7 5105a25d f33b6e3d c8206624 925d9f49 5ff39291 d63761d3 SunOS 5.1
    Y .       /usr/bin/su  99630788 30183532 8b30c3e0 67910b7d 4ac52a7d dd424e7e ee32a7bf 90a69b18 SunOS 5.1
    Y .       /usr/bin/yppasswd  2f34b5f0 46220ae6 ec13f698 488095c2 b8c41e3b 5346eb9c fd9a27d1 3398a533 SunOS 5.1
    Y .       /usr/sbin/in.comsat b047305903ff154cbe01f9483c94af87 SunOS 5.1
    Y .       /usr/sbin/in.fingerd a131ba6c2ee5defb0b3c86fc9b9e16a0 SunOS 5.1
    Y .       /usr/sbin/in.ftpd 6cdbfbd81c08079e10518e594f0354ea SunOS 5.1
    Y .       /usr/sbin/in.named aa8bf8d5fd4abbdecc9d595f81fa8640 SunOS 5.1
    Y .       /usr/sbin/in.rarpd c9ebe1149c90a2c16f9f1e24bffb64bb SunOS 5.1
    Y .       /usr/sbin/in.rdisc 01f3013eb154ae93c26d507dcda337f6 SunOS 5.1
    Y .       /usr/sbin/in.rexecd b3d4d45a356defb912707fd0eea00627 SunOS 5.1
    Y .       /usr/sbin/in.rlogind af8314a4ccaec37cf50b0d3b4eb02bb4 SunOS 5.1
    Y .       /usr/sbin/in.routed c084d5607b6b64b6b19ea0bb67799756 SunOS 5.1
    Y .       /usr/sbin/in.rshd b1f5c250f2b5d0854a17ef3a82990452 SunOS 5.1
    Y .       /usr/sbin/in.rwhod 30e7d180f04ef82bf98a380b746ddd2b SunOS 5.1
    Y .       /usr/sbin/in.talkd 9b3855d15679cd5a034aa823611eb65b SunOS 5.1
    Y .       /usr/sbin/in.telnetd 2ee8f21ea732c71f6b28ff0a706af653 SunOS 5.1
    Y .       /usr/sbin/in.tftpd 2945545b62740ef544de26325169befc SunOS 5.1
    Y .       /usr/sbin/in.tnamed a8c89ce4fdead2dc22a22225aed2abb5 SunOS 5.1
    Y .       /usr/sbin/in.comsat b047305903ff154cbe01f9483c94af87 SunOS 5.1
    Y .       /usr/sbin/in.fingerd a131ba6c2ee5defb0b3c86fc9b9e16a0 SunOS 5.1
    Y .       /usr/sbin/in.ftpd 6cdbfbd81c08079e10518e594f0354ea SunOS 5.1
    Y .       /usr/sbin/in.named aa8bf8d5fd4abbdecc9d595f81fa8640 SunOS 5.1
    Y .       /usr/sbin/in.rarpd c9ebe1149c90a2c16f9f1e24bffb64bb SunOS 5.1
    Y .       /usr/sbin/in.rdisc 01f3013eb154ae93c26d507dcda337f6 SunOS 5.1
    Y .       /usr/sbin/in.rexecd b3d4d45a356defb912707fd0eea00627 SunOS 5.1
    Y .       /usr/sbin/in.rlogind af8314a4ccaec37cf50b0d3b4eb02bb4 SunOS 5.1
    Y .       /usr/sbin/in.routed c084d5607b6b64b6b19ea0bb67799756 SunOS 5.1
    Y .       /usr/sbin/in.rshd b1f5c250f2b5d0854a17ef3a82990452 SunOS 5.1
    Y .       /usr/sbin/in.rwhod 30e7d180f04ef82bf98a380b746ddd2b SunOS 5.1
    Y .       /usr/sbin/in.talkd 9b3855d15679cd5a034aa823611eb65b SunOS 5.1
    Y .       /usr/sbin/in.telnetd 2ee8f21ea732c71f6b28ff0a706af653 SunOS 5.1
    Y .       /usr/sbin/in.tftpd 2945545b62740ef544de26325169befc SunOS 5.1
    Y .       /usr/sbin/in.tnamed a8c89ce4fdead2dc22a22225aed2abb5 SunOS 5.1
    Y .       /usr/sbin/inetd 9b9b13e2861ccc6efbc7e636ee879b33 SunOS 5.1
    #
    Y .       /usr/lib/expreserve 7123c501 a690b434 ba654398 0b7dd7e7 fcf77507 ee2e2404 04355e09 04b81a2f Sun Patch ID 100189-01
    O sig014w /usr/lib/expreserve 0155fb2b bd10fdcd f60d0bfe f40de7eb 6db4d1d5 569e761c aacef240 cc6d340a SunOS 5.1 (security patch is 100189)
    #
    Y .       /usr/lib/sendmail 682987c94d75d67795de69875687e964 Sun Patch ID 100840-06
    Y .       /usr/lib/sendmail 2458e9b843a34f0ef2f94479a67bdf35 Sun Patch ID 100840-06
    Y .       /usr/lib/sendmail.mx 2458e9b843a34f0ef2f94479a67bdf35 Sun Patch ID 100840-06
    #
    O sig016w /usr/lib/sendmail 705fcf5ac8e1cca4c7f46910388b0e0a Sun Patch ID 100840-03 (current is 100840-06)
    O sig016w /usr/lib/sendmail.mx a5c5983f228bdc56897d9ec61a6fde3 Sun Patch ID 100840-03 (current is 100840-06)
    O sig016w /usr/lib/sendmail a5c5983f228bdc56897d9ec61a6fde3 Sun Patch ID 100840-03 (current is 100840-06)
    O sig016w /usr/lib/sendmail  b2093466 00985186 530dff15 81fdb67a e579a6ab a000483e 73b079e4 cafdc5d9 SunOS 5.1 (security patch is 100840)
    O sig016w /usr/lib/sendmail.mx  c731538a 2bfe3ae0 ca8c680a cbb0a4de 5dee0187 df9726cc 77b28b09 53bd70bb SunOS 5.1 (security patch is 100840)
    O sig016w /usr/lib/sendmail  c731538a 2bfe3ae0 ca8c680a cbb0a4de 5dee0187 df9726cc 77b28b09 53bd70bb SunOS 5.1 (security patch is 100840)
    #
    #
    #
    Y .       /usr/sbin/tar fa28a18f37df734a840a6d6c2fcdeb75 Sun Patch ID 100975-02
    O sig017w /usr/sbin/tar 4ba14be1392849ac7efda514248261bc SunOS 5.1 (security patch is 100975)
    Y .       /usr/sbin/static/tar e72482af22124a68a302956219b2df1b Sun Patch ID 100975-02
    O sig017w /usr/sbin/static/tar 634a128aeb5c43e75373926383f5f2a1 SunOS 5.1 (security patch is 100975)
    #
    #
    Y .       /sbin/sh e380a339cda0de0964930e8087aa0aa5 SunOS 5.1
    Y .       /sbin/jsh e380a339cda0de0964930e8087aa0aa5 SunOS 5.1
    Y .       /usr/bin/sh f104647caf691031bf531419cb2cda96 SunOS 5.1
    Y .       /usr/bin/jsh f104647caf691031bf531419cb2cda96 SunOS 5.1
    Y .       /usr/bin/csh fd5d95665443929725ca01ac41183c80 SunOS 5.1
    Y .       /usr/bin/ksh acab8d1eec81ec25b5557d74c0dec848 SunOS 5.1
    Y .       /sbin/sync f563bfabf084ac8bcd5b3bcec5f99424 SunOS 5.1
    Y .       /usr/sbin/sync 177dc6ed350edad71c6bafda7a6707b4 SunOS 5.1
    tiger-3.2.3/systems/SunOS/5/5.1/inetd0000644000175000017500000000343207722712467015512 0ustar  pacopaco100068/2-3	dgram	rpc/udp	wait root /usr/openwin/bin/rpc.cmsd	rpc.cmsd
    100083/1	stream  rpc/tcp wait root /usr/openwin/bin/rpc.ttdbserverd rpc.ttdbserverd
    100087/10	tli	rpc/udp	wait root /usr/sbin/admind	admind
    chargen	dgram	udp	wait	root	internal
    chargen	stream	tcp	nowait	root	internal
    comsat	dgram	udp	wait	root	/usr/sbin/in.comsat	in.comsat
    daytime	dgram	udp	wait	root	internal
    daytime	stream	tcp	nowait	root	internal
    discard	dgram	udp	wait	root	internal
    discard	stream	tcp	nowait	root	internal
    echo	dgram	udp	wait	root	internal
    echo	stream	tcp	nowait	root	internal
    exec	stream	tcp	nowait	root	/usr/sbin/in.rexecd	in.rexecd
    finger	stream	tcp	nowait	nobody	/usr/sbin/in.fingerd	in.fingerd
    ftp	stream	tcp	nowait	root	/usr/sbin/in.ftpd	in.ftpd
    login	stream	tcp	nowait	root	/usr/sbin/in.rlogind	in.rlogind
    name	dgram	udp	wait	root	/usr/sbin/in.tnamed	in.tnamed
    netstat	stream	tcp	nowait	root	/usr/bin/netstat 	netstat -f inet
    rexd/1          stream  rpc/tcp wait root /usr/sbin/rpc.rexd     rpc.rexd
    rquotad/1	tli	rpc/datagram_v	wait root /usr/lib/nfs/rquotad	rquotad
    rstatd/2-4	tli   rpc/datagram_v wait root /usr/lib/netsvc/rstat/rpc.rstatd rpc.rstatd
    rusersd/2-3	tli	rpc/datagram_v	wait root /usr/lib/netsvc/rusers/rpc.rusersd	rpc.rusersd
    shell	stream	tcp	nowait	root	/usr/sbin/in.rshd	in.rshd
    sprayd/1	tli	rpc/datagram_v	wait root /usr/lib/netsvc/spray/rpc.sprayd	rpc.sprayd
    systat	stream	tcp	nowait	root	/usr/bin/ps		ps -ef
    talk	dgram	udp	wait	root	/usr/sbin/in.talkd	in.talkd
    telnet	stream	tcp	nowait	root	/usr/sbin/in.telnetd	in.telnetd
    tftp	dgram	udp	wait	root	/usr/sbin/in.tftpd	in.tftpd -s /tftpboot
    time	dgram	udp	wait	root	internal
    time	stream	tcp	nowait	root	internal
    uucp	stream	tcp	nowait	root	/usr/sbin/in.uucpd	in.uucpd
    walld/1		tli	rpc/datagram_v	wait root /usr/lib/netsvc/rwall/rpc.rwalld	rpc.rwalld
    tiger-3.2.3/systems/SunOS/5/5.1/sun4/0000755000175000017500000000000011306441047015335 5ustar  pacopacotiger-3.2.3/systems/SunOS/5/5.1/sun4/signatures0000644000175000017500000001314507650724675017472 0ustar  pacopaco#
    #     tiger - A UN*X security checking system
    #     Copyright (C) 1993 Douglas Lee Schales, David K. Hess, David R. Safford
    #
    #     Please see the file `COPYING' for the complete copyright notice.
    #
    # SunOS/5.1/signatures - 04/22/93
    #
    #-----------------------------------------------------------------------------
    #@DEST=SunOS/5/5.1/sun4
    #@CONFIG=SunOS/5
    #
    Y .       /usr/sbin/su  3fb72ef6 6f39ba3d 39dc2ada 758e41a1 624856f4 27698c46 61ca9f9f 2441d318 SunOS 5.1
    Y .       /usr/sbin/sulogin  4bb68333 46203871 a85d6fd1 786f55cd 65da09aa 43a9a97e 55f95b04 c550d4f8 SunOS 5.1
    Y .       /usr/bin/login  e7c67ccd db423400 6ba4be12 7fe22cb7 e4f297bf 5a81acf7 04504fec d6b089eb SunOS 5.1
    Y .       /usr/bin/passwd  73bccac9 98edfb65 c54e59d2 b53f41da 5d705ce3 2c973fa0 7e6bfdc0 ce073d2f SunOS 5.1
    Y .       /usr/bin/rdist  b10b8e83 bc3e7729 835b9561 6c881baa 75df6c3a b7f937a3 1cde9878 7fe0d208 SunOS 5.1
    Y .       /usr/bin/rlogin  607878a6 51c58af1 0049ea69 4b034966 8db6b460 da760295 78dce498 b849aa99 SunOS 5.1
    Y .       /usr/bin/rsh  b7d77110 d94507b7 5105a25d f33b6e3d c8206624 925d9f49 5ff39291 d63761d3 SunOS 5.1
    Y .       /usr/bin/su  99630788 30183532 8b30c3e0 67910b7d 4ac52a7d dd424e7e ee32a7bf 90a69b18 SunOS 5.1
    Y .       /usr/bin/yppasswd  2f34b5f0 46220ae6 ec13f698 488095c2 b8c41e3b 5346eb9c fd9a27d1 3398a533 SunOS 5.1
    Y .       /usr/sbin/in.comsat b047305903ff154cbe01f9483c94af87 SunOS 5.1
    Y .       /usr/sbin/in.fingerd a131ba6c2ee5defb0b3c86fc9b9e16a0 SunOS 5.1
    Y .       /usr/sbin/in.ftpd 6cdbfbd81c08079e10518e594f0354ea SunOS 5.1
    Y .       /usr/sbin/in.named aa8bf8d5fd4abbdecc9d595f81fa8640 SunOS 5.1
    Y .       /usr/sbin/in.rarpd c9ebe1149c90a2c16f9f1e24bffb64bb SunOS 5.1
    Y .       /usr/sbin/in.rdisc 01f3013eb154ae93c26d507dcda337f6 SunOS 5.1
    Y .       /usr/sbin/in.rexecd b3d4d45a356defb912707fd0eea00627 SunOS 5.1
    Y .       /usr/sbin/in.rlogind af8314a4ccaec37cf50b0d3b4eb02bb4 SunOS 5.1
    Y .       /usr/sbin/in.routed c084d5607b6b64b6b19ea0bb67799756 SunOS 5.1
    Y .       /usr/sbin/in.rshd b1f5c250f2b5d0854a17ef3a82990452 SunOS 5.1
    Y .       /usr/sbin/in.rwhod 30e7d180f04ef82bf98a380b746ddd2b SunOS 5.1
    Y .       /usr/sbin/in.talkd 9b3855d15679cd5a034aa823611eb65b SunOS 5.1
    Y .       /usr/sbin/in.telnetd 2ee8f21ea732c71f6b28ff0a706af653 SunOS 5.1
    Y .       /usr/sbin/in.tftpd 2945545b62740ef544de26325169befc SunOS 5.1
    Y .       /usr/sbin/in.tnamed a8c89ce4fdead2dc22a22225aed2abb5 SunOS 5.1
    Y .       /usr/sbin/in.comsat b047305903ff154cbe01f9483c94af87 SunOS 5.1
    Y .       /usr/sbin/in.fingerd a131ba6c2ee5defb0b3c86fc9b9e16a0 SunOS 5.1
    Y .       /usr/sbin/in.ftpd 6cdbfbd81c08079e10518e594f0354ea SunOS 5.1
    Y .       /usr/sbin/in.named aa8bf8d5fd4abbdecc9d595f81fa8640 SunOS 5.1
    Y .       /usr/sbin/in.rarpd c9ebe1149c90a2c16f9f1e24bffb64bb SunOS 5.1
    Y .       /usr/sbin/in.rdisc 01f3013eb154ae93c26d507dcda337f6 SunOS 5.1
    Y .       /usr/sbin/in.rexecd b3d4d45a356defb912707fd0eea00627 SunOS 5.1
    Y .       /usr/sbin/in.rlogind af8314a4ccaec37cf50b0d3b4eb02bb4 SunOS 5.1
    Y .       /usr/sbin/in.routed c084d5607b6b64b6b19ea0bb67799756 SunOS 5.1
    Y .       /usr/sbin/in.rshd b1f5c250f2b5d0854a17ef3a82990452 SunOS 5.1
    Y .       /usr/sbin/in.rwhod 30e7d180f04ef82bf98a380b746ddd2b SunOS 5.1
    Y .       /usr/sbin/in.talkd 9b3855d15679cd5a034aa823611eb65b SunOS 5.1
    Y .       /usr/sbin/in.telnetd 2ee8f21ea732c71f6b28ff0a706af653 SunOS 5.1
    Y .       /usr/sbin/in.tftpd 2945545b62740ef544de26325169befc SunOS 5.1
    Y .       /usr/sbin/in.tnamed a8c89ce4fdead2dc22a22225aed2abb5 SunOS 5.1
    Y .       /usr/sbin/inetd 9b9b13e2861ccc6efbc7e636ee879b33 SunOS 5.1
    #
    Y .       /usr/lib/expreserve 7123c501 a690b434 ba654398 0b7dd7e7 fcf77507 ee2e2404 04355e09 04b81a2f Sun Patch ID 100189-01
    O sig014w /usr/lib/expreserve 0155fb2b bd10fdcd f60d0bfe f40de7eb 6db4d1d5 569e761c aacef240 cc6d340a SunOS 5.1 (security patch is 100189)
    #
    Y .       /usr/lib/sendmail 682987c94d75d67795de69875687e964 Sun Patch ID 100840-06
    Y .       /usr/lib/sendmail 2458e9b843a34f0ef2f94479a67bdf35 Sun Patch ID 100840-06
    Y .       /usr/lib/sendmail.mx 2458e9b843a34f0ef2f94479a67bdf35 Sun Patch ID 100840-06
    #
    O sig016w /usr/lib/sendmail 705fcf5ac8e1cca4c7f46910388b0e0a Sun Patch ID 100840-03 (current is 100840-06)
    O sig016w /usr/lib/sendmail.mx a5c5983f228bdc56897d9ec61a6fde3 Sun Patch ID 100840-03 (current is 100840-06)
    O sig016w /usr/lib/sendmail a5c5983f228bdc56897d9ec61a6fde3 Sun Patch ID 100840-03 (current is 100840-06)
    O sig016w /usr/lib/sendmail  b2093466 00985186 530dff15 81fdb67a e579a6ab a000483e 73b079e4 cafdc5d9 SunOS 5.1 (security patch is 100840)
    O sig016w /usr/lib/sendmail.mx  c731538a 2bfe3ae0 ca8c680a cbb0a4de 5dee0187 df9726cc 77b28b09 53bd70bb SunOS 5.1 (security patch is 100840)
    O sig016w /usr/lib/sendmail  c731538a 2bfe3ae0 ca8c680a cbb0a4de 5dee0187 df9726cc 77b28b09 53bd70bb SunOS 5.1 (security patch is 100840)
    #
    #
    #
    Y .       /usr/sbin/tar fa28a18f37df734a840a6d6c2fcdeb75 Sun Patch ID 100975-02
    O sig017w /usr/sbin/tar 4ba14be1392849ac7efda514248261bc SunOS 5.1 (security patch is 100975)
    Y .       /usr/sbin/static/tar e72482af22124a68a302956219b2df1b Sun Patch ID 100975-02
    O sig017w /usr/sbin/static/tar 634a128aeb5c43e75373926383f5f2a1 SunOS 5.1 (security patch is 100975)
    #
    #
    Y .       /sbin/sh e380a339cda0de0964930e8087aa0aa5 SunOS 5.1
    Y .       /sbin/jsh e380a339cda0de0964930e8087aa0aa5 SunOS 5.1
    Y .       /usr/bin/sh f104647caf691031bf531419cb2cda96 SunOS 5.1
    Y .       /usr/bin/jsh f104647caf691031bf531419cb2cda96 SunOS 5.1
    Y .       /usr/bin/csh fd5d95665443929725ca01ac41183c80 SunOS 5.1
    Y .       /usr/bin/ksh acab8d1eec81ec25b5557d74c0dec848 SunOS 5.1
    Y .       /sbin/sync f563bfabf084ac8bcd5b3bcec5f99424 SunOS 5.1
    Y .       /usr/sbin/sync 177dc6ed350edad71c6bafda7a6707b4 SunOS 5.1
    tiger-3.2.3/systems/SunOS/5/5.1/sun4/config0000644000175000017500000001033307650724675016547 0ustar  pacopaco# -*- 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/4/config - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    UUID=`/usr/bin/id | /usr/bin/sed -e 's/uid=\([0-9][0-9]*\).*$/\1/'`
    [ "$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
    # -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
    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
    EXPAND=/usr/bin/expand
    SHOWREV=/usr/bin/showrev
    NETSTAT=/usr/bin/netstat
    SENDMAILS="/usr/lib/sendmail /usr/lib/sendmail.mx"
    SENDMAILCF="/etc/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
    export SHOWREV NETSTAT 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=/usr/etc/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
    #
    # 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
    #
    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
    #
    MAILSPOOL=/var/spool/mail
    #
    CRONSPOOL=/var/spool/cron/crontabs
    #
    ETCSHELLS=/etc/shells
    #
    export MAILSPOOL CRONSPOOL ETCSHELLS
    #
    FS_WDIRSYS="/tmp/ /var/tmp/ /var/spool/mail/"
    export FS_WDIRSYS
    #
    SYSDEFAULTPATH="/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
    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
    EOL
    `
    tiger-3.2.3/systems/SunOS/5/5.1/suid_list0000644000175000017500000000136207722712467016406 0ustar  pacopaco/sbin/su
    /sbin/sulogin
    /usr/bin/at
    /usr/bin/atq
    /usr/bin/atrm
    /usr/bin/crontab
    /usr/bin/kgmon
    /usr/bin/login
    /usr/bin/newgrp
    /usr/bin/passwd
    /usr/bin/ps
    /usr/bin/rcp
    /usr/bin/rdist
    /usr/bin/rlogin
    /usr/bin/rsh
    /usr/bin/su
    /usr/bin/tip
    /usr/bin/w
    /usr/bin/yppasswd
    /usr/bin/uptime
    /usr/bin/ct
    /usr/bin/cu
    /usr/bin/uucp
    /usr/bin/uuglist
    /usr/bin/uuname
    /usr/bin/uustat
    /usr/bin/uux
    /usr/lib/fs/ufs/ufsdump
    /usr/lib/fs/ufs/ufsrestore
    /usr/lib/pt_chmod
    /usr/lib/sendmail
    /usr/lib/sendmail.mx
    /usr/lib/acct/accton
    /usr/lib/uucp/remote.unknown
    /usr/lib/uucp/uucico
    /usr/lib/uucp/uusched
    /usr/lib/uucp/uuxqt
    /usr/sbin/ping
    /usr/sbin/sacadm
    /usr/sbin/static/rcp
    /usr/sbin/whodo
    /usr/openwin/bin/xlock
    /usr/openwin/lib/mkcookie
    /usr/ucb/ps
    /usr/vmsys/bin/chkperm
    tiger-3.2.3/systems/SunOS/5/5.2/0000755000175000017500000000000011306441047014445 5ustar  pacopacotiger-3.2.3/systems/SunOS/5/5.2/signatures0000644000175000017500000001246607650724675016607 0ustar  pacopaco#
    #@DEST=SunOS/5/5.2/sun4
    #@CONFIG=SunOS/5
    #
    # Signature file for SunOS 5.2 sun4, generated Thu Jun 10 14:25:10 CDT 1993
    #
    Y .       /usr/bin/login df7fe882 5eb03e4d ffe4f915 e2374613 62ec960d d9f1ae4a d3f2135f 0e8808fd SunOS 5.2
    Y .       /usr/bin/su c2c2f9cd 159c0f73 f2b3eaf2 23b5f23a ba490abc 7ee2ffed 4b103b73 be8c463a SunOS 5.2
    Y .       /sbin/su 127ce26b 1dfae9bd 6f6b701e 58093aff af0077d1 40cb1a9b 97a97c6b 44ce37b2 SunOS 5.2
    Y .       /usr/bin/passwd b3317c81 9145e000 6948e9b5 5edcb2f1 6bf1e451 dca3ae1b 00df7105 90fe1481 SunOS 5.2
    Y .       /usr/sbin/admind 3d0c837c 3654cfc7 28a31ac4 9a5a2ba4 0ed1466b cdc46ca5 679cde6c be366d3a SunOS 5.2
    Y .       /usr/sbin/rpcbind 4840a0c4 d6931aa9 033ace1f cd5f4a88 366eaf5e e1821b7e 95e62b01 b68d45f9 SunOS 5.2
    Y .       /usr/sbin/cron eea9888d ef34582c dac7419d 6d746147 6fa81b07 c84ff4db bd7232ef f7f52ce3 SunOS 5.2
    Y .       /usr/bin/rdist b5e27557 388856dc 11fd791a d83b3801 75fbb968 88a0ceb9 2b1da644 f1fcb211 SunOS 5.2
    Y .       /usr/bin/rlogin cb0eb9ee 07320667 8a1780c5 6eb7c790 495f8868 4e865551 b46836d7 2fd49aa1 SunOS 5.2
    Y .       /usr/bin/rsh 41981ed5 6fd19b71 7d70ac51 a140c037 9b1629c6 a589061c 105ef546 500f3e14 SunOS 5.2
    Y .       /usr/lib/rsh e05a10b3 f2487f65 a8fbca8c eddcdc45 84510dac a9fa8d84 a4543077 8bd071a7 SunOS 5.2
    Y .       /usr/sbin/rpc.nisd a275ff15 d4b63d52 f462a95c 9ebefc60 b2cf4e53 43f24deb 6dfedce5 ca2db037 SunOS 5.2
    Y .       /usr/bin/telnet 80ad79d2 a63b7a25 5400eccc 5b93814d a77409e1 0587f103 8772688e 6d6ce5d7 SunOS 5.2
    Y .       /usr/bin/lpstat 03eba350 177d821d 98829106 0740cbc4 a5955253 bc7dba68 a3ff1a11 1fe6522d SunOS 5.2
    Y .       /usr/ucb/lpc ddf79450 dc728d12 a57caa5d 84bcf773 ad1bedd0 1e0f453f 11bcddba 07f1f7e7 SunOS 5.2
    Y .       /usr/ucb/lpr 915395ca e1e40fae b6629723 ddcbda4e 1c3fc476 9578deea 0c09ae5e 7eff89d1 SunOS 5.2
    Y .       /usr/ucb/lprm f439da04 51af4ad6 f523a8f4 cbd2345e d34dbac5 c03194bf 641ce0cd 67aeae1d SunOS 5.2
    Y .       /usr/sbin/in.comsat 173ceab81e9e20eaea7d2f8722f90052 SunOS 5.2
    Y .       /usr/sbin/in.fingerd 903c888e1e60a68b136319b0fdcef430 SunOS 5.2
    Y .       /usr/sbin/in.named 132116ab30c25ad672f151e472a125d1 SunOS 5.2
    Y .       /usr/sbin/in.rarpd f5cbbe376f484a93eca89fa422c8503c SunOS 5.2
    Y .       /usr/sbin/in.rdisc 436fa262b996c317b19cd0adf993d97e SunOS 5.2
    Y .       /usr/sbin/in.rexecd fc9f9f39aab287a347c8293d424eee9c SunOS 5.2
    Y .       /usr/sbin/in.rlogind 0a373f183c14370f48e2fd409be5fc88 SunOS 5.2
    Y .       /usr/sbin/in.routed e1a838d38e2b0e78ddc0b0cbc38e7fcf SunOS 5.2
    Y .       /usr/sbin/in.rshd a706e09c15d86e9c57b8da08f49a1d95 SunOS 5.2
    Y .       /usr/sbin/in.rwhod fe3c4d0976931b2ef44e0129a3e081c9 SunOS 5.2
    Y .       /usr/sbin/in.talkd 333b601f114b28c8eb2fb31c098e314d SunOS 5.2
    Y .       /usr/sbin/in.telnetd e88d279db36709b4f6c32ffc4c215c70 SunOS 5.2
    Y .       /usr/sbin/in.tftpd 947c41c63a2e2da3b817c0f8ac610966 SunOS 5.2
    Y .       /usr/sbin/in.tnamed c151fd0959a33118a8d9b5038caa586a SunOS 5.2
    Y .       /usr/sbin/inetd 8d02a44f9d7126ade2b80b76f14e5391 SunOS 5.2
    #
    #
    #
    Y .       /usr/lib/expreserve 118ab7c8 5a37f95a 1e134779 fd7e7b62 6a40a266 5839e2e5 d7f0be36 9ae6a147 Sun Patch ID 101090-01
    O sig014w /usr/lib/expreserve 28ef8e6d 84673112 26c5c243 904104dc c952ae3c 6bb081fb 8a267019 f00764c1 SunOS 5.2 (security patch is 101090)
    #
    #
    Y .       /usr/lib/sendmail 63ce6c144090cf39eb5d28e5a1729abe Sun Patch ID 101077-06
    Y .       /usr/lib/sendmail 9ea99d0e35c1fe32e31a57d19d761b4e Sun Patch ID 101077-06
    Y .       /usr/lib/sendmail.mx 9ea99d0e35c1fe32e31a57d19d761b4e Sun Patch ID 101077-06
    #
    O sig016w /usr/lib/sendmail ccd979798b8393199a91a67e166e36d4 Sun Patch ID 101077-03 (current is 101077-06)
    O sig016w /usr/lib/sendmail.mx 52461c0153ccd2dd07ef9830bba100b6 Sun Patch ID 101077-03 (current is 101077-06)
    O sig016w /usr/lib/sendmail 52461c0153ccd2dd07ef9830bba100b6 Sun Patch ID 101077-03 (current is 101077-06)
    O sig016w /usr/lib/sendmail 1d08123e be9ee582 0cc9a26a 49d12577 4ae2f3ac afb5594c 69f12865 3f476723 SunOS 5.2 (security patch is 101077)
    O sig016w /usr/lib/sendmail.mx 6c4ec837 36ad7370 1ade90cd f091b483 98a41a04 5e125ab7 a197e253 01e9a08e SunOS 5.2 (security patch is 101077)
    O sig016w /usr/lib/sendmail 6c4ec837 36ad7370 1ade90cd f091b483 98a41a04 5e125ab7 a197e253 01e9a08e SunOS 5.2 (security patch is 101077)
    #
    #
    Y .       /usr/sbin/tar bf37a41d927defaba48a0594e957ccf2 Sun Patch ID 101301-01
    O sig017w /usr/sbin/tar ea324cfd24cfb8c7ecfbe002f211fccc SunOS 5.2 (security patch is 101301)
    Y .       /usr/sbin/static/tar 014cff39276f9a34160f7510ada34802 Sun Patch ID 101301-01
    O sig017w /usr/sbin/static/tar 6fb3fa13bac3ff8b2a0f4dd4fc76763b SunOS 5.2 (security patch is 101301)
    #
    Y .       /sbin/sh c677e1f7cf82b5873dccf7234feb4121 SunOS 5.2
    Y .       /sbin/jsh c677e1f7cf82b5873dccf7234feb4121 SunOS 5.2
    Y .       /usr/lib/rsh c5bc8554a949c452345bf8a2945aee1c SunOS 5.2
    Y .       /usr/bin/sh c5bc8554a949c452345bf8a2945aee1c SunOS 5.2
    Y .       /usr/bin/jsh c5bc8554a949c452345bf8a2945aee1c SunOS 5.2
    Y .       /usr/bin/csh 07dcf08261572581aea83da9a5cbcc2d SunOS 5.2
    Y .       /usr/bin/ksh e63b1197fabd283a3b5fa04ef126ed13 SunOS 5.2
    Y .       /sbin/sync e866409560fc65b0750eb93144e91924 SunOS 5.2
    Y .       /usr/sbin/sync 10c926e8d51814f824cde9d7b459f85f SunOS 5.2
    #
    Y .       /usr/sbin/in.ftpd cdcc297703c053ec3c762e877ff9b543 Sun Patch ID 101037-01
    O sig020w /usr/sbin/in.ftpd df7cb823ab9599fb7eac1d182db32957 SunOS 5.2 (security patch is 101037)
    tiger-3.2.3/systems/SunOS/5/5.2/inetd0000644000175000017500000000343207722712467015513 0ustar  pacopaco100068/2-4	dgram	rpc/udp	wait root /usr/openwin/bin/rpc.cmsd	rpc.cmsd
    100083/1	stream  rpc/tcp wait root /usr/openwin/bin/rpc.ttdbserverd rpc.ttdbserverd
    100087/10	tli	rpc/udp	wait root /usr/sbin/admind	admind
    chargen	dgram	udp	wait	root	internal
    chargen	stream	tcp	nowait	root	internal
    comsat	dgram	udp	wait	root	/usr/sbin/in.comsat	in.comsat
    daytime	dgram	udp	wait	root	internal
    daytime	stream	tcp	nowait	root	internal
    discard	dgram	udp	wait	root	internal
    discard	stream	tcp	nowait	root	internal
    echo	dgram	udp	wait	root	internal
    echo	stream	tcp	nowait	root	internal
    exec	stream	tcp	nowait	root	/usr/sbin/in.rexecd	in.rexecd
    finger	stream	tcp	nowait	nobody	/usr/sbin/in.fingerd	in.fingerd
    ftp	stream	tcp	nowait	root	/usr/sbin/in.ftpd	in.ftpd
    login	stream	tcp	nowait	root	/usr/sbin/in.rlogind	in.rlogind
    name	dgram	udp	wait	root	/usr/sbin/in.tnamed	in.tnamed
    netstat	stream	tcp	nowait	root	/usr/bin/netstat 	netstat -f inet
    rexd/1          stream  rpc/tcp wait root /usr/sbin/rpc.rexd     rpc.rexd
    rquotad/1	tli	rpc/datagram_v	wait root /usr/lib/nfs/rquotad	rquotad
    rstatd/2-4	tli   rpc/datagram_v wait root /usr/lib/netsvc/rstat/rpc.rstatd rpc.rstatd
    rusersd/2-3	tli	rpc/datagram_v	wait root /usr/lib/netsvc/rusers/rpc.rusersd	rpc.rusersd
    shell	stream	tcp	nowait	root	/usr/sbin/in.rshd	in.rshd
    sprayd/1	tli	rpc/datagram_v	wait root /usr/lib/netsvc/spray/rpc.sprayd	rpc.sprayd
    systat	stream	tcp	nowait	root	/usr/bin/ps		ps -ef
    talk	dgram	udp	wait	root	/usr/sbin/in.talkd	in.talkd
    telnet	stream	tcp	nowait	root	/usr/sbin/in.telnetd	in.telnetd
    tftp	dgram	udp	wait	root	/usr/sbin/in.tftpd	in.tftpd -s /tftpboot
    time	dgram	udp	wait	root	internal
    time	stream	tcp	nowait	root	internal
    uucp	stream	tcp	nowait	root	/usr/sbin/in.uucpd	in.uucpd
    walld/1		tli	rpc/datagram_v	wait root /usr/lib/netsvc/rwall/rpc.rwalld	rpc.rwalld
    tiger-3.2.3/systems/SunOS/5/5.2/sun4/0000755000175000017500000000000011306441047015336 5ustar  pacopacotiger-3.2.3/systems/SunOS/5/5.2/sun4/signatures0000644000175000017500000001246607650724675017500 0ustar  pacopaco#
    #@DEST=SunOS/5/5.2/sun4
    #@CONFIG=SunOS/5
    #
    # Signature file for SunOS 5.2 sun4, generated Thu Jun 10 14:25:10 CDT 1993
    #
    Y .       /usr/bin/login df7fe882 5eb03e4d ffe4f915 e2374613 62ec960d d9f1ae4a d3f2135f 0e8808fd SunOS 5.2
    Y .       /usr/bin/su c2c2f9cd 159c0f73 f2b3eaf2 23b5f23a ba490abc 7ee2ffed 4b103b73 be8c463a SunOS 5.2
    Y .       /sbin/su 127ce26b 1dfae9bd 6f6b701e 58093aff af0077d1 40cb1a9b 97a97c6b 44ce37b2 SunOS 5.2
    Y .       /usr/bin/passwd b3317c81 9145e000 6948e9b5 5edcb2f1 6bf1e451 dca3ae1b 00df7105 90fe1481 SunOS 5.2
    Y .       /usr/sbin/admind 3d0c837c 3654cfc7 28a31ac4 9a5a2ba4 0ed1466b cdc46ca5 679cde6c be366d3a SunOS 5.2
    Y .       /usr/sbin/rpcbind 4840a0c4 d6931aa9 033ace1f cd5f4a88 366eaf5e e1821b7e 95e62b01 b68d45f9 SunOS 5.2
    Y .       /usr/sbin/cron eea9888d ef34582c dac7419d 6d746147 6fa81b07 c84ff4db bd7232ef f7f52ce3 SunOS 5.2
    Y .       /usr/bin/rdist b5e27557 388856dc 11fd791a d83b3801 75fbb968 88a0ceb9 2b1da644 f1fcb211 SunOS 5.2
    Y .       /usr/bin/rlogin cb0eb9ee 07320667 8a1780c5 6eb7c790 495f8868 4e865551 b46836d7 2fd49aa1 SunOS 5.2
    Y .       /usr/bin/rsh 41981ed5 6fd19b71 7d70ac51 a140c037 9b1629c6 a589061c 105ef546 500f3e14 SunOS 5.2
    Y .       /usr/lib/rsh e05a10b3 f2487f65 a8fbca8c eddcdc45 84510dac a9fa8d84 a4543077 8bd071a7 SunOS 5.2
    Y .       /usr/sbin/rpc.nisd a275ff15 d4b63d52 f462a95c 9ebefc60 b2cf4e53 43f24deb 6dfedce5 ca2db037 SunOS 5.2
    Y .       /usr/bin/telnet 80ad79d2 a63b7a25 5400eccc 5b93814d a77409e1 0587f103 8772688e 6d6ce5d7 SunOS 5.2
    Y .       /usr/bin/lpstat 03eba350 177d821d 98829106 0740cbc4 a5955253 bc7dba68 a3ff1a11 1fe6522d SunOS 5.2
    Y .       /usr/ucb/lpc ddf79450 dc728d12 a57caa5d 84bcf773 ad1bedd0 1e0f453f 11bcddba 07f1f7e7 SunOS 5.2
    Y .       /usr/ucb/lpr 915395ca e1e40fae b6629723 ddcbda4e 1c3fc476 9578deea 0c09ae5e 7eff89d1 SunOS 5.2
    Y .       /usr/ucb/lprm f439da04 51af4ad6 f523a8f4 cbd2345e d34dbac5 c03194bf 641ce0cd 67aeae1d SunOS 5.2
    Y .       /usr/sbin/in.comsat 173ceab81e9e20eaea7d2f8722f90052 SunOS 5.2
    Y .       /usr/sbin/in.fingerd 903c888e1e60a68b136319b0fdcef430 SunOS 5.2
    Y .       /usr/sbin/in.named 132116ab30c25ad672f151e472a125d1 SunOS 5.2
    Y .       /usr/sbin/in.rarpd f5cbbe376f484a93eca89fa422c8503c SunOS 5.2
    Y .       /usr/sbin/in.rdisc 436fa262b996c317b19cd0adf993d97e SunOS 5.2
    Y .       /usr/sbin/in.rexecd fc9f9f39aab287a347c8293d424eee9c SunOS 5.2
    Y .       /usr/sbin/in.rlogind 0a373f183c14370f48e2fd409be5fc88 SunOS 5.2
    Y .       /usr/sbin/in.routed e1a838d38e2b0e78ddc0b0cbc38e7fcf SunOS 5.2
    Y .       /usr/sbin/in.rshd a706e09c15d86e9c57b8da08f49a1d95 SunOS 5.2
    Y .       /usr/sbin/in.rwhod fe3c4d0976931b2ef44e0129a3e081c9 SunOS 5.2
    Y .       /usr/sbin/in.talkd 333b601f114b28c8eb2fb31c098e314d SunOS 5.2
    Y .       /usr/sbin/in.telnetd e88d279db36709b4f6c32ffc4c215c70 SunOS 5.2
    Y .       /usr/sbin/in.tftpd 947c41c63a2e2da3b817c0f8ac610966 SunOS 5.2
    Y .       /usr/sbin/in.tnamed c151fd0959a33118a8d9b5038caa586a SunOS 5.2
    Y .       /usr/sbin/inetd 8d02a44f9d7126ade2b80b76f14e5391 SunOS 5.2
    #
    #
    #
    Y .       /usr/lib/expreserve 118ab7c8 5a37f95a 1e134779 fd7e7b62 6a40a266 5839e2e5 d7f0be36 9ae6a147 Sun Patch ID 101090-01
    O sig014w /usr/lib/expreserve 28ef8e6d 84673112 26c5c243 904104dc c952ae3c 6bb081fb 8a267019 f00764c1 SunOS 5.2 (security patch is 101090)
    #
    #
    Y .       /usr/lib/sendmail 63ce6c144090cf39eb5d28e5a1729abe Sun Patch ID 101077-06
    Y .       /usr/lib/sendmail 9ea99d0e35c1fe32e31a57d19d761b4e Sun Patch ID 101077-06
    Y .       /usr/lib/sendmail.mx 9ea99d0e35c1fe32e31a57d19d761b4e Sun Patch ID 101077-06
    #
    O sig016w /usr/lib/sendmail ccd979798b8393199a91a67e166e36d4 Sun Patch ID 101077-03 (current is 101077-06)
    O sig016w /usr/lib/sendmail.mx 52461c0153ccd2dd07ef9830bba100b6 Sun Patch ID 101077-03 (current is 101077-06)
    O sig016w /usr/lib/sendmail 52461c0153ccd2dd07ef9830bba100b6 Sun Patch ID 101077-03 (current is 101077-06)
    O sig016w /usr/lib/sendmail 1d08123e be9ee582 0cc9a26a 49d12577 4ae2f3ac afb5594c 69f12865 3f476723 SunOS 5.2 (security patch is 101077)
    O sig016w /usr/lib/sendmail.mx 6c4ec837 36ad7370 1ade90cd f091b483 98a41a04 5e125ab7 a197e253 01e9a08e SunOS 5.2 (security patch is 101077)
    O sig016w /usr/lib/sendmail 6c4ec837 36ad7370 1ade90cd f091b483 98a41a04 5e125ab7 a197e253 01e9a08e SunOS 5.2 (security patch is 101077)
    #
    #
    Y .       /usr/sbin/tar bf37a41d927defaba48a0594e957ccf2 Sun Patch ID 101301-01
    O sig017w /usr/sbin/tar ea324cfd24cfb8c7ecfbe002f211fccc SunOS 5.2 (security patch is 101301)
    Y .       /usr/sbin/static/tar 014cff39276f9a34160f7510ada34802 Sun Patch ID 101301-01
    O sig017w /usr/sbin/static/tar 6fb3fa13bac3ff8b2a0f4dd4fc76763b SunOS 5.2 (security patch is 101301)
    #
    Y .       /sbin/sh c677e1f7cf82b5873dccf7234feb4121 SunOS 5.2
    Y .       /sbin/jsh c677e1f7cf82b5873dccf7234feb4121 SunOS 5.2
    Y .       /usr/lib/rsh c5bc8554a949c452345bf8a2945aee1c SunOS 5.2
    Y .       /usr/bin/sh c5bc8554a949c452345bf8a2945aee1c SunOS 5.2
    Y .       /usr/bin/jsh c5bc8554a949c452345bf8a2945aee1c SunOS 5.2
    Y .       /usr/bin/csh 07dcf08261572581aea83da9a5cbcc2d SunOS 5.2
    Y .       /usr/bin/ksh e63b1197fabd283a3b5fa04ef126ed13 SunOS 5.2
    Y .       /sbin/sync e866409560fc65b0750eb93144e91924 SunOS 5.2
    Y .       /usr/sbin/sync 10c926e8d51814f824cde9d7b459f85f SunOS 5.2
    #
    Y .       /usr/sbin/in.ftpd cdcc297703c053ec3c762e877ff9b543 Sun Patch ID 101037-01
    O sig020w /usr/sbin/in.ftpd df7cb823ab9599fb7eac1d182db32957 SunOS 5.2 (security patch is 101037)
    tiger-3.2.3/systems/SunOS/5/5.2/sun4/config0000644000175000017500000001033307650724675016550 0ustar  pacopaco# -*- 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/4/config - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    UUID=`/usr/bin/id | /usr/bin/sed -e 's/uid=\([0-9][0-9]*\).*$/\1/'`
    [ "$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
    # -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
    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
    EXPAND=/usr/bin/expand
    SHOWREV=/usr/bin/showrev
    NETSTAT=/usr/bin/netstat
    SENDMAILS="/usr/lib/sendmail /usr/lib/sendmail.mx"
    SENDMAILCF="/etc/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
    export SHOWREV NETSTAT 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=/usr/etc/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
    #
    # 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
    #
    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
    #
    MAILSPOOL=/var/spool/mail
    #
    CRONSPOOL=/var/spool/cron/crontabs
    #
    ETCSHELLS=/etc/shells
    #
    export MAILSPOOL CRONSPOOL ETCSHELLS
    #
    FS_WDIRSYS="/tmp/ /var/tmp/ /var/spool/mail/"
    export FS_WDIRSYS
    #
    SYSDEFAULTPATH="/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
    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
    EOL
    `
    tiger-3.2.3/systems/SunOS/5/5.2/suid_list0000644000175000017500000000163607722712467016413 0ustar  pacopaco/sbin/su
    /sbin/sulogin
    /usr/bin/at
    /usr/bin/atq
    /usr/bin/atrm
    /usr/bin/crontab
    /usr/bin/eject
    /usr/bin/kgmon
    /usr/bin/login
    /usr/bin/newgrp
    /usr/bin/passwd
    /usr/bin/ps
    /usr/bin/rcp
    /usr/bin/rdist
    /usr/bin/rlogin
    /usr/bin/rsh
    /usr/bin/su
    /usr/bin/tip
    /usr/bin/w
    /usr/bin/yppasswd
    /usr/bin/uptime
    /usr/bin/ct
    /usr/bin/cu
    /usr/bin/uucp
    /usr/bin/uuglist
    /usr/bin/uuname
    /usr/bin/uustat
    /usr/bin/uux
    /usr/bin/volcheck
    /usr/lib/expreserve
    /usr/lib/exrecover
    /usr/lib/fs/ufs/ufsdump
    /usr/lib/fs/ufs/ufsrestore
    /usr/lib/pt_chmod
    /usr/lib/sendmail
    /usr/lib/sendmail.mx
    /usr/lib/acct/accton
    /usr/lib/uucp/remote.unknown
    /usr/lib/uucp/uucico
    /usr/lib/uucp/uusched
    /usr/lib/uucp/uuxqt
    /usr/net/servers/rfs/rfsetup
    /usr/openwin/bin/ff.core
    /usr/openwin/bin/loadmodule
    /usr/sbin/nsquery
    /usr/sbin/ping
    /usr/sbin/sacadm
    /usr/sbin/static/rcp
    /usr/sbin/whodo
    /usr/openwin/bin/xlock
    /usr/openwin/lib/mkcookie
    /usr/ucb/ps
    /usr/vmsys/bin/chkperm
    tiger-3.2.3/systems/SunOS/5/check_listeningprocs0000755000175000017500000001050110223076307020264 0ustar  pacopaco#!/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.3/systems/SunOS/5/check_patches0000755000175000017500000000731510223076307016661 0ustar  pacopaco#!/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.3/systems/SunOS/5/config0000644000175000017500000001211710223074445015334 0ustar  pacopaco# -*- 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/config - 06/14/93
    #
    # 08/26/2003 - jfs - Incorporated ARSC changes
    #
    #-----------------------------------------------------------------------------
    #
    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=`findcmd cat`
    LS=`findcmd ls`
    # With /usr/bin/ls, just '-l' to get group owner
    # For /usr/ucb/ls, use "-lg"
    LSGROUP="-l"
    # -g to show group ownership
    LSGROUP="-lg"
    # -L to show file instead of symlink
    LSLINK="-L"
    
    CUT=/usr/bin/cut
    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
    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
    SENDMAILS="/usr/lib/sendmail /usr/lib/sendmail.mx"
    SENDMAILCF="/etc/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 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=/usr/etc/mount
    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"
    #
    #
    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`
    TCPD=`findcmd tcpd`
    #
    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 NISCAT YPSERVER TCPD
    #
    MAILSPOOL=/var/spool/mail
    # This is needed for SunOS 5.8 and later, I believe
    if [ ! -d $MAILSPOOL -a -d /var/mail ] ; then
    	MAILSPOOL=/var/mail
    fi
    #
    CRONSPOOL=/var/spool/cron/crontabs
    #
    ETCSHELLS=/etc/shells
    export MAILSPOOL CRONSPOOL ETCSHELLS
    #
    # egrep regex that defines a local filesystem
    LOCFS="(ufs|tmpfs)"
    export LOCFS
    #
    # System dev directories...
    #
    DEVDIRSYS="/dev/ /devices"
    export DEVDIRSYS
    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.3/systems/SunOS/5/embedlist0000644000175000017500000000062607722712467016056 0ustar  pacopaco#
    #  These are files which have any embedded pathnames in them checked.
    #  It does not need to include things like /etc/inetd.conf, etc, as
    #  these will be generated during the running of the security system.
    #  They *can* be included if you want to run check_embedded without
    #  running all the other scripts.  This will not cause duplicate output.
    #
    /etc/inittab
    /etc/init.d/*
    /.profile
    /.cshrc
    /.login
    tiger-3.2.3/systems/SunOS/5/file_access_list0000644000175000017500000002147307722712467017404 0ustar  pacopaco#
    #     tiger - A UN*X security checking system
    #     Copyright (C) 1993 Douglas Lee Schales, David K. Hess, David R. Safford
    #
    #     Please see the file `COPYING' for the complete copyright notice.
    #
    # SunOS/5/file_access_list - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    #                           owner group s g r w x   r w x   r w x
    #------------------------------------------------------------
    /                           root  .     . . 1 . 1   1 0 1   1 0 1 W 018 018 018
    /etc                        root  .     . . 1 . 1   1 0 1   1 0 1 W 019 019 019
    /export                     root  .     . . . . .   . 0 .   . 0 . W 001 002 003
    /bin                        root  .     . . 1 . 1   1 0 1   1 0 1 W 001 002 003
    /sbin                       root  .     0 0 1 . 1   1 0 1   1 0 1 W 001 002 003
    /sbin/rc0                   root  .     0 0 1 . 1   . 0 0   . 0 0 F 015 015 015
    /sbin/rc1                   root  .     0 0 1 . 1   . 0 0   . 0 0 F 015 015 015
    /sbin/rc2                   root  .     0 0 1 . 1   . 0 0   . 0 0 F 015 015 015
    /sbin/rc3                   root  .     0 0 1 . 1   . 0 0   . 0 0 F 015 015 015
    /sbin/rc5                   root  .     0 0 1 . 1   . 0 0   . 0 0 F 015 015 015
    /sbin/rc6                   root  .     0 0 1 . 1   . 0 0   . 0 0 F 015 015 015
    /sbin/rcS                   root  .     0 0 1 . 1   . 0 0   . 0 0 F 015 015 015
    /usr                        root  .     . . 1 . 1   1 0 1   1 0 1 W 001 002 003
    /usr/4lib                   root  .     . . 1 . 1   1 0 1   1 0 1 W 001 002 003
    /usr/5bin                   root  .     . . 1 . 1   1 0 1   1 0 1 W 001 002 003
    /usr/aset                   root  .     . . 1 . 1   0 0 0   0 0 0 W 001 002 003
    /usr/share                  root  .     . . . . .   . 0 .   . 0 . W 001 002 003
    /usr/openwin		    root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/demo                   root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/games                  root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /usr/bin                    root  .     . . 1 . 1   1 0 1   1 0 1 W 001 002 003
    /usr/lib                    root  .     . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /usr/ucb                    root  .     . . 1 . 1   1 0 1   1 0 1 W 001 002 003
    /usr/ucblib                 root  .     . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /usr/*                      root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /etc/security               root  .     . . . . .   . 0 .   . 0 . F 005 005 005
    /etc/modules		    root  .     . . . . .   1 0 1   1 0 1 W 001 002 003
    /var                        root  .     . . . . .   1 0 1   1 0 1 W 001 002 003
    /var/spool		    root  .     . . . . .   1 0 1   1 0 1 W 001 002 003
    /dev                        root  .     . . . . .   1 0 1   1 0 1 W 001 002 003
    #
    /kernel/unix                root  .     0 0 1 . 1   1 0 0   1 0 0 W 001 002 003
    /.cshrc                     root  .     0 0 1 . .   . 0 .   . 0 . W 006 006 006
    /.tcshrc                    root  .     0 0 1 . .   . 0 .   . 0 . W 006 006 006
    /.login                     root  .     0 0 1 . .   . 0 .   . 0 . W 006 006 006
    /.profile                   root  .     0 0 1 . .   . 0 .   . 0 . W 006 006 006
    /.forward                   root  .     . . 1 . .   . 0 .   . 0 . W 006 006 006
    /.rhosts                    root  .     . . 1 . 0   0 0 0   0 0 0 W 006 006 006
    #
    /etc/mail                   root  .     . . . . .   . 0 .   . 0 . W 001 002 003
    /etc/mail/aliases           root  .     . . 1 . 0   1 0 0   1 0 0 F 007 007 007
    /etc/mail/aliases.dir       root  .     . . 1 . 0   1 0 0   1 0 0 F 007 007 007
    /etc/mail/aliases.pag       root  .     . . 1 . 0   1 0 0   1 0 0 F 007 007 007
    /etc/dfs                    root  .     . . . . .   . 0 .   . 0 . W 001 002 003
    /etc/dfs/dfstab             root  .     . . 1 . 0   . 0 0   . 0 0 W 008 008 008
    /etc/vfstab                 root  .     . . 1 . 0   . 0 0   . 0 0 W 001 002 003
    /etc/group                  root  .     . . 1 . 0   1 0 0   1 0 0 F 009 009 009
    /etc/hosts                  root  .     . . 1 . 0   1 0 0   1 0 0 F 001 002 003
    /etc/inet/hosts             root  .     . . 1 . 0   1 0 0   1 0 0 F 001 002 003
    /etc/hosts.allow            root  .     . . 1 . 0   1 0 0   1 0 0 W 010 010 010
    /etc/hosts.deny		    root  .     . . 1 . 0   1 0 0   1 0 0 W 010 010 010
    /etc/hosts.equiv            root  .     . . 1 . 0   0 0 0   0 0 0 W 011 011 011
    /etc/hosts.lpd              root  .     . . 1 . 0   . 0 0   . 0 0 W 011 011 011
    /etc/inet                   root  .     . . . . .   . 0 .   . 0 . W 001 002 003
    /etc/inet/inetd.conf        root  .     . . 1 . 0   . 0 0   . 0 0 W 012 012 012
    /etc/inetd.conf             root  .     . . 1 . 0   . 0 0   . 0 0 W 012 012 012
    /etc/motd                   root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/mtab                   root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/passwd                 root  .     . . 1 . 0   1 0 0   1 0 0 A 014 014 014
    /etc/shadow                 root  .     . . 1 0 0   0 0 0   0 0 0 A 014 014 014
    /etc/remote                 root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/resolv.conf            root  .     . . 1 . 0   1 0 0   1 0 0 W 016 016 016
    /etc/rpc                    root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/mail/sendmail.cf       root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/inet/services          root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/syslog.conf            root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/syslog.pid             root  .     . . 1 . 0   . 0 0   . 0 0 W 001 002 003
    /var/adm/utmp               root  .     . . 1 . 0   1 0 0   1 0 0 W 001 002 003
    #
    /etc/uucp/Permissions	    root  .     . . 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/uucp/Systems           uucp  .     . . 1 . 0   0 0 0   0 0 0 . 001 002 003
    #
    /usr/bin/uulog              root  uucp  0 0 . 0 1   . 0 1   . 0 . . 001 002 003
    /usr/bin/uuglist            uucp  uucp  1 0 . 0 1   . 0 1   . 0 . . 001 002 003
    /usr/bin/uuto               root  uucp  0 0 . 0 1   . 0 1   . 0 . . 001 002 003
    /usr/bin/uupick             root  uucp  0 0 . 0 1   . 0 1   . 0 . . 001 002 003
    /usr/bin/uustat             uucp  uucp  1 0 . 0 1   . 0 1   . 0 . . 001 002 003
    /usr/bin/cu                 uucp  uucp  1 0 . 0 1   . 0 1   . 0 . . 001 002 003
    /usr/bin/tip                uucp  .     1 0 . 0 1   . 0 .   . 0 . . 001 002 003
    /usr/bin/uucp               uucp  uucp  1 0 . 0 1   . 0 1   . 0 . . 001 002 003
    /usr/bin/uux                uucp  uucp  1 0 . 0 1   . 0 1   . 0 . . 001 002 003
    /usr/bin/uuname             uucp  uucp  1 0 . 0 1   . 0 1   . 0 . . 001 002 003
    /usr/bin/write              root  tty   0 1 . . 1   . 0 .   . 0 . . 001 002 003
    /usr/sbin/wall              root  tty   0 1 . . 1   . 0 .   . 0 . . 001 002 003
    #
    /usr/bin/login              root  .     1 0 1 . 1   1 0 1   1 0 1 F 001 002 003
    /usr/bin/passwd             root  .     1 1 1 . 1   1 0 1   1 0 1 F 001 002 003
    /usr/bin/su                 root  .     1 0 1 . 1   . 0 .   . 0 . F 001 002 003
    /usr/bin/sh                 root  .     0 0 1 . 1   1 0 1   1 0 1 W 001 002 003
    /usr/bin/*                  root  .     . . 1 . 1   . 0 .   . 0 . . 001 002 003
    /sbin/sh                    root  .     0 0 1 . 1   1 0 1   1 0 1 W 001 002 003
    #
    /devices/pseudo/clone:icmp  root  .     0 0 . . 0   0 0 0   0 0 0 F xxx xxx xxx
    /devices/pseudo/clone:zsh  root  .     0 0 . . 0   0 0 0   0 0 0 F xxx xxx xxx
    /devices/pseudo/clone*:ie  root  .     0 0 . . 0   0 0 0   0 0 0 F xxx xxx xxx
    /devices/pseudo/clone*:le  root  .     0 0 . . 0   0 0 0   0 0 0 F xxx xxx xxx
    /devices/pseudo/clone*:sp  root  .     0 0 . . 0   0 0 0   0 0 0 F xxx xxx xxx
    /devices/pseudo/clone*:ipd  root  .     0 0 . . 0   0 0 0   0 0 0 F xxx xxx xxx
    /devices/pseudo/clone*:ipdptp  root  .     0 0 . . 0   0 0 0   0 0 0 F xxx xxx xxx
    /devices/pseudo/clone*:icmp  root  .     0 0 . . 0   0 0 0   0 0 0 F xxx xxx xxx
    /devices/pseudo/clone*:zsh  root  .     0 0 . . 0   0 0 0   0 0 0 F xxx xxx xxx
    /devices/pseudo/dump*:dump  root  .     0 0 . . 0   . . 0   0 0 0 F xxx xxx xxx
    /devices/pseudo/log*:log  root  .     0 0 . . 0   . 0 0   0 0 0 F xxx xxx xxx
    /devices/pseudo/mm*:kmem  root  .     0 0 . . 0   . 0 0   0 0 0 F xxx xxx xxx
    /devices/pseudo/mm*:mem  root  .     0 0 . . 0   . 0 0   0 0 0 F xxx xxx xxx
    /devices/pseudo/openeepr*:openprom  root  .     0 0 . . 0   . 0 0   0 0 0 F xxx xxx xxx
    /devices/pseudo/ptm*:ptmajor  root  .     0 0 . . 0   0 0 0   0 0 0 F xxx xxx xxx
    /devices/pseudo/sad*:admin  root  .     0 0 . . 0   0 0 0   0 0 0 F xxx xxx xxx
    /devices/pseudo/vol*:volctl  root  .     0 0 . . 0   0 0 0   0 0 0 F xxx xxx xxx
    /devices/pseudo/wc*:wscons  root  .     0 0 . . 0   0 0 0   0 0 0 F xxx xxx xxx
    #
    /usr/sbin/arp 		    root  .     0 0 1 . 1   . 0 .   . 0 . W 025 025 025
    #
    /var/sadm		root	.	0 0 1 . 1   . 0 .   . 0 . W xxx xxx xxx
    /var/sadm/install	root	.	0 0 1 . 1   . 0 .   . 0 . W xxx xxx xxx
    /var/sadm/install/contents root . 	0 0 1 . 1   . 0 .   . 0 . W xxx xxx xxx
    tiger-3.2.3/systems/SunOS/5/gen_alias_sets0000755000175000017500000000470107756435012017062 0ustar  pacopaco#!/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 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/gen_alias_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    INPUTS=`
    $GREP '^passwd' /etc/nsswitch.conf |
    $AWK '{
           for(i=2;i<=NF;i++)
              print $i
          }'
    `
    
    for source in $INPUTS
    do
      case $source in
        files)
            scf=$SENDMAILCF
    	[ ! -n "$scf" ] && scf=/etc/mail/sendmail.cf
    	aliasset="`$GREP '^OA' $scf | $SED -e 's/^OA//' -e 's/,/ /g'`"
    	[ ! -n "$aliasset" ] && aliasset=/etc/mail/aliases
            c=0
    	for alifile in $aliasset
    	do
    	  $GREP -v '^#' $alifile |
    	  $SORT > $WORKDIR/etc_aliases.$c.$$
    	  echo "$alifile" > $WORKDIR/etc_aliases.$c.$$.src
    	  echo $WORKDIR/etc_aliases.$c.$$
    	  c="`$EXPR $c + 1`"
    	done
            [ "$SERVERCHECK" = "Y" ] && {
    	  $GETCLIENTDIRS |
    	  while read client dir
    	  do
    	    [ -f "$dir/etc/mail/aliases" ] && {
    	      $GREP -v '^#' $dir/mail/etc/aliases |
    	      $SORT > $WORKDIR/aliases.$$.$client
    	      echo "$client:/etc/mail/aliases" > $WORKDIR/aliases.$$.$client.src
    	      echo $WORKDIR/aliases.$$.$client
    	    }
    	    [ -f "$dir/etc/aliases" -a ! -h $dir/etc/aliases ] && {
    	      $GREP -v '^#' $dir/etc/aliases |
    	      $SORT > $WORKDIR/aliases.$$.$client
    	      echo "$client:/etc/aliases" > $WORKDIR/aliases.$$.$client.src
    	      echo $WORKDIR/aliases.$$.$client
    	    }
    	  done
    	}
    	;;
        nis)
    	[ -n "$YPCAT" ] && {
    	  $YPCAT -k aliases |
    	  $SED -e 's/ /:/' | 
    	  $SORT |
    	  $COMM -23 - $WORKDIR/etc_aliases.$$ > $WORKDIR/nis_aliases.$$
    	  echo "NIS" > $WORKDIR/nis_aliases.$$.src
    	  echo $WORKDIR/nis_aliases.$$
    	}
    	 ;;
        nisplus)
            [ -n "$NISCAT" ] && {
            $NISCAT mail_aliases.org_dir > $WORKDIR/nisplus_aliases.$$
    	echo "NIS+" > $WORKDIR/nisplus_passwd.$$.src
    	echo "$WORKDIR/nisplus_passwd.$$"
    	}
             ;;
        *)
             ;;
      esac
    done
    
    tiger-3.2.3/systems/SunOS/5/gen_bootparam_sets0000755000175000017500000000347507756435012017764 0ustar  pacopaco#!/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 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/gen_bootparam_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    INPUTS=`
    $GREP '^bootparams' /etc/nsswitch.conf |
    $AWK '{
           for(i=2;i<=NF;i++)
              print $i
          }'
    `
    
    for source in $INPUTS
    do
      case $source in
        files)
               [ -r /etc/bootparams ] && {
    	     $SED -e 's/#.*$//' /etc/bootparams |
    	     $SED -e '/^[ \t]*$/d' |
    	     $AWK '
    	     BEGIN {LINE="";}
    	     /\\\\$/ {LINE=LINE " " substr($0, 1, length($0)-1);}
    	     !/\\\\$/ {print LINE $0; LINE="";}
    	     ' > $WORKDIR/etc_bootparams.$$
    	     echo "/etc/bootparams" > $WORKDIR/etc_bootparams.$$.src
    	     echo "$WORKDIR/etc_bootparams.$$"
    	   }
    	 ;;
        nis)
               [ -n "$YPCAT" ] && {
    	     $YPCAT bootparams > $WORKDIR/nis_bootparams.$$
    	     echo "NIS" > $WORKDIR/nis_bootparams.$$.src
    	     echo "$WORKDIR/nis_bootparams.$$"
    	   }
    	 ;;
        nisplus)
               [ -n "$NISCAT" ] && {
    	     $NISCAT bootparams.org_dir > $WORKDIR/nisplus_bootparams.$$
    	     echo "NIS+" > $WORKDIR/nisplus_bootparams.$$.src
    	     echo "$WORKDIR/nisplus_bootparams.$$"
    	   }
    	 ;;
        *)
             ;;
      esac
    done
    tiger-3.2.3/systems/SunOS/5/gen_export_sets0000755000175000017500000000266607722712741017322 0ustar  pacopaco#!/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 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/gen_export_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    [ -r /etc/dfs/dfstab ] && {
      $SED -e '/^#/d' -e '/^[ ]*$/d' -e 's/#.*$//' /etc/dfs/dfstab |
      while read line
      do
        eval set $line
        shift
        while [ $# -gt 0 ]; do
          case $1 in
    	-F) type=$2
    	    if [ $2 != "nfs" ]; then
    	      break
    	    fi
    	    shift 2
    	  ;;
    	-o) options=$2
    	    shift 2
              ;;
    	-d) shift 2
    	  ;;
    	 *) path=$1
    	    break
              ;;
          esac
        done
        if [ $type = "nfs" ]; then
          options="`echo \"$options\" | $SED -e 's/rw=/access=/'`"
          echo "$path -$options"
        fi
      done > $WORKDIR/export.$$
    
      echo "/etc/dfs/dfstab" > $WORKDIR/export.$$.src
      echo $WORKDIR/export.$$
    }
    tiger-3.2.3/systems/SunOS/5/gen_group_sets0000755000175000017500000000266507722712741017134 0ustar  pacopaco#!/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 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/gen_group_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    INPUTS=`
    $GREP '^group' /etc/nsswitch.conf |
    $AWK '{
           for(i=2;i<=NF;i++)
              print $i
          }'
    `
    
    for source in $INPUTS
    do
      case $source in
        files)
             $SORT /etc/group > $WORKDIR/etc_group.$$
    	 echo "/etc/group" > $WORKDIR/etc_group.$$.src
    	 echo $WORKDIR/etc_group.$$
    	 ;;
        nis)
    	   $YPCAT group > $WORKDIR/nis_gruop.$$
    	   echo "NIS" > $WORKDIR/nis_group.$$.src
    	   echo $WORKDIR/nis_group.$$
    	 ;;
        nisplus)
               $NISCAT group.org_dir > $WORKDIR/nisplus_group.$$
    	   echo "NIS+" > $WORKDIR/nisplus_group.$$.src
    	   echo "$WORKDIR/nisplus_group.$$"
             ;;
        *)
             ;;
      esac
    done
    tiger-3.2.3/systems/SunOS/5/gen_inetd0000755000175000017500000000231707722712741016037 0ustar  pacopaco#!/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 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/gen_inetd - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    [ ! -h /etc/inetd.conf -a -r /etc/inetd.conf ] && {
      $GREP -v '^#' /etc/inetd.conf |
      $SORT > $WORKDIR/etc_inetd.$$
      echo "/etc/inetd.conf" > $WORKDIR/etc_inetd.$$.src
      echo $WORKDIR/etc_inetd.$$
    }
    
    [ -r /etc/inet/inetd.conf ] && {
      $GREP -v '^#' /etc/inet/inetd.conf |
      $SORT > $WORKDIR/etc_inetd2.$$
      echo "/etc/inet/inetd.conf" > $WORKDIR/etc_inetd2.$$.src
      echo $WORKDIR/etc_inetd2.$$
    }
      
    tiger-3.2.3/systems/SunOS/5/gen_mounts0000755000175000017500000000304407722712741016257 0ustar  pacopaco#!/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 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/gen_mounts - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    
    LOCAL_ONLY=$1
    CHKRO=$2
    
    ronly()
    {
      RO=1
      case "$1" in
        *,ro,*|ro,*|ro|*,ro) RO=0
          ;;
      esac
      return $RO
    }
    
    localfs()
    {
      LOCAL=1
      [ "$1" = 'ufs' ] && LOCAL=0
      [ "$1" = 'tmpfs' ] && LOCAL=0
    
      return $LOCAL
    }
    
    /bin/cat /etc/mnttab |
    while read fs mtpoint fstype opts time
    do
      PRINT=1
      [ "$CHKRO" = "rw" ] && { ronly "$opts" && PRINT=0; }
      [ "$LOCAL_ONLY" = "local" ] && { localfs "$fstype" || PRINT=0; }
      [ "$PRINT" = "1" ] && {
        if [ "$fs" = 'swap' ]; then
          fs=
          rfs=
        else	
          dirname=`/usr/bin/dirname $fs`
          ddirname=`/usr/bin/dirname $dirname`
          file=`/usr/bin/basename $fs`
          rfs="$ddirname/rdsk/$file"
        fi
        echo "$mtpoint $fstype $fs $rfs"
      }
    done |
    /usr/bin/sort |
    /usr/bin/uniq
    tiger-3.2.3/systems/SunOS/5/gen_passwd_sets0000755000175000017500000000614010223074445017261 0ustar  pacopaco#!/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 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/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
      case "$parm" in
        -p) passwordflag=Y;;
        -l) local=1;;
        *)	outfile="$parm";;
      esac
    done
    zappasswd()
    {
      IFS=:
      while read user passwd rest
      do
        case $passwd in
          [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="xxxxxxxxxxxxx"
    	   ;;
            ' ')  passwd=" "
               ;;
    	*)
    	     passwd="*"
    	   ;;
        esac
        echo "$user:$passwd:$rest" >> $OUTPUT
      done
    }
    
    INPUTS=`
    $GREP '^passwd' /etc/nsswitch.conf |
    $AWK '{
           for(i=2;i<=NF;i++)
              print $i
          }'
    `
    
    for source in $INPUTS
    do
      case $source in
        files)
               $SORT /etc/passwd |sed -e "s/:$/:\/dev\/null/"> $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.$$ |
    	   {
    	     if [ "$passwordflag" = 'Y' ]; then
    	       $CAT
    	     else
    	       zappasswd
    	     fi
    	   } > $WORKDIR/etc_passwd.$$
    	   $GREP '^+' $WORKDIR/etc_passwd.$$ && {
    	     echo "--WARN-- [miscxxxx] The '+' key in the /etc/passwd file should only be used in nsswitch 'compat' mode."
    	   }
    	   
    	   [ -s $WORKDIR/etc_passwd.$$ ] && {
    	     echo "/etc/passwd" > $WORKDIR/etc_passwd.$$.src
    	     echo $WORKDIR/etc_passwd.$$ >> $outfile
    	   }
    	   $RM -f $WORKDIR/p.$$
    	 ;;
        nis)   [ "$local" != 1 ] && [ -n "$YPCAT" ]  && {
                 $YPCAT passwd > $WORKDIR/nis_passwd.$$
    	     echo "NIS" > $WORKDIR/nis_passwd.$$.src
    	     echo $WORKDIR/nis_passwd.$$ >> $outfile
    	   }
    	 ;;
        nisplus) [ "$local" != 1 ] && [ -n "$NISCAT" ] && {
                   $NISCAT passwd.org_dir > $WORKDIR/nisplus_passwd.$$
    	       echo "NIS+" > $WORKDIR/nisplus_passwd.$$.src
    	       echo "$WORKDIR/nisplus_passwd.$$" >> $outfile
    	     }
             ;;
        *)
             ;;
      esac
    done
    tiger-3.2.3/systems/SunOS/5/gen_services0000755000175000017500000000336007722712741016556 0ustar  pacopaco#!/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 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/gen_services - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    inputs="`
    $GREP '^services' /etc/nsswitch.conf |
    $AWK '{
           for(i=2;i<=NF;i++)
              print $i
          }'
    `"
    
    for source in $inputs
    do
      case "$source" in
        files)
               [ -r /etc/services ] && {
    	     $SED -e 's/#.*$//' /etc/services |
    	     $SED -e '/^[ \t]*$/d' > $WORKDIR/etc_services.$$
    	     echo "/etc/services" > $WORKDIR/etc_services.$$.src
    	     echo "$WORKDIR/etc_services.$$"
    	   }
    	 ;;
        nis)
               [ -n "$YPCAT" ] && {
    	     $YPCAT services > $WORKDIR/nis_services.$$
    	     echo "NIS" > $WORKDIR/nis_services.$$.src
    	     echo "$WORKDIR/nis_services.$$"
    	   } 2>/dev/null
    	 ;;
        nisplus)
               [ -n "$NISCAT" ] && {
    	     if $NISCAT services.org_dir > $WORKDIR/nisplus_services.$$; then
    	       echo "NIS+" > $WORKDIR/nisplus_services.$$.src
    	       echo "$WORKDIR/nisplus_services.$$"
    	     else
    	       $RM -f $WORKDIR/nisplus_services.$$
    	     fi
    	   } 2>/dev/null
    	 ;;
        *)
             ;;
      esac
    done
    tiger-3.2.3/systems/SunOS/5/gendlclients0000755000175000017500000000315010045247305016541 0ustar  pacopaco#!/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 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/gendlclients - 06/14/93
    #
    # 05/02/2004 jfs  Try to avoid eval problems if handling variables with
    #                 special characters (such as space)
    #
    #-----------------------------------------------------------------------------
    #
    
    parse_bootparam()
    {
      $AWK '
           BEGIN {LINE="";}
           $0 ~ /\\$/ {printf("%s ", substr($0, 1, length($0)-1));}
           $0 !~ /\\$/ {printf("%s\n", $0);}
           END {printf("\n");}
       ' |
      $AWK '{
               for(i=2;i<=NF;i++)
                 if(substr($i, 1,5) == "root="){
    	       x=substr($i, 6, length($i));
                   split(x, ar, ":");
                   print $1, ar[1], ar[2];
       	     }
            }'
    }
    
    $GEN_BOOTPARAM_SETS | 
    while read bootparam_set
    do
      parse_bootparam < $bootparam_set
      
      $RM -f $bootparam_set $bootparam_set.src
    done |
    $SORT -u |
    while read client server filesys
    do
      eval "case \"$server\" in $HOSTNAMESLIST) echo \"$client $filesys\";; esac"
    done
    tiger-3.2.3/systems/SunOS/5/getdisks0000655000175000017500000000233107722712741015713 0ustar  pacopaco#!/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 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.
    #
    # getdisks - 06/24/93
    #
    #-----------------------------------------------------------------------------
    #
    
    $AWK '$3 == "ufs" || $3 == "tmpfs" {print}' < /etc/mnttab |
    $SORT |
    $AWK '
      BEGIN {lastdisk=""; fslist="";}
      {
        disk=substr($1, 1, length($1)-2);
        if(disk == lastdisk){
           fslist=fslist " " $2;
        }
        else {
    	if(lastdisk != ""){
               printf("%s\n", fslist);
            }
            lastdisk=disk;
            fslist = $2;
        }
      }
      END { if(lastdisk != ""){
              printf("%s\n", fslist);
            } 
      }'
    tiger-3.2.3/systems/SunOS/5/ndd_parms0000644000175000017500000000351607720446312016045 0ustar  pacopaco# This file contains the necessary ndd information for the check_ndd module.
    # Blank lines and lines starting with '#' in this file are ignored by the 
    # check_ndd module.
    #
    # The fields are defined as:
    #   device file:   This is the /dev files used by ndd.
    #   ndd parameter: This is the parameter checked by ndd.
    #   good values:   This is the '|' seperated lists of "good" values returned 
    #                  by ndd
    #   message label: This is the label associated with the check if the value 
    #                  returned by ndd is "bad".
    #   message id:    This is the message id used with the check if the value 
    #                  returned by ndd is "bad".
    #   message:       This is the message used with the check if the value 
    #                  returned by ndd is "bad".
    
    /dev/ip  ip_forwarding                         0 WARN sol003w The system has IP forwarding enabled.
    /dev/ip  ip_forward_src_route                  0 FAIL sol004f The system permits source routing from incoming packets.
    /dev/ip  ip_respond_to_address_mask            0 FAIL sol001f The system is configured to answer to ICMP addressmask requests.
    /dev/ip  ip_respond_to_timestamp               0 FAIL sol001f The system is configured to answer to ICMP timestamp requests.
    /dev/ip  ip_respond_to_timestamp_broadcast     0 FAIL sol001f The system is configured to answer to ICMP timestamp broadcasts.
    /dev/ip  ip_ignore_redirect                    1 WARN sol002w The system accepts ICMP redirection messages.
    /dev/ip  ip_respond_to_echo_broadcast          0 FAIL sol001f The system is configured to answer to ICMP broadcasts.
    /dev/ip  ip_respond_to_address_mask_broadcast  0 FAIL sol001f The system is configured to answer to ICMP address mask broadcasts.
    # 
    # TODO: add messages for these
    #/dev/ip  ip_forward_directed_broadcasts
    #/dev/ip  ip_strict_dst_multihoming
    #/dev/tcp tcp_strong_iss
    tiger-3.2.3/systems/SunOS/5/ndd_parms_local0000644000175000017500000000165207720446312017216 0ustar  pacopaco# This file contains the local, custom checks performed by the check_ndd 
    # module.  This file is available to place additional, site specific 
    # checks that are not directly related to security.
    # i.e. Performance enhancements, etc.
    #
    # Blank lines and lines starting with '#' in this file are ignored by the 
    # check_ndd module.
    #
    # The fields are defined as:
    #   device file:   This is the /dev files used by ndd.
    #   ndd parameter: This is the parameter checked by ndd.
    #   good values:   This is the '|' seperated lists of "good" values returned 
    #                  by ndd
    #   message label: This is the label associated with the check if the value 
    #                  returned by ndd is "bad".
    #   message id:    This is the message id used with the check if the value
    #                  returned by ndd is "bad".
    #   message:       This is the message used with the check if the value 
    #                  returned by ndd is "bad".
    tiger-3.2.3/systems/SunOS/5/rel_file_exp_list0000644000175000017500000000014607722712467017573 0ustar  pacopaco/usr/openwin/bin/ff.core
    /usr/openwin/bin/loadmodule
    /usr/openwin/bin/xlock
    /usr/openwin/lib/mkcookie
    tiger-3.2.3/systems/SunOS/5/services0000644000175000017500000000227607722712467015734 0ustar  pacopacoNeWS 144/tcp
    biff 512/udp
    bootpc 68/udp
    bootps 67/udp
    chargen 19/tcp
    chargen 19/udp
    courier 530/tcp
    csnet-ns 105/tcp
    cvc 1495/tcp
    cvc_hostd 442/tcp
    daytime 13/tcp
    daytime 13/udp
    discard 9/tcp
    discard 9/udp
    domain 53/tcp
    domain 53/udp
    dtspc 6112/tcp
    echo 7/tcp
    echo 7/udp
    eklogin 2105/tcp
    exec 512/tcp
    finger 79/tcp
    fs 7100/tcp
    ftp 21/tcp
    ftp-data 20/tcp
    hostnames 101/tcp
    imap 143/tcp
    ingreslock 1524/tcp
    iso-tsap 102/tcp
    kerberos 750/tcp
    kerberos 750/udp
    kerberos-adm 749/tcp
    kerberos-adm 749/udp
    klogin 543/tcp
    krb5_prop 754/tcp
    ldap 389/tcp
    ldap 389/udp
    ldaps 636/tcp
    ldaps 636/udp
    link 87/tcp
    listen 2766/tcp
    lockd 4045/tcp
    lockd 4045/udp
    login 513/tcp
    monitor 561/udp
    name 42/udp
    netstat 15/tcp
    new-rwho 550/udp
    nfsd 2049/tcp
    nfsd 2049/udp
    nntp 119/tcp
    ntp 123/tcp
    ntp 123/udp
    pcserver 600/tcp
    pop2 109/tcp
    pop3 110/tcp
    printer 515/tcp
    rje 77/tcp
    rmonitor 560/udp
    route 520/udp
    shell 514/tcp
    smtp 25/tcp
    sunrpc 111/tcp
    sunrpc 111/udp
    supdup 95/tcp
    syslog 514/udp
    systat 11/tcp
    talk 517/udp
    tcpmux 1/tcp
    telnet 23/tcp
    tftp 69/udp
    time 37/tcp
    time 37/udp
    ufsd 1008/tcp
    ufsd 1008/udp
    uucp 540/tcp
    uucp-path 117/tcp
    who 513/udp
    whois 43/tcp
    www-ldap-gw 1760/tcp
    www-ldap-gw 1760/udp
    x400 103/tcp
    x400-snd 104/tcp
    tiger-3.2.3/systems/SunOS/5/testsuid.c0000644000175000017500000000022307722712467016164 0ustar  pacopaco
    int
    main()
    {
         int status = 0;
         setuid(1);
         if(
            seteuid(0) != -1 ||
    	setuid(0) != -1)
            status = 1;
         exit(status);
    }
    tiger-3.2.3/systems/SunOS/5/5.3/0000755000175000017500000000000011306441047014446 5ustar  pacopacotiger-3.2.3/systems/SunOS/5/5.3/signatures0000644000175000017500000003125507650724675016605 0ustar  pacopaco#
    #     tiger - A UN*X security checking system
    #     Copyright (C) 1993-1995 Douglas Lee Schales, David K. Hess, David R. Safford
    #
    #     Please see the file `COPYING' for the complete copyright notice.
    #
    # SunOS/5.3/signatures - 02/21/1995
    #
    #-----------------------------------------------------------------------------
    #
    #
    #@DEST=SunOS/5/5.3
    #@CONFIG=SunOS/5
    #
    Y .       /etc/lib/unix_scheme.so.1 2496c5fc84d8cb6499fe883c1244b93d SunOS 5.3
    Y .       /kernel/strmod/kb 6bd35a795bdb42b1b400818d67d35a6b Sun Patch ID 101631-02 [sun4]
    Y .       /kernel/strmod/kb 76a867860aebea83c836d9df63849c68 Sun Patch ID 101631-02 [sun4c]
    Y .       /kernel/strmod/kb 9cee8671d666b8a7aae9933b0a12a58a Sun Patch ID 101631-02 [sun4d]
    Y .       /kernel/strmod/kb 4c25f01091605f8c6d68c88475eefb84 Sun Patch ID 101631-02 [sun4e]
    Y .       /kernel/strmod/kb a850e5062a3ffb82878e6d2861abc48d Sun Patch ID 101631-02 [sun4m]
    O .       /kernel/strmod/kb 2d66c01997b2928e779214f6393134ef SunOS 5.3 [sun4m] (security patch is 101631)
    O .       /kernel/strmod/kb 3594011f7824cdc246bf1dd9b8250d75 SunOS 5.3 [sun4e] (security patch is 101631)
    O .       /kernel/strmod/kb 5392056cd5157bc83b0b89b90d923c60 SunOS 5.3 [sun4c] (security patch is 101631)
    O .       /kernel/strmod/kb 848555dd9553194ec674dd46fd416822 SunOS 5.3 (security patch is 101631)
    O .       /kernel/strmod/kb f25caf8c31958aced3408bb01106e8a2 SunOS 5.3 [sun4d] (security patch is 101631)
    Y .       /kernel/strmod/ms 8c451a0aa3936fa24ef97ca952d58e07 Sun Patch ID 101631-02
    O .       /kernel/strmod/ms 45a30b5c66ac8a802e3259dbb352a4cc SunOS 5.3 (security patch is 101631)
    Y .       /sbin/ifconfig 21f101ce36e13ea29c36b9cfcdb69fd2 SunOS 5.3
    Y .       /sbin/init ebde7d45a7d573488c5df9a68d162c3b SunOS 5.3
    Y .       /sbin/jsh 347a3af7a26d1b024cb625f4fcd6bb3e SunOS 5.3
    Y .       /sbin/sh 347a3af7a26d1b024cb625f4fcd6bb3e SunOS 5.3
    Y .       /sbin/su 9ea292694fe1097e0dad83003056ab2c SunOS 5.3
    Y .       /sbin/sulogin f2f8d50ca88bad2f819dc801c2cbeb76 SunOS 5.3
    Y .       /sbin/sync 085d04dcc64b643e84410614c9d2a477 SunOS 5.3
    Y .       /usr/4lib/libc.so.1.8 676e45542280953d7d2d73f76ddc2649 SunOS 5.3
    Y .       /usr/4lib/libc.so.2.8 51524356c047a246c4ad49a57cf43196 SunOS 5.3
    Y .       /usr/bin/at 11995a708ea45b44906c8b0af32208a3 Sun Patch ID 101572-03
    O .       /usr/bin/at 5aac387fe529bbdf69535e48dedd7bb0 SunOS 5.3 (security patch is 101572)
    Y .       /usr/bin/atq 13cfc8bdea06cb545c83768f2a1e0d19 SunOS 5.3
    Y .       /usr/bin/atrm 5be65bb40d0e4f3977aff81b6a3012c3 Sun Patch ID 101572-03
    O .       /usr/bin/atrm 19114d7f6b5f32ea5047c592edad8d1b SunOS 5.3 (security patch is 101572)
    Y .       /usr/bin/crontab de8cb2a9ba57a2747c0af0a9e675dec5 Sun Patch ID 101572-03
    O .       /usr/bin/crontab beaf49f3aeabc56241e019d43facc0be SunOS 5.3 (security patch is 101572)
    Y .       /usr/bin/csh 7278ce4ee2a2f6d73f3bee905d4a26cd SunOS 5.3
    Y .       /usr/bin/jsh fb96fde274122fbf432fe04b2ca9f189 SunOS 5.3
    Y .       /usr/bin/sh fb96fde274122fbf432fe04b2ca9f189 SunOS 5.3
    Y .       /usr/lib/rsh fb96fde274122fbf432fe04b2ca9f189 SunOS 5.3
    Y .       /usr/bin/ksh b810f2706c43ee834db7fc4c0ff8e58f SunOS 5.3
    Y .       /usr/bin/lastcomm ecd5c1c4b735b0503e3ba4fa2cda923f SunOS 5.3
    Y .       /usr/bin/login 556a825e8b61fc3444f06f714846a107 SunOS 5.3
    Y .       /usr/bin/mail 2664c293decb035e514d424a34e10cb9 SunOS 5.3
    Y .       /usr/bin/netstat 1552f1cee62255920bfa1f1d9ee3439d SunOS 5.3
    Y .       /usr/bin/nisaddcred 6d0aa0bd7468f66833d87ea559ec1436 Sun Patch ID 101329-15
    O .       /usr/bin/nisaddcred 512b4db2b949cc6982cc9248d25c0b09 Sun Patch ID 101329-13 (current is 101329-15)
    O .       /usr/bin/nisaddcred 06a616c66cdf1aeb0692d5f7d1b65e63 SunOS 5.3 (security patch is 101329)
    Y .       /usr/bin/nischgrp c07b32c36722f679751b2ccaa15b42a1 Sun Patch ID 101329-15
    O .       /usr/bin/nischgrp 6a791e956d90877d60d24277e583d477 Sun Patch ID 101329-13 (current is 101329-15)
    O .       /usr/bin/nischgrp d1f4175cf23faaa28b82ec44ca8a7ab8 SunOS 5.3 (security patch is 101329)
    Y .       /usr/bin/nisgrpadm 8cd3d53f4fa5d418f9026d20baf31a24 Sun Patch ID 101329-15
    O .       /usr/bin/nisgrpadm 4262aa7bd774f5c3e9a5970a64b6c1c6 Sun Patch ID 101329-13 (current is 101329-15)
    O .       /usr/bin/nisgrpadm e19c8c776729c2afecf5951f7f25f645 SunOS 5.3 (security patch is 101329)
    Y .       /usr/bin/passwd eb02e7efa1aa516816c83ce39ed5696c SunOS 5.3
    Y .       /usr/bin/ps 275912f7ba5ee9fb59eb5509bbb94b2f SunOS 5.3
    Y .       /usr/bin/rcp 225debe9bc64948f0cd7cd6d655caaac SunOS 5.3
    Y .       /usr/bin/rdist 59bf06e6b2b48490e2b04164b0bb15dd SunOS 5.3
    Y .       /usr/bin/rlogin 1d5132a500c11dba8464d0cde43d37a0 SunOS 5.3
    Y .       /usr/bin/rpcinfo 91aa381e41ea46378e11d310dc4901d9 SunOS 5.3
    Y .       /usr/bin/rsh cdaf61c39b246edb0ba19ba919f6faa2 SunOS 5.3
    Y .       /usr/bin/stty 10f17412a05a229b3f90fcf554c114e4 SunOS 5.3
    Y .       /usr/bin/su f6eec80414759370a211d49b11ff3019 SunOS 5.3
    Y .       /usr/bin/telnet b77528e85438f0f87fdf572a1e923380 SunOS 5.3
    Y .       /usr/bin/time f753645299fa8b4a458443812f59fa17 SunOS 5.3
    Y .       /usr/bin/timex 8ff014e7df08b9dd6d0a2d2b6fc60da1 SunOS 5.3
    Y .       /usr/lib/autofs/automountd f1b47a73c86c8b32d50ea7a4dba9a8b5 Sun Patch ID 101329-15
    O .       /usr/lib/autofs/automountd 3a174d3033b68cd8d08b3f5944cebb65 Sun Patch ID 101329-13 (current is 101329-15)
    O .       /usr/lib/autofs/automountd cf26aec1f790f85a7755802ef0cd49bd SunOS 5.3 (security patch is 101329)
    Y .       /usr/lib/expreserve f63d99fdbdd6a2f1ebeda0bb7067ab78 SunOS 5.3
    Y .       /usr/lib/exrecover 73ffcdb2cb1d47e4c2ed4e2b3641a5e1 SunOS 5.3
    Y .       /usr/lib/fs/autofs/automount 5cfc0e12571b98c8cc7e88679755e673 Sun Patch ID 101329-15
    O .       /usr/lib/fs/autofs/automount 1f09736b819907af9cf7dde295636b72 Sun Patch ID 101329-13 (current is 101329-15)
    O .       /usr/lib/fs/autofs/automount 98cc63d75cf59e8e0e88787568036dce SunOS 5.3 (security patch is 101329)
    Y .       /usr/lib/ld.so 799d57de8e8c5723abc42851d862cff7 SunOS 5.3
    Y .       /usr/lib/ld.so.1 86b24fcd24dbed9e53aadc60e97e29b2 SunOS 5.3
    Y .       /usr/lib/libc.so.1 cf5c7e7c3e6eb525b980174fb7916395 SunOS 5.3
    Y .       /usr/lib/libnsl.a 3a540c6d6c79c71e3404b3cfe8c54de9 Sun Patch ID 101329-15
    O .       /usr/lib/libnsl.a 14dcddb87365e55b52fab8d44377070c Sun Patch ID 101329-13 (current is 101329-15)
    O .       /usr/lib/libnsl.a 7c3bdf9cd6e5c3268c870f098da24a70 SunOS 5.3 (security patch is 101329)
    Y .       /usr/lib/libnsl.so.1 fbcfe806188fb8acf2a833b01bfb08b1 Sun Patch ID 101329-15
    O .       /usr/lib/libnsl.so.1 4a55b56abb53e5ad06667cfc2b68563f Sun Patch ID 101329-13 (current is 101329-15)
    O .       /usr/lib/libnsl.so.1 cfb528f97b9abfd13c047d912d6e5af4 SunOS 5.3 (security patch is 101329)
    Y .       /usr/lib/nis/nisaddent 7d5df8acb82a94c7176f580ab5676599 Sun Patch ID 101329-15
    O .       /usr/lib/nis/nisaddent f8d12b0a35bc04e02bbd254a729bf091 Sun Patch ID 101329-13 (current is 101329-15)
    O .       /usr/lib/nis/nisaddent 88eec81f21ebd468dbb4592eb9ff4bea SunOS 5.3 (security patch is 101329)
    Y .       /usr/lib/nis/nisserver 50737255f2a2318cb2d51a3db11ab1f3 Sun Patch ID 101329-15
    O .       /usr/lib/nis/nisserver 50737255f2a2318cb2d51a3db11ab1f3 Sun Patch ID 101329-13 (current is 101329-15)
    O .       /usr/lib/nis/nisserver 681a62ed424fa72c9294ed05256b1573 SunOS 5.3 (security patch is 101329)
    Y .       /usr/lib/nss_dns.so.1 5105ebd27dccb66ad8a04629a35db765 Sun Patch ID 102167-01
    O .       /usr/lib/nss_dns.so.1 e71de49c2199152f88cb0cdaa35c9d25 SunOS 5.3 (security patch is 102167)
    #
    # Um, libnss_dns.a doesn't appear to be on the 5.3 distribution
    #
    Y .       /usr/lib/libnss_dns.a ceada2260bfa56d032aba16757e88b89 Sun Patch ID 102167-01
    Y .       /usr/lib/security/unix_scheme.so.1 2496c5fc84d8cb6499fe883c1244b93d SunOS 5.3
    Y .       /usr/lib/sendmail a1a01c8e76d64e2fc8920f6467ba8f4c Sun Patch ID 101739-07
    Y .       /usr/lib/sendmail 93b99cce35fda8074dbfa0daa97ebbb0 Sun Patch ID 101739-07
    Y .       /usr/lib/sendmail.mx 93b99cce35fda8074dbfa0daa97ebbb0 Sun Patch ID 101739-07
    O sig016w /usr/lib/sendmail 3c8a5b867f7c3b3564409d9997ab9f46 Sun Patch ID 101739-04 (current is 101739-07)
    O sig016w /usr/lib/sendmail 7700f710831c8a39f8321ec302f5797d Sun Patch ID 101739-04 (current is 101739-07)
    O sig016w /usr/lib/sendmail.mx 7700f710831c8a39f8321ec302f5797d Sun Patch ID 101739-04 (current is 101739-07)
    O sig016w /usr/lib/sendmail 1844b3d7868e969531904337709559c5 Sun Patch ID 101371-03 (current is 101739-07)
    O sig016w /usr/lib/sendmail 05b08c0573631e264420c8b4fe17da30 Sun Patch ID 101371-03 (current is 101739-07)
    O sig016w /usr/lib/sendmail.mx 05b08c0573631e264420c8b4fe17da30 Sun Patch ID 101371-03 (current is 101739-07)
    O sig016w /usr/lib/sendmail ec451277fa76c6f7aa308d4f2d979a39 Sun Patch ID 101739-01 (current is 101739-07)
    O sig016w /usr/lib/sendmail ef4cd0f6484f6f500921209f0c968fac Sun Patch ID 101739-01 (current is 101739-07)
    O sig016w /usr/lib/sendmail.mx ef4cd0f6484f6f500921209f0c968fac Sun Patch ID 101739-01 (current is 101739-07)
    O sig016w /usr/lib/sendmail bdea8c7fb4571b78c0ccb64853896c06 SunOS 5.3 (security patch is 101739)
    O sig016w /usr/lib/sendmail.mx 5b6811b051b45398ab4b8610c1f0d55b SunOS 5.3 (security patch is 101739)
    O sig016w /usr/lib/sendmail 5b6811b051b45398ab4b8610c1f0d55b SunOS 5.3 (security patch is 101739)
    Y .       /usr/lib/utmp_update 622e07d0765f152d71416a4fb7ae7455 Sun Patch ID 101615-02
    Y .       /usr/lib/utmp_update 2dca07dcc1297d5f61c2faeef6e973e6 SunOS 5.3
    Y .       /usr/lib/uucp/uucleanup b8016e15c2c1e17f93fe2d86e6ea391b Sun Patch ID 101712-01
    O .       /usr/lib/uucp/uucleanup 404fac47a72885b32b3186f7c7ddb000 SunOS 5.3 (security patch is 101712)
    Y .       /usr/sbin/chroot 6999e3336f4ea487edafc109a044bb06 SunOS 5.3
    Y .       /usr/sbin/cron 463f912878dc0cc18817f5ca289a22b7 Sun Patch ID 101572-03
    O .       /usr/sbin/cron de8a1516a4c9b97975380ae4ebde0760 SunOS 5.3 (security patch is 101572)
    Y .       /usr/sbin/ifconfig f215a1794067474944f0a4f969505b4d SunOS 5.3
    Y .       /usr/sbin/in.comsat 1c3bd5232016b9d7a4c1c3724d2ac854 SunOS 5.3
    Y .       /usr/sbin/in.fingerd 4f0ff074ff4a0da6b2ca2b72b01a0e90 SunOS 5.3
    Y .       /usr/sbin/in.ftpd ff8a34d56da260a13ea199570cefb41e SunOS 5.3
    Y .       /usr/sbin/in.named f1f3325b68788d1de44448f0cdfd49b7 SunOS 5.3
    Y .       /usr/sbin/in.rarpd bcb1f827254b80b44f7fc462df6ce6b8 SunOS 5.3
    Y .       /usr/sbin/in.rdisc 8fdc31c49b940af15c04aa7623b11afa SunOS 5.3
    Y .       /usr/sbin/in.rexecd 967cdaf0378eb7ba4b10acfd9542d4e1 SunOS 5.3
    Y .       /usr/sbin/in.rlogind df190c5d8417becf436a50b9318693bb SunOS 5.3
    Y .       /usr/sbin/in.routed b81a4e7a114a60a33a3734857343f3e7 SunOS 5.3
    Y .       /usr/sbin/in.rshd c20629dacc4b6b12908428b7cfb72988 SunOS 5.3
    Y .       /usr/sbin/in.rwhod fc3eea3aa0598ac57b8d63bc45f75869 SunOS 5.3
    Y .       /usr/sbin/in.talkd 43de66446ec98082b15e18fb7638b229 SunOS 5.3
    Y .       /usr/sbin/in.telnetd 6d151854c7a9dc52b822f5b000d59b41 SunOS 5.3
    Y .       /usr/sbin/in.tftpd c896ea8783c388f313849195d660f686 SunOS 5.3
    Y .       /usr/sbin/in.tnamed 9b64f37c7cc896eba8e1d5d74fcd2a8a SunOS 5.3
    Y .       /usr/sbin/in.uucpd df766fb7f51fda5dca9804881612a4c0 SunOS 5.3
    Y .       /usr/sbin/inetd 27c320a5332789566962994574f5f866 SunOS 5.3
    Y .       /usr/sbin/init 242c96791e2524f8c9f1ba707cbbd437 SunOS 5.3
    Y .       /usr/sbin/modload 8153f5ea9c9bcdc685b800656ccd3457 SunOS 5.3
    Y .       /usr/sbin/rpc.bootparamd 36096b8dde6c253cfbbe45861c0dcdef SunOS 5.3
    Y .       /usr/sbin/rpc.nisd a3e2e38a6f9233141a84186f97331da0 Sun Patch ID 101329-15
    O .       /usr/sbin/rpc.nisd fc335b0f158fb1370c97633a8c0aae59 Sun Patch ID 101329-13 (current is 101329-15)
    O .       /usr/sbin/rpc.nisd 71441013e24ac56bbcaaf7cfa4788d50 SunOS 5.3 (security patch is 101329)
    Y .       /usr/sbin/rpc.nisd_resolv 6ffd811ae3e56aefddabf384f24c14ba SunOS 5.3
    Y .       /usr/sbin/rpc.rexd 0df26d1c7c17ed6f7ebec6da875f669f SunOS 5.3
    Y .       /usr/sbin/rpcbind 6d1b6e74a9d61100ddf2eaedfa9b49ee Sun Patch ID 102034-01
    O .       /usr/sbin/rpcbind 6669c5c42e082bae62de131ee8e96f86 SunOS 5.3 (security patch is 102034)
    Y .       /usr/sbin/static/rcp efe25fa7922c9b092e828ebccad4761d SunOS 5.3
    Y .       /usr/sbin/static/tar 6e81f00484187d88ce9a7e4239d1c94a Sun Patch ID 101327-08
    O .       /usr/sbin/static/tar 6b8791e9bf5a26a15791d8b0a91eaea0 Sun Patch ID 101327-01 (current is 101327-08)
    O sig017w /usr/sbin/static/tar 0a108d1413518a8890de2ee232638085 SunOS 5.3 (security patch is 101327)
    #Y .       /usr/sbin/static/tar 0a108d1413518a8890de2ee232638085 SunOS 5.3
    Y .       /usr/sbin/sync cd432113c0e84bf45bf09bd2b08fa08f SunOS 5.3
    Y .       /usr/sbin/syslogd d886048377cb4bab5599eab99c614e45 SunOS 5.3
    Y .       /usr/sbin/tar 95a18e8692681369265f8501947ed864 Sun Patch ID 101327-08
    O .       /usr/sbin/tar bb08540b9fa9d293f119daba8bf9d13b Sun Patch ID 101327-01 (current is 101327-08)
    O sig017w /usr/sbin/tar 54c854127b1d677730247a97db2b1926 SunOS 5.3 (security patch is 101327)
    #Y .       /usr/sbin/tar 54c854127b1d677730247a97db2b1926 SunOS 5.3
    Y .       /usr/ucb/ps 7fd7dd12be2af524c6e0f4bc1bf6e9f9 SunOS 5.3
    tiger-3.2.3/systems/SunOS/5/5.3/inetd0000644000175000017500000000343207722712467015514 0ustar  pacopaco100068/2-4	dgram	rpc/udp	wait root /usr/openwin/bin/rpc.cmsd	rpc.cmsd
    100083/1	stream  rpc/tcp wait root /usr/openwin/bin/rpc.ttdbserverd rpc.ttdbserverd
    100087/10	tli	rpc/udp	wait root /usr/sbin/admind	admind
    chargen	dgram	udp	wait	root	internal
    chargen	stream	tcp	nowait	root	internal
    comsat	dgram	udp	wait	root	/usr/sbin/in.comsat	in.comsat
    daytime	dgram	udp	wait	root	internal
    daytime	stream	tcp	nowait	root	internal
    discard	dgram	udp	wait	root	internal
    discard	stream	tcp	nowait	root	internal
    echo	dgram	udp	wait	root	internal
    echo	stream	tcp	nowait	root	internal
    exec	stream	tcp	nowait	root	/usr/sbin/in.rexecd	in.rexecd
    finger	stream	tcp	nowait	nobody	/usr/sbin/in.fingerd	in.fingerd
    ftp	stream	tcp	nowait	root	/usr/sbin/in.ftpd	in.ftpd
    login	stream	tcp	nowait	root	/usr/sbin/in.rlogind	in.rlogind
    name	dgram	udp	wait	root	/usr/sbin/in.tnamed	in.tnamed
    netstat	stream	tcp	nowait	root	/usr/bin/netstat 	netstat -f inet
    rexd/1          stream  rpc/tcp wait root /usr/sbin/rpc.rexd     rpc.rexd
    rquotad/1	tli	rpc/datagram_v	wait root /usr/lib/nfs/rquotad	rquotad
    rstatd/2-4	tli   rpc/datagram_v wait root /usr/lib/netsvc/rstat/rpc.rstatd rpc.rstatd
    rusersd/2-3	tli	rpc/datagram_v	wait root /usr/lib/netsvc/rusers/rpc.rusersd	rpc.rusersd
    shell	stream	tcp	nowait	root	/usr/sbin/in.rshd	in.rshd
    sprayd/1	tli	rpc/datagram_v	wait root /usr/lib/netsvc/spray/rpc.sprayd	rpc.sprayd
    systat	stream	tcp	nowait	root	/usr/bin/ps		ps -ef
    talk	dgram	udp	wait	root	/usr/sbin/in.talkd	in.talkd
    telnet	stream	tcp	nowait	root	/usr/sbin/in.telnetd	in.telnetd
    tftp	dgram	udp	wait	root	/usr/sbin/in.tftpd	in.tftpd -s /tftpboot
    time	dgram	udp	wait	root	internal
    time	stream	tcp	nowait	root	internal
    uucp	stream	tcp	nowait	root	/usr/sbin/in.uucpd	in.uucpd
    walld/1		tli	rpc/datagram_v	wait root /usr/lib/netsvc/rwall/rpc.rwalld	rpc.rwalld
    tiger-3.2.3/systems/SunOS/5/5.3/suid_list0000644000175000017500000000211707722712467016407 0ustar  pacopaco/sbin/su
    /sbin/sulogin
    /usr/bin/at
    /usr/bin/atq
    /usr/bin/atrm
    /usr/bin/chkey
    /usr/bin/crontab
    /usr/bin/ct
    /usr/bin/cu
    /usr/bin/eject
    /usr/bin/fd_format
    /usr/bin/keylogin
    /usr/bin/kgmon
    /usr/bin/login
    /usr/bin/newgrp
    /usr/bin/passwd
    /usr/bin/ps
    /usr/bin/rcp
    /usr/bin/rdist
    /usr/bin/rlogin
    /usr/bin/rsh
    /usr/bin/su
    /usr/bin/tip
    /usr/bin/uptime
    /usr/bin/uucp
    /usr/bin/uuglist
    /usr/bin/uuname
    /usr/bin/uustat
    /usr/bin/uux
    /usr/bin/volcheck
    /usr/bin/w
    /usr/bin/yppasswd
    /usr/lib/acct/accton
    /usr/lib/expreserve
    /usr/lib/exrecover
    /usr/lib/fs/ufs/ufsdump
    /usr/lib/fs/ufs/ufsrestore
    /usr/lib/pt_chmod
    /usr/lib/sendmail
    /usr/lib/sendmail.mx
    /usr/lib/utmp_update
    /usr/lib/uucp/remote.unknown
    /usr/lib/uucp/uucico
    /usr/lib/uucp/uusched
    /usr/lib/uucp/uuxqt
    /usr/net/servers/rfs/rfsetup
    /usr/openwin/bin/ff.core
    /usr/openwin/bin/loadmodule
    /usr/openwin/bin/xlock
    /usr/openwin/lib/mkcookie
    /usr/sbin/allocate
    /usr/sbin/deallocate
    /usr/sbin/list_devices
    /usr/sbin/mkdevalloc
    /usr/sbin/mkdevmaps
    /usr/sbin/nsquery
    /usr/sbin/ping
    /usr/sbin/sacadm
    /usr/sbin/static/rcp
    /usr/sbin/whodo
    /usr/ucb/ps
    /usr/vmsys/bin/chkperm
    tiger-3.2.3/systems/SunOS/5/5.4/0000755000175000017500000000000011306441050014441 5ustar  pacopacotiger-3.2.3/systems/SunOS/5/5.4/services0000644000175000017500000000227607722712467016242 0ustar  pacopacoNeWS 144/tcp
    biff 512/udp
    bootpc 68/udp
    bootps 67/udp
    chargen 19/tcp
    chargen 19/udp
    courier 530/tcp
    csnet-ns 105/tcp
    cvc 1495/tcp
    cvc_hostd 442/tcp
    daytime 13/tcp
    daytime 13/udp
    discard 9/tcp
    discard 9/udp
    domain 53/tcp
    domain 53/udp
    dtspc 6112/tcp
    echo 7/tcp
    echo 7/udp
    eklogin 2105/tcp
    exec 512/tcp
    finger 79/tcp
    fs 7100/tcp
    ftp 21/tcp
    ftp-data 20/tcp
    hostnames 101/tcp
    imap 143/tcp
    ingreslock 1524/tcp
    iso-tsap 102/tcp
    kerberos 750/tcp
    kerberos 750/udp
    kerberos-adm 749/tcp
    kerberos-adm 749/udp
    klogin 543/tcp
    krb5_prop 754/tcp
    ldap 389/tcp
    ldap 389/udp
    ldaps 636/tcp
    ldaps 636/udp
    link 87/tcp
    listen 2766/tcp
    lockd 4045/tcp
    lockd 4045/udp
    login 513/tcp
    monitor 561/udp
    name 42/udp
    netstat 15/tcp
    new-rwho 550/udp
    nfsd 2049/tcp
    nfsd 2049/udp
    nntp 119/tcp
    ntp 123/tcp
    ntp 123/udp
    pcserver 600/tcp
    pop2 109/tcp
    pop3 110/tcp
    printer 515/tcp
    rje 77/tcp
    rmonitor 560/udp
    route 520/udp
    shell 514/tcp
    smtp 25/tcp
    sunrpc 111/tcp
    sunrpc 111/udp
    supdup 95/tcp
    syslog 514/udp
    systat 11/tcp
    talk 517/udp
    tcpmux 1/tcp
    telnet 23/tcp
    tftp 69/udp
    time 37/tcp
    time 37/udp
    ufsd 1008/tcp
    ufsd 1008/udp
    uucp 540/tcp
    uucp-path 117/tcp
    who 513/udp
    whois 43/tcp
    www-ldap-gw 1760/tcp
    www-ldap-gw 1760/udp
    x400 103/tcp
    x400-snd 104/tcp
    tiger-3.2.3/systems/SunOS/5/5.4/inetd0000644000175000017500000000343207722712467015515 0ustar  pacopaco100068/2-4	dgram	rpc/udp	wait root /usr/openwin/bin/rpc.cmsd	rpc.cmsd
    100083/1	stream  rpc/tcp wait root /usr/openwin/bin/rpc.ttdbserverd rpc.ttdbserverd
    100087/10	tli	rpc/udp	wait root /usr/sbin/admind	admind
    chargen	dgram	udp	wait	root	internal
    chargen	stream	tcp	nowait	root	internal
    comsat	dgram	udp	wait	root	/usr/sbin/in.comsat	in.comsat
    daytime	dgram	udp	wait	root	internal
    daytime	stream	tcp	nowait	root	internal
    discard	dgram	udp	wait	root	internal
    discard	stream	tcp	nowait	root	internal
    echo	dgram	udp	wait	root	internal
    echo	stream	tcp	nowait	root	internal
    exec	stream	tcp	nowait	root	/usr/sbin/in.rexecd	in.rexecd
    finger	stream	tcp	nowait	nobody	/usr/sbin/in.fingerd	in.fingerd
    ftp	stream	tcp	nowait	root	/usr/sbin/in.ftpd	in.ftpd
    login	stream	tcp	nowait	root	/usr/sbin/in.rlogind	in.rlogind
    name	dgram	udp	wait	root	/usr/sbin/in.tnamed	in.tnamed
    netstat	stream	tcp	nowait	root	/usr/bin/netstat 	netstat -f inet
    rexd/1          stream  rpc/tcp wait root /usr/sbin/rpc.rexd     rpc.rexd
    rquotad/1	tli	rpc/datagram_v	wait root /usr/lib/nfs/rquotad	rquotad
    rstatd/2-4	tli   rpc/datagram_v wait root /usr/lib/netsvc/rstat/rpc.rstatd rpc.rstatd
    rusersd/2-3	tli	rpc/datagram_v	wait root /usr/lib/netsvc/rusers/rpc.rusersd	rpc.rusersd
    shell	stream	tcp	nowait	root	/usr/sbin/in.rshd	in.rshd
    sprayd/1	tli	rpc/datagram_v	wait root /usr/lib/netsvc/spray/rpc.sprayd	rpc.sprayd
    systat	stream	tcp	nowait	root	/usr/bin/ps		ps -ef
    talk	dgram	udp	wait	root	/usr/sbin/in.talkd	in.talkd
    telnet	stream	tcp	nowait	root	/usr/sbin/in.telnetd	in.telnetd
    tftp	dgram	udp	wait	root	/usr/sbin/in.tftpd	in.tftpd -s /tftpboot
    time	dgram	udp	wait	root	internal
    time	stream	tcp	nowait	root	internal
    uucp	stream	tcp	nowait	root	/usr/sbin/in.uucpd	in.uucpd
    walld/1		tli	rpc/datagram_v	wait root /usr/lib/netsvc/rwall/rpc.rwalld	rpc.rwalld
    tiger-3.2.3/systems/SunOS/5/5.4/sun4/0000755000175000017500000000000011306441050015332 5ustar  pacopacotiger-3.2.3/systems/SunOS/5/5.4/sun4/signatures0000644000175000017500000006772207650724675017507 0ustar  pacopaco#                      
    #     tiger - A UN*X security checking system
    #     Copyright (C) 1993-1995 Douglas Lee Schales, David K. Hess, David R. Saffo
    rd
    #
    #     Please see the file `COPYING' for the complete copyright notice.
    #
    # SunOS/5/5.4/sun4/signatures - 02/21/1995
    #
    #-----------------------------------------------------------------------------
    #
    #@DEST=SunOS/5/5.4/sun4
    #@CONFIG=SunOS/5
    #
    # Generated 1996/02/21 dls
    #
    Y . /etc/fs/nfs/mount 71b9932ff743bd14e9258d30fc1fa202 Sun Patch ID 101945-37 [sparc]
    O . /etc/fs/nfs/mount ef564eff055316b61bab84b07e1423f7 SunOS 5.4 (security patch is 101945)
    Y . /etc/lib/ld.so.1 1554083226b0ccccee66911621e823c2 Sun Patch ID 102049-02 [sparc]
    O . /etc/lib/ld.so.1 44a96066f6ef39ef9eb4024885fcbcdf SunOS 5.4 (security patch is 102049)
    Y . /etc/lib/ld.so.1 b07e21ebd515145179a4af6fac309d2f Sun Patch ID 102303-05 [sparc]
    Y . /etc/lib/libdl.so.1 38204c540d5e58e76b4f5aaa8f7c1c28 SunOS 5.4
    Y . /etc/lib/nss_files.so.1 6e36d7a8a1da20e92fb0b6fc9e1a7e65 SunOS 5.4
    Y . /etc/lib/unix_scheme.so.1 0ed1aa7f102f045d09fed1ea3a449fe8 Sun Patch ID 101945-37 [sparc]
    O . /etc/lib/unix_scheme.so.1 8539e34e484cb4c23953bd8edfe579a1 SunOS 5.4 (security patch is 101945)
    Y . /etc/name_to_sysnum 42f18b49cdb70b258483aaac001ece6a Sun Patch ID 101945-37 [sparc]
    Y . /etc/name_to_sysnum fe22dbf4f626dcffb307e5b108649e82 SunOS 5.4
    Y . /kadb 1d8995aa91de53cacc06573a92098bfe Sun Patch ID 101945-37 [sparc.sun4c]
    Y . /kadb 2538a2c12d8d673435a51a6309566c62 SunOS 5.4 sun4c
    Y . /kadb 25c1286bcccbddbbe14f388db57f30f6 SunOS 5.4 sun4m
    Y . /kadb 25c1286bcccbddbbe14f388db57f30f6 SunOS 5.4 sun4mL
    Y . /kadb 3c54c1f3d62ae8a2c4f453bd010c8534 SunOS 5.4 sun4
    Y . /kadb 419ae08cf4e3083b8166b9299142840c Sun Patch ID 101945-37 [sparc.sun4d]
    Y . /kadb 48aed0afc4f9558992bfcf6df36c8e98 Sun Patch ID 101945-37 [sparc.sun4e]
    Y . /kadb 510825f1f45adf2fd4e139da49d93ce1 Sun Patch ID 101945-37 [sparc.sun4]
    Y . /kadb 787b714641cea681ec316e4075acf88b Sun Patch ID 101945-37 [sparc.sun4m]
    Y . /kadb a085fe89b4fd7cb895fa333550372943 SunOS 5.4 sun4d
    Y . /kadb fabbb7783f63607f957cae145c4d25ce SunOS 5.4 sun4e
    Y . /kernel/drv/cn 9392b72140269ff5c770ce7446090b53 SunOS 5.4
    Y . /kernel/drv/cn d3653ffd0329e5dd868f6d062cfc3824 Sun Patch ID 101945-37 [sparc]
    Y . /kernel/drv/icmp 4c895c3a04f7bad926837db70fc830d4 SunOS 5.4
    Y . /kernel/drv/icmp 521f94a5d32a465b75264e0a7f1ff37a Sun Patch ID 101945-37 [sparc]
    Y . /kernel/drv/ip 7e7dddccd7fe251d1d54b69278c7a98b SunOS 5.4
    Y . /kernel/drv/ip c87cd2a62936aef57455b67bce22adcd Sun Patch ID 101945-37 [sparc]
    Y . /kernel/drv/logindmux da7000256d0448f69a2b14b09351d140 Sun Patch ID 101945-37 [sparc]
    Y . /kernel/drv/logindmux.conf a635c9721bd735dba94507e0b163836f Sun Patch ID 101945-37 [sparc]
    Y . /kernel/drv/qec 058956bfb1a285b9fff9dd84e8061be8 Sun Patch ID 102656-01 [sparc]
    Y . /kernel/drv/qec 3b989e0033a8b30218fb80ecfa072604 SunOS 5.4
    Y . /kernel/drv/sbi 480e8515b4c896ce1e1ee61185bce907 Sun Patch ID 101945-37 [sparc.sun4d]
    Y . /kernel/drv/sbi 80b058889e98631ea78e054d94eb9397 SunOS 5.4 sun4d
    Y . /kernel/drv/sd 53a078a90935c18d6cbd45f3dffbaa49 SunOS 5.4
    Y . /kernel/drv/sd fe8b9d63998201c1b201e979ce875f97 Sun Patch ID 101945-37 [sparc]
    Y . /kernel/drv/tcp 2d136da41ae3e7a6f6e8f9d374d3e3f3 SunOS 5.4
    Y . /kernel/drv/tcp fea93ff8c9e2ce0a5df3b40f445dd220 Sun Patch ID 101945-37 [sparc]
    Y . /kernel/drv/tl 56469eca64a20c89b239d5413ba08875 SunOS 5.4
    Y . /kernel/drv/tl f488bce800c2a5dc0ea89f35738066fb Sun Patch ID 101945-37 [sparc]
    Y . /kernel/drv/udp 9116cfc271d7d37a20b070170fdc4283 Sun Patch ID 101945-37 [sparc]
    Y . /kernel/drv/udp cf50b510c6a02717b8032bb109c892bf SunOS 5.4
    Y . /kernel/fs/autofs 3b7357130ad74b2a50ebb635a6dd0762 Sun Patch ID 101945-37 [sparc]
    Y . /kernel/fs/autofs 6e95ca18202de6be1217185b1d59c770 SunOS 5.4
    Y . /kernel/fs/cachefs 3309a50f2c4175d53673289c2a46168d SunOS 5.4
    Y . /kernel/fs/cachefs 685374f2dd99116503f882e1300f30e7 Sun Patch ID 101945-37 [sparc]
    Y . /kernel/fs/lofs b78753fea3ed2ab8a18fa0231db7150a SunOS 5.4
    Y . /kernel/fs/lofs dfb49890f4674cf70746996af7d86a8f Sun Patch ID 101945-37 [sparc]
    Y . /kernel/fs/nfs 0039a89a4f00a6db305afedfed4aa528 SunOS 5.4
    Y . /kernel/fs/nfs 9742a5a39731578544037815618f4645 Sun Patch ID 101945-37 [sparc]
    Y . /kernel/fs/procfs 4cced52199807ee6ecbfbcfba9114ffd Sun Patch ID 101945-37 [sparc]
    Y . /kernel/fs/procfs 815442c7d8d51b00ebd979d0fe364d25 SunOS 5.4
    Y . /kernel/fs/tmpfs 192e10d5c067d3b90a32e81333c7e25b Sun Patch ID 101945-37 [sparc]
    Y . /kernel/fs/tmpfs 3f73055ea812cc4528ede8021d096e2b SunOS 5.4
    Y . /kernel/fs/ufs b598cf175a435ccf13a12bd49f79c40e Sun Patch ID 101945-37 [sparc]
    Y . /kernel/fs/ufs cd505445bf2748e76157ffdd1d2dd1af SunOS 5.4
    Y . /kernel/misc/dlma d1f383a61b7020a4c223ea6e2257b4d4 Sun Patch ID 101945-37 [sparc.sun4d]
    Y . /kernel/misc/klmmod 1db4ef9d85ad93f0af95b49c6d6aad48 Sun Patch ID 102216-05 [sparc]
    Y . /kernel/misc/klmmod f0a41f77a9d39a60eeae0ff30a332ba0 SunOS 5.4
    Y . /kernel/misc/strplumb 5fbd744b3a3b9bfe719e44b3d642687f Sun Patch ID 101945-37 [sparc]
    Y . /kernel/misc/strplumb abbf3f9d27753e6f1c6b841933c37986 SunOS 5.4
    Y . /kernel/misc/swapgeneric 06e0381c299fc63d63df5294100ae016 SunOS 5.4
    Y . /kernel/misc/swapgeneric 2f2c6d59fea9eae25384ea6bb2a8f9cc Sun Patch ID 101945-37 [sparc]
    Y . /kernel/sched/TS 81221dac2b3576ea42d2028f80afcac3 SunOS 5.4
    Y . /kernel/sched/TS 81a240e68c9e61724eaf4e1f7ef1af3b Sun Patch ID 101945-37 [sparc]
    O . /kernel/strmod/kb 00482e8e59064938dc23a0e4bfa07a6b SunOS 5.4 sun4d (security patch is 102044)
    Y . /kernel/strmod/kb 376441bbb422fed146048d803dff0132 Sun Patch ID 102044-01 [sun4e]
    Y . /kernel/strmod/kb 38c035485e7fa41219a9efafb3a856e4 Sun Patch ID 102044-01 [sun4]
    Y . /kernel/strmod/kb 60e8770c04686e45a5363e9914f5cec8 Sun Patch ID 102044-01 [sun4c]
    O . /kernel/strmod/kb 8402101ffa0e52c4fe9bf17fe099df6c SunOS 5.4 sun4c (security patch is 102044)
    O . /kernel/strmod/kb 983941426f275639898e1f71cfb5d710 SunOS 5.4 sun4m (security patch is 102044)
    O . /kernel/strmod/kb 983941426f275639898e1f71cfb5d710 SunOS 5.4 sun4mL (security patch is 102044)
    O . /kernel/strmod/kb afd666d438e3c1bca1239441c24aa0b3 SunOS 5.4 sun4e (security patch is 102044)
    Y . /kernel/strmod/kb c19a88cc72cb981ddcb32e0b7f3ab1d8 Sun Patch ID 102044-01 [sun4d]
    Y . /kernel/strmod/kb cf54c8cf204080f018df5a226469edb2 Sun Patch ID 102044-01 [sun4m]
    O . /kernel/strmod/kb ef4562bf9bde9a45df68fb1a3a885f29 SunOS 5.4 sun4 (security patch is 102044)
    O . /kernel/strmod/ms 154204a020a5b4082c7f834fdcfd7e3e SunOS 5.4 (security patch is 102044)
    Y . /kernel/strmod/ms 9824ccacaf2de655d37fc42301a54c84 Sun Patch ID 102044-01 [sparc]
    Y . /kernel/strmod/rlmod 9195bc76e9beeef8f37ae31efac7d90a Sun Patch ID 101945-37 [sparc]
    O . /kernel/strmod/rpcmod 14e5a1d8c9bcd849e0ae8ebf62f786b9 Sun Patch ID 102216-01 (current is 102216-05)
    Y . /kernel/strmod/rpcmod 325eedd94d7c2a0b2df8df0ecd6c37fc Sun Patch ID 102216-05 [sparc]
    O . /kernel/strmod/rpcmod fe86bdd533985c77de832121b63d07d3 SunOS 5.4 (security patch is 102216)
    Y . /kernel/strmod/sockmod 965841fbc20fdfb2855fb3904b49d67c Sun Patch ID 101945-37 [sparc]
    O . /kernel/strmod/sockmod 97c3fce982e86c610e7680eefc686bfb SunOS 5.4 (security patch is 101945)
    Y . /kernel/strmod/telmod cee10b96b7ea461775e1eb3a66b5ad0c Sun Patch ID 101945-37 [sparc]
    Y . /kernel/strmod/timod 5a0b3f4bf644b7d157a2913b4713ddd9 Sun Patch ID 101945-37 [sparc]
    O . /kernel/strmod/timod b686bbe973e60234aee95b2774fe100d SunOS 5.4 (security patch is 101945)
    Y . /kernel/sys/c2audit 7f0a5ad827bfcf955644fe359e48f3cf Sun Patch ID 101945-37 [sparc]
    O . /kernel/sys/c2audit 85c4872cfee66676375753dc8d2f33de SunOS 5.4 (security patch is 101945)
    Y . /kernel/sys/kaio b0a067c16c1425b29a26eabf82107f9b Sun Patch ID 101945-37 [sparc]
    Y . /kernel/unix 12fa50b7899ad3520809be3ae873aa48 SunOS 5.4 sun4
    Y . /kernel/unix 18d25900099207a6d461ff968bf0a827 Sun Patch ID 101945-37 [sparc.sun4m]
    Y . /kernel/unix 3970dca4186d477470a9389eda88035d SunOS 5.4 sun4c
    Y . /kernel/unix 3b64857128127daa5c3edbe87515f037 Sun Patch ID 101945-37 [sparc.sun4c]
    Y . /kernel/unix 433271385cc58318d123a0e199fa459c SunOS 5.4 sun4e
    Y . /kernel/unix 5cd1991d5d72ec6277ffb22131235f33 Sun Patch ID 101945-37 [sparc.sun4e]
    Y . /kernel/unix 6769bcbbed28a1abefbeb4bbf37a38fd Sun Patch ID 101945-37 [sparc.sun4d]
    Y . /kernel/unix 7abdf76ac37c5165b9294ea4519a1b10 SunOS 5.4 sun4d
    Y . /kernel/unix a75a298cea08d804c97ae3ad5abed065 SunOS 5.4 sun4mL
    Y . /kernel/unix e2d289f2279d5354684bc80f731721fe Sun Patch ID 101945-37 [sparc.sun4]
    Y . /kernel/unix e8157aecfd2b3c4cde8700e8cf067390 SunOS 5.4 sun4m
    Y . /sbin/ifconfig e6551bc82d450e405a80e22b6ee44602 SunOS 5.4
    O . /sbin/init 5680f6e46cdfdbb72fa6f9855aa65b2f SunOS 5.4 (security patch is 101945)
    Y . /sbin/init 66457df3e21f5e13d626922beb069902 Sun Patch ID 101945-37 [sparc]
    Y . /sbin/jsh ee4290cdbaa0dbf2103212b72c8046e0 SunOS 5.4
    Y . /sbin/sh ee4290cdbaa0dbf2103212b72c8046e0 SunOS 5.4
    O . /sbin/su 126d7cf76ab7d4445bc9c2693ad4bab6 SunOS 5.4 (security patch is 101945)
    Y . /sbin/su 44d83f31906c46bec0c2fe99299d80c7 Sun Patch ID 101945-37 [sparc]
    Y . /sbin/sulogin 13e3177fd023bf268c3e6a8fd6424479 Sun Patch ID 101945-37 [sparc]
    O . /sbin/sulogin c81ecec4c258e4898028089642859109 SunOS 5.4 (security patch is 101945)
    Y . /sbin/sync c8b23719e06c78cd12eaaa72b1cd95a0 SunOS 5.4
    Y . /usr/4lib/libc.so.1.8 12cc5b72ff42a0905f8c3761c5480b4c SunOS 5.4
    Y . /usr/4lib/libc.so.1.8 8ac383ecab40ff04ce64e693eec8fa2d Sun Patch ID 101945-37 [sparc]
    Y . /usr/4lib/libc.so.2.8 560742ffcea4b633046a0c7c6a9b7398 SunOS 5.4
    Y . /usr/4lib/libc.so.2.8 56158e977d9659f573c39fb2d4282258 Sun Patch ID 101945-37 [sparc]
    Y . /usr/bin/aliasadm 7912562cf8b53d01e0fc12508fc10d38 Sun Patch ID 102066-06 [sparc]
    Y . /usr/bin/aliasadm b8fb4f9cdc985605dfb8a2e7c68d17e6 SunOS 5.4
    Y . /usr/bin/at 7213d982c9454aa89fba6d0c3d6bd621 SunOS 5.4
    Y . /usr/bin/atq 00daab2ff943708e27d0e8f8c984cf38 SunOS 5.4
    Y . /usr/bin/atrm 37ea451e24b8da0f0558065fd83835e4 SunOS 5.4
    Y . /usr/bin/csh 6770abaa4bd0219d6fc0cff5b6b43576 SunOS 5.4
    Y . /usr/bin/ftp 1624a4c3b00672091b9bc6a051e6d028 SunOS 5.4
    Y . /usr/bin/jsh 9bbf5d4ee5d5796f8baab7d4f8947df1 SunOS 5.4
    Y . /usr/bin/ksh a1aa0c40a969ee2aa12e03e74a12e88f SunOS 5.4
    Y . /usr/bin/lastcomm cb64a02f39c09a2d8fd514c8b2ab1c7f SunOS 5.4
    O . /usr/bin/ldd 3e9d5fe1044998f2546cfd5305e54f02 SunOS 5.4 (security patch is 102303)
    Y . /usr/bin/ldd b4011f4ab27c427cf3c932d464cd5b5d Sun Patch ID 102303-05 [sparc]
    Y . /usr/bin/login 3cd2b0eee98c58f541ccd28d3666af4a Sun Patch ID 102336-01 [sparc]
    O . /usr/bin/login 94639a588aecc4af727e4f963b314140 SunOS 5.4 (security patch is 102336)
    Y . /usr/bin/mail dcf88fae12565d4d27683b63cf850770 Sun Patch ID 102042-05 [sparc]
    O . /usr/bin/mail e483f3a492e3e1523dc9cb04e8f9508a SunOS 5.4 (security patch 102042)
    O . /usr/bin/mailcompat 25c719922dd640bbb4930e762f7438b3 SunOS 5.4 (security patch 102066)
    Y . /usr/bin/mailcompat 9a9ffde615899e62fa2b6b1b26e46712 Sun Patch ID 102066-06 [sparc]
    O . /usr/bin/mailstats 879bb923f1880a870ff2a80f33d77141 SunOS 5.4 (security patch 102066)
    Y . /usr/bin/mailstats d915dc7dbc773e651f1000a7ae565bc1 Sun Patch ID 102066-06 [sparc]
    O . /usr/bin/nistbladm ace3cf0718622fb25064839f8559a0d3 SunOS 5.4 (security patch is 101973)
    Y . /usr/bin/nistbladm af2dc96daded2ac3e300fde47557c44e Sun Patch ID 101973-15 [sparc]
    O . /usr/bin/ps 4aad42eb4a43fbe3420fecdf977147bf SunOS 5.4 (security patch 102711)
    Y . /usr/bin/ps f992d36af5b42d8d930701cc1ed6f962 Sun Patch ID 102711-01 [sparc]
    Y . /usr/bin/pvs cbde2f8413d8a59f067d166c83af0861 Sun Patch ID 102303-05 [sparc]
    Y . /usr/bin/rcp d5705e26da261161bbfcaabddf0aee08 SunOS 5.4
    Y . /usr/bin/rdist 98aecb5b5421a373ca2b7dc6a7e5ef54 SunOS 5.4
    Y . /usr/bin/rlogin bfffbe92aa78e2e76e08c1a3d4947680 SunOS 5.4
    Y . /usr/bin/rpcinfo 51cb1a6b8fd6155568e214fb2bc3475e SunOS 5.4
    Y . /usr/bin/rsh b18e37a361847171af758ff1fbd83ab4 SunOS 5.4
    Y . /usr/bin/sh 9bbf5d4ee5d5796f8baab7d4f8947df1 SunOS 5.4
    Y . /usr/bin/su 6dbed63057c16ce0f154b84a2fb62ff3 Sun Patch ID 101945-37 [sparc]
    O . /usr/bin/su e729859318d1d34b02632282b78576c4 SunOS 5.4 (security patch is 101945)
    Y . /usr/bin/telnet 434ec573e0d9d2ac1eddea3a916c5b6a SunOS 5.4
    Y . /usr/bin/time ba2edca11dfc1fe0e6e6386fd20e4254 SunOS 5.4
    Y . /usr/bin/timex 5e1642c275e5628d0913cf9c54920084 SunOS 5.4
    O . /usr/bin/tip 021905b5ae1bbbdbf264c48ea3b7bf14 SunOS 5.4 (security patch is 103070)
    Y . /usr/bin/tip f14f08e81a4f224d255988ce02a750c6 Sun Patch ID 103070-01 [sparc]
    Y . /usr/bin/vacation 679cbf8f423cf29c3487fc39806fbd10 Sun Patch ID 102066-06 [sparc]
    O . /usr/bin/vacation d4693c07ac888a0c3d5377f89098ca69 SunOS 5.4 (security patch is 102066)
    O . /usr/bin/ypcat 1e1e79f42f5bbb23ad5a65079f7f66cf SunOS 5.4 (security patch is 102704)
    Y . /usr/bin/ypcat 47530e9ddb97c05c7f20598a69081bc1 Sun Patch ID 102704-02 [sparc]
    O . /usr/bin/ypmatch 632ac6084865ab9845f6a5226a405ebc SunOS 5.4 (security patch is 102704)
    Y . /usr/bin/ypmatch da7adb85d870d38bcba0a117a40db6c6 Sun Patch ID 102704-02 [sparc]
    O . /usr/bin/ypwhich 20bac1902938dc81a6c050a152f7f24d SunOS 5.4 (security patch is 102704)
    Y . /usr/bin/ypwhich 8236affdb770f41c67848902093877f2 Sun Patch ID 102704-02 [sparc]
    O . /usr/ccs/bin/ar 40b22431fe0691a9d268a50438893bfc SunOS 5.4 (security patch is 102303)
    Y . /usr/ccs/bin/ar 67e4c84b31396fef411185774c3ecafc Sun Patch ID 102303-05 [sparc]
    O . /usr/ccs/bin/gprof 39630772ec7aae6e2743f361a1e79e0e SunOS 5.4 (security patch is 102303)
    Y . /usr/ccs/bin/gprof 70a549083e8cca3adb6271b059cd2e86 Sun Patch ID 102303-05 [sparc]
    O . /usr/ccs/bin/ld 407c6077c8a09310dea08f6d839d779c SunOS 5.4 SunOS 5.4 (security patch is 102303)
    Y . /usr/ccs/bin/ld e3633ae68879b89f925c441547dcac9e Sun Patch ID 102303-05 [sparc]
    Y . /usr/kernel/sched/RT 350e3469fcaa337ce86c926914b2b7b5 Sun Patch ID 101945-37 [sparc]
    Y . /usr/kernel/sched/RT e09159d9f7dc7f60bb78b0d7e028bc12 SunOS 5.4
    Y . /usr/kvm/adb 27de4a4f63d8e1a8a00e16d1222b7b82 Sun Patch ID 101945-37 [sparc.sun4c]
    Y . /usr/kvm/adb 27de4a4f63d8e1a8a00e16d1222b7b82 Sun Patch ID 101945-37 [sparc.sun4m]
    Y . /usr/kvm/adb 42ace3367f1c00c50c47162725520722 Sun Patch ID 101945-37 [sparc.sun4e]
    Y . /usr/kvm/adb 46ecd740eb52c3fbdac0726d157f6125 SunOS 5.4 sun4d
    Y . /usr/kvm/adb 4b919a42db4ee6ef721d4b4258191aaf Sun Patch ID 101945-37 [sparc.sun4d]
    Y . /usr/kvm/adb 6d6b59dcf4559d5d2a6b954e7d2c9977 SunOS 5.4 sun4e
    Y . /usr/kvm/adb dcabac581266afc38ad47e250a2c4ea2 SunOS 5.4 sun4c
    Y . /usr/kvm/adb dcabac581266afc38ad47e250a2c4ea2 SunOS 5.4 sun4m
    Y . /usr/kvm/adb dcabac581266afc38ad47e250a2c4ea2 SunOS 5.4 sun4mL
    Y . /usr/kvm/adb e015c30684ddd4b660fc109b23919fb4 Sun Patch ID 101945-37 [sparc.sun4]
    Y . /usr/kvm/adb fba5b078a1a43885dc0eb773404c8cf3 SunOS 5.4 sun4
    Y . /usr/kvm/crash 43a8a89ee4c7223c6419d0972f6c4290 Sun Patch ID 101945-37 [sparc.sun4d]
    Y . /usr/kvm/crash 43fbe8e0276642d374f9d2a876cd7566 SunOS 5.4 sun4c
    Y . /usr/kvm/crash 672a82b9b8608eed82b0ba198555dd49 Sun Patch ID 101945-37 [sparc.sun4m]
    Y . /usr/kvm/crash 7423e4a8c2d48d2199467b714cb4fa26 SunOS 5.4 sun4d
    Y . /usr/kvm/crash 8deddd0f2d430ddb46a9d79e0a89c1fc Sun Patch ID 101945-37 [sparc.sun4e]
    Y . /usr/kvm/crash 9753ba49b16b34933aba30f9642dcb6a Sun Patch ID 101945-37 [sparc.sun4]
    Y . /usr/kvm/crash a4e42d5f1c921a8c71f04851db16f10f SunOS 5.4 sun4e
    Y . /usr/kvm/crash c82f3f606a373b5654c0c10b79046d11 SunOS 5.4 sun4
    Y . /usr/kvm/crash d110108ddd7fecc45ff31f6e30ded1a6 Sun Patch ID 101945-37 [sparc.sun4c]
    Y . /usr/kvm/crash e0834250f22fe06cf0c576ba411a4ea8 SunOS 5.4 sun4m
    Y . /usr/kvm/crash e0834250f22fe06cf0c576ba411a4ea8 SunOS 5.4 sun4mL
    Y . /usr/kvm/lib/adb/sema 2bcce1a447094af9ca78d38f340a7287 SunOS 5.4 sun4
    Y . /usr/kvm/lib/adb/sema 2bcce1a447094af9ca78d38f340a7287 SunOS 5.4 sun4c
    Y . /usr/kvm/lib/adb/sema 2bcce1a447094af9ca78d38f340a7287 SunOS 5.4 sun4d
    Y . /usr/kvm/lib/adb/sema 2bcce1a447094af9ca78d38f340a7287 SunOS 5.4 sun4e
    Y . /usr/kvm/lib/adb/sema 2bcce1a447094af9ca78d38f340a7287 SunOS 5.4 sun4m
    Y . /usr/kvm/lib/adb/sema 2bcce1a447094af9ca78d38f340a7287 SunOS 5.4 sun4mL
    Y . /usr/kvm/lib/adb/sema 79a387fc983a75acc1986b1253ac75af Sun Patch ID 101945-37 [sparc.sun4]
    Y . /usr/kvm/lib/adb/sema 79a387fc983a75acc1986b1253ac75af Sun Patch ID 101945-37 [sparc.sun4c]
    Y . /usr/kvm/lib/adb/sema 79a387fc983a75acc1986b1253ac75af Sun Patch ID 101945-37 [sparc.sun4d]
    Y . /usr/kvm/lib/adb/sema 79a387fc983a75acc1986b1253ac75af Sun Patch ID 101945-37 [sparc.sun4e]
    Y . /usr/kvm/lib/adb/sema 79a387fc983a75acc1986b1253ac75af Sun Patch ID 101945-37 [sparc.sun4m]
    Y . /usr/kvm/prtdiag 35e108d30a34a3b8feaa81958a9f2984 SunOS 5.4 sun4d
    Y . /usr/kvm/prtdiag 5c9d48fc05afa39397b329ef90533de5 Sun Patch ID 101945-37 [sparc.sun4d]
    O . /usr/lib/autofs/automountd 530dcb1d46e3bcd3f180499253e8fbf6 SunOS 5.4 SunOS 5.4 (security patch is 101945)
    Y . /usr/lib/autofs/automountd 5ab26097dffece9ae99bad3a79c705bb Sun Patch ID 101945-37 [sparc]
    Y . /usr/lib/expreserve 4b3674a5c2b4963e12df89cb2296141a Sun Patch ID 102756-01 [sparc]
    O . /usr/lib/expreserve ac77fa3e2aa8692e206ad9d11f2dca28 SunOS 5.4 (security patch 102756)
    O . /usr/lib/fs/autofs/automount 0946a3c5bcda5a67a1f56dbb1f15418a SunOS 5.4 SunOS 5.4 (security patch is 101945)
    Y . /usr/lib/fs/autofs/automount 796bf8208769347a8418269b00009dea Sun Patch ID 101945-37 [sparc]
    O . /usr/lib/fs/nfs/inetboot 0b1fd00c5fdbdd837745e8f3bca7acc3 SunOS 5.4 SunOS 5.4 (security patch is 101945)
    Y . /usr/lib/fs/nfs/inetboot df785387f46765c9fb293b2e1b311068 Sun Patch ID 101945-37 [sparc]
    O . /usr/lib/fs/nfs/mount 82dd2c4d53645ce4474273cb83bd3b3a SunOS 5.4 SunOS 5.4 (security patch is 101945)
    Y . /usr/lib/fs/nfs/mount db75ef520185f9a7d7ec72718ca72fb3 Sun Patch ID 101945-37 [sparc]
    O . /usr/lib/fs/nfs/umount 9f02f4fecfb1f0b8b445a2f355497f77 SunOS 5.4 SunOS 5.4 (security patch is 101945)
    Y . /usr/lib/fs/nfs/umount b470893589b487a3d0662442d640c889 Sun Patch ID 101945-37 [sparc]
    O . /usr/lib/fs/ufs/ufsdump 025b317520110473105978a5502f136a SunOS 5.4 SunOS 5.4 (security patch is 102680)
    Y . /usr/lib/fs/ufs/ufsdump 5845eac51d21f64260116dbbe6e083bf Sun Patch ID 102680-03 [sparc]
    Y . /usr/lib/ld.so.1 1554083226b0ccccee66911621e823c2 Sun Patch ID 102049-02 [sparc]
    O . /usr/lib/ld.so.1 44a96066f6ef39ef9eb4024885fcbcdf SunOS 5.4 SunOS 5.4 (security patch is 102049)
    Y . /usr/lib/ld.so.1 b07e21ebd515145179a4af6fac309d2f Sun Patch ID 102303-05 [sparc]
    Y . /usr/lib/libaio.so.1 4e1fa79bf3299e549bfa6c3dab5bf52d Sun Patch ID 101945-37 [sparc]
    O . /usr/lib/libaio.so.1 dd4776dd6fb8ae785a342470de2df67e SunOS 5.4 SunOS 5.4 (security patch is 101945)
    O . /usr/lib/libauth.a df8f419cf570d929065c4d12598aff8a SunOS 5.4 SunOS 5.4 (security patch is 101945)
    Y . /usr/lib/libauth.a e45c167243bc73050558fe6f18697842 Sun Patch ID 101945-37 [sparc]
    Y . /usr/lib/libauth.so.1 198dde1d4406a91f195d3a1e754e7644 Sun Patch ID 101945-37 [sparc]
    O . /usr/lib/libauth.so.1 c849f0f67c163e77723dd043f3c47654 SunOS 5.4 SunOS 5.4 (security patch is 101945)
    O . /usr/lib/libbsm.a 751de0e82c4c02ef6f4982b541fbd123 SunOS 5.4 (security patch is 102218)
    Y . /usr/lib/libbsm.a c581d3027ce8b97eeda7af8f4d3b9f98 Sun Patch ID 102218-03 [sparc]
    O . /usr/lib/libbsm.so.1 1c89d1ee9279f253c327968a820ff9e4 SunOS 5.4 (security patch is 102218)
    Y . /usr/lib/libbsm.so.1 5d2f827ba16d6f07e86381e93b996b3b Sun Patch ID 102218-03 [sparc]
    O . /usr/lib/libc.a 02b1422cd5c4f98ef118faf890d54eb5 SunOS 5.4 (security patch is 101945)
    Y . /usr/lib/libc.a 5787b298b39af6ea958d1b056211f21a Sun Patch ID 102904-01 [sparc]
    Y . /usr/lib/libc.a 8b8d3a683b5c4f8650506a4d1de7351d Sun Patch ID 101945-37 [sparc]
    O . /usr/lib/libc.a bba0ce73adb6189ec94950086737851f Sun Patch ID 101981-01 (current is 101945)
    O . /usr/lib/libc.a d7249b8eed349e1736cb3b4c71af221d Sun Patch ID 101981-02 (current is 101945)
    O . /usr/lib/libc.so.1 09f45be78e1e17ed4f0345c930316ab4 Sun Patch ID 101981-02 (current is 101945)
    O . /usr/lib/libc.so.1 14f902dc49eec284800a1cebcea8f35a Sun Patch ID 101981-01 (current is 101945)
    Y . /usr/lib/libc.so.1 20bd13d060cd0be58a2c07bcabbac8f2 Sun Patch ID 101945-37 [sparc]
    O . /usr/lib/libc.so.1 4d6c9427e29f5f555fba2f4bbd4c7b71 SunOS 5.4 (security patch is 101945)
    Y . /usr/lib/libc.so.1 bf01edb99888f103fa7d05bc02d99274 Sun Patch ID 102904-01 [sparc]
    Y . /usr/lib/libelf.a 354d14f1900c19e90c4d8624a2212664 Sun Patch ID 102303-05 [sparc]
    O . /usr/lib/libelf.a dde9aacfbf61a6b74990c3a3a4cf4338 SunOS 5.4 (security patch is 102303)
    O . /usr/lib/libelf.so.1 3ae43167b670917a875093ae19962502 SunOS 5.4 (security patch is 102303)
    Y . /usr/lib/libelf.so.1 7b3df5b003ff3ce60b73c95e91c4147c Sun Patch ID 102303-05 [sparc]
    O . /usr/lib/libld.so.1 815dd32e281ad0ebf769eb38c8366f41 SunOS 5.4 (security patch is 102049)
    Y . /usr/lib/libld.so.1 cb1ba0f616b0587ce6f90efc27a6a63c Sun Patch ID 102049-02 [sparc]
    Y . /usr/lib/libld.so.2 1908d59f6867c5dde902a8c4ab2f6a6b Sun Patch ID 102303-05 [sparc]
    Y . /usr/lib/liblddbg.so.3 95acf959902a5ef7ffc94ca4902896d8 Sun Patch ID 102303-05 [sparc]
    Y . /usr/lib/libldstab.so.1 418394607500e2f0aee971272fd9dd63 Sun Patch ID 102303-05 [sparc]
    O . /usr/lib/libnisdb.a c93b002b1d08e70f64c5720621dea432 SunOS 5.4 (security patch is 101973)
    Y . /usr/lib/libnisdb.a cff9d05523990f0a01d700fef383f813 Sun Patch ID 101973-15 [sparc]
    Y . /usr/lib/libnisdb.so.2 1fa0b3053fa6adeb795edc0daaf945be Sun Patch ID 101973-15 [sparc]
    O . /usr/lib/libnisdb.so.2 37c598f623c177967979b4af53677a37 SunOS 5.4 (security patch is 101973)
    O . /usr/lib/libnsl.a 7d3fc88c4779b23b7c8bee1117b2b6ca SunOS 5.4 SunOS 5.4 (security patch is 101973)
    Y . /usr/lib/libnsl.a ce0f10344932998bad77616c172a9c10 Sun Patch ID 101973-15 [sparc]
    Y . /usr/lib/libnsl.so.1 4bff16c2b267619e7ed4f5c00e0d4d97 Sun Patch ID 101973-15 [sparc]
    O . /usr/lib/libnsl.so.1 bfdf53c79465d6437eadb6fa480c74f5 SunOS 5.4 (security patch is 101973)
    O . /usr/lib/libp/libc.a 29636c8179f6c25cd51a91c1a5d07750 SunOS 5.4 (security patch is 102904)
    Y . /usr/lib/libp/libc.a 86d8951e9275a7b1d52e98837ac9c24d Sun Patch ID 102904-01 [sparc]
    Y . /usr/lib/libp/libc.a ff1f16d2abeb6106b52945ef3becb02e Sun Patch ID 101945-37 [sparc]
    O . /usr/lib/libsocket.a a22edae4d4cef5eda8780f3f27018fac SunOS 5.4 (security patch is 101945)
    Y . /usr/lib/libsocket.a bd424aeb12943a6707b009c01d98874c Sun Patch ID 101945-37 [sparc]
    O . /usr/lib/libsocket.so.1 3d5ba9edc6b5fce88a146d84a2a86da1 SunOS 5.4 (security patch is 101945)
    Y . /usr/lib/libsocket.so.1 5361a834a665c6263052da95ab56696b Sun Patch ID 101945-37 [sparc]
    Y . /usr/lib/llib-lelf.ln 162e3921fe9c8efeb3714633e4d9f2df Sun Patch ID 102303-05 [sparc]
    O . /usr/lib/netsvc/yp/ypbind 7aed5f4189dcc7c038f83b9e96aa4296 SunOS 5.4 SunOS 5.4 (security patch is 101973)
    Y . /usr/lib/netsvc/yp/ypbind 9b8fcfd598b8ce962635f4d5cb849265 Sun Patch ID 101973-15 [sparc]
    Y . /usr/lib/netsvc/yp/ypxfr 3bef86bfbdbee48371901a309db02d1b Sun Patch ID 102704-02 [sparc]
    O . /usr/lib/netsvc/yp/ypxfr 4d974b8b94eeacc580e72bbb13dfeb25 SunOS 5.4 (security patch is 102704)
    Y . /usr/lib/nss_dns.so.1 0590efaa1b71d1169e6d391da04add28 Sun Patch ID 102165-02 [sparc]
    O . /usr/lib/nss_dns.so.1 6a457daf3cd09ddb5f3fdba86a95b0ad SunOS 5.4 (security patch is 102165)
    O . /usr/lib/nss_nisplus.so.1 45e4dd75b71b997832a1afb3f3a7c2d3 SunOS 5.4 (security patch is 102277)
    Y . /usr/lib/nss_nisplus.so.1 c83093959c0185e6bf1da5bf49be7fe5 Sun Patch ID 102277-02 [sparc]
    Y . /usr/lib/passwd_changer da902c553ba6e3ad91c9571fdf5d2750 Sun Patch ID 102336-01 [sparc]
    Y . /usr/lib/pics/libc_pic.a 1dc17b24f76012e1c7ed3d2e6d1ab79d Sun Patch ID 101945-37 [sparc]
    O . /usr/lib/pics/libc_pic.a 813e5901a1fa8644aed7252c3ee2c68d SunOS 5.4 (security patch is 102904)
    Y . /usr/lib/pics/libc_pic.a a1fcf49780576e63abf586a732825d87 Sun Patch ID 102904-01 [sparc]
    Y . /usr/lib/rsh 9bbf5d4ee5d5796f8baab7d4f8947df1 SunOS 5.4
    Y . /usr/lib/security/unix_scheme.so.1 0ed1aa7f102f045d09fed1ea3a449fe8 Sun Patch ID 101945-37 [sparc]
    O . /usr/lib/security/unix_scheme.so.1 8539e34e484cb4c23953bd8edfe579a1 SunOS 5.4 (security patch is 101945)
    O . /usr/lib/sendmail 5dce1ac0580b6afb64947a62da5c5921 SunOS 5.4 (security patch 102066)
    O . /usr/lib/sendmail 91cf411344a476491818f7209d868fa1 SunOS 5.4 (security patch 102066)
    Y . /usr/lib/sendmail c2456fd0e789bfc38478b32363b8c20c Sun Patch ID 102066-06 [sparc]
    O . /usr/lib/sendmail.mx 5dce1ac0580b6afb64947a62da5c5921 SunOS 5.4 (security patch 102066)
    Y . /usr/lib/sendmail.mx c2456fd0e789bfc38478b32363b8c20c Sun Patch ID 102066-06 [sparc]
    O . /usr/lib/utmp_update 85bbbb7befa0be04e6f2f6c70a6a8d07 SunOS 5.4 (security patch is 101945)
    Y . /usr/lib/utmp_update c8c1108ab32b3796175bd72c86c9a987 Sun Patch ID 101945-37 [sparc]
    Y . /usr/openwin/bin/ff.core 45fa5c84bf1318fa04521495260c3b00 Sun Patch ID 102292-02 [sparc]
    Y . /usr/openwin/lib/libxview.a 2de1c3dc3ebc18cb174719475a5e0808 Sun Patch ID 101878-11 [sparc]
    Y . /usr/openwin/lib/libxview.so.3 a8dad56b948275cdddf1915d0d2af451 Sun Patch ID 101878-11 [sparc]
    Y . /usr/sbin/chroot 55b3a60db472e12e26b944cecf79041f SunOS 5.4
    Y . /usr/sbin/cron ec770bad37a6a484b07009318d421295 SunOS 5.4
    Y . /usr/sbin/fuser f7d264cafc2ad02cb9751d8707acba74 SunOS 5.4
    Y . /usr/sbin/ifconfig 4edd9a52e45dd690d36d7cfc663ef420 SunOS 5.4
    Y . /usr/sbin/in.comsat 871a95368f7799a13c24cd3e864a18da SunOS 5.4
    Y . /usr/sbin/in.fingerd 2f8b4ef8191bfd691f120fcfe31e163b SunOS 5.4
    O . /usr/sbin/in.ftpd 0eadfedd36147270512325ac33326db5 SunOS 5.4 (security patch is 101945)
    Y . /usr/sbin/in.ftpd 5e1d62ed03f91ac0bf6529a3bbf3937c Sun Patch ID 101945-37 [sparc]
    Y . /usr/sbin/in.named 327db20c32f660a8950e584b7cbf559d SunOS 5.4
    Y . /usr/sbin/in.rarpd 0e4ee8ae5189c023eb78a4fd806c682b SunOS 5.4
    Y . /usr/sbin/in.rdisc f0847b0fe30719a1521a2859853bc7ae SunOS 5.4
    Y . /usr/sbin/in.rexecd 2334ee079380d4a1eedef55d2ccc8ee1 SunOS 5.4
    O . /usr/sbin/in.rlogind c9c701dbc8c9e7747fc5ac6800daa91f SunOS 5.4 (security patch is 101945)
    Y . /usr/sbin/in.rlogind cfe28bd1da8d26acdb9b5e930efc3e57 Sun Patch ID 101945-37 [sparc]
    Y . /usr/sbin/in.routed ca184fa81eadf39fed273625e57ffa16 SunOS 5.4
    Y . /usr/sbin/in.rshd 95e5d17e4aa3281e71ed20cc05ea366d SunOS 5.4
    Y . /usr/sbin/in.rwhod 0d68e44fcc5300ca33d53af4e6fdbe17 SunOS 5.4
    Y . /usr/sbin/in.talkd 40b1f82b4cdc800f4ff6f62dabe56883 SunOS 5.4
    O . /usr/sbin/in.telnetd 0a9868e53132bd5d0e88c1cad3b36994 SunOS 5.4 (security patch is 101945)
    Y . /usr/sbin/in.telnetd a60b18950bb8d9aa631f1e0211bb0058 Sun Patch ID 101945-37 [sparc]
    Y . /usr/sbin/in.tftpd f528c73650cf1291093730a959af2582 SunOS 5.4
    Y . /usr/sbin/in.tnamed b73c9c3dfb43e00caa1e0bf61822e74c SunOS 5.4
    Y . /usr/sbin/in.uucpd 44f3c52e17911e4bb81a9cbdf879958b SunOS 5.4
    Y . /usr/sbin/inetd aee7c7f7cec0bde3fc464cc2983a442e Sun Patch ID 102922-03 [sparc]
    O . /usr/sbin/inetd ed377f4618808deb52e38843e7f2d917 SunOS 5.4 (security patch is 102922)
    Y . /usr/sbin/init 5bdf825244ab6159eb36991df17b217f Sun Patch ID 101945-37 [sparc]
    O . /usr/sbin/init b1e30cd97471b2b61bbfb5411cfba6bc SunOS 5.4 (security patch is 101945)
    O . /usr/sbin/makedbm 40afdaad933d6ad6606f53f193bd113b SunOS 5.4 (security patch is 102704)
    Y . /usr/sbin/makedbm ccc4a97ff61aa6fae464fbb1fcc104cc Sun Patch ID 102704-02 [sparc]
    Y . /usr/sbin/modload a806c2392bc21870e9a4192c0e1f9686 SunOS 5.4
    Y . /usr/sbin/rpc.bootparamd eae573aa2759a25cd3e888d1e115b7f5 SunOS 5.4
    Y . /usr/sbin/rpc.nisd a8f00e6b01b5b68d2391edf5b618e236 Sun Patch ID 101973-15 [sparc]
    O . /usr/sbin/rpc.nisd d56446e741ebc0d54e4b8a89dffdd9a3 SunOS 5.4 (security patch is 101973)
    Y . /usr/sbin/rpc.nisd_resolv 27641da7247f9792902409fe7ef4b85d SunOS 5.4
    Y . /usr/sbin/rpc.rexd 3a9b3948be109d9b6a342fcb5f15d9a8 SunOS 5.4
    Y . /usr/sbin/rpcbind 36c34648d86bc5d0bc0991f966e397c7 Sun Patch ID 102070-01
    O . /usr/sbin/rpcbind d0a65de59a7923d2c8ee8377d609227b SunOS 5.4 (security patch is 102070)
    Y . /usr/sbin/sync 5b3d18121b7a916cc129f8e6581ddc17 SunOS 5.4
    O . /usr/sbin/wall 343386b5ab1525bf6852d05c60fdaba3 SunOS 5.4 (security patch is 102680)
    Y . /usr/sbin/wall 646cc7897ae01d3120669750e2768839 Sun Patch ID 102680-03 [sparc]
    O . /usr/sbin/ypinit 306bc9c9efc202d33aeeb5e12db8dc32 SunOS 5.4 (security patch is 102704)
    Y . /usr/sbin/ypinit aed26b08433f9cf7a3bcaf692f853c3d Sun Patch ID 102704-02 [sparc]
    O . /usr/ucb/ps 4bf07c292aaf48f6ac7e0214ec664778 SunOS 5.4 (security patch 102711)
    Y . /usr/ucb/ps e033481e0007e5a02bd6f762e5d34bbf Sun Patch ID 102711-01 [sparc]
    O . /usr/ucb/vipw 4148206d1233914f2588aaa1cfdf197a SunOS 5.4 (security patch is 102960)
    Y . /usr/ucb/vipw 642e150b227660f0cdca36a92047afd3 Sun Patch ID 102960-01 [sparc]
    O . /usr/ucblib/libucb.a 175c008335ecc3666c0192da7fd438fb SunOS 5.4 (security patch is 101945)
    Y . /usr/ucblib/libucb.a b7569ef02a9fbdf153367bb7ca3202ea Sun Patch ID 101945-37 [sparc]
    O . /usr/ucblib/libucb.so.1 701c7b0aa2ee845f9a488d39e92177bc SunOS 5.4 (security patch is 101945)
    Y . /usr/ucblib/libucb.so.1 8781eb7f30a244969572a0ed2d123a33 Sun Patch ID 101945-37 [sparc]
    tiger-3.2.3/systems/SunOS/5/5.4/sun4/config0000644000175000017500000001033307650724675016552 0ustar  pacopaco# -*- 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/4/config - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    UUID=`/usr/bin/id | /usr/bin/sed -e 's/uid=\([0-9][0-9]*\).*$/\1/'`
    [ "$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
    # -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
    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
    EXPAND=/usr/bin/expand
    SHOWREV=/usr/bin/showrev
    NETSTAT=/usr/bin/netstat
    SENDMAILS="/usr/lib/sendmail /usr/lib/sendmail.mx"
    SENDMAILCF="/etc/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
    export SHOWREV NETSTAT 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=/usr/etc/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
    #
    # 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
    #
    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
    #
    MAILSPOOL=/var/spool/mail
    #
    CRONSPOOL=/var/spool/cron/crontabs
    #
    ETCSHELLS=/etc/shells
    #
    export MAILSPOOL CRONSPOOL ETCSHELLS
    #
    FS_WDIRSYS="/tmp/ /var/tmp/ /var/spool/mail/"
    export FS_WDIRSYS
    #
    SYSDEFAULTPATH="/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
    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
    EOL
    `
    tiger-3.2.3/systems/SunOS/5/5.4/signatures0000644000175000017500000001573407650724675016612 0ustar  pacopaco#
    #     tiger - A UN*X security checking system
    #     Copyright (C) 1993-1995 Douglas Lee Schales, David K. Hess, David R. Safford
    #
    #     Please see the file `COPYING' for the complete copyright notice.
    #
    # SunOS/5/5.4/sun4/signatures - 02/21/1995
    #
    #-----------------------------------------------------------------------------
    #
    #@DEST=SunOS/5/5.4/sun4
    #@CONFIG=SunOS/5
    #
    # Generated 1995/02/21 dls
    #
    Y .       /etc/lib/ld.so.1 44a96066f6ef39ef9eb4024885fcbcdf SunOS 5.4 
    Y .       /etc/lib/libdl.so.1 38204c540d5e58e76b4f5aaa8f7c1c28 SunOS 5.4 
    Y .       /etc/lib/nss_files.so.1 6e36d7a8a1da20e92fb0b6fc9e1a7e65 SunOS 5.4 
    Y .       /etc/lib/unix_scheme.so.1 8539e34e484cb4c23953bd8edfe579a1 SunOS 5.4 
    Y .       /kernel/strmod/kb 38c035485e7fa41219a9efafb3a856e4 Sun Patch ID 102044-01 [sun4]
    Y .       /kernel/strmod/kb 60e8770c04686e45a5363e9914f5cec8 Sun Patch ID 102044-01 [sun4c]
    Y .       /kernel/strmod/kb c19a88cc72cb981ddcb32e0b7f3ab1d8 Sun Patch ID 102044-01 [sun4d]
    Y .       /kernel/strmod/kb 376441bbb422fed146048d803dff0132 Sun Patch ID 102044-01 [sun4e]
    Y .       /kernel/strmod/kb cf54c8cf204080f018df5a226469edb2 Sun Patch ID 102044-01 [sun4m]
    O .       /kernel/strmod/kb 00482e8e59064938dc23a0e4bfa07a6b SunOS 5.4 sun4d (security patch is 102044)
    O .       /kernel/strmod/kb 8402101ffa0e52c4fe9bf17fe099df6c SunOS 5.4 sun4c (security patch is 102044)
    O .       /kernel/strmod/kb 983941426f275639898e1f71cfb5d710 SunOS 5.4 sun4m (security patch is 102044)
    O .       /kernel/strmod/kb 983941426f275639898e1f71cfb5d710 SunOS 5.4 sun4mL (security patch is 102044)
    O .       /kernel/strmod/kb afd666d438e3c1bca1239441c24aa0b3 SunOS 5.4 sun4e (security patch is 102044)
    O .       /kernel/strmod/kb ef4562bf9bde9a45df68fb1a3a885f29 SunOS 5.4 sun4 (security patch is 102044)
    Y .       /kernel/strmod/ms 9824ccacaf2de655d37fc42301a54c84 Sun Patch ID 102044-01
    O .       /kernel/strmod/ms 154204a020a5b4082c7f834fdcfd7e3e SunOS 5.4 (security patch is 102044)
    Y .       /kernel/strmod/rpcmod 14e5a1d8c9bcd849e0ae8ebf62f786b9 Sun Patch ID 102216-01
    O .       /kernel/strmod/rpcmod fe86bdd533985c77de832121b63d07d3 SunOS 5.4 (security patch is 102216)
    Y .       /sbin/ifconfig e6551bc82d450e405a80e22b6ee44602 SunOS 5.4 
    Y .       /sbin/init 5680f6e46cdfdbb72fa6f9855aa65b2f SunOS 5.4 
    Y .       /sbin/jsh ee4290cdbaa0dbf2103212b72c8046e0 SunOS 5.4 
    Y .       /sbin/sh ee4290cdbaa0dbf2103212b72c8046e0 SunOS 5.4 
    Y .       /sbin/su 126d7cf76ab7d4445bc9c2693ad4bab6 SunOS 5.4 
    Y .       /sbin/sulogin c81ecec4c258e4898028089642859109 SunOS 5.4 
    Y .       /sbin/sync c8b23719e06c78cd12eaaa72b1cd95a0 SunOS 5.4 
    Y .       /usr/4lib/libc.so.1.8 12cc5b72ff42a0905f8c3761c5480b4c SunOS 5.4 
    Y .       /usr/4lib/libc.so.2.8 560742ffcea4b633046a0c7c6a9b7398 SunOS 5.4 
    Y .       /usr/bin/at 7213d982c9454aa89fba6d0c3d6bd621 SunOS 5.4 
    Y .       /usr/bin/atq 00daab2ff943708e27d0e8f8c984cf38 SunOS 5.4 
    Y .       /usr/bin/atrm 37ea451e24b8da0f0558065fd83835e4 SunOS 5.4 
    Y .       /usr/bin/csh 6770abaa4bd0219d6fc0cff5b6b43576 SunOS 5.4 
    Y .       /usr/bin/ftp 1624a4c3b00672091b9bc6a051e6d028 SunOS 5.4 
    Y .       /usr/bin/jsh 9bbf5d4ee5d5796f8baab7d4f8947df1 SunOS 5.4 
    Y .       /usr/bin/sh 9bbf5d4ee5d5796f8baab7d4f8947df1 SunOS 5.4 
    Y .       /usr/lib/rsh 9bbf5d4ee5d5796f8baab7d4f8947df1 SunOS 5.4 
    Y .       /usr/bin/ksh a1aa0c40a969ee2aa12e03e74a12e88f SunOS 5.4 
    Y .       /usr/bin/lastcomm cb64a02f39c09a2d8fd514c8b2ab1c7f SunOS 5.4 
    Y .       /usr/bin/login 94639a588aecc4af727e4f963b314140 SunOS 5.4 
    Y .       /usr/bin/mail e483f3a492e3e1523dc9cb04e8f9508a SunOS 5.4 
    Y .       /usr/bin/ps 4aad42eb4a43fbe3420fecdf977147bf SunOS 5.4 
    Y .       /usr/bin/rcp d5705e26da261161bbfcaabddf0aee08 SunOS 5.4 
    Y .       /usr/bin/rdist 98aecb5b5421a373ca2b7dc6a7e5ef54 SunOS 5.4 
    Y .       /usr/bin/rlogin bfffbe92aa78e2e76e08c1a3d4947680 SunOS 5.4 
    Y .       /usr/bin/rpcinfo 51cb1a6b8fd6155568e214fb2bc3475e SunOS 5.4 
    Y .       /usr/bin/rsh b18e37a361847171af758ff1fbd83ab4 SunOS 5.4 
    Y .       /usr/bin/su e729859318d1d34b02632282b78576c4 SunOS 5.4 
    Y .       /usr/bin/telnet 434ec573e0d9d2ac1eddea3a916c5b6a SunOS 5.4 
    Y .       /usr/bin/time ba2edca11dfc1fe0e6e6386fd20e4254 SunOS 5.4 
    Y .       /usr/bin/timex 5e1642c275e5628d0913cf9c54920084 SunOS 5.4 
    Y .       /usr/sbin/chroot 55b3a60db472e12e26b944cecf79041f SunOS 5.4 
    Y .       /usr/sbin/cron ec770bad37a6a484b07009318d421295 SunOS 5.4 
    Y .       /usr/sbin/fuser f7d264cafc2ad02cb9751d8707acba74 SunOS 5.4 
    Y .       /usr/sbin/ifconfig 4edd9a52e45dd690d36d7cfc663ef420 SunOS 5.4 
    Y .       /usr/sbin/in.comsat 871a95368f7799a13c24cd3e864a18da SunOS 5.4 
    Y .       /usr/sbin/in.fingerd 2f8b4ef8191bfd691f120fcfe31e163b SunOS 5.4 
    Y .       /usr/sbin/in.ftpd 0eadfedd36147270512325ac33326db5 SunOS 5.4 
    Y .       /usr/sbin/in.named 327db20c32f660a8950e584b7cbf559d SunOS 5.4 
    Y .       /usr/sbin/in.rarpd 0e4ee8ae5189c023eb78a4fd806c682b SunOS 5.4 
    Y .       /usr/sbin/in.rdisc f0847b0fe30719a1521a2859853bc7ae SunOS 5.4 
    Y .       /usr/sbin/in.rexecd 2334ee079380d4a1eedef55d2ccc8ee1 SunOS 5.4 
    Y .       /usr/sbin/in.rlogind c9c701dbc8c9e7747fc5ac6800daa91f SunOS 5.4 
    Y .       /usr/sbin/in.routed ca184fa81eadf39fed273625e57ffa16 SunOS 5.4 
    Y .       /usr/sbin/in.rshd 95e5d17e4aa3281e71ed20cc05ea366d SunOS 5.4 
    Y .       /usr/sbin/in.rwhod 0d68e44fcc5300ca33d53af4e6fdbe17 SunOS 5.4 
    Y .       /usr/sbin/in.talkd 40b1f82b4cdc800f4ff6f62dabe56883 SunOS 5.4 
    Y .       /usr/sbin/in.telnetd 0a9868e53132bd5d0e88c1cad3b36994 SunOS 5.4 
    Y .       /usr/sbin/in.tftpd f528c73650cf1291093730a959af2582 SunOS 5.4 
    Y .       /usr/sbin/in.tnamed b73c9c3dfb43e00caa1e0bf61822e74c SunOS 5.4 
    Y .       /usr/sbin/in.uucpd 44f3c52e17911e4bb81a9cbdf879958b SunOS 5.4 
    Y .       /usr/sbin/inetd ed377f4618808deb52e38843e7f2d917 SunOS 5.4 
    Y .       /usr/sbin/init b1e30cd97471b2b61bbfb5411cfba6bc SunOS 5.4 
    Y .       /usr/sbin/modload a806c2392bc21870e9a4192c0e1f9686 SunOS 5.4 
    Y .       /usr/sbin/rpc.bootparamd eae573aa2759a25cd3e888d1e115b7f5 SunOS 5.4 
    Y .       /usr/sbin/rpc.nisd d56446e741ebc0d54e4b8a89dffdd9a3 SunOS 5.4 
    Y .       /usr/sbin/rpc.nisd_resolv 27641da7247f9792902409fe7ef4b85d SunOS 5.4 
    Y .       /usr/sbin/rpc.rexd 3a9b3948be109d9b6a342fcb5f15d9a8 SunOS 5.4 
    Y .       /usr/sbin/rpcbind 36c34648d86bc5d0bc0991f966e397c7 Sun Patch ID 102070-01
    O .       /usr/sbin/rpcbind d0a65de59a7923d2c8ee8377d609227b SunOS 5.4 (security patch is 102070)
    Y .       /usr/sbin/sync 5b3d18121b7a916cc129f8e6581ddc17 SunOS 5.4 
    Y .       /usr/ucb/ps 4bf07c292aaf48f6ac7e0214ec664778 SunOS 5.4 
    Y .       /usr/lib/libc.a d7249b8eed349e1736cb3b4c71af221d Sun Patch ID 101981-02
    O .       /usr/lib/libc.a 02b1422cd5c4f98ef118faf890d54eb5 SunOS 5.4 (security patch is 101981)
    Y .       /usr/lib/libc.so.1 09f45be78e1e17ed4f0345c930316ab4 Sun Patch ID 101981-02
    O .       /usr/lib/libc.so.1 4d6c9427e29f5f555fba2f4bbd4c7b71 SunOS 5.4 (security patch is 101981)
    O .       /usr/lib/libc.a bba0ce73adb6189ec94950086737851f Sun Patch ID 101981-01 (current is 101982-02)
    O .       /usr/lib/libc.so.1 14f902dc49eec284800a1cebcea8f35a Sun Patch ID 101981-01 (current is 101982-02)
    tiger-3.2.3/systems/SunOS/5/5.4/suid_list0000644000175000017500000000211707722712467016410 0ustar  pacopaco/sbin/su
    /sbin/sulogin
    /usr/bin/at
    /usr/bin/atq
    /usr/bin/atrm
    /usr/bin/chkey
    /usr/bin/crontab
    /usr/bin/ct
    /usr/bin/cu
    /usr/bin/eject
    /usr/bin/fd_format
    /usr/bin/keylogin
    /usr/bin/kgmon
    /usr/bin/login
    /usr/bin/newgrp
    /usr/bin/passwd
    /usr/bin/ps
    /usr/bin/rcp
    /usr/bin/rdist
    /usr/bin/rlogin
    /usr/bin/rsh
    /usr/bin/su
    /usr/bin/tip
    /usr/bin/uptime
    /usr/bin/uucp
    /usr/bin/uuglist
    /usr/bin/uuname
    /usr/bin/uustat
    /usr/bin/uux
    /usr/bin/volcheck
    /usr/bin/w
    /usr/bin/yppasswd
    /usr/lib/acct/accton
    /usr/lib/expreserve
    /usr/lib/exrecover
    /usr/lib/fs/ufs/ufsdump
    /usr/lib/fs/ufs/ufsrestore
    /usr/lib/pt_chmod
    /usr/lib/sendmail
    /usr/lib/sendmail.mx
    /usr/lib/utmp_update
    /usr/lib/uucp/remote.unknown
    /usr/lib/uucp/uucico
    /usr/lib/uucp/uusched
    /usr/lib/uucp/uuxqt
    /usr/net/servers/rfs/rfsetup
    /usr/openwin/bin/ff.core
    /usr/openwin/bin/loadmodule
    /usr/openwin/bin/xlock
    /usr/openwin/lib/mkcookie
    /usr/sbin/allocate
    /usr/sbin/deallocate
    /usr/sbin/list_devices
    /usr/sbin/mkdevalloc
    /usr/sbin/mkdevmaps
    /usr/sbin/nsquery
    /usr/sbin/ping
    /usr/sbin/sacadm
    /usr/sbin/static/rcp
    /usr/sbin/whodo
    /usr/ucb/ps
    /usr/vmsys/bin/chkperm
    tiger-3.2.3/systems/SunOS/5/5.5/0000755000175000017500000000000011306441050014442 5ustar  pacopacotiger-3.2.3/systems/SunOS/5/5.5/services0000644000175000017500000000227607722712467016243 0ustar  pacopacoNeWS 144/tcp
    biff 512/udp
    bootpc 68/udp
    bootps 67/udp
    chargen 19/tcp
    chargen 19/udp
    courier 530/tcp
    csnet-ns 105/tcp
    cvc 1495/tcp
    cvc_hostd 442/tcp
    daytime 13/tcp
    daytime 13/udp
    discard 9/tcp
    discard 9/udp
    domain 53/tcp
    domain 53/udp
    dtspc 6112/tcp
    echo 7/tcp
    echo 7/udp
    eklogin 2105/tcp
    exec 512/tcp
    finger 79/tcp
    fs 7100/tcp
    ftp 21/tcp
    ftp-data 20/tcp
    hostnames 101/tcp
    imap 143/tcp
    ingreslock 1524/tcp
    iso-tsap 102/tcp
    kerberos 750/tcp
    kerberos 750/udp
    kerberos-adm 749/tcp
    kerberos-adm 749/udp
    klogin 543/tcp
    krb5_prop 754/tcp
    ldap 389/tcp
    ldap 389/udp
    ldaps 636/tcp
    ldaps 636/udp
    link 87/tcp
    listen 2766/tcp
    lockd 4045/tcp
    lockd 4045/udp
    login 513/tcp
    monitor 561/udp
    name 42/udp
    netstat 15/tcp
    new-rwho 550/udp
    nfsd 2049/tcp
    nfsd 2049/udp
    nntp 119/tcp
    ntp 123/tcp
    ntp 123/udp
    pcserver 600/tcp
    pop2 109/tcp
    pop3 110/tcp
    printer 515/tcp
    rje 77/tcp
    rmonitor 560/udp
    route 520/udp
    shell 514/tcp
    smtp 25/tcp
    sunrpc 111/tcp
    sunrpc 111/udp
    supdup 95/tcp
    syslog 514/udp
    systat 11/tcp
    talk 517/udp
    tcpmux 1/tcp
    telnet 23/tcp
    tftp 69/udp
    time 37/tcp
    time 37/udp
    ufsd 1008/tcp
    ufsd 1008/udp
    uucp 540/tcp
    uucp-path 117/tcp
    who 513/udp
    whois 43/tcp
    www-ldap-gw 1760/tcp
    www-ldap-gw 1760/udp
    x400 103/tcp
    x400-snd 104/tcp
    tiger-3.2.3/systems/SunOS/5/5.5/inetd0000644000175000017500000000343207722712467015516 0ustar  pacopaco100068/2-4	dgram	rpc/udp	wait root /usr/openwin/bin/rpc.cmsd	rpc.cmsd
    100083/1	stream  rpc/tcp wait root /usr/openwin/bin/rpc.ttdbserverd rpc.ttdbserverd
    100087/10	tli	rpc/udp	wait root /usr/sbin/admind	admind
    chargen	dgram	udp	wait	root	internal
    chargen	stream	tcp	nowait	root	internal
    comsat	dgram	udp	wait	root	/usr/sbin/in.comsat	in.comsat
    daytime	dgram	udp	wait	root	internal
    daytime	stream	tcp	nowait	root	internal
    discard	dgram	udp	wait	root	internal
    discard	stream	tcp	nowait	root	internal
    echo	dgram	udp	wait	root	internal
    echo	stream	tcp	nowait	root	internal
    exec	stream	tcp	nowait	root	/usr/sbin/in.rexecd	in.rexecd
    finger	stream	tcp	nowait	nobody	/usr/sbin/in.fingerd	in.fingerd
    ftp	stream	tcp	nowait	root	/usr/sbin/in.ftpd	in.ftpd
    login	stream	tcp	nowait	root	/usr/sbin/in.rlogind	in.rlogind
    name	dgram	udp	wait	root	/usr/sbin/in.tnamed	in.tnamed
    netstat	stream	tcp	nowait	root	/usr/bin/netstat 	netstat -f inet
    rexd/1          stream  rpc/tcp wait root /usr/sbin/rpc.rexd     rpc.rexd
    rquotad/1	tli	rpc/datagram_v	wait root /usr/lib/nfs/rquotad	rquotad
    rstatd/2-4	tli   rpc/datagram_v wait root /usr/lib/netsvc/rstat/rpc.rstatd rpc.rstatd
    rusersd/2-3	tli	rpc/datagram_v	wait root /usr/lib/netsvc/rusers/rpc.rusersd	rpc.rusersd
    shell	stream	tcp	nowait	root	/usr/sbin/in.rshd	in.rshd
    sprayd/1	tli	rpc/datagram_v	wait root /usr/lib/netsvc/spray/rpc.sprayd	rpc.sprayd
    systat	stream	tcp	nowait	root	/usr/bin/ps		ps -ef
    talk	dgram	udp	wait	root	/usr/sbin/in.talkd	in.talkd
    telnet	stream	tcp	nowait	root	/usr/sbin/in.telnetd	in.telnetd
    tftp	dgram	udp	wait	root	/usr/sbin/in.tftpd	in.tftpd -s /tftpboot
    time	dgram	udp	wait	root	internal
    time	stream	tcp	nowait	root	internal
    uucp	stream	tcp	nowait	root	/usr/sbin/in.uucpd	in.uucpd
    walld/1		tli	rpc/datagram_v	wait root /usr/lib/netsvc/rwall/rpc.rwalld	rpc.rwalld
    tiger-3.2.3/systems/SunOS/5/5.5/sun4/0000755000175000017500000000000011306441050015333 5ustar  pacopacotiger-3.2.3/systems/SunOS/5/5.5/sun4/signatures0000644000175000017500000001644207650724675017501 0ustar  pacopaco#     tiger - A UN*X security checking system
    #     Copyright (C) 1993-1996 Douglas Lee Schales, David K. Hess, David R. Safford
    #
    #     Please see the file `COPYING' for the complete copyright notice.
    #
    # SunOS/5/5.5/sun4/signatures - 04/03/1996
    #
    #-----------------------------------------------------------------------------
    #
    #@DEST=SunOS/5/5.5/sun4
    #@CONFIG=SunOS/5
    #
    # Generated 1995/02/21 dls
    #
    Y .       /sbin/ifconfig 1ed45ee532c33729c3e4b0902cc2847c SunOS 5.5 
    Y .       /sbin/init cf15658d858008300398b55204cc161e SunOS 5.5 
    Y .       /sbin/jsh ddb6e27859682ddd7cda5aeca034b927 SunOS 5.5 
    Y .       /sbin/sh ddb6e27859682ddd7cda5aeca034b927 SunOS 5.5 
    Y .       /sbin/mount 6bef00f5560b1f03ef1aa118c7e9fed7 SunOS 5.5 
    Y .       /sbin/su 5cc7f25f4e74c138ec681a107f787903 SunOS 5.5 
    Y .       /sbin/sulogin 02a60da3b61ecd294000ad9ad8103448 SunOS 5.5 
    Y .       /usr/bin/at aff3d801342a7a679cad91319ca9658b SunOS 5.5 
    Y .       /usr/bin/atq 065bcd28c33c89698301eef34adec1fd SunOS 5.5 
    Y .       /usr/bin/atrm f42edf9f909a3c371be240ff4272d627 SunOS 5.5 
    Y .       /usr/bin/batch c3247a561499e35e868fe7a12362a7d1 SunOS 5.5 
    Y .       /usr/bin/csh fe5f3f21041caface88d4d20b63f1af3 SunOS 5.5 
    Y .       /usr/bin/ftp 724c41ea6247c9cb566b7e27a9ca4742 SunOS 5.5 
    Y .       /usr/bin/jsh b285ddf587da002a5b086c56cf2e4771 SunOS 5.5 
    Y .       /usr/bin/sh b285ddf587da002a5b086c56cf2e4771 SunOS 5.5 
    Y .       /usr/bin/ksh aa305d7557e101e545f8ce75cfdc35ff SunOS 5.5 
    Y .       /usr/bin/login a24d2b4c1be21661cae4bab674363f4d SunOS 5.5 
    Y .       /usr/bin/lp 96776d90369ea8cc021d437ed0611d69 SunOS 5.5 
    Y .       /usr/bin/lpstat b5bb9722b4a3c8c08cd1b86589b831d5 SunOS 5.5 
    Y .       /usr/bin/mail b59e1329e9f4e4f02e2baf2058a22a58 SunOS 5.5 
    Y .       /usr/bin/mailx 987ca079b05f6e2e6427b4d2ef9172f1 SunOS 5.5 
    Y .       /usr/bin/netstat 3ace0a1b084f4b640d0a0aa029889c8d SunOS 5.5 
    Y .       /usr/bin/priocntl 39f860ff0e3c8782aa5b9423ab34cde3 SunOS 5.5 
    Y .       /usr/bin/ps ed93afe30753b97db2ba0f624cb17a32 SunOS 5.5 
    Y .       /usr/bin/rdist 7be771cd4ed8be4844782e294517502b SunOS 5.5 
    Y .       /usr/bin/rlogin 30e6f7e3cb5882702453bbf82c902698 SunOS 5.5 
    Y .       /usr/bin/rsh cdcb254ad47c2f9355a4eb7353427a2e SunOS 5.5 
    Y .       /usr/bin/su 1b1fd96c5d90444d97c7437e57bc2652 SunOS 5.5 
    Y .       /usr/bin/telnet 76ff8d8c6a8c9ef8392aae745eb25c94 SunOS 5.5 
    Y .       /usr/bin/tftp 533c361672cb2d16780874e0fe2f3b94 SunOS 5.5 
    Y .       /usr/bin/time 7b42af3e69d9d3aabda6e30aa4d8259b SunOS 5.5 
    Y .       /usr/bin/timex e73137b188e5c2e0b749b3ae02b46e70 SunOS 5.5 
    Y .       /usr/bin/tip 3eae42105ede30e1765f09500c6f240a SunOS 5.5 
    Y .       /usr/lib/expreserve 68b64f5c8b217b68fc7c4c5d2d6d2f2b SunOS 5.5 
    Y .       /usr/lib/exrecover 8b863c6a62dc8e3601e4a7e9a63a6098 SunOS 5.5 
    Y .       /usr/lib/ld.so 6ec2d1d95341e158d8a528be85a04946 SunOS 5.5 
    Y .       /usr/lib/ld.so.1 dd5be2149f16d587fac96c0d76c49e2e SunOS 5.5 
    Y .       /usr/lib/lddstub 9f76b2620bd4b8036de3665c1eb234ef SunOS 5.5 
    Y .       /usr/lib/libC.so.3 39c0e391f723c73463242709927552db SunOS 5.5 
    Y .       /usr/lib/libC.so.5 044ff0fd7a28631280aa22e061412ff1 SunOS 5.5 
    Y .       /usr/lib/libc.a 9f1ca08d2b06e306b83c6ca4992d9bff SunOS 5.5 
    Y .       /usr/lib/libc.so.1 585b8bb49e4f3f9733b75cb1dd100628 SunOS 5.5 
    Y .       /usr/lib/libelf.a 7a03aaabb047f339c8fa305f1be054bd SunOS 5.5 
    Y .       /usr/lib/libelf.so.1 f3d15f4102df644ec6d8ab3a5c262667 SunOS 5.5 
    Y .       /usr/lib/libm.a 67d2bfd091d96961acfcba93749368d1 SunOS 5.5 
    Y .       /usr/lib/libm.so.1 19570e5fa8f312f7c7fe2a087b60f825 SunOS 5.5 
    Y .       /usr/lib/libnsl.a e44f9d1bdf4af692568cbed4910dbaf4 SunOS 5.5 
    Y .       /usr/lib/libnsl.so.1 82b4acf1f196ca45ff70f49901625d04 SunOS 5.5 
    Y .       /usr/lib/libresolv.so.1 e4b001bf9a16fa5fd69e6f22034d9797 SunOS 5.5 
    Y .       /usr/lib/librpcsvc.a 1413b43e81c09d1ddcd2138561d6c68f SunOS 5.5 
    Y .       /usr/lib/librpcsvc.so.1 37b61fba2945380e6d1533f78c5baaf9 SunOS 5.5 
    Y .       /usr/lib/libsec.a 49034f4ddfbd196f479e829c445f31a1 SunOS 5.5 
    Y .       /usr/lib/libsec.so.1 652c8a90f20654999ee5a2008f32a6f5 SunOS 5.5 
    Y .       /usr/lib/libsocket.a 34cbe4a2144be6771c8fa307f9160560 SunOS 5.5 
    Y .       /usr/lib/libsocket.so.1 1978aa85a23e39fffeb77e12ba45fd93 SunOS 5.5 
    Y .       /usr/lib/mail.local ceac4580876e03d6e69618cb8ce87dd4 SunOS 5.5 
    Y .       /usr/lib/makewhatis f96892f80dc36ec2340345ace78837e2 SunOS 5.5 
    Y .       /usr/lib/netsvc/rstat/rpc.rstatd cc9bcae3ccf3fe0ecce6a0166144c0f0 SunOS 5.5 
    Y .       /usr/lib/netsvc/rusers/rpc.rusersd 92d69be11c637ee3d5ebc000578c8aa4 SunOS 5.5 
    Y .       /usr/lib/netsvc/rwall/rpc.rwalld 355c942bad45a4b6db24a266feb274e7 SunOS 5.5 
    Y .       /usr/lib/netsvc/spray/rpc.sprayd 65a118129b09fef77aa38183235ca4ce SunOS 5.5 
    Y .       /usr/lib/netsvc/yp/ypbind a1b51f2107e04a31911e47b31e93d42b SunOS 5.5 
    Y .       /usr/lib/newsyslog 7232b3b6da29c3c799dbfaee0ac01661 SunOS 5.5 
    Y .       /usr/lib/nfs/lockd daaac96f589f37982ab6bfe823890f58 SunOS 5.5 
    Y .       /usr/lib/nfs/mountd 8c034663096ecc76d16189063183124b SunOS 5.5 
    Y .       /usr/lib/nfs/nfsd 94ae954bd8294ba91a7e34399bf5dcab SunOS 5.5 
    Y .       /usr/lib/nfs/rquotad 69193e39c78e84e9467509adde0251e4 SunOS 5.5 
    Y .       /usr/lib/nfs/statd 4a169b0da3c1f93135071b7954b70b49 SunOS 5.5 
    Y .       /usr/lib/sendmail 97bfd77d0ecb8754d83449ff02e8971f SunOS 5.5 
    Y .       /usr/sbin/ifconfig 58f612542c990026346de6144b2a657b SunOS 5.5 
    Y .       /usr/sbin/in.comsat 2c835d7bbac8149f6855286662711bd3 SunOS 5.5 
    Y .       /usr/sbin/in.fingerd 212a260a1558cbed72adb393cf24f336 SunOS 5.5 
    Y .       /usr/sbin/in.ftpd 78027b69a2ad6979a637fc605d64d4ea SunOS 5.5 
    Y .       /usr/sbin/in.named 9495e7bf2ff0c15c836ff9fd5ba433a1 SunOS 5.5 
    Y .       /usr/sbin/in.rarpd ab20beec3adc1b82de249a532473ab54 SunOS 5.5 
    Y .       /usr/sbin/in.rdisc 5b6b018db6e81a9a2066de6b80be4b05 SunOS 5.5 
    Y .       /usr/sbin/in.rexecd 629ff062113baf889e71b5370b3ca112 SunOS 5.5 
    Y .       /usr/sbin/in.rlogind 997f3828e4b5ef00a7efaf5f26d9a2ba SunOS 5.5 
    Y .       /usr/sbin/in.routed 7ab225c627f37330bb3016f3546a6fb4 SunOS 5.5 
    Y .       /usr/sbin/in.rshd fa4972ee82ac97a673b8a8bd7615287f SunOS 5.5 
    Y .       /usr/sbin/in.rwhod 9020fe407dc9eb17f26acc9ae2e99af0 SunOS 5.5 
    Y .       /usr/sbin/in.talkd f855e92dccf00d7ecac4097beb84540e SunOS 5.5 
    Y .       /usr/sbin/in.telnetd d4a22ef835ec5e52c944d40ac97da10c SunOS 5.5 
    Y .       /usr/sbin/in.tftpd 0269fd48db7c357d63172de9c755a415 SunOS 5.5 
    Y .       /usr/sbin/in.tnamed b7dc85a1740c09d8a35883676504e4a8 SunOS 5.5 
    Y .       /usr/sbin/in.uucpd d4a7529ba03ca72d38a1e3d0c6700d59 SunOS 5.5 
    Y .       /usr/sbin/inetd 2736e505b8e50fed996b57f47fe8683f SunOS 5.5 
    Y .       /usr/sbin/init 7d6dd19ce138181bcff91953bde4a740 SunOS 5.5 
    Y .       /usr/sbin/kerbd c1a5b1038996072d53e711daade447a4 SunOS 5.5 
    Y .       /usr/sbin/keyserv 6f046b3b9e927c7c73b2520374d79822 SunOS 5.5 
    Y .       /usr/sbin/rpc.bootparamd 1327af8ceb73bb30651c09255d7a4013 SunOS 5.5 
    Y .       /usr/sbin/rpc.nisd 25d98899b4d70369ad63e83f9163a215 SunOS 5.5 
    Y .       /usr/sbin/rpc.nisd_resolv ad80889a6842042e4129221227fe1a34 SunOS 5.5 
    Y .       /usr/sbin/rpc.nispasswdd add67116a2cc97934d98cb99e6cd4a64 SunOS 5.5 
    Y .       /usr/sbin/rpc.rexd 124601e7587b3599320ccedced497c6b SunOS 5.5 
    Y .       /usr/sbin/rpcbind c26a653d38eb05256ef1f1a8c668b9bd SunOS 5.5 
    Y .       /usr/sbin/syslogd 66717312161fe7e22c01953d8fd44d93 SunOS 5.5 
    Y .       /usr/ucb/ps e76c3223d7d56ff7d31abc2c4e54b16f SunOS 5.5 
    tiger-3.2.3/systems/SunOS/5/5.5/sun4/config0000644000175000017500000001033307650724675016553 0ustar  pacopaco# -*- 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/4/config - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    UUID=`/usr/bin/id | /usr/bin/sed -e 's/uid=\([0-9][0-9]*\).*$/\1/'`
    [ "$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
    # -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
    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
    EXPAND=/usr/bin/expand
    SHOWREV=/usr/bin/showrev
    NETSTAT=/usr/bin/netstat
    SENDMAILS="/usr/lib/sendmail /usr/lib/sendmail.mx"
    SENDMAILCF="/etc/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
    export SHOWREV NETSTAT 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=/usr/etc/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
    #
    # 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
    #
    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
    #
    MAILSPOOL=/var/spool/mail
    #
    CRONSPOOL=/var/spool/cron/crontabs
    #
    ETCSHELLS=/etc/shells
    #
    export MAILSPOOL CRONSPOOL ETCSHELLS
    #
    FS_WDIRSYS="/tmp/ /var/tmp/ /var/spool/mail/"
    export FS_WDIRSYS
    #
    SYSDEFAULTPATH="/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
    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
    EOL
    `
    tiger-3.2.3/systems/SunOS/5/5.5/signatures0000644000175000017500000000730707722712467016604 0ustar  pacopaco#
    #
    #@DEST=SunOS/5/5.3
    #@CONFIG=SunOS/5
    #
    Y .       /sbin/jsh 347a3af7a26d1b024cb625f4fcd6bb3e SunOS 5.3
    Y .       /sbin/sh 347a3af7a26d1b024cb625f4fcd6bb3e SunOS 5.3
    Y .       /usr/bin/csh 7278ce4ee2a2f6d73f3bee905d4a26cd SunOS 5.3
    Y .       /usr/bin/jsh fb96fde274122fbf432fe04b2ca9f189 SunOS 5.3
    Y .       /usr/bin/sh fb96fde274122fbf432fe04b2ca9f189 SunOS 5.3
    Y .       /usr/lib/rsh fb96fde274122fbf432fe04b2ca9f189 SunOS 5.3
    Y .       /usr/bin/ksh b810f2706c43ee834db7fc4c0ff8e58f SunOS 5.3
    #
    # These aren't security patches, but we want these in here...
    #
    Y .       /sbin/jsh 4a9e873451f4749fb5e258e2d4bbe4a4 Sun Patch ID 101297-01
    Y .       /sbin/sh 4a9e873451f4749fb5e258e2d4bbe4a4 Sun Patch ID 101297-01
    Y .       /usr/bin/jsh abe154d47813fada9d6648c2ac1427c8 Sun Patch ID 101297-01
    Y .       /usr/bin/sh abe154d47813fada9d6648c2ac1427c8 Sun Patch ID 101297-01
    Y .       /usr/lib/rsh abe154d47813fada9d6648c2ac1427c8 Sun Patch ID 101297-01
    #
    Y .       /usr/lib/sendmail 1844b3d7868e969531904337709559c5 Sun Patch ID 101371-03
    Y .       /usr/lib/sendmail 05b08c0573631e264420c8b4fe17da30 Sun Patch ID 101371-03
    Y .       /usr/lib/sendmail.mx 05b08c0573631e264420c8b4fe17da30 Sun Patch ID 101371-03
    #
    O sig016w /usr/lib/sendmail bdea8c7fb4571b78c0ccb64853896c06 SunOS 5.3 (security patch is 101371)
    O sig016w /usr/lib/sendmail.mx 5b6811b051b45398ab4b8610c1f0d55b SunOS 5.3 (security patch is 101371)
    O sig016w /usr/lib/sendmail 5b6811b051b45398ab4b8610c1f0d55b SunOS 5.3 (security patch is 101371)
    #
    Y .       /usr/bin/login 556a825e8b61fc3444f06f714846a107 SunOS 5.3
    Y .       /usr/bin/telnet b77528e85438f0f87fdf572a1e923380 SunOS 5.3
    Y .       /usr/sbin/in.telnetd 6d151854c7a9dc52b822f5b000d59b41 SunOS 5.3
    #
    Y .       /usr/bin/rlogin 1d5132a500c11dba8464d0cde43d37a0 SunOS 5.3
    Y .       /usr/sbin/in.rlogind df190c5d8417becf436a50b9318693bb SunOS 5.3
    Y .       /usr/lib/expreserve f63d99fdbdd6a2f1ebeda0bb7067ab78 SunOS 5.3
    Y .       /usr/bin/mail 2664c293decb035e514d424a34e10cb9 SunOS 5.3
    Y .       /usr/bin/mailx cc65bc3f764420e15c7e34390080adec SunOS 5.3
    Y .       /usr/bin/su f6eec80414759370a211d49b11ff3019 SunOS 5.3
    Y .       /usr/bin/rdist 59bf06e6b2b48490e2b04164b0bb15dd SunOS 5.3
    Y .       /usr/sbin/in.uucpd df766fb7f51fda5dca9804881612a4c0 SunOS 5.3
    Y .       /usr/sbin/in.comsat 1c3bd5232016b9d7a4c1c3724d2ac854 SunOS 5.3
    Y .       /usr/sbin/in.fingerd 4f0ff074ff4a0da6b2ca2b72b01a0e90 SunOS 5.3
    Y .       /usr/sbin/in.ftpd ff8a34d56da260a13ea199570cefb41e SunOS 5.3
    Y .       /usr/sbin/in.named f1f3325b68788d1de44448f0cdfd49b7 SunOS 5.3
    Y .       /usr/sbin/in.rarpd bcb1f827254b80b44f7fc462df6ce6b8 SunOS 5.3
    Y .       /usr/sbin/in.rdisc 8fdc31c49b940af15c04aa7623b11afa SunOS 5.3
    Y .       /usr/sbin/in.rexecd 967cdaf0378eb7ba4b10acfd9542d4e1 SunOS 5.3
    Y .       /usr/sbin/in.routed b81a4e7a114a60a33a3734857343f3e7 SunOS 5.3
    Y .       /usr/sbin/in.rshd c20629dacc4b6b12908428b7cfb72988 SunOS 5.3
    Y .       /usr/sbin/in.rwhod fc3eea3aa0598ac57b8d63bc45f75869 SunOS 5.3
    Y .       /usr/sbin/in.talkd 43de66446ec98082b15e18fb7638b229 SunOS 5.3
    Y .       /usr/sbin/in.tftpd c896ea8783c388f313849195d660f686 SunOS 5.3
    Y .       /usr/sbin/in.tnamed 9b64f37c7cc896eba8e1d5d74fcd2a8a SunOS 5.3
    Y .       /usr/sbin/inetd 27c320a5332789566962994574f5f866 SunOS 5.3
    Y .       /sbin/sync 085d04dcc64b643e84410614c9d2a477 SunOS 5.3
    Y .       /usr/sbin/sync cd432113c0e84bf45bf09bd2b08fa08f SunOS 5.3
    #
    Y .       /usr/sbin/tar bb08540b9fa9d293f119daba8bf9d13b Sun Patch ID 101327-01
    Y .       /usr/sbin/static/tar 6b8791e9bf5a26a15791d8b0a91eaea0 Sun Patch ID 101327-01
    O sig017w /usr/sbin/static/tar 0a108d1413518a8890de2ee232638085 SunOS 5.3 (security patch is 101327)
    O sig017w /usr/sbin/tar 54c854127b1d677730247a97db2b1926 SunOS 5.3 (security patch is 101327)
    #
    tiger-3.2.3/systems/SunOS/5/5.5/suid_list0000644000175000017500000000211707722712467016411 0ustar  pacopaco/sbin/su
    /sbin/sulogin
    /usr/bin/at
    /usr/bin/atq
    /usr/bin/atrm
    /usr/bin/chkey
    /usr/bin/crontab
    /usr/bin/ct
    /usr/bin/cu
    /usr/bin/eject
    /usr/bin/fd_format
    /usr/bin/keylogin
    /usr/bin/kgmon
    /usr/bin/login
    /usr/bin/newgrp
    /usr/bin/passwd
    /usr/bin/ps
    /usr/bin/rcp
    /usr/bin/rdist
    /usr/bin/rlogin
    /usr/bin/rsh
    /usr/bin/su
    /usr/bin/tip
    /usr/bin/uptime
    /usr/bin/uucp
    /usr/bin/uuglist
    /usr/bin/uuname
    /usr/bin/uustat
    /usr/bin/uux
    /usr/bin/volcheck
    /usr/bin/w
    /usr/bin/yppasswd
    /usr/lib/acct/accton
    /usr/lib/expreserve
    /usr/lib/exrecover
    /usr/lib/fs/ufs/ufsdump
    /usr/lib/fs/ufs/ufsrestore
    /usr/lib/pt_chmod
    /usr/lib/sendmail
    /usr/lib/sendmail.mx
    /usr/lib/utmp_update
    /usr/lib/uucp/remote.unknown
    /usr/lib/uucp/uucico
    /usr/lib/uucp/uusched
    /usr/lib/uucp/uuxqt
    /usr/net/servers/rfs/rfsetup
    /usr/openwin/bin/ff.core
    /usr/openwin/bin/loadmodule
    /usr/openwin/bin/xlock
    /usr/openwin/lib/mkcookie
    /usr/sbin/allocate
    /usr/sbin/deallocate
    /usr/sbin/list_devices
    /usr/sbin/mkdevalloc
    /usr/sbin/mkdevmaps
    /usr/sbin/nsquery
    /usr/sbin/ping
    /usr/sbin/sacadm
    /usr/sbin/static/rcp
    /usr/sbin/whodo
    /usr/ucb/ps
    /usr/vmsys/bin/chkperm
    tiger-3.2.3/systems/SunOS/5/5.5.1/0000755000175000017500000000000011306441050014601 5ustar  pacopacotiger-3.2.3/systems/SunOS/5/5.5.1/services0000644000175000017500000000227607722712467016402 0ustar  pacopacoNeWS 144/tcp
    biff 512/udp
    bootpc 68/udp
    bootps 67/udp
    chargen 19/tcp
    chargen 19/udp
    courier 530/tcp
    csnet-ns 105/tcp
    cvc 1495/tcp
    cvc_hostd 442/tcp
    daytime 13/tcp
    daytime 13/udp
    discard 9/tcp
    discard 9/udp
    domain 53/tcp
    domain 53/udp
    dtspc 6112/tcp
    echo 7/tcp
    echo 7/udp
    eklogin 2105/tcp
    exec 512/tcp
    finger 79/tcp
    fs 7100/tcp
    ftp 21/tcp
    ftp-data 20/tcp
    hostnames 101/tcp
    imap 143/tcp
    ingreslock 1524/tcp
    iso-tsap 102/tcp
    kerberos 750/tcp
    kerberos 750/udp
    kerberos-adm 749/tcp
    kerberos-adm 749/udp
    klogin 543/tcp
    krb5_prop 754/tcp
    ldap 389/tcp
    ldap 389/udp
    ldaps 636/tcp
    ldaps 636/udp
    link 87/tcp
    listen 2766/tcp
    lockd 4045/tcp
    lockd 4045/udp
    login 513/tcp
    monitor 561/udp
    name 42/udp
    netstat 15/tcp
    new-rwho 550/udp
    nfsd 2049/tcp
    nfsd 2049/udp
    nntp 119/tcp
    ntp 123/tcp
    ntp 123/udp
    pcserver 600/tcp
    pop2 109/tcp
    pop3 110/tcp
    printer 515/tcp
    rje 77/tcp
    rmonitor 560/udp
    route 520/udp
    shell 514/tcp
    smtp 25/tcp
    sunrpc 111/tcp
    sunrpc 111/udp
    supdup 95/tcp
    syslog 514/udp
    systat 11/tcp
    talk 517/udp
    tcpmux 1/tcp
    telnet 23/tcp
    tftp 69/udp
    time 37/tcp
    time 37/udp
    ufsd 1008/tcp
    ufsd 1008/udp
    uucp 540/tcp
    uucp-path 117/tcp
    who 513/udp
    whois 43/tcp
    www-ldap-gw 1760/tcp
    www-ldap-gw 1760/udp
    x400 103/tcp
    x400-snd 104/tcp
    tiger-3.2.3/systems/SunOS/5/5.5.1/inetd0000644000175000017500000000343207722712467015655 0ustar  pacopaco100068/2-4	dgram	rpc/udp	wait root /usr/openwin/bin/rpc.cmsd	rpc.cmsd
    100083/1	stream  rpc/tcp wait root /usr/openwin/bin/rpc.ttdbserverd rpc.ttdbserverd
    100087/10	tli	rpc/udp	wait root /usr/sbin/admind	admind
    chargen	dgram	udp	wait	root	internal
    chargen	stream	tcp	nowait	root	internal
    comsat	dgram	udp	wait	root	/usr/sbin/in.comsat	in.comsat
    daytime	dgram	udp	wait	root	internal
    daytime	stream	tcp	nowait	root	internal
    discard	dgram	udp	wait	root	internal
    discard	stream	tcp	nowait	root	internal
    echo	dgram	udp	wait	root	internal
    echo	stream	tcp	nowait	root	internal
    exec	stream	tcp	nowait	root	/usr/sbin/in.rexecd	in.rexecd
    finger	stream	tcp	nowait	nobody	/usr/sbin/in.fingerd	in.fingerd
    ftp	stream	tcp	nowait	root	/usr/sbin/in.ftpd	in.ftpd
    login	stream	tcp	nowait	root	/usr/sbin/in.rlogind	in.rlogind
    name	dgram	udp	wait	root	/usr/sbin/in.tnamed	in.tnamed
    netstat	stream	tcp	nowait	root	/usr/bin/netstat 	netstat -f inet
    rexd/1          stream  rpc/tcp wait root /usr/sbin/rpc.rexd     rpc.rexd
    rquotad/1	tli	rpc/datagram_v	wait root /usr/lib/nfs/rquotad	rquotad
    rstatd/2-4	tli   rpc/datagram_v wait root /usr/lib/netsvc/rstat/rpc.rstatd rpc.rstatd
    rusersd/2-3	tli	rpc/datagram_v	wait root /usr/lib/netsvc/rusers/rpc.rusersd	rpc.rusersd
    shell	stream	tcp	nowait	root	/usr/sbin/in.rshd	in.rshd
    sprayd/1	tli	rpc/datagram_v	wait root /usr/lib/netsvc/spray/rpc.sprayd	rpc.sprayd
    systat	stream	tcp	nowait	root	/usr/bin/ps		ps -ef
    talk	dgram	udp	wait	root	/usr/sbin/in.talkd	in.talkd
    telnet	stream	tcp	nowait	root	/usr/sbin/in.telnetd	in.telnetd
    tftp	dgram	udp	wait	root	/usr/sbin/in.tftpd	in.tftpd -s /tftpboot
    time	dgram	udp	wait	root	internal
    time	stream	tcp	nowait	root	internal
    uucp	stream	tcp	nowait	root	/usr/sbin/in.uucpd	in.uucpd
    walld/1		tli	rpc/datagram_v	wait root /usr/lib/netsvc/rwall/rpc.rwalld	rpc.rwalld
    tiger-3.2.3/systems/SunOS/5/5.5.1/sun4/0000755000175000017500000000000011306441051015473 5ustar  pacopacotiger-3.2.3/systems/SunOS/5/5.5.1/sun4/signatures0000644000175000017500000012035507650724675017637 0ustar  pacopaco#     tiger - A UN*X security checking system
    #     Copyright (C) 1993-1998 Douglas Lee Schales, David K. Hess, David R. Safford, Ellen L. Mitchell
    #
    #     Please see the file `COPYING' for the complete copyright notice.
    #
    # SunOS/5/5.5.1/sun4/signatures - 06/09/1997
    #
    #-----------------------------------------------------------------------------
    #
    #@DEST=SunOS/5/5.5.1/sun4
    #@CONFIG=SunOS/5
    #
    # Generated 1997/06/09 ellenm
    #
    Y .       /sbin/ifconfig 7f552bad9967346518db5b547a0504f4 SunOS 5.5.1 
    Y .       /sbin/init 7ed0ae8107cb0e3fbe5db5e0b522e866 SunOS 5.5.1 
    Y .       /sbin/jsh 6c13b4ce42293561828be850d9fb1dae SunOS 5.5.1 
    Y .       /sbin/sh 6c13b4ce42293561828be850d9fb1dae SunOS 5.5.1 
    Y .       /sbin/mount 9ace7fe510cc7dfd6cf6201e50023f32 SunOS 5.5.1 
    Y .       /sbin/su 6b10c1b691ba5aef0407ebb79fe4feb3 SunOS 5.5.1 
    Y .       /sbin/sulogin 6b6c2f7ce0b69000ca65ae16a2fd03d7 SunOS 5.5.1 
    Y .       /usr/bin/at 6e30a9f4c8e0d3ada7a4b2ad8e483dd7 SunOS 5.5.1 
    Y .       /usr/bin/atq 8c974812dac6427f842d57e616ab2a8d SunOS 5.5.1 
    Y .       /usr/bin/atrm 9cddcf99b6dfeddc4da141e42091ab4d SunOS 5.5.1 
    Y .       /usr/bin/batch c3247a561499e35e868fe7a12362a7d1 SunOS 5.5.1 
    Y .       /usr/bin/csh a688c7f6794f78b80c930f5f8ae6648c SunOS 5.5.1 
    Y .       /usr/bin/ftp e3879e10c6190929d0b44cab3bea720d SunOS 5.5.1 
    Y .       /usr/bin/jsh 7ed90534683e6a7dcf81c603c0f86cd3 SunOS 5.5.1 
    Y .       /usr/bin/sh 7ed90534683e6a7dcf81c603c0f86cd3 SunOS 5.5.1 
    Y .       /usr/bin/ksh b3ad787cad1b630a9956c12e324b9237 SunOS 5.5.1 
    Y .       /usr/bin/login 635130471cda6d64d5f2a6667dc8ecfd SunOS 5.5.1 
    Y .       /usr/bin/lp eab4fd0d43025bfc6fda808ec706f273 SunOS 5.5.1 
    Y .       /usr/bin/lpstat 1f79bbae63f8ad330ea7d4b63472e184 SunOS 5.5.1 
    Y .       /usr/bin/mail 690e37c5af72c8f42991fd1dfc291510 SunOS 5.5.1 
    Y .       /usr/bin/mailx 9bceda90d461bf56f2aca8e100509e64 SunOS 5.5.1 
    Y .       /usr/bin/netstat c6260236ef468a51a594eaa0166ed2aa SunOS 5.5.1 
    Y .       /usr/bin/priocntl b4a6042657dc2614c92c947e762cd811 SunOS 5.5.1 
    Y .       /usr/bin/ps eda319c35374cd26a3785304c0d05bee SunOS 5.5.1 
    Y .       /usr/bin/rdist ce600be248b75abbd11aff7649de5011 SunOS 5.5.1 
    Y .       /usr/bin/rlogin a3a6368383315943a2eb9d07e76c9bc0 SunOS 5.5.1 
    Y .       /usr/bin/rsh 30b63c3daea49f8e0be673e89d758bb6 SunOS 5.5.1 
    Y .       /usr/bin/su a7d9ffeb66775ee04862dad9af789afa SunOS 5.5.1 
    Y .       /usr/bin/telnet 1c32b0838ddffd33056ae707855f08fd SunOS 5.5.1 
    Y .       /usr/bin/tftp 437eafc723559537922283f99d149e4b SunOS 5.5.1 
    Y .       /usr/bin/time da808b2d8c6a07c9885436e44148e5ea SunOS 5.5.1 
    Y .       /usr/bin/timex a4661afeefb0f53db7310908068338b7 SunOS 5.5.1 
    Y .       /usr/bin/tip 0fe38013789fd4c45f10f96a39e81548 SunOS 5.5.1 
    Y .       /usr/lib/expreserve c16dde4a8945f574c70e424d4c00e8ca SunOS 5.5.1 
    Y .       /usr/lib/exrecover 11eeac64e6686ec0c093ebe3a8694cb7 SunOS 5.5.1 
    Y .       /usr/lib/ld.so c8aaf184726bcf2acf82538c496483ff SunOS 5.5.1 
    Y .       /usr/lib/ld.so.1 388bb61328cc37a2272eb034686ee6e1 SunOS 5.5.1 
    Y .       /usr/lib/lddstub fc95a64a67d461c609c263f0e816793f SunOS 5.5.1 
    Y .       /usr/lib/libC.so.5 00618ce41a069fae97e191aa39c8af0d SunOS 5.5.1 
    Y .       /usr/lib/libC.so.3 39c0e391f723c73463242709927552db SunOS 5.5.1 
    Y .       /usr/lib/libc.a f712568e97e0bb3ff5f59fbedc66ef36 SunOS 5.5.1 
    Y .       /usr/lib/libc.so.1 c6594d6db933859d6c13f4e99c7c69c4 SunOS 5.5.1 
    Y .       /usr/lib/libelf.a ee20e34353a8f0c0eaba9e9a52f6ad75 SunOS 5.5.1 
    Y .       /usr/lib/libelf.so.1 cf5dff9a718349104f4f3b094c1bd909 SunOS 5.5.1 
    Y .       /usr/lib/libm.a 8c0f8159c5b094c7d96116faa8cf8cab SunOS 5.5.1 
    Y .       /usr/lib/libm.so.1 86a1c63947d92ef89872e96273f0600c SunOS 5.5.1 
    Y .       /usr/lib/libnsl.a 1fbcb42c35e320b44f0050a9c20b1302 SunOS 5.5.1 
    Y .       /usr/lib/libnsl.so.1 08cba3442a592a11108b75b27e4ad8d3 SunOS 5.5.1 
    Y .       /usr/lib/libresolv.so.1 2b98e27835d32e8c6029965bc125f4da SunOS 5.5.1 
    Y .       /usr/lib/librpcsvc.a eed65d40a386bd2bdbe573263cbbf3ca SunOS 5.5.1 
    Y .       /usr/lib/librpcsvc.so.1 5de2438fecb3f2a3ceb5b0386f3d8f21 SunOS 5.5.1 
    Y .       /usr/lib/libsec.a 3ab19e16bcc74b3aa8593a58490bc427 SunOS 5.5.1 
    Y .       /usr/lib/libsec.so.1 5accff440a5437d2cf4cf4b402feadf0 SunOS 5.5.1 
    Y .       /usr/lib/libsocket.a 1743a45162537e2e2336d1c204e4a099 SunOS 5.5.1 
    Y .       /usr/lib/libsocket.so.1 c0a737c5ae566a5d2562446d1707136e SunOS 5.5.1 
    Y .       /usr/lib/mail.local c1e8e84dd1575ab4771eaef8f17fbd9d SunOS 5.5.1 
    Y .       /usr/lib/makewhatis f96892f80dc36ec2340345ace78837e2 SunOS 5.5.1 
    Y .       /usr/lib/netsvc/rstat/rpc.rstatd 76c1f6cc4a048652d4ffd50ca5e7bd38 SunOS 5.5.1 
    Y .       /usr/lib/netsvc/rusers/rpc.rusersd ab94b603489a3c106345b01e1cce1584 SunOS 5.5.1 
    Y .       /usr/lib/netsvc/rwall/rpc.rwalld 88f0c59df422bde159ad8bfb60732c59 SunOS 5.5.1 
    Y .       /usr/lib/netsvc/spray/rpc.sprayd 0bc84b839f3d4d7fbbaf9a1771ce1680 SunOS 5.5.1 
    Y .       /usr/lib/netsvc/yp/ypbind 39504fea9dbf67c4ea25edb716ecde29 SunOS 5.5.1 
    Y .       /usr/lib/newsyslog 7232b3b6da29c3c799dbfaee0ac01661 SunOS 5.5.1 
    Y .       /usr/lib/nfs/lockd 2675af52ed4229b6a66ade211b963999 SunOS 5.5.1 
    Y .       /usr/lib/nfs/mountd acb400e56c6ae3a8b64631fab2abd5bb SunOS 5.5.1 
    Y .       /usr/lib/nfs/nfsd 57260f1c2d1b17b36a39c7744ed1579d SunOS 5.5.1 
    Y .       /usr/lib/nfs/rquotad c48f1f21b2d63c6c2febcb283a9ecb0a SunOS 5.5.1 
    Y .       /usr/lib/nfs/statd 7aa071dcd3a38239e26b41c59a093792 SunOS 5.5.1 
    Y .       /usr/lib/sendmail ab4f6058b14677a3521eccd01bf30f75 SunOS 5.5.1 
    Y .       /usr/sbin/ifconfig 8f0afc9c45273aec215244a7604d0dee SunOS 5.5.1 
    Y .       /usr/sbin/in.comsat 556f57e94ad59ca27af1085334dfef18 SunOS 5.5.1 
    Y .       /usr/sbin/in.fingerd 963ffb7f0d8b0391a4d13fa1df4f7b4a SunOS 5.5.1 
    Y .       /usr/sbin/in.ftpd de526b334baa1ec1262ee2cd27c258e1 SunOS 5.5.1 
    Y .       /usr/sbin/in.named 610a59bd7d0bc313cf462366a3f4f6a1 SunOS 5.5.1 
    Y .       /usr/sbin/in.rarpd 155cfbf4a601ec8866cfb929bfa014ca SunOS 5.5.1 
    Y .       /usr/sbin/in.rdisc 223224e77fe552d1fc918e48a9a11f5a SunOS 5.5.1 
    Y .       /usr/sbin/in.rexecd 3739fa38c9afbf15b149699b7c0219ea SunOS 5.5.1 
    Y .       /usr/sbin/in.rlogind ceb28b68cd8d5529a628fba865960237 SunOS 5.5.1 
    Y .       /usr/sbin/in.routed a2f07f39202545761abb9f63b71f0155 SunOS 5.5.1 
    Y .       /usr/sbin/in.rshd cb52e41712a909648f0933e5cb33792d SunOS 5.5.1 
    Y .       /usr/sbin/in.rwhod 3d22ce3a6311312bf2e93363f068b153 SunOS 5.5.1 
    Y .       /usr/sbin/in.talkd 3b33ee555e31ce18d13b4b0376e94682 SunOS 5.5.1 
    Y .       /usr/sbin/in.telnetd 68cf3269cf85dc35aad2fa188e956286 SunOS 5.5.1 
    Y .       /usr/sbin/in.tftpd 91258bb0a822acd8fe4113465ffe1582 SunOS 5.5.1 
    Y .       /usr/sbin/in.tnamed e83f3e05f4c45acee1c3ec6187a7742b SunOS 5.5.1 
    Y .       /usr/sbin/in.uucpd 19bc1a1bbc8b521a8433e6ee5c583351 SunOS 5.5.1 
    Y .       /usr/sbin/inetd d24027b204e94704f26c1661f747af0f SunOS 5.5.1 
    Y .       /usr/sbin/init 464adb9ab5b552ecc916ad4b35dbb398 SunOS 5.5.1 
    Y .       /usr/sbin/kerbd 4d8c16984e880706841cd00ae4bafa62 SunOS 5.5.1 
    Y .       /usr/sbin/keyserv 42534c992e402364bec58400e64930f0 SunOS 5.5.1 
    Y .       /usr/sbin/rpc.bootparamd 6483a2e0d1b52113a5a2004afe36e6a7 SunOS 5.5.1 
    Y .       /usr/sbin/rpc.nisd 2044bb21e1f6ed4623170388985a0b73 SunOS 5.5.1 
    Y .       /usr/sbin/rpc.nisd_resolv 428ef20b3c6c96737afcece74af63f04 SunOS 5.5.1 
    Y .       /usr/sbin/rpc.nispasswdd cc9a23f249b20c50d5a010349216f162 SunOS 5.5.1 
    Y .       /usr/sbin/rpc.rexd 9e51f3cb4a091dc8313e7f69785076c2 SunOS 5.5.1 
    Y .       /usr/sbin/rpcbind 70a043e49b671396795e7de10f69662b SunOS 5.5.1 
    Y .       /usr/sbin/syslogd 80038c3e051fcd8fa7917f23a1a24e8c SunOS 5.5.1 
    Y .       /usr/ucb/ps d4a6a3ba8915fcdc5344362903f51d50 SunOS 5.5.1 
    # These are security patches
    Y .	  /usr/bin/admintool c7e483c29359a68d1c9e34db30b8cc74 Sun Patch ID 103558-11
    O sig003w /usr/bin/admintool 2e4b51932d919fe84ed27fcc35c34f3c SunOS 5.5.1 (security patch is 103558)
    Y .       /usr/bin/showrev bd216c462170702a25d65f884ac22e9b Sun Patch ID 103558-11
    O sig003w /usr/bin/showrev 898eda08ff5ad8687375346ca54c92c5 SunOS 5.5.1 (security patch is 103558)
    Y .       /usr/snadm/lib/libadmutil.so.2 b61bd5b9075a57c25108edb4d1ceae00 Sun Patch ID 103558-11
    O sig003w /usr/snadm/lib/libadmutil.so.2 1ddb0fd48b4d1bdfb67735078380453f SunOS 5.5.1 (security patch is 103558)
    Y .       /usr/bin/solstice 3f976dea2077e2e5a64c331e900bb9d0 Sun Patch ID 103558-11
    O sig003w /usr/bin/solstice 999a68141b40b2178036c2188e70ce5e SunOS 5.5.1 (security patch is 103558)
    Y .       /usr/openwin/bin/xterm e4d8beb3b3ce8642fecab57f71aceef2 Sun Patch ID 103566-25
    O sig003w /usr/openwin/bin/xterm c25000ef79cc7f0d6251f65cb8a69aef SunOS 5.5.1 (security patch is 103566)
    Y .       /usr/openwin/bin/Xsun 66145500e2d13d83b51b2ee98fdf5897 Sun Patch ID 103566-25
    O sig003w /usr/openwin/bin/Xsun 834dfb7658f8473d62017ea15812d5cb SunOS 5.5.1 (security patch is 103566)
    Y .       /usr/openwin/bin/xlock 4f348e5ac64ba5f69349bd32ac6e3c0e Sun Patch ID 103566-25 
    O sig003w /usr/openwin/bin/xlock b34e5ab732c9d0548a07ca928773702e SunOS 5.5.1 (security patch is 103566)
    Y .       /usr/openwin/bin/xwd 68673ddbffe707fb69e369a04d73d1c4 Sun Patch ID 103566-25
    O sig003w /usr/openwin/bin/xwd 19d6a25d31308209dc67c73f8dde9aec SunOS 5.5.1 (security patch is 103566)
    Y .       /usr/openwin/lib/libX11.so.4 0ce98214c74a463c7c8c82ecf1efbff9 Sun Patch ID 103566-25
    O sig003w /usr/openwin/lib/libX11.so.4 ee9669ddaeee07b3f11a60cd0c38e201 SunOS 5.5.1 (security patch is 103566)
    Y .       /usr/openwin/lib/libdga.so.1 4aaa3cc9c06c5024b5fe17e4909c350f Sun Patch ID 103566-25
    O sig003w /usr/openwin/lib/libdga.so.1 cf7c9fdef6efd328174204f67ab30a03 SunOS 5.5.1 (security patch is 103566)
    Y .       /usr/openwin/server/lib/libmhc.so.1 8fb882698f2b65e4b25b9e9040adb7fd Sun Patch ID 103566-25
    O sig003w /usr/openwin/server/lib/libmhc.so.1 1d5c891f4d4660e0523c4cfc169e3d9b SunOS 5.5.1 (security patch is 103566)
    Y .       /usr/openwin/server/lib/libmi.so.1 2cf4f122a51e5bc52bed2d3e3a93314 Sun Patch ID 103566-25
    O sig003w /usr/openwin/server/lib/libmi.so.1 2143ae25f936332111913ab8db55a357 SunOS 5.5.1 (security patch is 103566)
    Y .       /usr/openwin/server/lib/libmpg.so.1 49b5f952c5362382f43221a7b885801 Sun Patch ID 103566-25
    O sig003w /usr/openwin/server/lib/libmpg.so.1 5b6a58176d052a40e5fc2319cf026cd3 SunOS 5.5.1 (security patch is 103566)
    Y .       /usr/openwin/server/lib/libserverX11.so.1 0fe4bc4dfe43a5bcbfd4ff1f4e2712a1 Sun Patch ID 103566-25
    O sig003w /usr/openwin/server/lib/libserverX11.so.1 7677b7f0d611a93a495b511e55e87166 SunOS 5.5.1 (security patch is 103566)
    Y .       /usr/openwin/server/lib/libserverdps.so.1 1288b5ffad4b1b49501a941e4797ac37 Sun Patch ID 103566-25
    O sig003w /usr/openwin/server/lib/libserverdps.so.1 8f8a532a4a73c3f009c8d3c67005ad5f SunOS 5.5.1 (security patch is 103566)
    Y .       /usr/openwin/server/modules/ddxSUNWcg6.so.1 521aca6554667221c01a2c91e47e8448 Sun Patch ID 103566-25
    O sig003w /usr/openwin/server/modules/ddxSUNWcg6.so.1 77bcf9ed7c421031ffc5df29f1424e25 SunOS 5.5.1 (security patch is 103566)
    Y .       /usr/openwin/server/modules/ddxSUNWdials.so.1 e827855f370721db28148f62f1636ab5 Sun Patch ID 103566-25
    O sig003w /usr/openwin/server/modules/ddxSUNWdials.so.1 474c2be0cbbbdc3e764855fcacf92ff6 SunOS 5.5.1 (security patch is 103566)
    Y .       /usr/openwin/lib/libX11.a 23d727416cb68672746c2855bd396b01 Sun Patch ID 103566-25
    O sig003w /usr/openwin/lib/libX11.a 27e274e0210c70ef479d090224d5c604 SunOS 5.5.1 (security patch is 103566)
    Y .       /usr/openwin/lib/libp/libX11.a 61edbf9b8286b8596934fcba8ee7ed63 Sun Patch ID 103566-25
    Y .       /usr/openwin/lib/libp/libX11.a 0ba33f1b8ab35784dd92602ed2526121 SunOS 5.5.1 (security patch is 103566)
    Y .       /kernel/drv/tcp db05d9419b28ef53a8a2841247b860cd Sun Patch ID 103582-15
    O sig003w /kernel/drv/tcp 0db3e48693d5e7b004ccc48921489f55 SunOS 5.5.1 (security patch is 103582)
    Y .       /usr/bin/netstat adc0eaf293ee028ea5e8b9081eeddf55 Sun Patch ID 103582-15
    O sig003w /usr/bin/netstat c6260236ef468a51a594eaa0166ed2aa SunOS 5.5.1 (security patch is 103582)
    Y .       /usr/bin/mailcompat 058ee501e20806bad9cb0c90e9181f9e Sun Patch ID 103594-13
    O sig003w /usr/bin/mailcompat 174b933843f3f0bd6135e0765c0e605f SunOS 5.5.1 (security patch is 103594)
    Y .       /usr/lib/mail.local 13cd97a84d17daa37cf7770f8f9b2140 Sun Patch ID 103594-13
    O sig003w /usr/lib/mail.local c1e8e84dd1575ab4771eaef8f17fbd9d SunOS 5.5.1 (security patch is 103594)
    Y .       /usr/lib/sendmail da2a4fb0d5371f2ae34dfda3cd5d5d0f Sun Patch ID 103594-13
    O sig003w /usr/lib/sendmail ab4f6058b14677a3521eccd01bf30f75 SunOS 5.5.1 (security patch is 103594)
    Y .       /usr/bin/ftp 3d8d93a3010ac79d4f9c92d793d2eee7 Sun Patch ID 103603-05
    O sig003w /usr/bin/ftp e3879e10c6190929d0b44cab3bea720d SunOS 5.5.1 (security patch is 103603)
    Y .       /usr/sbin/in.ftpd 9dbb79d59fa92aaf6ba6b038d8c1b77e Sun Patch ID 103603-05
    O sig003w /usr/sbin/in.ftpd de526b334baa1ec1262ee2cd27c258e1 SunOS 5.5.1 (security patch is 103603)
    Y .       /usr/sbin/in.rexecd 86eecfe08c2b61364824915333887ad3 Sun Patch ID 103603-05
    O sig003w /usr/sbin/in.rexecd 3739fa38c9afbf15b149699b7c0219ea SunOS 5.5.1 (security patch is 103603)
    Y .       /usr/sbin/in.rshd dbf67cead698f89fafa8669cc2f4e31b Sun Patch ID 103603-05
    O sig003w /usr/sbin/in.rshd cb52e41712a909648f0933e5cb33792d SunOS 5.5.1 (security patch is 103603)
    Y .       /usr/lib/libc.a 05b742bf29031d4853187b38b5ff9042 Sun Patch ID 103612-33
    O sig003w /usr/lib/libc.a f712568e97e0bb3ff5f59fbedc66ef36 SunOS 5.5.1 (security patch is 103612)
    Y .       /usr/lib/libnsl.a f8b4cc1a464e1060020ff22ee212eade Sun Patch ID 103612-33
    O sig003w /usr/lib/libnsl.a 1fbcb42c35e320b44f0050a9c20b1302 SunOS 5.5.1 (security patch is 103612)
    Y .       /usr/lib/libp/libc.a 1b33e9176605e230be2d5e12a48ffb50 Sun Patch ID 103612-33
    O sig003w /usr/lib/libp/libc.a 6433d1878a917f24ae65e51ae6821117 SunOS 5.5.1 (security patch is 103612)
    Y .       /usr/lib/pics/libc_pic.a 416ccfbc645bdb3b837a5778b0adbcb8 Sun Patch ID 103612-33
    O sig003w /usr/lib/pics/libc_pic.a d68950af9f7c04e3a0dd71c1c1fb8e22 SunOS 5.5.1 (security patch is 103612)
    Y .       /usr/lib/libc.so.1 8b11f584f680800aae5671135c775fc8 Sun Patch ID 103612-33
    O sig003w /usr/lib/libc.so.1 c6594d6db933859d6c13f4e99c7c69c4 SunOS 5.5.1 (security patch is 103612)
    Y .       /usr/lib/libnsl.so.1 adb204b8f55ec946c70035ef3147ca56 Sun Patch ID 103612-33
    O sig003w /usr/lib/libnsl.so.1 08cba3442a592a11108b75b27e4ad8d3 SunOS 5.5.1 (security patch is 103612)
    Y .       /usr/lib/fn/fn_ctx_onc_fn_nisplus_root.so.1 deda16fcc5c7063442014bb72b835880 so.1 Sun Patch ID 103612-33
    O sig003w /usr/lib/fn/fn_ctx_onc_fn_nisplus_root.so.1 4d3b1126ca69755c1ff932e3091b23f2 SunOS 5.5 (security patch is 103612)
    Y .       /usr/sbin/nis_cachemgr 44edfff4c3a0adfdcd9709e640b0974d Sun Patch ID 103612-33
    O sig003w /usr/sbin/nis_cachemgr fb56c70a0d5476f44991994b86e44b5f SunOS 5.5.1 (security patch is 103612)
    Y .       /usr/sbin/rpc.nisd c6c4de4a9a3b569b26346821fc5de2a3 Sun Patch ID 103612-33
    O sig003w /usr/sbin/rpc.nisd 2044bb21e1f6ed4623170388985a0b73 SunOS 5.5.1 (security patch is 103612)
    Y .       /usr/ucblib/libucb.so.1 0f361042c30732fc49d53683dfca3091 Sun Patch ID 103612-33
    O sig003w /usr/ucblib/libucb.so.1 9d0363afdbbffca33c03ee63eca1cce3 SunOS 5.5.1 (security patch is 103612)
    Y .       /usr/ucblib/libucb.a f3be30d9d779d5839d355f64ec307d53 Sun Patch ID 103612-33
    O sig003w /usr/ucblib/libucb.a 1c049e0c027d0efc7bd1cfd37f68a044 SunOS 5.5.1 (security patch is 103612)
    Y .       /usr/sbin/static/rcp 4e9251d699e17897c40b3ea2a4f13bff Sun Patch ID 103612-33
    O sig003w /usr/sbin/static/rcp 850051f378412a44959138c47e4d7f28 SunOS 5.5.1 (security patch is 103612)
    Y .       /kernel/drv/arp e44a2e5e751fd583b81819edc6cbdfcd Sun Patch ID 103630-09
    O sig003w /kernel/drv/arp 0c46890a40ee99eddfd065be9db4d97a SunOS 5.5.1 (security patch is 103630)
    Y .       /kernel/drv/icmp 7ba72638fc682268e03fca0d20b6d43d Sun Patch ID 103630-09
    O sig003w /kernel/drv/icmp 94bd4f58ebf815f3e0299722eb501e8d SunOS 5.5.1 (security patch is 103630)
    Y .       /kernel/drv/ip 1e4bcbcd24d98d25e0825d9f4a72e7c0 Sun Patch ID 103630-09
    O sig003w /kernel/drv/ip a66b655bddf43fc819441898b76020ba SunOS 5.5.1 (security patch is 103630)
    Y .       /kernel/drv/udp 98f24b08748182e3dd1d802a376ee586 Sun Patch ID 103630-09
    O sig003w /kernel/drv/udp 6e541859ab0134edb3a173d989a8eb46 SunOS 5.5.1 (security patch is 103630)
    Y .       /sbin/ifconfig 322f05a3a01de024b3f83bc463dcb355 Sun Patch ID 103630-09
    O sig003w /sbin/ifconfig 7f552bad9967346518db5b547a0504f4 SunOS 5.5.1 (security patch is 103630)
    Y .       /usr/sbin/ifconfig 734924582ce63de682b04d7c875229f6 Sun Patch ID 103630-09
    O sig003w /usr/sbin/ifconfig 8f0afc9c45273aec215244a7604d0dee SunOS 5.5.1 (security patch is 103630)
    Y .       /platform/sun4c/kernel/unix 7e26acd1286b7363bca83680ec16fd02 Sun Patch ID 103640-14
    O sig003w /platform/sun4c/kernel/unix 5146ba2de3fa44b093a4d8d827507aeb SunOS 5.5.1 sun4c (security patch is 103640)
    Y .       platform/sun4c/ufsboot 70066225fb2308520ca6772dd2ad6f5f Sun Patch ID 103640-14
    O sig003w /platform/sun4c/ufsboot 985e2d31f7fc7464da71accbd349dc26 SunOS 5.5.1 sun4c (security patch is 103640)
    Y .       /platform/sun4d/kernel/unix 7f1d8732efd10c57c099a691d7402afa Sun Patch ID 103640-14
    O sig003w /platform/sun4d/kernel/unix b52d739ecc6675a071662868a3e8c7c8 SunOS 5.5.1 sun4d (security patch is 103640)
    Y .       /platform/sun4d/ufsboot bfffc252f7016dea4f06b9ff04471307 Sun Patch ID 103640-14
    O sig003w /platform/sun4d/ufsboot c476cb70c70bab42dc4da826c0d2990e SunOS 5.5.1 sun4d (security patch is 103640)
    Y .       /platform/sun4m/kernel/unix 13683d63cab4849333a86dff2e92eff3 Sun Patch ID 103640-14
    O sig003w /platform/sun4m/kernel/unix ed8275458ef0ff9c2aa72edcc577f14d SunOS 5.5.1 sun4m (security patch is 103640)
    Y .       /platform/sun4m/ufsboot 7f2cc6239be66a7ed76e82332e90a0a4 Sun Patch ID 103640-14
    O sig003w /platform/sun4m/ufsboot 8ee1d66a2f187785c9f745ebb14b5ce7 SunOS 5.5.1 sun4m (security patch is 103640)
    Y .       /platform/sun4u/kadb 22fcc423520638ea195ab3d241c16fc2 Sun Patch ID 103640-14
    O sig003w /platform/sun4u/kadb 2d62a35e5faee3e7f7ab074ae27b7400 SunOS 5.5.1 sun4u (security patch is 103640)
    Y .       /platform/sun4u/kernel/genunix 072bea8348472ee2a5a5ede8c025b475 Sun Patch ID 103640-14
    O sig003w /platform/sun4u/kernel/genunix ecc26f4d520855382c61c69f9c860532 SunOS 5.5.1 sun4u (security patch is 103640)
    Y .       /platform/sun4u/kernel/unix 17784060c0942af47e3c7d17de8e523d Sun Patch ID 103640-14
    O sig003w /platform/sun4u/kernel/unix 371cab34f26f461781c0f5fa9de97e92 SunOS 5.5.1 sun4u (security patch is 103640)
    Y .       /platform/sun4u/ufsboot 6886b58f3f5ed84fa672a19d3f0e3263 Sun Patch ID 103640-14
    O sig003w /platform/sun4u/ufsboot 2f8c5d8d8f8f5e70b72f56c39a7dc9ed SunOS 5.5.1 sun4u (security patch is 103640)
    Y .       /platform/sun4u1/kadb 6c8ce61765dc18e7a4535ea749ba3031 Sun Patch ID 103640-14
    Y .       /platform/sun4u1/kernel/genunix 9361d24380ee82fd20aa612beab4d546 Sun Patch ID 103640-14
    Y .       /platform/sun4u1/kernel/unix e3fc9e0abf5b7663bc8e5321e585bbb1 Sun Patch ID 103640-14
    Y .       /platform/sun4u1/ufsboot 2e47e9f64b38380371274a72e366065d Sun Patch ID 103640-14
    Y .       /kernel/drv/mm 8d0362fe6af3e99dac1ac2ff3a801b3a Sun Patch ID 103640-14
    O sig003w /kernel/drv/mm f6566c32107c9115687402928b1d4b63 SunOS 5.5.1 (security patch is 103640)
    Y .       /kernel/fs/nfs b9964ebb882fa2ccd87e9543eac91875 Sun Patch ID 103640-14
    O sig003w /kernel/fs/nfs dcf30528a29758851cd86a9c535cf3aa SunOS 5.5.1 (security patch is 103640)
    Y .       /kernel/fs/ufs 47fd7efbae70266e9a6f4991c1ef81c0 Sun Patch ID 103640-14
    O sig003w /kernel/fs/ufs 8116b4737482d0e496eac26684d46caf SunOS 5.5.1 (security patch is 103640)
    Y .       /kernel/genunix f3503e95df2974ef31dd2ca7dcc395e2 Sun Patch ID 103640-14
    O sig003w /kernel/genunix 69038eae60052ebbe5fd79ef17eeb12c SunOS 5.5.1 (security patch is 103640)
    Y .       /kernel/misc/klmmod 9c68a1e3e05e32db3b4367b592448b39 Sun Patch ID 103640-14
    O sig003w /kernel/misc/klmmod e088e89b76b3c96650a82300ce7e7f38 SunOS 5.5.1 (security patch is 103640)
    Y .       /kernel/misc/klmops abc28ce01d798b2862b820d5d9290b9f Sun Patch ID 103640-14
    O sig003w /kernel/misc/klmops 558d41b53fe6c4f06f0c122a4afa9711 SunOS 5.5.1 (security patch is 103640)
    Y .       /kernel/misc/tlimod ea41b0304d0949f6f6ca7b89583ea9ba Sun Patch ID 103640-14
    O sig003w /kernel/misc/tlimod efb9f4edce0597c64e22a48b36e5ae86 SunOS 5.5.1 (security patch is 103640)
    Y .       /kernel/strmod/rpcmod a0e4b477e1ef8f2ef24789cfe50e75ee Sun Patch ID 103640-14
    O sig003w /kernel/strmod/rpcmod 823cfc1ae2011a861f8a88e7b8815559 SunOS 5.5.1 (security patch is 103640)
    Y .       /kernel/sys/doorfs 0a585124b871e1d0577bd14f1c491aa0 Sun Patch ID 103640-14
    O sig003w /kernel/sys/doorfs 4e1fcdbfa95349e3f99985c5519504db SunOS 5.5.1 (security patch is 103640)
    Y .       /usr/lib/adb/mntinfo e5238c518f719dc2f2a701b38e9c8161 Sun Patch ID 103640-14
    O sig003w /usr/lib/adb/mntinfo d7e2c38be8a6cb4ef04c62dbfc96ae68 SunOS 5.5.1 (security patch is 103640)
    Y .       /usr/lib/adb/rnode 56ea86f73d46874efea32718c642623b Sun Patch ID 103640-14
    O sig003w /usr/lib/adb/rnode 57eecabed4cb1111c605314b4977bec6 SunOS 5.5.1 (security patch is 103640)
    Y .       /usr/lib/fs/ufs/fsck b8b5f842789e592dae257de51febfe0e Sun Patch ID 103640-14
    O sig003w /usr/lib/fs/ufs/fsck 4ccb02d899a2f1acedc2fc3329303965 SunOS 5.5.1 (security patch is 103640)
    Y .       /usr/lib/libthread.so.1 df9fdc69491585adc7af07142f64fa0e Sun Patch ID 103640-14
    O sig003w /usr/lib/libthread.so.1 fe54bdcce9a87f982b495a388e93aab2 SunOS 5.5.1 (security patch is 103640)
    Y .       /usr/lib/libthread_db.so.0 221e62b28f8eaf399843c7d08e001203 Sun Patch ID 103640-14
    O sig003w /usr/lib/libthread_db.so.0 e84558ba17971f28ea472bca96acfb0d SunOS 5.5.1 (security patch is 103640)
    Y .       /usr/lib/libthread_db.so.1 61c45573e34c5a2ad750f6198ee53907 Sun Patch ID 103640-14
    O sig003w /usr/lib/libthread_db.so.1 61a873b6c8153d05ab1d92a63b3bf845 SunOS 5.5.1 (security patch is 103640)
    Y .       /usr/platform/sun4c/lib/fs/nfs/inetboot d1396847dabc01e8976e9a21c7524811 Sun Patch ID 103640-14
    O sig003w /usr/platform/sun4c/lib/fs/nfs/inetboot b7dc94d5fdcb53fbaafa2d94cc7de344 SunOS 5.5.1 sun4c (security patch is 103640)
    Y .       /usr/platform/sun4d/lib/fs/nfs/inetboot d1396847dabc01e8976e9a21c7524811 Sun Patch ID 103640-14
    O sig003w /usr/platform/sun4d/lib/fs/nfs/inetboot b7dc94d5fdcb53fbaafa2d94cc7de344 SunOS 5.5.1 sun4d (security patch is 103640)
    Y .       /usr/platform/sun4m/lib/fs/nfs/inetboot c9b10b545ee19234d7f40459486393e2 Sun Patch ID 103640-14
    O sig003w /usr/platform/sun4m/lib/fs/nfs/inetboot 3d6db5affa6d27311753c214764744af SunOS 5.5.1 sun4m (security patch is 103640)
    Y .       /usr/platform/sun4u/lib/fs/nfs/inetboot 70130b9ea08b1b87db5aa125eac6de8b Sun Patch ID 103640-14
    O sig003w /usr/platform/sun4u/lib/fs/nfs/inetboot b159329c06beb1de6f7520c7426c0761 SunOS 5.5.1 sun4u (security patch is 103640)
    Y .       /usr/platform/sun4u1/lib/fs/nfs/inetboot 1e0edac51fcd7799bd2cdcae5f9c7c6f Sun Patch ID 103640-14
    Y .       /usr/lib/libresolv.so.1 f84c93dafd7c16c345686cc8eadc4e13 Sun Patch ID 103663-09
    O sig003w /usr/lib/libresolv.so.1 2b98e27835d32e8c6029965bc125f4da SunOS 5.5.1 (security patch is 103663)
    Y .       /usr/lib/libresolv.so.2 a79c9850689450e84f1dc9563f1c0ea2 Sun Patch ID 103663-09
    Y .       /usr/lib/nslookup.help 3e1ddd9feebd35f6132ed01f5df700c2 Sun Patch ID 103663-09
    O sig003w /usr/lib/nslookup.help b5752b3c238f338bece827e7a2bd42f5 SunOS 5.5.1 (security patch is 103663)
    Y .       /usr/lib/nss_dns.so.1 cec6b1fb2d4d44fabc0907aa1d034668 Sun Patch ID 103663-09
    O sig003w /usr/lib/nss_dns.so.1 16fc05f25a0bf8d60f306117dfcf37ae SunOS 5.5.1 (security patch is 103663)
    Y .       /usr/sbin/in.named 30131c6018d750a53854c8244f7a3424 Sun Patch ID 103663-09
    O sig003w /usr/sbin/in.named 610a59bd7d0bc313cf462366a3f4f6a1 SunOS 5.5.1 (security patch is 103663)
    Y .       /usr/sbin/named-xfer 945cd86f6b1d88be45478366c6130eb9 Sun Patch ID 103663-09
    O sig003w /usr/sbin/named-xfer 39c3cd79efee1b6de0deaedb4670dc7f SunOS 5.5.1 (security patch is 103663)
    Y .       /usr/sbin/nslookup 72f798478b69fcb910656cdce8f34264 Sun Patch ID 103663-09
    O sig003w /usr/sbin/nslookup 0bb5f24cb3c616f1f9aae5cf8fb79ead SunOS 5.5.1 (security patch is 103663)
    Y .       /usr/sbin/nstest b7c5afe55a7ffc586f1079c149f49cd8 Sun Patch ID 103663-09
    O sig003w /usr/sbin/nstest 0bed54c015ecf152d28e0a9af1e2bd58 SunOS 5.5.1 (security patch is 103663)
    Y .       /usr/lib/nscd_nischeck 8d9c77954c3c6b16bbe3969aea1d7e06 Sun Patch ID 103680-01
    O sig003w /usr/lib/nscd_nischeck c9f00c4207bf4bc36bc2dbca9cc7b74a SunOS 5.5.1 (security patch is 103680)
    Y .       /usr/sbin/nscd 25ad31e950164785a2f27c3d16e85cfa Sun Patch ID 103680-01
    O sig003w /usr/sbin/nscd 8ecc33324531b825da4cafdd45207460 SunOS 5.5.1 (security patch is 103680)
    Y .       /usr/sbin/rpc.nisd_resolv e811ccfaf8f6c3e7e6941382a7bb449e Sun Patch ID 103686-02
    O sig003w /usr/sbin/rpc.nisd_resolv 428ef20b3c6c96737afcece74af63f04 SunOS 5.5.1 (security patch is 103686)
    Y .       /usr/bin/at 8c1e7a920c75f1ff38bc112151b9469c Sun Patch ID 103690-05
    O sig003w /usr/bin/at 6e30a9f4c8e0d3ada7a4b2ad8e483dd7 SunOS 5.5.1 (security patch is 103690)
    Y .       /usr/bin/atq 722a1bc7f51b7db23f377124578e957c Sun Patch ID 103690-05
    O sig003w /usr/bin/atq 8c974812dac6427f842d57e616ab2a8d SunOS 5.5.1 (security patch is 103690)
    Y .       /usr/bin/atrm 1b9e02f9755180bc49976c7d510f7d79 Sun Patch ID 103690-05
    O sig003w /usr/bin/atrm 9cddcf99b6dfeddc4da141e42091ab4d SunOS 5.5.1 (security patch is 103690)
    Y .       /usr/bin/crontab a539bbb13488d74597200c645e90da20 Sun Patch ID 103690-05
    O sig003w /usr/bin/crontab 5169246206e5d74e606f49751ac76e14 SunOS 5.5.1 (security patch is 103690)
    Y .       /usr/sbin/cron 085127b7d5662b058e62c67910702770 Sun Patch ID 103690-05
    O sig003w /usr/sbin/cron a9cb92651322baa1f990f22f89f20a31 SunOS 5.5.1 (security patch is 103690)
    Y .       /sbin/su 7ea26f082c9b7e4b41e4d931a65a4bcf Sun Patch ID 103696-03
    O sig003w /sbin/su 6b10c1b691ba5aef0407ebb79fe4feb3 SunOS 5.5.1 (security patch is 103696)
    Y .       /usr/bin/su ca1128ebbd43d3622704389f8c807d0e Sun Patch ID 103696-03
    O sig003w /usr/bin/su a7d9ffeb66775ee04862dad9af789afa SunOS 5.5.1 (security patch is 103696)
    Y .       /usr/sbin/syslogd 937ff49613da38082ab176ae2feb1d45 Sun Patch ID 103738-05
    O sig003w /usr/sbin/syslogd 80038c3e051fcd8fa7917f23a1a24e8c SunOS 5.5.1 (security patch is 103738)
    Y .       /usr/lib/fn/fn_ctx_inet_domain.so.1 ebdbd14413e2fbf732a90dc31d4ccbc1 Sun Patch ID 103743-01
    O sig003w /usr/lib/fn/fn_ctx_inet_domain.so.1 1726fc6af3ad08cb6477ba5f6b4d8f76 SunOS 5.5.1 (security patch is 103743)
    Y .       /usr/bin/rdist 89735351119896feb7469dca76788561 Sun Patch ID 103817-01
    O sig003w /usr/bin/rdist ce600be248b75abbd11aff7649de5011 SunOS 5.5.1 (security patch is 103817)
    Y .       /usr/4lib/libc.so.1.9 449dcbe86d45bf3a6c2a5aa2d39746f9 Sun Patch ID 103866-04
    O sig003w /usr/4lib/libc.so.1.9 355d3f623a566f9184dc5a7237f70ceb SunOS 5.5.1 (security patch is 103866)
    Y .       /usr/4lib/libc.so.2.9 b22a8e3fa1cfbcf3727c32efd92787ae Sun Patch ID 103866-04
    O sig003w /usr/4lib/libc.so.2.9 4c23a15fffd732eabdedee66c757d4db SunOS 5.5.1 (security patch is 103866)
    Y .       /usr/openwin/share/etc/devhandlers/kcsEKPfmticc30.so.1 472d20d17c0d7b839ca14bfe3951dab1 Sun Patch ID 103879-04
    O sig003w /usr/openwin/share/etc/devhandlers/kcsEKPfmticc30.so.1 a5e8827c55c97aacb04ad87f62d15906 SunOS 5.5.1 (security patch is 103879)
    Y .       /usr/openwin/share/etc/devhandlers/kcsSUNWIOxwin.so.1 0797afd8d16a1c96305d89c2c7d6e4f8 Sun Patch ID 103879-04
    O sig003w /usr/openwin/share/etc/devhandlers/kcsSUNWIOxwin.so.1 6573a94c89fdcb74e672f208a078a784 SunOS 5.5.1 (security patch is 103879)
    Y .       /usr/openwin/share/etc/gpiutils/libkcms_sys.so.1 877a7a88b236f97c82ee304d491705fb Sun Patch ID 103879-04
    O sig003w /usr/openwin/share/etc/gpiutils/libkcms_sys.so.1 3edea4ba234dc2111dc20bcb369faac1 SunOS 5.5.1 (security patch is 103879)
    Y .       /usr/openwin/share/etc/gpiutils/libstdprof.so.1 b486cc527b7a6ba91920ece8944b1bcb Sun Patch ID 103879-04
    O sig003w /usr/openwin/share/etc/gpiutils/libstdprof.so.1 d92cf359008b6e83ac6951105f76ef2f SunOS 5.5.1 (security patch is 103879)
    Y .       /usr/openwin/lib/libxview.so.3 db479fb518b524dea1187d9e03b1c4a5 Sun Patch ID 103901-08
    O sig003w /usr/openwin/lib/libxview.so.3 0f64d38ebff721c5cbdf7daaf540f54f SunOS 5.5.1 (security patch is 103901)
    Y .       /usr/openwin/lib/libp/libxview.a c3efcb15bfd3d540af90b28791dfcbc6 Sun Patch ID 103901-08
    O sig003w /usr/openwin/lib/libp/libxview.a 91e90d4f258117d3b49b636b5ff3fd64 SunOS 5.5.1 (security patch is 103901)
    Y .       /usr/openwin/lib/libxview.a cab3c68f05d0b82e3f8d221668bb8bba Sun Patch ID 103901-08
    O sig003w /usr/openwin/lib/libxview.a c7cf5afac5819ca48f85b71e811429ae SunOS 5.5.1 (security patch is 103901)
    Y .       /etc/lp/fd/postio.fd ad0a8e30a0b957b4b60764155f4f78ad Sun Patch ID 103959-05
    O sig003w /etc/lp/fd/postio.fd 219c14ab06e9bf21cfd7a869a9f2d14e SunOS 5.5.1 (security patch is 103959)
    Y .       /etc/lp/fd/postior.fd 8de80f572a3c3b2efd002db49febf3cf Sun Patch ID 103959-05
    O sig003w /etc/lp/fd/postior.fd f156398072a719ca7b10a2db4f552eeb SunOS 5.5.1 (security patch is 103959)
    Y .       /usr/lib/lp/bin/lp.tell dc46051a46f11b2005ca7469cdb63145 Sun Patch ID 103959-05
    O sig003w /usr/lib/lp/bin/lp.tell 93b922d3daab0d8b8f060faf1e8a540e SunOS 5.5.1 (security patch is 103959)
    Y .       /usr/lib/lp/model/standard 131c5681290945b14ab98c2fcbaa1a07 Sun Patch ID 103959-05
    O sig003w /usr/lib/lp/model/standard 631974363cb343997ab85dcd75171ef3 SunOS 5.5.1 (security patch is 103959)
    Y .       /usr/bin/lp 278288d691f5c2fe76161ac932d50ec5 Sun Patch ID 103959-05
    O sig003w /usr/bin/lp eab4fd0d43025bfc6fda808ec706f273 SunOS 5.5.1 (security patch is 103959)
    Y .       /usr/bin/lpstat fe92551d36530d79070f8b225a63ff56 Sun Patch ID 103959-05
    O sig003w /usr/bin/lpstat 1f79bbae63f8ad330ea7d4b63472e184 SunOS 5.5.1 (security patch is 103959)
    Y .       /usr/lib/lp/lpNet ea54e15cf08ccca9b5c142a7c379b620 Sun Patch ID 103959-05
    O sig003w /usr/lib/lp/lpNet 2e79d0bf489df60962f14b9b44a7b7e6 SunOS 5.5.1 (security patch is 103959)
    Y .       /usr/lib/lp/lpsched 2080751762f8219b6dad118982fc0065 Sun Patch ID 103959-05
    O sig003w /usr/lib/lp/lpsched 24d14d79c010881265ad5897d0989442 SunOS 5.5.1 (security patch is 103959)
    Y .       /usr/ucb/lpc e7998d55e88dcf016041c29593d60862 Sun Patch ID 103959-05
    O sig003w /usr/ucb/lpc c83ea192dc3eff776825dc6dd86b0f92 SunOS 5.5.1 (security patch is 103959)
    Y .       /usr/ucb/lpr 5e05d0409e15eda31e8b5981e138e9c1 Sun Patch ID 103959-05
    O sig003w /usr/ucb/lpr 6a8a37a8ae05758fcb75b9779678ab77 SunOS 5.5.1 (security patch is 103959)
    Y .       /usr/lib/rmmount/action_filemgr.so.1 47921a90737ecafb0069af8ecd03307f Sun Patch ID 104010-01
    O sig003w /usr/lib/rmmount/action_filemgr.so.1 3fbf1532ec64d982c07a9ecd8d0cbc90 SunOS 5.5.1 (security patch is 104010)
    Y .       /usr/lib/vold/dev_pcmem.so.1 9962721d056cf3bdcc3322719a2dd76a Sun Patch ID 104010-01
    O sig003w /usr/lib/vold/dev_pcmem.so.1 296baf46362ef2bb1b45bf3ece3eb17e SunOS 5.5.1 (security patch is 104010)
    Y .       /usr/lib/nfs/statd d857d3a544432710023528a06baaf82f Sun Patch ID 104166-02
    O sig003w /usr/lib/nfs/statd 7aa071dcd3a38239e26b41c59a093792 SunOS 5.5.1 (security patch is 104166)
    Y .       /kernel/drv/hme 8df4a23e6e71eca3c7601453bd9d4f27 Sun Patch ID 104212-09
    O sig003w /kernel/drv/hme 097a0ade5e7c1d7ade3342539ab33a1c SunOS 5.5.1 (security patch is 104212)
    Y .       /usr/sbin/inetd a2e30f4cee0a295c8e65e9bb330d98db Sun Patch ID 104266-01
    O sig003w /usr/sbin/inetd d24027b204e94704f26c1661f747af0f SunOS 5.5.1 (security patch is 104266)
    Y .       /usr/lib/nfs/nfsd c701437d6a0e38e194eb611e6153c755 Sun Patch ID 104317-01
    O sig003w /usr/lib/nfs/nfsd 57260f1c2d1b17b36a39c7744ed1579d SunOS 5.5.1 (security patch is 104317)
    Y .       /usr/sbin/rpcbind 3388d1f956f66e3096cb0f61d8d121b7 Sun Patch ID 104331-04
    O sig003w /usr/sbin/rpcbind 70a043e49b671396795e7de10f69662b SunOS 5.5.1 (security patch is 104331)
    Y .       /usr/lib/nfs/lockd c310943cbdfb3a768432b527c71e51b3 Sun Patch ID 104334-01
    O sig003w /usr/lib/nfs/lockd 2675af52ed4229b6a66ade211b963999 SunOS 5.5.1 (security patch is 104334)
    Y .       /usr/openwin/lib/libXt.so.4 783fa50b0e463d221a548c486b49a0dd Sun Patch ID 104338-02
    O sig003w /usr/openwin/lib/libXt.so.4 a175b5ec16b9bc4e55ebc9cdfea8c39d SunOS 5.5.1 (security patch is 104338)
    Y .       /usr/openwin/lib/libXt.a a5a8a438c459202d1548523a2f85342d Sun Patch ID 104338-02
    O sig003w /usr/openwin/lib/libXt.a 70a10bac97de39077a72a0c48b9c3387 SunOS 5.5.1 (security patch is 104338)
    Y .       /usr/openwin/lib/libp/libXt.a 48b2b2d8d26fcce98e173a44866a4d61 Sun Patch ID 104338-02
    O sig003w /usr/openwin/lib/libp/libXt.a 0219d325585cab7192c96e769fc22031 SunOS 5.5.1 (security patch is 104338)
    Y .       /etc/lib/pam_authen.so.1 d6c9ec06dd1571e485d6262b132f299c Sun Patch ID 104433-06
    O sig003w /etc/lib/pam_authen.so.1 fff261f2193a92253812e78f8debd382 SunOS 5.5.1 (security patch is 104433)
    Y .       /etc/lib/pam_entry.so.1 003388b723a2c6ff13bbee1d5c4faa49 Sun Patch ID 104433-06
    O sig003w /etc/lib/pam_entry.so.1 1fa0e01d2d943d482770226a929830d7 SunOS 5.5.1 (security patch is 104433)
    Y .       /etc/lib/pam_pwmgt.so.1 55943ac918acfd7d63f3a49f9c1db6d0 Sun Patch ID 104433-06
    O sig003w /etc/lib/pam_pwmgt.so.1 a01e1420f9ab233fac9e97bb3f17bd63 SunOS 5.5.1 (security patch is 104433)
    Y .       /usr/lib/security/pam_authen.so.1 d6c9ec06dd1571e485d6262b132f299c Sun Patch ID 104433-06
    O sig003w /usr/lib/security/pam_authen.so.1 fff261f2193a92253812e78f8debd382 SunOS 5.5.1 (security patch is 104433)
    Y .       /usr/lib/security/pam_entry.so.1 003388b723a2c6ff13bbee1d5c4faa49 Sun Patch ID 104433-06
    O sig003w /usr/lib/security/pam_entry.so.1 1fa0e01d2d943d482770226a929830d7 SunOS 5.5.1 (security patch is 104433)
    Y .       /usr/lib/security/pam_pwmgt.so.1 55943ac918acfd7d63f3a49f9c1db6d0 Sun Patch ID 104433-06
    O sig003w /usr/lib/security/pam_pwmgt.so.1 a01e1420f9ab233fac9e97bb3f17bd63 SunOS 5.5.1 (security patch is 104433)
    Y .       /usr/sbin/aspppd e7d32269971194a52e19722ec8e78d97 Sun Patch ID 104516-03
    O sig003w /usr/sbin/aspppd 10bf23b7c769d6b02582420db63d96e5 SunOS 5.5.1 (security patch is 104516)
    Y .       /usr/openwin/lib/libXol.so.3 72efb163cb3fcb5da0d5fb2c9b7bbe52 Sun Patch ID 104533-03
    O sig003w /usr/openwin/lib/libXol.so.3 9d86a688e120eedc5f2291e83a963cb2 SunOS 5.5.1 (security patch is 104533)
    Y .       /usr/openwin/lib/libXol.a cc9dc5a629abc0def327b2ecbe013041 Sun Patch ID 104533-03
    O sig003w /usr/openwin/lib/libXol.a f9b361c9c64608369a2d3dbfd9598ad9 SunOS 5.5.1 (security patch is 104533)
    Y .       /usr/openwin/lib/libp/libXol.a edd3fe0c517edda6933109539f027f6b Sun Patch ID 104533-03
    O sig003w /usr/openwin/lib/libp/libXol.a b9489a3bf7d7da36ab1a6087ae403b56 SunOS 5.5.1 (security patch is 104533)
    Y .       /usr/lib/newsyslog b028bc4ba779c96f38f4f4fa2d92464b Sun Patch ID 104613-01
    O sig003w /usr/lib/newsyslog 7232b3b6da29c3c799dbfaee0ac01661 SunOS 5.5.1 (security patch is 104613)
    Y .       /usr/bin/rlogin b19d351c5c9f07b1761d6a0d2a0d823f Sun Patch ID 104650-02
    O sig003w /usr/bin/rlogin a3a6368383315943a2eb9d07e76c9bc0 SunOS 5.5.1 (security patch is 104650)
    Y .       /usr/lib/autofs/automountd 056ef9824adbdd3921f11bcb775691b2 Sun Patch ID 104654-03
    O sig003w /usr/lib/autofs/automountd 13c46d5e225a5753b1da45d059862814 SunOS 5.5.1 (security patch is 104654)
    Y .       /usr/lib/fs/autofs/automount 7e3b156ac3b88633c215c9e6c2f6fa4d Sun Patch ID 104654-03
    O sig003w /usr/lib/fs/autofs/automount 6fe5be79c526e13cc6d1e201f5672369 SunOS 5.5.1 (security patch is 104654)
    Y .       /usr/sbin/in.talkd 077787c28e11eb56eb7ba80455376ab4 Sun Patch ID 104692-01
    O sig003w /usr/sbin/in.talkd 3b33ee555e31ce18d13b4b0376e94682 SunOS 5.5.1 (security patch is 104692)
    Y .       /usr/lib/libvolmgt.a 274e7dd89b07af397a33792e3611a511 Sun Patch ID 104776-02
    O sig003w /usr/lib/libvolmgt.a 023a22a21e32eb122a9078c8e4f7b15d SunOS 5.5.1 (security patch is 104776)
    Y .       /usr/lib/libvolmgt.so.1 d170b53eca20586a1f8e4dce0045260f Sun Patch ID 104776-02
    O sig003w /usr/lib/libvolmgt.so.1 bdcf61412079c61fd512150e63f52792 SunOS 5.5.1 (security patch is 104776)
    Y .       /usr/platform/sun4c/sbin/eeprom ed1355a1d985793c82dc7425e78a7125 Sun Patch ID 104795-02
    O sig003w /usr/platform/sun4c/sbin/eeprom 05d46b9ceb52749475813b831d01fc0c SunOS 5.5.1 sun4c (security patch is 104795)
    Y .       /usr/platform/sun4d/sbin/eeprom ed1355a1d985793c82dc7425e78a7125 Sun Patch ID 104795-02
    O sig003w /usr/platform/sun4d/sbin/eeprom 05d46b9ceb52749475813b831d01fc0c SunOS 5.5.1 sun4d (security patch is 104795)
    Y .       /usr/platform/sun4m/sbin/eeprom ed1355a1d985793c82dc7425e78a7125 Sun Patch ID 104795-02
    O sig003w /usr/platform/sun4m/sbin/eeprom 05d46b9ceb52749475813b831d01fc0c SunOS 5.5.1 sun4m (security patch is 104795)
    Y .       /usr/platform/sun4u/sbin/eeprom ed1355a1d985793c82dc7425e78a7125 Sun Patch ID 104795-02
    O sig003w /usr/platform/sun4u/sbin/eeprom 05d46b9ceb52749475813b831d01fc0c SunOS 5.5.1 sun4u (security patch is 104795)
    Y .       /usr/platform/sun4u1/sbin/eeprom ed1355a1d985793c82dc7425e78a7125 Sun Patch ID 104795-02
    Y .       /kernel/sys/c2audit 54b84e4f313287d511f292f2d11b3ca9 Sun Patch ID 104893-01
    O sig003w /kernel/sys/c2audit fc6e5ddd9f5e0cfeb4a96fcd61e64e63 SunOS 5.5.1 (security patch is 104893)
    Y .       /usr/sbin/in.rlogind ef09647448012a5758852127e7438e59 Sun Patch ID 104935-01
    O sig003w /usr/sbin/in.rlogind ceb28b68cd8d5529a628fba865960237 SunOS 5.5.1 (security patch is 104935)
    Y .       /usr/bin/chkey 8175a6db1ba86e10ed6cc7d6014bf3f0 Sun Patch ID 104968-01
    O sig003w /usr/bin/chkey 58586ef17074749fd44a9b1273a287b9 SunOS 5.5.1 (security patch is 104968)
    Y .       /usr/sbin/newkey 8f8ce56286db65f92c0e6c387df2cd7a Sun Patch ID 104968-01
    O sig003w /usr/sbin/newkey 6afe3b00a344cbb516c77b4b8e0c81ae SunOS 5.5.1 (security patch is 104968)
    Y .       /usr/openwin/bin/ae b4fe6da435fa148568bd82f5d0a8427a Sun Patch ID 104976-03
    O sig003w /usr/openwin/bin/ae e34c83bd6894efae0e5c6ddb3f8b44a6 SunOS 5.5.1 (security patch is 104976)
    Y .       /usr/openwin/bin/cm 22a68ac763580123dbbe8089ce523e34 Sun Patch ID 104976-03
    O sig003w /usr/openwin/bin/cm bb3b62d13b31f6c46cfa11848babbca4 SunOS 5.5.1 (security patch is 104976)
    Y .       /usr/openwin/bin/cm_delete ed12f4d9412d90fe22d9ec77276872c1 Sun Patch ID 104976-03
    O sig003w /usr/openwin/bin/cm_delete 903891552977dd7a531ef5d352fc43a2 SunOS 5.5.1(security patch is 104976)
    Y .       /usr/openwin/bin/cm_insert 1bdfa80b4a26381f113906e6abca32b7 Sun Patch ID 104976-03
    O sig003w /usr/openwin/bin/cm_insert c4a47a101f0676a64643838ada5eb2b9 SunOS 5.5.1(security patch is 104976)
    Y .       /usr/openwin/bin/cm_lookup e672cad25ed1a226f706b9c95bfa083e Sun Patch ID 104976-03
    O sig003w /usr/openwin/bin/cm_lookup 0fae518d0e13ef430444a06c2f81950c SunOS 5.5.1 (security patch is 104976)
    Y .       /usr/openwin/bin/rpc.cmsd eb37269f363fea681f8b1035d7fbdaaf Sun Patch ID 104976-03
    O sig003w /usr/openwin/bin/rpc.cmsd 8916eb1aa4425d2a37bdfdc56a361bbd SunOS 5.5.1 (security patch is 104976)
    Y .       /platform/sun4u/kernel/drv/ebus 9a4afe9da22662d48e948386b007442d Sun Patch ID 105004-09
    O sig003w /platform/sun4u/kernel/drv/ebus 2cbfa21464165470fe33b5188be27d03 SunOS 5.5.1 sun4u (security patch is 105004)
    Y .       /platform/sun4u/kernel/drv/pci 2cdbca323c0b3c6353db85f0a5524513 Sun Patch ID 105004-09
    O sig003w /platform/sun4u/kernel/drv/pci 6edacf9fb3c0eb20fe08ff37f88d2e76 SunOS 5.5.1 sun4u (security patch is 105004)
    Y .       /platform/sun4u/kernel/drv/rootnex 2232f08f8aa55cec1f8cd37d7b93c5af Sun Patch ID 105004-09
    O sig003w /platform/sun4u/kernel/drv/rootnex 90dc5e63f64350de06868b9bb94a4c73 SunOS 5.5.1 sun4u (security patch is 105004)
    Y .       /kernel/drv/pci_pci cbe6287987fbf655a6784774f7f607ce Sun Patch ID 105004-09
    O sig003w /kernel/drv/pci_pci 720682f410c5cec7dddf5b5540c98208 SunOS 5.5.1 (security patch is 105004)
    Y .       /usr/bin/ps 0cc00814ec61c495bf47256aebb0f4ae Sun Patch ID 105050-01
    O sig003w /usr/bin/ps eda319c35374cd26a3785304c0d05bee SunOS 5.5.1 (security patch is 105050)
    Y .       /usr/ucb/ps 40ebaf3bc72e1dbb3a0c06889e0f5d4a Sun Patch ID 105050-01
    O sig003w /usr/ucb/ps d4a6a3ba8915fcdc5344362903f51d50 SunOS 5.5.1 (security patch is 105050)
    Y .       /usr/sbin/sysdef 373d96779c63dc363575ce6040fbade1 Sun Patch ID 105092-01
    O sig003w /usr/sbin/sysdef 672c89d24fb023fa7e4ceca9276347b9 SunOS 5.5.1 (security patch is 105092)
    Y .       /usr/4lib/libXt.so.4.1 34a15081ba27c1ec1d0fff3de1978e0d Sun Patch ID 105251-01
    O sig003w /usr/4lib/libXt.so.4.1 c8bf1725de9ffb561b4f3521ab778291 SunOS 5.5.1 (security patch is 105251)
    Y .       /kernel/misc/nfssrv 2871d548f2aa32d79d7dd06d55eee748 Sun Patch ID 105299-01
    O sig003w /kernel/misc/nfssrv b5e147e83c5cd9a8f6023324a78d1f40 SunOS 5.5.1 (security patch is 105299)
    Y .       /usr/bin/vacation c51447d2b4fac1a1a5c2083bd20e0f98 Sun Patch ID 105520-01
    O sig003w /usr/bin/vacation 1327c4daa044d6c742abdf9b54fab006 SunOS 5.5.1 (security patch is 105520)
    Y .       /kernel/fs/procfs f300d4377227aad651f2899f453d53b1 Sun Patch ID 104283-03 
    O sig003w /kernel/fs/procfs 0a3e6b47d2186f7fd6d924f0de973720 SunOS 5.5.1 (security patch is 104283)
    tiger-3.2.3/systems/SunOS/5/5.5.1/sun4/config0000644000175000017500000001033307650724675016712 0ustar  pacopaco# -*- 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/4/config - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    UUID=`/usr/bin/id | /usr/bin/sed -e 's/uid=\([0-9][0-9]*\).*$/\1/'`
    [ "$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
    # -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
    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
    EXPAND=/usr/bin/expand
    SHOWREV=/usr/bin/showrev
    NETSTAT=/usr/bin/netstat
    SENDMAILS="/usr/lib/sendmail /usr/lib/sendmail.mx"
    SENDMAILCF="/etc/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
    export SHOWREV NETSTAT 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=/usr/etc/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
    #
    # 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
    #
    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
    #
    MAILSPOOL=/var/spool/mail
    #
    CRONSPOOL=/var/spool/cron/crontabs
    #
    ETCSHELLS=/etc/shells
    #
    export MAILSPOOL CRONSPOOL ETCSHELLS
    #
    FS_WDIRSYS="/tmp/ /var/tmp/ /var/spool/mail/"
    export FS_WDIRSYS
    #
    SYSDEFAULTPATH="/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
    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
    EOL
    `
    tiger-3.2.3/systems/SunOS/5/5.5.1/signatures0000644000175000017500000000730707722712467016743 0ustar  pacopaco#
    #
    #@DEST=SunOS/5/5.3
    #@CONFIG=SunOS/5
    #
    Y .       /sbin/jsh 347a3af7a26d1b024cb625f4fcd6bb3e SunOS 5.3
    Y .       /sbin/sh 347a3af7a26d1b024cb625f4fcd6bb3e SunOS 5.3
    Y .       /usr/bin/csh 7278ce4ee2a2f6d73f3bee905d4a26cd SunOS 5.3
    Y .       /usr/bin/jsh fb96fde274122fbf432fe04b2ca9f189 SunOS 5.3
    Y .       /usr/bin/sh fb96fde274122fbf432fe04b2ca9f189 SunOS 5.3
    Y .       /usr/lib/rsh fb96fde274122fbf432fe04b2ca9f189 SunOS 5.3
    Y .       /usr/bin/ksh b810f2706c43ee834db7fc4c0ff8e58f SunOS 5.3
    #
    # These aren't security patches, but we want these in here...
    #
    Y .       /sbin/jsh 4a9e873451f4749fb5e258e2d4bbe4a4 Sun Patch ID 101297-01
    Y .       /sbin/sh 4a9e873451f4749fb5e258e2d4bbe4a4 Sun Patch ID 101297-01
    Y .       /usr/bin/jsh abe154d47813fada9d6648c2ac1427c8 Sun Patch ID 101297-01
    Y .       /usr/bin/sh abe154d47813fada9d6648c2ac1427c8 Sun Patch ID 101297-01
    Y .       /usr/lib/rsh abe154d47813fada9d6648c2ac1427c8 Sun Patch ID 101297-01
    #
    Y .       /usr/lib/sendmail 1844b3d7868e969531904337709559c5 Sun Patch ID 101371-03
    Y .       /usr/lib/sendmail 05b08c0573631e264420c8b4fe17da30 Sun Patch ID 101371-03
    Y .       /usr/lib/sendmail.mx 05b08c0573631e264420c8b4fe17da30 Sun Patch ID 101371-03
    #
    O sig016w /usr/lib/sendmail bdea8c7fb4571b78c0ccb64853896c06 SunOS 5.3 (security patch is 101371)
    O sig016w /usr/lib/sendmail.mx 5b6811b051b45398ab4b8610c1f0d55b SunOS 5.3 (security patch is 101371)
    O sig016w /usr/lib/sendmail 5b6811b051b45398ab4b8610c1f0d55b SunOS 5.3 (security patch is 101371)
    #
    Y .       /usr/bin/login 556a825e8b61fc3444f06f714846a107 SunOS 5.3
    Y .       /usr/bin/telnet b77528e85438f0f87fdf572a1e923380 SunOS 5.3
    Y .       /usr/sbin/in.telnetd 6d151854c7a9dc52b822f5b000d59b41 SunOS 5.3
    #
    Y .       /usr/bin/rlogin 1d5132a500c11dba8464d0cde43d37a0 SunOS 5.3
    Y .       /usr/sbin/in.rlogind df190c5d8417becf436a50b9318693bb SunOS 5.3
    Y .       /usr/lib/expreserve f63d99fdbdd6a2f1ebeda0bb7067ab78 SunOS 5.3
    Y .       /usr/bin/mail 2664c293decb035e514d424a34e10cb9 SunOS 5.3
    Y .       /usr/bin/mailx cc65bc3f764420e15c7e34390080adec SunOS 5.3
    Y .       /usr/bin/su f6eec80414759370a211d49b11ff3019 SunOS 5.3
    Y .       /usr/bin/rdist 59bf06e6b2b48490e2b04164b0bb15dd SunOS 5.3
    Y .       /usr/sbin/in.uucpd df766fb7f51fda5dca9804881612a4c0 SunOS 5.3
    Y .       /usr/sbin/in.comsat 1c3bd5232016b9d7a4c1c3724d2ac854 SunOS 5.3
    Y .       /usr/sbin/in.fingerd 4f0ff074ff4a0da6b2ca2b72b01a0e90 SunOS 5.3
    Y .       /usr/sbin/in.ftpd ff8a34d56da260a13ea199570cefb41e SunOS 5.3
    Y .       /usr/sbin/in.named f1f3325b68788d1de44448f0cdfd49b7 SunOS 5.3
    Y .       /usr/sbin/in.rarpd bcb1f827254b80b44f7fc462df6ce6b8 SunOS 5.3
    Y .       /usr/sbin/in.rdisc 8fdc31c49b940af15c04aa7623b11afa SunOS 5.3
    Y .       /usr/sbin/in.rexecd 967cdaf0378eb7ba4b10acfd9542d4e1 SunOS 5.3
    Y .       /usr/sbin/in.routed b81a4e7a114a60a33a3734857343f3e7 SunOS 5.3
    Y .       /usr/sbin/in.rshd c20629dacc4b6b12908428b7cfb72988 SunOS 5.3
    Y .       /usr/sbin/in.rwhod fc3eea3aa0598ac57b8d63bc45f75869 SunOS 5.3
    Y .       /usr/sbin/in.talkd 43de66446ec98082b15e18fb7638b229 SunOS 5.3
    Y .       /usr/sbin/in.tftpd c896ea8783c388f313849195d660f686 SunOS 5.3
    Y .       /usr/sbin/in.tnamed 9b64f37c7cc896eba8e1d5d74fcd2a8a SunOS 5.3
    Y .       /usr/sbin/inetd 27c320a5332789566962994574f5f866 SunOS 5.3
    Y .       /sbin/sync 085d04dcc64b643e84410614c9d2a477 SunOS 5.3
    Y .       /usr/sbin/sync cd432113c0e84bf45bf09bd2b08fa08f SunOS 5.3
    #
    Y .       /usr/sbin/tar bb08540b9fa9d293f119daba8bf9d13b Sun Patch ID 101327-01
    Y .       /usr/sbin/static/tar 6b8791e9bf5a26a15791d8b0a91eaea0 Sun Patch ID 101327-01
    O sig017w /usr/sbin/static/tar 0a108d1413518a8890de2ee232638085 SunOS 5.3 (security patch is 101327)
    O sig017w /usr/sbin/tar 54c854127b1d677730247a97db2b1926 SunOS 5.3 (security patch is 101327)
    #
    tiger-3.2.3/systems/SunOS/5/5.5.1/suid_list0000644000175000017500000000211707722712467016550 0ustar  pacopaco/sbin/su
    /sbin/sulogin
    /usr/bin/at
    /usr/bin/atq
    /usr/bin/atrm
    /usr/bin/chkey
    /usr/bin/crontab
    /usr/bin/ct
    /usr/bin/cu
    /usr/bin/eject
    /usr/bin/fd_format
    /usr/bin/keylogin
    /usr/bin/kgmon
    /usr/bin/login
    /usr/bin/newgrp
    /usr/bin/passwd
    /usr/bin/ps
    /usr/bin/rcp
    /usr/bin/rdist
    /usr/bin/rlogin
    /usr/bin/rsh
    /usr/bin/su
    /usr/bin/tip
    /usr/bin/uptime
    /usr/bin/uucp
    /usr/bin/uuglist
    /usr/bin/uuname
    /usr/bin/uustat
    /usr/bin/uux
    /usr/bin/volcheck
    /usr/bin/w
    /usr/bin/yppasswd
    /usr/lib/acct/accton
    /usr/lib/expreserve
    /usr/lib/exrecover
    /usr/lib/fs/ufs/ufsdump
    /usr/lib/fs/ufs/ufsrestore
    /usr/lib/pt_chmod
    /usr/lib/sendmail
    /usr/lib/sendmail.mx
    /usr/lib/utmp_update
    /usr/lib/uucp/remote.unknown
    /usr/lib/uucp/uucico
    /usr/lib/uucp/uusched
    /usr/lib/uucp/uuxqt
    /usr/net/servers/rfs/rfsetup
    /usr/openwin/bin/ff.core
    /usr/openwin/bin/loadmodule
    /usr/openwin/bin/xlock
    /usr/openwin/lib/mkcookie
    /usr/sbin/allocate
    /usr/sbin/deallocate
    /usr/sbin/list_devices
    /usr/sbin/mkdevalloc
    /usr/sbin/mkdevmaps
    /usr/sbin/nsquery
    /usr/sbin/ping
    /usr/sbin/sacadm
    /usr/sbin/static/rcp
    /usr/sbin/whodo
    /usr/ucb/ps
    /usr/vmsys/bin/chkperm
    tiger-3.2.3/systems/SunOS/5/5.6/0000755000175000017500000000000011306441051014444 5ustar  pacopacotiger-3.2.3/systems/SunOS/5/5.6/services0000644000175000017500000000227607722712467016244 0ustar  pacopacoNeWS 144/tcp
    biff 512/udp
    bootpc 68/udp
    bootps 67/udp
    chargen 19/tcp
    chargen 19/udp
    courier 530/tcp
    csnet-ns 105/tcp
    cvc 1495/tcp
    cvc_hostd 442/tcp
    daytime 13/tcp
    daytime 13/udp
    discard 9/tcp
    discard 9/udp
    domain 53/tcp
    domain 53/udp
    dtspc 6112/tcp
    echo 7/tcp
    echo 7/udp
    eklogin 2105/tcp
    exec 512/tcp
    finger 79/tcp
    fs 7100/tcp
    ftp 21/tcp
    ftp-data 20/tcp
    hostnames 101/tcp
    imap 143/tcp
    ingreslock 1524/tcp
    iso-tsap 102/tcp
    kerberos 750/tcp
    kerberos 750/udp
    kerberos-adm 749/tcp
    kerberos-adm 749/udp
    klogin 543/tcp
    krb5_prop 754/tcp
    ldap 389/tcp
    ldap 389/udp
    ldaps 636/tcp
    ldaps 636/udp
    link 87/tcp
    listen 2766/tcp
    lockd 4045/tcp
    lockd 4045/udp
    login 513/tcp
    monitor 561/udp
    name 42/udp
    netstat 15/tcp
    new-rwho 550/udp
    nfsd 2049/tcp
    nfsd 2049/udp
    nntp 119/tcp
    ntp 123/tcp
    ntp 123/udp
    pcserver 600/tcp
    pop2 109/tcp
    pop3 110/tcp
    printer 515/tcp
    rje 77/tcp
    rmonitor 560/udp
    route 520/udp
    shell 514/tcp
    smtp 25/tcp
    sunrpc 111/tcp
    sunrpc 111/udp
    supdup 95/tcp
    syslog 514/udp
    systat 11/tcp
    talk 517/udp
    tcpmux 1/tcp
    telnet 23/tcp
    tftp 69/udp
    time 37/tcp
    time 37/udp
    ufsd 1008/tcp
    ufsd 1008/udp
    uucp 540/tcp
    uucp-path 117/tcp
    who 513/udp
    whois 43/tcp
    www-ldap-gw 1760/tcp
    www-ldap-gw 1760/udp
    x400 103/tcp
    x400-snd 104/tcp
    tiger-3.2.3/systems/SunOS/5/5.6/inetd0000644000175000017500000000343207722712467015517 0ustar  pacopaco100068/2-4	dgram	rpc/udp	wait root /usr/openwin/bin/rpc.cmsd	rpc.cmsd
    100083/1	stream  rpc/tcp wait root /usr/openwin/bin/rpc.ttdbserverd rpc.ttdbserverd
    100087/10	tli	rpc/udp	wait root /usr/sbin/admind	admind
    chargen	dgram	udp	wait	root	internal
    chargen	stream	tcp	nowait	root	internal
    comsat	dgram	udp	wait	root	/usr/sbin/in.comsat	in.comsat
    daytime	dgram	udp	wait	root	internal
    daytime	stream	tcp	nowait	root	internal
    discard	dgram	udp	wait	root	internal
    discard	stream	tcp	nowait	root	internal
    echo	dgram	udp	wait	root	internal
    echo	stream	tcp	nowait	root	internal
    exec	stream	tcp	nowait	root	/usr/sbin/in.rexecd	in.rexecd
    finger	stream	tcp	nowait	nobody	/usr/sbin/in.fingerd	in.fingerd
    ftp	stream	tcp	nowait	root	/usr/sbin/in.ftpd	in.ftpd
    login	stream	tcp	nowait	root	/usr/sbin/in.rlogind	in.rlogind
    name	dgram	udp	wait	root	/usr/sbin/in.tnamed	in.tnamed
    netstat	stream	tcp	nowait	root	/usr/bin/netstat 	netstat -f inet
    rexd/1          stream  rpc/tcp wait root /usr/sbin/rpc.rexd     rpc.rexd
    rquotad/1	tli	rpc/datagram_v	wait root /usr/lib/nfs/rquotad	rquotad
    rstatd/2-4	tli   rpc/datagram_v wait root /usr/lib/netsvc/rstat/rpc.rstatd rpc.rstatd
    rusersd/2-3	tli	rpc/datagram_v	wait root /usr/lib/netsvc/rusers/rpc.rusersd	rpc.rusersd
    shell	stream	tcp	nowait	root	/usr/sbin/in.rshd	in.rshd
    sprayd/1	tli	rpc/datagram_v	wait root /usr/lib/netsvc/spray/rpc.sprayd	rpc.sprayd
    systat	stream	tcp	nowait	root	/usr/bin/ps		ps -ef
    talk	dgram	udp	wait	root	/usr/sbin/in.talkd	in.talkd
    telnet	stream	tcp	nowait	root	/usr/sbin/in.telnetd	in.telnetd
    tftp	dgram	udp	wait	root	/usr/sbin/in.tftpd	in.tftpd -s /tftpboot
    time	dgram	udp	wait	root	internal
    time	stream	tcp	nowait	root	internal
    uucp	stream	tcp	nowait	root	/usr/sbin/in.uucpd	in.uucpd
    walld/1		tli	rpc/datagram_v	wait root /usr/lib/netsvc/rwall/rpc.rwalld	rpc.rwalld
    tiger-3.2.3/systems/SunOS/5/5.6/signatures0000644000175000017500000000730707722712467016605 0ustar  pacopaco#
    #
    #@DEST=SunOS/5/5.3
    #@CONFIG=SunOS/5
    #
    Y .       /sbin/jsh 347a3af7a26d1b024cb625f4fcd6bb3e SunOS 5.3
    Y .       /sbin/sh 347a3af7a26d1b024cb625f4fcd6bb3e SunOS 5.3
    Y .       /usr/bin/csh 7278ce4ee2a2f6d73f3bee905d4a26cd SunOS 5.3
    Y .       /usr/bin/jsh fb96fde274122fbf432fe04b2ca9f189 SunOS 5.3
    Y .       /usr/bin/sh fb96fde274122fbf432fe04b2ca9f189 SunOS 5.3
    Y .       /usr/lib/rsh fb96fde274122fbf432fe04b2ca9f189 SunOS 5.3
    Y .       /usr/bin/ksh b810f2706c43ee834db7fc4c0ff8e58f SunOS 5.3
    #
    # These aren't security patches, but we want these in here...
    #
    Y .       /sbin/jsh 4a9e873451f4749fb5e258e2d4bbe4a4 Sun Patch ID 101297-01
    Y .       /sbin/sh 4a9e873451f4749fb5e258e2d4bbe4a4 Sun Patch ID 101297-01
    Y .       /usr/bin/jsh abe154d47813fada9d6648c2ac1427c8 Sun Patch ID 101297-01
    Y .       /usr/bin/sh abe154d47813fada9d6648c2ac1427c8 Sun Patch ID 101297-01
    Y .       /usr/lib/rsh abe154d47813fada9d6648c2ac1427c8 Sun Patch ID 101297-01
    #
    Y .       /usr/lib/sendmail 1844b3d7868e969531904337709559c5 Sun Patch ID 101371-03
    Y .       /usr/lib/sendmail 05b08c0573631e264420c8b4fe17da30 Sun Patch ID 101371-03
    Y .       /usr/lib/sendmail.mx 05b08c0573631e264420c8b4fe17da30 Sun Patch ID 101371-03
    #
    O sig016w /usr/lib/sendmail bdea8c7fb4571b78c0ccb64853896c06 SunOS 5.3 (security patch is 101371)
    O sig016w /usr/lib/sendmail.mx 5b6811b051b45398ab4b8610c1f0d55b SunOS 5.3 (security patch is 101371)
    O sig016w /usr/lib/sendmail 5b6811b051b45398ab4b8610c1f0d55b SunOS 5.3 (security patch is 101371)
    #
    Y .       /usr/bin/login 556a825e8b61fc3444f06f714846a107 SunOS 5.3
    Y .       /usr/bin/telnet b77528e85438f0f87fdf572a1e923380 SunOS 5.3
    Y .       /usr/sbin/in.telnetd 6d151854c7a9dc52b822f5b000d59b41 SunOS 5.3
    #
    Y .       /usr/bin/rlogin 1d5132a500c11dba8464d0cde43d37a0 SunOS 5.3
    Y .       /usr/sbin/in.rlogind df190c5d8417becf436a50b9318693bb SunOS 5.3
    Y .       /usr/lib/expreserve f63d99fdbdd6a2f1ebeda0bb7067ab78 SunOS 5.3
    Y .       /usr/bin/mail 2664c293decb035e514d424a34e10cb9 SunOS 5.3
    Y .       /usr/bin/mailx cc65bc3f764420e15c7e34390080adec SunOS 5.3
    Y .       /usr/bin/su f6eec80414759370a211d49b11ff3019 SunOS 5.3
    Y .       /usr/bin/rdist 59bf06e6b2b48490e2b04164b0bb15dd SunOS 5.3
    Y .       /usr/sbin/in.uucpd df766fb7f51fda5dca9804881612a4c0 SunOS 5.3
    Y .       /usr/sbin/in.comsat 1c3bd5232016b9d7a4c1c3724d2ac854 SunOS 5.3
    Y .       /usr/sbin/in.fingerd 4f0ff074ff4a0da6b2ca2b72b01a0e90 SunOS 5.3
    Y .       /usr/sbin/in.ftpd ff8a34d56da260a13ea199570cefb41e SunOS 5.3
    Y .       /usr/sbin/in.named f1f3325b68788d1de44448f0cdfd49b7 SunOS 5.3
    Y .       /usr/sbin/in.rarpd bcb1f827254b80b44f7fc462df6ce6b8 SunOS 5.3
    Y .       /usr/sbin/in.rdisc 8fdc31c49b940af15c04aa7623b11afa SunOS 5.3
    Y .       /usr/sbin/in.rexecd 967cdaf0378eb7ba4b10acfd9542d4e1 SunOS 5.3
    Y .       /usr/sbin/in.routed b81a4e7a114a60a33a3734857343f3e7 SunOS 5.3
    Y .       /usr/sbin/in.rshd c20629dacc4b6b12908428b7cfb72988 SunOS 5.3
    Y .       /usr/sbin/in.rwhod fc3eea3aa0598ac57b8d63bc45f75869 SunOS 5.3
    Y .       /usr/sbin/in.talkd 43de66446ec98082b15e18fb7638b229 SunOS 5.3
    Y .       /usr/sbin/in.tftpd c896ea8783c388f313849195d660f686 SunOS 5.3
    Y .       /usr/sbin/in.tnamed 9b64f37c7cc896eba8e1d5d74fcd2a8a SunOS 5.3
    Y .       /usr/sbin/inetd 27c320a5332789566962994574f5f866 SunOS 5.3
    Y .       /sbin/sync 085d04dcc64b643e84410614c9d2a477 SunOS 5.3
    Y .       /usr/sbin/sync cd432113c0e84bf45bf09bd2b08fa08f SunOS 5.3
    #
    Y .       /usr/sbin/tar bb08540b9fa9d293f119daba8bf9d13b Sun Patch ID 101327-01
    Y .       /usr/sbin/static/tar 6b8791e9bf5a26a15791d8b0a91eaea0 Sun Patch ID 101327-01
    O sig017w /usr/sbin/static/tar 0a108d1413518a8890de2ee232638085 SunOS 5.3 (security patch is 101327)
    O sig017w /usr/sbin/tar 54c854127b1d677730247a97db2b1926 SunOS 5.3 (security patch is 101327)
    #
    tiger-3.2.3/systems/SunOS/5/5.6/suid_list0000644000175000017500000000302007722712467016404 0ustar  pacopaco/etc/lp/alerts/printer
    /sbin/su
    /sbin/sulogin
    /usr/bin/at
    /usr/bin/atq
    /usr/bin/atrm
    /usr/bin/cancel
    /usr/bin/chkey
    /usr/bin/crontab
    /usr/bin/ct
    /usr/bin/cu
    /usr/bin/eject
    /usr/bin/fd_format
    /usr/bin/fdformat
    /usr/bin/keylogin
    /usr/bin/kgmon
    /usr/bin/login
    /usr/bin/lp
    /usr/bin/lpset
    /usr/bin/lpstat
    /usr/bin/newgrp
    /usr/bin/nispasswd
    /usr/bin/passwd
    /usr/bin/ps
    /usr/bin/rcp
    /usr/bin/rdist
    /usr/bin/rlogin
    /usr/bin/rsh
    /usr/bin/su
    /usr/bin/tip
    /usr/bin/uptime
    /usr/bin/uucp
    /usr/bin/uuglist
    /usr/bin/uuname
    /usr/bin/uustat
    /usr/bin/uux
    /usr/bin/volcheck
    /usr/bin/volrmmount
    /usr/bin/w
    /usr/bin/yppasswd
    /usr/dt/bin/dtaction
    /usr/dt/bin/dtappgather
    /usr/dt/bin/dtprintinfo
    /usr/dt/bin/dtsession
    /usr/dt/bin/sdtcm_convert
    /usr/lib/acct/accton
    /usr/lib/expreserve
    /usr/lib/exrecover
    /usr/lib/fs/ufs/quota
    /usr/lib/fs/ufs/ufsdump
    /usr/lib/fs/ufs/ufsrestore
    /usr/lib/lp/bin/netpr
    /usr/lib/pt_chmod
    /usr/lib/sendmail
    /usr/lib/sendmail.mx
    /usr/lib/utmp_update
    /usr/lib/uucp/remote.unknown
    /usr/lib/uucp/uucico
    /usr/lib/uucp/uusched
    /usr/lib/uucp/uuxqt
    /usr/net/servers/rfs/rfsetup
    /usr/openwin/bin/ff.core
    /usr/openwin/bin/kcms_calibrate
    /usr/openwin/bin/kcms_configure
    /usr/openwin/bin/loadmodule
    /usr/openwin/bin/sys-suspend
    /usr/openwin/bin/xlock
    /usr/openwin/lib/mkcookie
    /usr/sbin/allocate
    /usr/sbin/deallocate
    /usr/sbin/ffbconfig
    /usr/sbin/list_devices
    /usr/sbin/lpmove
    /usr/sbin/mkdevalloc
    /usr/sbin/mkdevmaps
    /usr/sbin/nsquery
    /usr/sbin/ping
    /usr/sbin/pmconfig
    /usr/sbin/sacadm
    /usr/sbin/static/rcp
    /usr/sbin/whodo
    /usr/ucb/ps
    /usr/vmsys/bin/chkperm
    tiger-3.2.3/systems/SunOS/5/5.7/0000755000175000017500000000000011306441051014445 5ustar  pacopacotiger-3.2.3/systems/SunOS/5/5.7/services0000644000175000017500000000227607722712467016245 0ustar  pacopacoNeWS 144/tcp
    biff 512/udp
    bootpc 68/udp
    bootps 67/udp
    chargen 19/tcp
    chargen 19/udp
    courier 530/tcp
    csnet-ns 105/tcp
    cvc 1495/tcp
    cvc_hostd 442/tcp
    daytime 13/tcp
    daytime 13/udp
    discard 9/tcp
    discard 9/udp
    domain 53/tcp
    domain 53/udp
    dtspc 6112/tcp
    echo 7/tcp
    echo 7/udp
    eklogin 2105/tcp
    exec 512/tcp
    finger 79/tcp
    fs 7100/tcp
    ftp 21/tcp
    ftp-data 20/tcp
    hostnames 101/tcp
    imap 143/tcp
    ingreslock 1524/tcp
    iso-tsap 102/tcp
    kerberos 750/tcp
    kerberos 750/udp
    kerberos-adm 749/tcp
    kerberos-adm 749/udp
    klogin 543/tcp
    krb5_prop 754/tcp
    ldap 389/tcp
    ldap 389/udp
    ldaps 636/tcp
    ldaps 636/udp
    link 87/tcp
    listen 2766/tcp
    lockd 4045/tcp
    lockd 4045/udp
    login 513/tcp
    monitor 561/udp
    name 42/udp
    netstat 15/tcp
    new-rwho 550/udp
    nfsd 2049/tcp
    nfsd 2049/udp
    nntp 119/tcp
    ntp 123/tcp
    ntp 123/udp
    pcserver 600/tcp
    pop2 109/tcp
    pop3 110/tcp
    printer 515/tcp
    rje 77/tcp
    rmonitor 560/udp
    route 520/udp
    shell 514/tcp
    smtp 25/tcp
    sunrpc 111/tcp
    sunrpc 111/udp
    supdup 95/tcp
    syslog 514/udp
    systat 11/tcp
    talk 517/udp
    tcpmux 1/tcp
    telnet 23/tcp
    tftp 69/udp
    time 37/tcp
    time 37/udp
    ufsd 1008/tcp
    ufsd 1008/udp
    uucp 540/tcp
    uucp-path 117/tcp
    who 513/udp
    whois 43/tcp
    www-ldap-gw 1760/tcp
    www-ldap-gw 1760/udp
    x400 103/tcp
    x400-snd 104/tcp
    tiger-3.2.3/systems/SunOS/5/5.7/inetd0000644000175000017500000000343207722712467015520 0ustar  pacopaco100068/2-4	dgram	rpc/udp	wait root /usr/openwin/bin/rpc.cmsd	rpc.cmsd
    100083/1	stream  rpc/tcp wait root /usr/openwin/bin/rpc.ttdbserverd rpc.ttdbserverd
    100087/10	tli	rpc/udp	wait root /usr/sbin/admind	admind
    chargen	dgram	udp	wait	root	internal
    chargen	stream	tcp	nowait	root	internal
    comsat	dgram	udp	wait	root	/usr/sbin/in.comsat	in.comsat
    daytime	dgram	udp	wait	root	internal
    daytime	stream	tcp	nowait	root	internal
    discard	dgram	udp	wait	root	internal
    discard	stream	tcp	nowait	root	internal
    echo	dgram	udp	wait	root	internal
    echo	stream	tcp	nowait	root	internal
    exec	stream	tcp	nowait	root	/usr/sbin/in.rexecd	in.rexecd
    finger	stream	tcp	nowait	nobody	/usr/sbin/in.fingerd	in.fingerd
    ftp	stream	tcp	nowait	root	/usr/sbin/in.ftpd	in.ftpd
    login	stream	tcp	nowait	root	/usr/sbin/in.rlogind	in.rlogind
    name	dgram	udp	wait	root	/usr/sbin/in.tnamed	in.tnamed
    netstat	stream	tcp	nowait	root	/usr/bin/netstat 	netstat -f inet
    rexd/1          stream  rpc/tcp wait root /usr/sbin/rpc.rexd     rpc.rexd
    rquotad/1	tli	rpc/datagram_v	wait root /usr/lib/nfs/rquotad	rquotad
    rstatd/2-4	tli   rpc/datagram_v wait root /usr/lib/netsvc/rstat/rpc.rstatd rpc.rstatd
    rusersd/2-3	tli	rpc/datagram_v	wait root /usr/lib/netsvc/rusers/rpc.rusersd	rpc.rusersd
    shell	stream	tcp	nowait	root	/usr/sbin/in.rshd	in.rshd
    sprayd/1	tli	rpc/datagram_v	wait root /usr/lib/netsvc/spray/rpc.sprayd	rpc.sprayd
    systat	stream	tcp	nowait	root	/usr/bin/ps		ps -ef
    talk	dgram	udp	wait	root	/usr/sbin/in.talkd	in.talkd
    telnet	stream	tcp	nowait	root	/usr/sbin/in.telnetd	in.telnetd
    tftp	dgram	udp	wait	root	/usr/sbin/in.tftpd	in.tftpd -s /tftpboot
    time	dgram	udp	wait	root	internal
    time	stream	tcp	nowait	root	internal
    uucp	stream	tcp	nowait	root	/usr/sbin/in.uucpd	in.uucpd
    walld/1		tli	rpc/datagram_v	wait root /usr/lib/netsvc/rwall/rpc.rwalld	rpc.rwalld
    tiger-3.2.3/systems/SunOS/5/5.7/signatures0000644000175000017500000000467507722712467016613 0ustar  pacopaco#
    # Signature file for SunOS 5.7 sun4m, generated Mon May 13 22:49:35 EDT 2002
    #
    #@DEST=SunOS/5/5.7
    #@CONFIG=SunOS/5
    Y .       /usr/bin/sh 12460f17a68ea9e5926f49f8da3d8bda SunOS 5.7
    Y .       /sbin/sh 17a67b04407e71d9b015a2da9473268e SunOS 5.7
    Y .       /usr/bin/csh a9b708be29f38caf0041c421a4cd2188 SunOS 5.7
    Y .       /usr/bin/ksh 9b447099ecb89d63341e149092fe0ef9 SunOS 5.7
    Y .       /usr/bin/login 488aaaa60450858a6d786a79bb03c1c9 SunOS 5.7
    Y .       /usr/bin/su 63d00731653125018b18906511bfaf89 SunOS 5.7
    Y .       /usr/bin/passwd 8ea265fea5248314d642512353aba8c4 SunOS 5.7
    Y .       /usr/sbin/in.fingerd db3ef2f2d9fbb4e34fb80042db72eca9 SunOS 5.7
    # fingerd not found.
    Y .       /usr/sbin/in.ftpd 61f21662c40b2f991d0d44957624a697 SunOS 5.7
    Y .       /usr/sbin/ftpd 806a380195259d150fbf2aff4bca56a8 SunOS 5.7
    Y .       /usr/sbin/in.rexecd dc3a9d82e5295ea88ccdce8f64a6fda4 SunOS 5.7
    # rexecd not found.
    Y .       /usr/sbin/in.rlogind 18927400893e7a7e5e1a1a47aeaf791e SunOS 5.7
    # rlogind not found.
    Y .       /usr/sbin/in.rshd d7db04ae4dccef470525cfc0f1c4f4eb SunOS 5.7
    # rshd not found.
    Y .       /usr/sbin/in.telnetd a23bbd6c47a950e8feefbf0ed91f66ff SunOS 5.7
    # telnetd not found.
    Y .       /usr/sbin/in.tftpd 738e02c12ac8c7d09cbc20b6613e5d43 SunOS 5.7
    # tftpd not found.
    Y .       /usr/sbin/in.uucpd ce189be1f3784c2e989da4627ffbb6f2 SunOS 5.7
    # uucpd not found.
    Y .       /usr/lib/netsvc/yp//rpc.yppasswdd b979581c52ec988298775aff40c0d13c SunOS 5.7
    # rpc.passwd not found.
    # portmap not found.
    Y .       /usr/lib/netsvc/yp//ypserv 32b8de080699c605319ed69a46ba39d0 SunOS 5.7
    Y .       /usr/lib/netsvc/yp//ypxfrd 19f867c57b1c3e4d55c7f6619d45ec9a SunOS 5.7
    Y .       /usr/lib/netsvc/yp//ypbind 022e0a9b62d43b2c158b90bf91a63e1e SunOS 5.7
    Y .       /usr/lib/sendmail 43d95e72be892c2a616143ec0d866718 SunOS 5.7
    # sendmail.mx not found.
    Y .       /usr/bin/rdist 505918d19869a94c691574d2d790dee8 SunOS 5.7
    Y .       /usr/bin/rlogin 1ea13555031b4dcf925e2b15f70117f9 SunOS 5.7
    Y .       /usr/bin/rsh a73317bf719aa6d6727ad1c5239ea3f8 SunOS 5.7
    Y .       /usr/lib/rsh 12460f17a68ea9e5926f49f8da3d8bda SunOS 5.7
    Y .       /usr/bin/telnet 06c564829979a2d6fe4b4f9fcba1497a SunOS 5.7
    Y .       /usr/bin/lpstat 0ea1c305c7cb2e494d78a998671e514c SunOS 5.7
    Y .       /usr/ucb/lpc 78a9cb1b93bbe1d776687b798ddb04b8 SunOS 5.7
    # lpd not found.
    # lpr not found.
    # lprm not found.
    # lpd not found.
    # in.lpd not found.
    # rpc.mountd not found.
    Y .       /usr/lib/expreserve 86730ba5f14cb8c8a1ad142c787f132e SunOS 5.7
    tiger-3.2.3/systems/SunOS/5/5.7/suid_list0000644000175000017500000000324307722712467016414 0ustar  pacopaco/etc/lp/alerts/printer
    /sbin/su
    /sbin/sulogin
    /usr/bin/admintool
    /usr/bin/at
    /usr/bin/atq
    /usr/bin/atrm
    /usr/bin/cancel
    /usr/bin/chkey
    /usr/bin/crontab
    /usr/bin/ct
    /usr/bin/cu
    /usr/bin/eject
    /usr/bin/fd_format
    /usr/bin/fdformat
    /usr/bin/keylogin
    /usr/bin/kgmon
    /usr/bin/login
    /usr/bin/lp
    /usr/bin/lpset
    /usr/bin/lpstat
    /usr/bin/newgrp
    /usr/bin/nispasswd
    /usr/bin/passwd
    /usr/bin/ps
    /usr/bin/rcp
    /usr/bin/rdist
    /usr/bin/rlogin
    /usr/bin/rsh
    /usr/bin/sparcv7/ps
    /usr/bin/sparcv7/uptime
    /usr/bin/sparcv7/w
    /usr/bin/su
    /usr/bin/tip
    /usr/bin/uptime
    /usr/bin/uucp
    /usr/bin/uuglist
    /usr/bin/uuname
    /usr/bin/uustat
    /usr/bin/uux
    /usr/bin/volcheck
    /usr/bin/volrmmount
    /usr/bin/w
    /usr/bin/yppasswd
    /usr/dt/bin/dtaction
    /usr/dt/bin/dtappgather
    /usr/dt/bin/dtprintinfo
    /usr/dt/bin/dtsession
    /usr/dt/bin/sdtcm_convert
    /usr/lib/acct/accton
    /usr/lib/expreserve
    /usr/lib/exrecover
    /usr/lib/fs/ufs/quota
    /usr/lib/fs/ufs/ufsdump
    /usr/lib/fs/ufs/ufsrestore
    /usr/lib/lp/bin/netpr
    /usr/lib/pt_chmod
    /usr/lib/sendmail
    /usr/lib/sendmail.mx
    /usr/lib/utmp_update
    /usr/lib/uucp/remote.unknown
    /usr/lib/uucp/uucico
    /usr/lib/uucp/uusched
    /usr/lib/uucp/uuxqt
    /usr/local/bin/ssh1
    /usr/net/servers/rfs/rfsetup
    /usr/openwin/bin/ff.core
    /usr/openwin/bin/kcms_calibrate
    /usr/openwin/bin/kcms_configure
    /usr/openwin/bin/loadmodule
    /usr/openwin/bin/sys-suspend
    /usr/openwin/bin/xlock
    /usr/openwin/lib/mkcookie
    /usr/sbin/allocate
    /usr/sbin/deallocate
    /usr/sbin/list_devices
    /usr/sbin/lpmove
    /usr/sbin/mkdevalloc
    /usr/sbin/mkdevmaps
    /usr/sbin/nsquery
    /usr/sbin/ping
    /usr/sbin/pmconfig
    /usr/sbin/sacadm
    /usr/sbin/sparcv7/whodo
    /usr/sbin/static/rcp
    /usr/sbin/traceroute
    /usr/sbin/whodo
    /usr/ucb/ps
    /usr/ucb/sparcv7/ps
    /usr/vmsys/bin/chkperm
    tiger-3.2.3/systems/SunOS/5/5.8/0000755000175000017500000000000011306441063014451 5ustar  pacopacotiger-3.2.3/systems/SunOS/5/5.8/services0000644000175000017500000000313707722712467016243 0ustar  pacopacoecho		7/tcp
    echo		7/udp
    discard		9/tcp
    discard		9/udp
    systat		11/tcp
    daytime		13/tcp
    daytime		13/udp
    netstat		15/tcp
    chargen		19/tcp
    chargen		19/udp
    ftp-data	20/tcp
    ftp		21/tcp
    telnet		23/tcp
    smtp		25/tcp
    time		37/tcp
    time		37/udp
    name		42/udp
    whois		43/tcp
    domain		53/udp
    domain		53/tcp
    bootps		67/udp
    bootpc		68/udp
    hostnames	101/tcp
    pop2		109/tcp
    pop3		110/tcp
    sunrpc		111/udp
    sunrpc		111/tcp
    imap		143/tcp
    ldap		389/tcp
    ldap		389/udp
    submission	587/tcp
    submission	587/udp
    ldaps		636/tcp
    ldaps		636/udp
    tftp		69/udp
    rje		77/tcp
    finger		79/tcp
    link		87/tcp
    supdup		95/tcp
    iso-tsap	102/tcp
    x400		103/tcp
    x400-snd	104/tcp
    csnet-ns	105/tcp
    pop-2		109/tcp
    uucp-path	117/tcp
    nntp            119/tcp
    ntp		123/tcp
    ntp		123/udp
    netbios-ns	137/tcp
    netbios-ns	137/udp
    netbios-dgm	138/tcp
    netbios-dgm	138/udp
    netbios-ssn	139/tcp
    netbios-ssn	139/udp
    NeWS		144/tcp
    slp		427/tcp
    slp             427/udp
    mobile-ip	434/udp
    cvc_hostd	442/tcp
    exec		512/tcp
    login		513/tcp
    shell		514/tcp
    printer		515/tcp
    courier		530/tcp
    uucp		540/tcp
    biff		512/udp
    who		513/udp
    syslog		514/udp
    talk		517/udp
    route		520/udp
    ripng		521/udp
    klogin		543/tcp
    kshell		544/tcp
    new-rwho	550/udp
    rmonitor	560/udp
    monitor		561/udp
    pcserver	600/tcp
    sun-dr		665/tcp
    kerberos-adm	749/tcp
    kerberos-adm	749/udp
    kerberos	750/udp
    kerberos	750/tcp
    krb5_prop	754/tcp
    ufsd		1008/tcp
    ufsd		1008/udp
    cvc		1495/tcp
    ingreslock      1524/tcp
    www-ldap-gw	1760/tcp
    www-ldap-gw	1760/udp
    listen          2766/tcp
    nfsd		2049/udp
    nfsd		2049/tcp
    eklogin		2105/tcp
    lockd		4045/udp
    lockd		4045/tcp
    dtspc		6112/tcp
    fs		7100/tcp
    wnn6		22273/tcp
    wnn6		22273/udp
    wnn6-ds		26208/tcp
    wnn6-ds		26208/udp
    tiger-3.2.3/systems/SunOS/5/5.8/check0000644000175000017500000000356110007561277015465 0ustar  pacopaco#!/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.3/systems/SunOS/5/5.8/config0000644000175000017500000001041107744462156015657 0ustar  pacopaco# -*- 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.8/config - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    UUID=`/usr/bin/id | /usr/bin/sed -e 's/uid=\([0-9][0-9]*\).*$/\1/'`
    [ "$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
    # -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
    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
    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
    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=/usr/etc/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
    #
    # 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
    #
    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
    #
    MAILSPOOL=/var/spool/mail
    #
    CRONSPOOL=/var/spool/cron/crontabs
    #
    ETCSHELLS=/etc/shells
    #
    export MAILSPOOL CRONSPOOL ETCSHELLS
    #
    FS_WDIRSYS="/tmp/ /var/tmp/ /var/spool/mail/"
    export FS_WDIRSYS
    #
    SYSDEFAULTPATH="/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
    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
    EOL
    `
    tiger-3.2.3/systems/SunOS/5/5.8/check_listeningprocs0000755000175000017500000001050107650752044020607 0ustar  pacopaco#!/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.3/systems/SunOS/5/5.8/check_patches0000755000175000017500000000731510217661040017170 0ustar  pacopaco#!/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.3/systems/SunOS/5/5.8/inetd0000644000175000017500000000501507531433215015505 0ustar  pacopacoftp	stream	tcp6	nowait	root	/usr/sbin/in.ftpd	in.ftpd
    telnet	stream	tcp6	nowait	root	/usr/sbin/in.telnetd	in.telnetd
    name	dgram	udp	wait	root	/usr/sbin/in.tnamed	in.tnamed
    shell	stream	tcp	nowait	root	/usr/sbin/in.rshd	in.rshd
    shell	stream	tcp6	nowait	root	/usr/sbin/in.rshd	in.rshd
    login	stream	tcp6	nowait	root	/usr/sbin/in.rlogind	in.rlogind
    exec	stream	tcp	nowait	root	/usr/sbin/in.rexecd	in.rexecd
    exec	stream	tcp6	nowait	root	/usr/sbin/in.rexecd	in.rexecd
    comsat	dgram	udp	wait	root	/usr/sbin/in.comsat	in.comsat
    talk	dgram	udp	wait	root	/usr/sbin/in.talkd	in.talkd
    uucp	stream	tcp	nowait	root	/usr/sbin/in.uucpd	in.uucpd
    finger	stream	tcp6	nowait	nobody	/usr/sbin/in.fingerd	in.fingerd
    time	stream	tcp6	nowait	root	internal
    time	dgram	udp6	wait	root	internal
    echo	stream	tcp6	nowait	root	internal
    echo	dgram	udp6	wait	root	internal
    discard	stream	tcp6	nowait	root	internal
    discard	dgram	udp6	wait	root	internal
    daytime	stream	tcp6	nowait	root	internal
    daytime	dgram	udp6	wait	root	internal
    chargen	stream	tcp6	nowait	root	internal
    chargen	dgram	udp6	wait	root	internal
    100232/10	tli	rpc/udp	wait root /usr/sbin/sadmind	sadmind
    rquotad/1	tli	rpc/datagram_v	wait root /usr/lib/nfs/rquotad	rquotad
    rusersd/2-3	tli	rpc/datagram_v,circuit_v	wait root /usr/lib/netsvc/rusers/rpc.rusersd	rpc.rusersd
    sprayd/1	tli	rpc/datagram_v	wait root /usr/lib/netsvc/spray/rpc.sprayd	rpc.sprayd
    walld/1		tli	rpc/datagram_v	wait root /usr/lib/netsvc/rwall/rpc.rwalld	rpc.rwalld
    rstatd/2-4	tli   rpc/datagram_v wait root /usr/lib/netsvc/rstat/rpc.rstatd rpc.rstatd
    100083/1	tli	rpc/tcp wait root /usr/dt/bin/rpc.ttdbserverd rpc.ttdbserverd
    100221/1	tli	rpc/tcp	wait root /usr/openwin/bin/kcms_server	kcms_server
    fs		stream	tcp	wait nobody /usr/openwin/lib/fs.auto	fs
    100235/1 tli rpc/tcp wait root /usr/lib/fs/cachefs/cachefsd cachefsd
    100134/1	tli	rpc/ticotsord	wait	root	/usr/lib/krb5/ktkt_warnd ktkt_warnd
    printer		stream	tcp6	nowait	root	/usr/lib/print/in.lpd	in.lpd
    100234/1	tli	rpc/ticotsord	wait	root	/usr/lib/gss/gssd gssd 
    100146/1	tli	rpc/ticotsord	wait	root	/usr/lib/security/amiserv	amiserv
    100147/1	tli	rpc/ticotsord	wait	root	/usr/lib/security/amiserv	amiserv
    100150/1	tli	rpc/ticotsord	wait	root	/usr/sbin/ocfserv	ocfserv
    dtspc stream tcp nowait root /usr/dt/bin/dtspcd /usr/dt/bin/dtspcd
    100068/2-5 dgram rpc/udp wait root /usr/dt/bin/rpc.cmsd rpc.cmsd
    100153/1     dgram   rpc/udp wait root /opt/SUNWvts/bin/sunvts /opt/SUNWvts/bin/sunvts -g 
    100229/1	tli	rpc/tcp		wait	root	/usr/sbin/rpc.metad	rpc.metad
    100230/1	tli	rpc/tcp		wait	root	/usr/sbin/rpc.metamhd	rpc.metamhd
    tiger-3.2.3/systems/SunOS/5/5.8/patchdiag.xref0000644000175000017500000455776410000304720017303 0ustar  pacopaco## 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
    ## files are not publicly available, but instead are
    ## available only to customers of Sun Microsystems who
    ## have purchased an appropriate support services contract.
    ## For more information about Sun support services contracts
    ## visit www.sun.com/service
    100287|05|Oct/31/91| | | |  |Unbundled|||PC-NFS 3.5c: Jumbo patch (updated PRT.COM to v3.5c)
    100323|05|Feb/11/92| | | |  |Unbundled|||PC-NFS Advanced Telnet: bug fixes, National Character Set support
    100386|01|Sep/20/91| | | |  |Unbundled|||PC-NFS Programmer's Toolkit/2.0: Runtime modules
    100393|01|Sep/02/94| | |O|  |Unbundled|||OBSOLETED by 100394
    100438|01|Dec/02/91| | | |  |Unbundled|||PCNFS/v3.5c: PC-NFS loses mounted printer names when PCNFSLPD load
    100455|01|Dec/17/91| | | |  |Unbundled|||LifeLine/2.0: Does not parse the FROM: and/or Reply-TO: fields cor
    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 WITHDRAWN
    100860|01|Jan/26/93| | | |  |Unbundled|||PC-NFS/v4.0a: FAILS TO ACKNOWLEDGE TCP PACKETS ON FTP
    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
    100958|01|Apr/27/93| | | |  |Unbundled|sparc;|SUNWowrqd:2.10;|OpenWindows 3.1: xwd does not work if -root or -id options are spe
    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|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
    101012|04|Jan/18/94| | | |  |Unbundled|sparc;|SUNWowrqd:3.2.9,REV=0.93.04.08;|OpenWindows 3.2: mailtool jumbo patch
    101019|01|Jun/11/93| | | |  |Unbundled|sparc;|SUNWowrqd:3.2.9,REV=0.93.04.08;|OpenWindows 3.2: Props does not search for locale-specific help.
    101023|02|Sep/21/93| | | |  |Unbundled|sparc;|SUNWowrqd:2.10;SUNWowslb:2.10;|OpenWindows 3.1 TextEditWidget does not scroll
    101040|03|Dec/01/93| | | |  |Unbundled|sparc;|SUNWguide:3.0.1;|Devguide 3.0.1: guide goes into infinite loop when size changes in
    101042|01|Sep/16/93| | | |  |Unbundled|sparc;|SUNWsteNP:2.5;|NeWSprint 2.5 Rev A: fixes for raster bypass
    101066|06|Aug/18/94| | | |  |Unbundled|sparc;|SUNWawcom:1.0,REV=1.0.7;SUNWcow:1.6,REV=1.0.10;SUNWhow:1.6,REV=1.0.10;SUNWjwrqd:1.5,REV=1.0.17;SUNWkleu:5.6,REV=1.0.9;SUNWkow:1.6,REV=1.0.10;|Motif 1.2.2: XIM jumbo patch for Asian Solaris 2.2
    101084|03|Feb/17/94| | |O|  |Unbundled|||OBSOLETED by 100989
    101099|02|Aug/15/94| | |O|  |Unbundled|||OBSOLETED by 102228
    101111|04|Mar/03/94| | | |  |Unbundled|sparc;|SUNWawrqd:2.5;SUNWawslb:2.5;|Multi-Lingual OpenWindows (MOWN) 3.1: OLIT (libXol) Jumbo Patch
    101120|01|Jun/23/93| | | |  |Unbundled|||PCNFS/4.0: Fixes IP addressing problem related to RNM functions
    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
    101152|01|Aug/13/93| | | |  |Unbundled|sparc;|SUNWawrqd:2.5;SUNWawslb:2.5;|OpenWindows 3.1: Asian OpenWindows with > 17 files open, using XtA
    101165|01|Oct/13/93| | |O|  |Unbundled|||OBSOLETED by 101265
    101172|01|Oct/15/93| | | |  |Unbundled|sparc;|SUNWowrqd:3.2.9,REV=0.93.04.08;|OpenWindows 3.2: Bad Implementation error from Motif client
    101174|01|Sep/20/93| | | |  |Unbundled|sparc;|SUNWowrqd:3.2.9,REV=0.93.04.08;|OpenWindows 3.2: imagetool started with commandline options fails
    101176|06|Mar/31/95| |S| |  |Unbundled|sparc;|SUNWhsm:2.0;|Online Backup 2.0: Update patch
    101188|01|Sep/01/93| | | |  |Unbundled|sparc;|SUNWowrqd:3.2.9,REV=0.93.04.08;SUNWowslb:3.2.9,REV=0.93.04.08;|OpenWindows 3.2: OLIT Jumbo Patch
    101189|01|Sep/01/93| | | |  |Unbundled|sparc;|SUNWowrqd:3.2.9,REV=0.93.04.08;SUNWowslb:3.2.9,REV=0.93.04.08;|OpenWindows 3.2: When files opened > 17, XtAppAddinput causes olit
    101195|01|Sep/07/93| | | |  |Unbundled|sparc;|SUNWowrqd:3.2.9,REV=0.93.04.08;|OpenWindows 3.2: notify_set_input_func() does not work correctly w
    101205|11|Feb/21/96| | | |  |Unbundled|i386;|SPROcc:2.3;SPROcpl:2.3;SPROf77:2.2;SPROflmrg:1.9.6;SPROlang:2.4;SPROutool:2.1;|ProCompiler 2.0.1_x86: C, C++, FORTRAN patch
    101209|02|Jan/04/94| | | |  |Unbundled|sparc;|SUNWowrqd:3.2.9,REV=0.93.04.08;|OpenWindows 3.2: cm fails creating calendar file for user at hostn
    101210|01|Sep/20/93| | | |  |Unbundled|sparc;|SUNWowrqd:3.2.9,REV=0.93.04.08;|OpenWindows 3.2: Invocation of imagetool from snapshot hangs
    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
    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
    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
    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
    101267|01|Nov/01/93| | |O|  |2.3|||OBSOLETED by 101318
    101272|03|Dec/02/93| | |O|  |Unbundled|||OBSOLETED by 101524
    101275|02|May/17/94| | | |  |Unbundled|sparc;|SUNWpcnfs:1.0;|PC-NFS 5.0: Slip will not work with Solaris 2.3 (SunOS 5.3)
    101277|07|Feb/15/95| | | |  |2.3|sparc;|SUNWgsow:1.0.0,REV=3.6.1;SUNWgsu:12.0.0,REV=3.5.1;|SunOS 5.3: GS os driver, openwindows server, xgl pipeline patch
    101280|16|Feb/05/97| | | |  |Unbundled|sparc;101306;101404;101414;102147;102229;101591;101737;|SUNWs3270:8.0;|SunLink 8.0: SNA3270/RJE gateway jumbo patch
    101284|18|Feb/07/97| | | |  |Unbundled|sparc;sparc.sun4;sparc.sun4c;sparc.sun4d;sparc.sun4e;sparc.sun4m;|SUNWleo:1.0.0,REV=3.5.1;SUNWleoo:1.0.0,REV=3.5.1;SUNWleow:1.0.0,REV=3.6.2;|SunOS 5.3: ZX (Leo) Graphics Patch
    101289|01|Nov/11/93| | | |  |Unbundled|sparc;|SUNWsteNP:2.5;|NeWSprint 2.5: System panic due to multiple access of bpp device
    101294|01|Nov/01/93| | |O|  |2.3|||OBSOLETED by 101318
    101295|08|Jul/06/94| | | |  |Unbundled|i386;|SUNWinst:3.5;SUNWpmi:3.3.0;|OpenWindows 3.1 x86: New PMI files and devconfiles
    101297|01|Nov/02/93| | |O|  |2.3|||OBSOLETED by 101613
    101306|11|Dec/11/95| | |O|  |2.3|||OBSOLETED by 102272
    101308|01|Oct/11/93| | | |  |Unbundled|||PC-NFS 5.0: PC fails to find hostname when using RARP
    101309|01|Oct/11/93| |S| |  |Unbundled|||PC-NFS 5.0: User NOBODY allowed to nfs mount file systems
    101311|08|Feb/22/95| | | |  |2.3|sparc;sparc.sun4;sparc.sun4c;sparc.sun4d;sparc.sun4e;sparc.sun4m;|SUNWgt:12.0.0,REV=3.5.1;SUNWgtow:1.0.0,REV=3.6.1;SUNWgtu:12.0.0,REV=3.5.1;|SunOS 5.3: GT os driver, openwindows server, xgl pipeline patch
    101315|01|Nov/02/93| | |O|  |2.3|||OBSOLETED by 101318
    101316|01|Nov/05/93| | |O|  |2.3|||OBSOLETED by 101318
    101317|30|Jul/19/00|R|S| |Y |2.3|sparc;|SUNWlpr:11.5.0,REV=2.0.18;SUNWlpu:11.5.0,REV=2.0.18;SUNWscpu:11.5.0,REV=2.0.18;|SunOS 5.3: lp patch
    101318|94|Feb/06/01|R|S| |  |2.3|sparc;sparc.sun4;sparc.sun4c;sparc.sun4d;sparc.sun4e;sparc.sun4m;|SUNWarc:11.5.0,REV=2.0.18,PATCH=132;SUNWbcp:11.5.0,REV=2.0.18,PATCH=25;SUNWcar:11.5.0,REV=2.0.18,PATCH=117;SUNWcar:11.5.0,REV=2.0.18,PATCH=121;SUNWcar:11.5.0,REV=2.0.18,PATCH=124;SUNWcar:11.5.0,REV=2.0.18,PATCH=139;SUNWcg6:11.5.0,REV=2.0.18,PATCH=53;SUNWcsr:11.5.0,REV=2.0.19,PATCH=222;SUNWcsu:11.5.0,REV=2.0.18,PATCH=383;SUNWdfb:11.5.0,REV=2.0.18,PATCH=89;SUNWdfb:11.5.0,REV=2.0.18,PATCH=90;SUNWhea:11.5.0,REV=2.0.18,PATCH=67;SUNWkvm:11.5.0,REV=2.0.18,PATCH=45;SUNWnisu:11.5.0,REV=2.0.18,PATCH=90;SUNWscpu:11.5.0,REV=2.0.18,PATCH=61;SUNWsra:11.5.0,REV=2.0.18,PATCH=25;SUNWsxr:11.5.0,REV=2.0.18,PATCH=90;|SunOS 5.3: Kernel Update (includes libc, lockd)
    101319|02|Dec/16/93| | |O|  |2.3|||OBSOLETED by 101318
    101320|01|Nov/24/93| | | |  |Unbundled|sparc;|SUNWhow:1.6,REV=1.0.10;|OpenWindows 3.2: Patch for Chinese/Taiwan OW Scalable Fonts
    101323|01|Nov/24/93| | | |  |Unbundled|sparc;|SUNWhow:1.5;|OpenWindows 3.1: Patch for Chinese/Taiwan OW Scalable Fonts
    101325|05|Mar/21/01|R|S| |  |2.3|sparc;|SUNWarc:11.5.0,REV=2.0.18,PATCH=133;SUNWcsu:11.5.0,REV=2.0.18,PATCH=385;|SunOS 5.3: fmli patch, libcurses.a
    101326|01|Nov/05/93| | |O|  |2.3|||OBSOLETED by 101318
    101327|08|Oct/12/94|R|S| |  |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: security and miscellaneous tar fixes
    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
    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
    101345|04|Oct/24/94| | | |  |2.3|sparc;|SUNWarc:11.5.0,REV=2.0.18;SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: cpio fixes
    101346|03|Dec/07/93| | |O|  |2.3|||OBSOLETED by 101318
    101347|02|Aug/10/94|R| | |  |2.3|sparc;|SUNWcsr:11.5.0,REV=2.0.19;|SunOS 5.3: fixes for ttcompat
    101349|01|Nov/05/93| | |O|  |2.3|||OBSOLETED by 101318
    101350|03|Sep/20/95| | | |  |2.3|sparc;|SUNWcsr:11.5.0,REV=2.0.19;SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: need boot patch for Solaris 2.3
    101355|01|Jan/25/94| | | |  |Unbundled|i386;|SPROpmake:1.1.0.1;|SunOS 5.1_x86: PMake fails when building OsNet Makefiles
    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
    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
    101381|02|May/06/94| | | |  |2.3|sparc;|SUNWenow:0.9,REV=5.0;SUNWploc:0.9,REV=3.0;|OpenWindows 3.3: en_US locale for Domestic Solaris 2.3
    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
    101404|13|Aug/21/96| | | |  |Unbundled|sparc;101280-12;|SUNWsrjec:8.0;|SunLink 8.0: SNA RJE Client bug fixes
    101406|01|Nov/23/93| | |O|  |2.3|101318-12;||OBSOLETED by 101318
    101407|02|Jul/27/94| | |O|  |Unbundled|101280;||OBSOLETED by 102147
    101409|04|Sep/20/94| | | |  |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;SUNWtoo:11.5.0,REV=2.0.18;|SunOS 5.3: Jumbo linker patch
    101410|03|Jun/29/94| | |O|  |Unbundled|||OBSOLETED by 102147
    101411|04|Apr/13/94| | |O|  |2.3|||OBSOLETED by 101318
    101414|09|Feb/03/97| | | |  |Unbundled|sparc;|SUNW3270c:8.0.1;|SunLink Client 3270 8.0.1: Jumbo Patch
    101415|02|Mar/11/94| | | |  |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: ptm pts write service routines; process hung in ldtermc
    101416|02|Apr/28/94| | | |  |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: umounting any swapdev removes all of them from mnttab
    101418|01|Dec/03/93| | | |  |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: ncheck -s doesn't work properly
    101420|02|Mar/30/94| | | |  |Unbundled|sparc;|SUNWcosia:8.0;|Sunlink OSI 8.0: (STACK) Patch for 2.3 compatibility
    101421|01|Mar/15/94| | | |  |Unbundled|sparc;|SUNWcosic:8.0;|Sunlink OSI 8.0: Patch for utilities
    101424|01|Jan/14/94| | | |  |Unbundled|sparc;|SPROesh:2.1.0;SPROsw:2.1.0.2;|SPARCworks 2.0.1 maketool SEGV's instantly on Solaris 2.3
    101425|05|Nov/20/95| | | |  |2.3|sparc;|SUNWapppr:11.5.0,REV=2.0.18;SUNWapppu:11.5.0,REV=2.0.18;SUNWhea:11.5.0,REV=2.0.18;SUNWpppk:11.5.0,REV=2.0.18;|SunOS 5.3: jumbo patch for ppp and aspppd
    101428|19|Oct/08/97|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: OLIT Patch
    101429|04|Jul/22/97|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: libXt patch
    101430|01|Dec/07/93| | | |  |Unbundled|||PC-NFS 5.0: SMC and 3C509 Ethernet adapters fail with WFW and PC-N
    101432|05|Jan/30/97| | | |  |Unbundled|sparc;102062;|SUNWbsccu:8.0;SUNWbscdr:8.0;|SunLink BSC3270 8.0: Jumbo patch
    101448|01|Dec/20/93| | | |  |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;SUNWstatl:11.5.0,REV=2.0.18;|SunOS 5.3: Passwd compat mode fails.
    101457|01|Dec/22/93| | |O|  |2.3||101362-03|OBSOLETED by 101362
    101458|03|Sep/12/94| | | |  |Unbundled|sparc;|SUNWdniCU:8.0;SUNWdniKR:8.0;|Sunlink DNI 8.0: Jumbo patch
    101468|02|May/06/94| | | |  |2.3|sparc;101381-01;|SUNWdeow:7.0,REV=13.0;SUNWfrow:7.0,REV=12.0;SUNWitow:7.0,REV=12.0;SUNWsvow:7.0,REV=12.0;|OpenWindows 3.3: en_US locale for European Solaris 2.3
    101470|02|May/19/94| | | |  |2.3|sparc;sparc.sun4;sparc.sun4c;sparc.sun4d;sparc.sun4e;sparc.sun4m;|SUNWtcx:1.0.0,REV=3.5.1;SUNWtcxow:1.0.0,REV=3.6.1;SUNWtcxu:1.0.0,REV=3.5.1;|SunOS 5.3: (A24/TCX freambuffer) jumbo patch
    101471|05|Oct/20/95| | | |  |Unbundled|sparc;|SUNWpexcl:2.1,REV=1.1.3;|PEX 2.1: Jumbo Patch
    101477|01|Jan/24/94| | | |  |Unbundled|SPARC;|SMCCss:2.1.1;|SunSolve 2.1, 2.1.1: Viewer fails on Solaris 2.3
    101484|03|Apr/28/94| | |O|  |2.3|||OBSOLETED by 101318
    101485|01|Feb/10/94| | |O|  |2.3|||OBSOLETED by 101318
    101489|04|Apr/13/94| | |O|  |2.3|||OBSOLETED by 101318
    101491|01|Apr/01/94| | | |  |Unbundled|sparc;|SUNWjaCL:1.0;|NeWSprint J1.0: Enables CL+ to install after SPII without NPtool p
    101493|02|Jan/06/95| | | |  |2.3|sparc.sun4;sparc.sun4c;sparc.sun4d;sparc.sun4e;sparc.sun4m;|SUNWcg6:11.5.0,REV=2.0.18;|SunOS 5.3: cgsix jumbo patch
    101494|04|Oct/16/98|R|S| |  |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: rdist patch
    101495|04|Dec/24/99|R|S| |  |2.3|sparc;|SUNWtltk:3.3.18,REV=0.93.09.07;SUNWtltkd:3.3.18,REV=0.93.09.07;|OpenWindows 3.3: ToolTalk patch
    101497|02|Mar/02/98|R|S| |  |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: in.rexecd fixes
    101500|04|Jul/26/94| | |O|  |2.3|||OBSOLETED by 101318
    101501|01|Nov/23/94| | | |  |Unbundled|sparc;|SPROlang:3.0;|SPARCompilers C 3.0: compiled with -O2 causes assertion error in c
    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
    101515|04|Aug/01/94|R| | |  |2.3|sparc;|SUNWowdem: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;|OpenWindows 3.3: xwd/xpr failures w/ xcolor, helpviewer, -compact
    101517|05|Mar/02/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: Numeric keys do not work with numlock X clients
    101519|02|Oct/03/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: printtool core dump, d&d attachment from mailtool
    101520|02|Aug/02/94| | | |  |2.3|sparc;|SUNWcsr:11.5.0,REV=2.0.19;SUNWipc:11.5.0,REV=2.0.18;|SunOS 5.3: ipcs/semaphore fixes
    101521|01|Jan/25/94| | | |  |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: on/rexd doesn't work when current directory
    101524|01|Feb/01/94| | | |  |Unbundled|sparc;|SUNWllc2a:1.15;SUNWx25a:1.15;SUNWx25b:1.15;|Sunlink X.25 8.0 universal JUMBO Patch
    101526|01|Jan/24/94| | | |  |Unbundled|SPARC;|SMCChd:2.1.1;|HelpDesk 2.1.1: Viewer fails on Solaris 2.3
    101533|07|Oct/02/97| | | |Y |2.3|sparc;101318;|SUNWowMIT:3.3.18,REV=0.93.09.07;|OpenWindows 3.3: xterm patch
    101534|01|Jan/28/94| | | |  |2.3|sparc.sun4c;sparc.sun4d;sparc.sun4e;sparc.sun4m;|SUNWcar:11.5.0,REV=2.0.18;|SunOS 5.3: support for multiple DMA engines in one SBus slot
    101536|03|Aug/31/94| | | |  |Unbundled|sparc;|SPROprfan:3.0.0.3;|SPARCompilers SPROprfan 3.0: inaccurate i/o time and system time
    101543|03|Oct/31/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: command line options do not function as documente
    101545|03|Jul/07/97|R|S| |  |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;SUNWscpu:11.5.0,REV=2.0.18;|SunOS 5.3: /usr/bin/ps and /usr/ucb/ps fixes
    101546|01|Feb/10/94| | | |  |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: nfs: multiple quota -v may not return info or too slow
    101549|04|Aug/18/94| | | |  |Unbundled|sparc;|SUNWawcom:1.0,REV=1.0.7;SUNWcow:1.6,REV=1.0.10;SUNWhow:1.6,REV=1.0.10;SUNWjwrqd:1.5,REV=1.0.17;SUNWkleu:5.6,REV=1.0.9;SUNWkow:1.6,REV=1.0.10;|OpenWindows 3.2: XIM fixes for Asian Solaris 2.2
    101550|08|Dec/20/96| | | |  |2.3|sparc;|SUNWawcom:1.1,REV=1.0.10;SUNWcow:1.7,REV=1.0.14;SUNWhow:1.7,REV=1.0.14;SUNWkow:1.7,REV=1.0.14;|OpenWindows 3.3: XIM fixes for Asian Solaris 2.3
    101556|03|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: Imagetool fixes
    101557|01|Mar/04/94| | | |  |2.3|sparc;|SUNWinst:4.0,REV=8.0;|SunOS 5.3: fix for swmtool add-service bug
    101560|02|Aug/16/94| | | |  |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: fixes for in.tftpd
    101568|01|Feb/28/94| | | |  |Unbundled|||PC-NFS 5.0: Fixes various PC print server hangs.
    101572|15|Oct/12/99|R|S| |Y |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: /usr/bin/at and /usr/sbin/cron patch
    101574|07|Jun/13/00|R|S| |  |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: /usr/bin/mail patch
    101575|02|Mar/23/94| | | |  |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: xargs miscomputes arg list size of exactly 570 in 2.3
    101578|01|Mar/09/94| | | |  |2.3|sparc;|SUNWesu:11.5.0,REV=2.0.18;|SunOS 5.3: nawk patch, pattern matching gets confused by 8bit char
    101581|02|Jun/20/95| | | |  |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: quotaon/quotaoff/quotacheck fixes
    101586|01|Apr/12/94| | | |  |Unbundled|i386;|SUNWowMIT:3.3.0;SUNWowrqd:3.3.0;|OpenWindows 3.1 x86: apply Sparc patches 100953-02 & 101135-02 to
    101589|01|May/20/97| | | |  |2.3|sparc;|SUNWowrqd:3.3.19,REV=0.93.09.17;SUNWowrqd:3.3.20,REV=0.93.09.28;|OpenWindows 3.3: navigator can only search on 16 collections at on
    101591|01|Mar/14/94| | | |  |Unbundled|sparc;|SUNWlicsw:2.0;|FLEXlm 2.0: License server dies when more than 50 users logged in
    101593|02|Jul/25/94| | |O|  |2.3|||OBSOLETED by 101362
    101594|19|Nov/26/96| | | |  |Unbundled|sparc;|SUNWsx:1.0.0,REV=3.5.1;SUNWsxow:1.0.0,REV=3.6.1;SUNWsxxgl:1.0.0,REV=3.5.2;SUNWsxxil:1.0.0,REV=3.5.4;|SunOS 5.3: (SPARCstation 10SX) sxlib/sxow/sxxgl/sxxil patch
    101597|01|Feb/25/94| | |O|  |2.3|||OBSOLETED by 101318
    101599|02|Apr/24/96| | | |  |2.3|sparc;|SUNWowdv:11.5.0,REV=2.0.18;|SunOS 5.3: fixes for winlock
    101605|08|Dec/21/99|R|S| |Y |2.3|sparc;101362-51;106676-01;106675-01;101512-43;|SUNWowrqd:3.3.19,REV=0.93.09.17;SUNWowrqd:3.3.20,REV=0.93.09.28;|OpenWindows 3.3: Mailtool Patch
    101610|07|Jul/15/97| | | |  |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: usr/bin/csh patch
    101611|01|Feb/25/94| | | |  |2.3|sparc;|SUNWcsr:11.5.0,REV=2.0.19;|SunOS 5.3: /etc/init.d/devlinks script does not locate the GT corr
    101613|02|Sep/09/94| | | |  |2.3|sparc;|SUNWcsr:11.5.0,REV=2.0.19;SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: fixes for sh, jsh, rsh
    101615|02|Jun/30/94| |S|O|  |2.3|||OBSOLETED by 101318
    101620|01|May/05/94|R|S| |  |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: keyserv has a file descriptor leak
    101623|01|Feb/28/94| | | |  |Unbundled|||PC-NFS 5.0: Windows does not restore PC-NFS printer connections.
    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
    101644|01|Mar/31/94| | | |  |Unbundled|i386;|SUNWowrqd:3.3.0;|OpenWindows 3.1 x86: Add support for USL local connections
    101645|01|May/03/94| | | |  |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: Newsprinter hangs on a Classic with audio driver loaded
    101646|06|Jan/31/96| | | |  |2.3|sparc.sun4;sparc.sun4m;|SUNWcar:11.5.0,REV=2.0.18;|SunOS 5.3: mcp driver jumbo patch
    101647|03|Jun/29/94| | | |  |2.3|sparc;|SUNWcsr:11.5.0,REV=2.0.19;|SunOS 5.3: named pipe (FIFO) performance and fixes
    101648|03|May/10/96| | | |  |2.3|sparc.sun4c;sparc.sun4e;sparc.sun4m;103098-01;|SUNWcar:11.5.0,REV=2.0.18;|SunOS 5.3: fd driver fixes
    101649|03|Aug/03/94| | | |  |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: patches for 'find' command
    101653|03|Sep/28/99|R|S| |  |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: /usr/bin/ftp patch
    101654|02|Apr/25/94| | |O|  |2.3|||OBSOLETED by 102128
    101655|07|Dec/24/97| | | |  |Unbundled|sparc;|SUNWjaNP:2.5;SUNWsteNP:2.5;|NeWSprint 2.5B: NeWSprinter20 EnergyStar support & queue hang fixe
    101656|12|May/27/98| | | |  |Unbundled|sparc;101655-07;|SUNWsteNP:2.5;|NeWSprint 2.5 Rev B: xnews server jumbo patch.
    101657|02|Apr/12/94| | | |  |Unbundled|sparc;|SUNWrtvc:1.0,REV=7.0.0;SUNWrtvcu:1.0,REV=6.0.0;101250-01|SunVideo 1.0: multi bug fix patch
    101659|01|Jul/06/94| | | |  |2.3|sparc;|SUNWloc:11.5.0,REV=2.0.18;|SunOS 5.3: Correction to LC_MONETARY subcategory of ja locale.
    101660|02|Aug/12/94| | | |  |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: BSD pty implementation causes system deadlock
    101661|02|May/05/95| | | |  |Unbundled|sparc;|SUNWspppk:1.0;SUNWspppu:1.0;|SunLink PPP 2.0: Jumbo patch
    101667|03|Nov/10/94| | | |  |2.3|sparc;101362;|SUNWdxlib:3.0.0,REV=1.0.15;|OpenWindows 3.3: DXlib 3.0 Visual/MPG bugs Jumbo patch
    101668|02|May/02/95| | | |  |Unbundled|sparc;|SUNWmotif:1.2.2;|Motif 1.2.2: Jumbo Patch
    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|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
    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
    101731|01|May/19/94| | | |  |2.3|sparc;|SUNWbtool:11.5.0,REV=2.0.18.2;|SunOS 5.3: make fails on pattern matching rule
    101733|01|Apr/29/94| | | |  |2.3|sparc;|SUNWcsr:11.5.0,REV=2.0.19;SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: ld.so.1 - dlopen() fails with bus error
    101734|03|Nov/16/94|R| | |  |2.3|sparc.sun4m;|SUNWcar:11.5.0,REV=2.0.18;|SunOS 5.3: iommu fixes for sun4m
    101735|01|May/23/94| | | |  |2.3|sparc;|SUNWcsr:11.5.0,REV=2.0.19;|SunOS 5.3: system panics from NULL cred pointer in file struct
    101736|04|Jul/18/97|R|S| |  |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: nisplus patch
    101737|04|Jul/15/96| | | |  |Unbundled|sparc;|SUNW3270t:8.0.1;|SunLink TN3270 Server 8.0.1: Jumbo Patch
    101738|01|May/12/94| | | |  |Unbundled|sparc;|SUNW3270g:8.0.2;|cg3270 8.0: API application hangs in P_SYSTEM state
    101739|17|Apr/02/97| |S|O|  |2.3|101359-02;||OBSOLETED by 101782
    101745|01|Apr/14/95| | | |  |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: fdformat options "-t nec -m" do not work correctly
    101751|05|Aug/17/94| | | |  |Unbundled|sparc;|SUNWtris:3.0.1;|TRI/S 3.0.1: Token Ring patch
    101752|24|Aug/06/97| | | |  |Unbundled|sparc;102057-12;|SUNWxgldg:4.0,REV=3.0.12;SUNWxglrt:4.0,REV=3.0.12;|XGL 3.1: XGL Patch
    101753|24|Aug/06/97| | | |  |Unbundled|sparc;102057-12;|SUNWxgldg:4.0,REV=3.0.12;SUNWxglrt:4.0,REV=3.0.12;|XGL 3.1: XGL Patch
    101754|01|May/24/94| | | |  |2.3|sparc;|SUNWesu:11.5.0,REV=2.0.18;|SunOS 5.3: col causes Segmentation fault and dumps core
    101763|01|May/31/94| | | |  |2.3|sparc;101512;|SUNWjwrqd:1.6,REV=1.0.25;|OpenWindows 3.3: SpotHelp "Help" label missing in Japanese OpenWin
    101765|01|Jun/01/94| | | |  |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: disks program supports only 16 drives per controller
    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
    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
    101786|03|Jun/30/99|R|S| |  |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: inetd fixes
    101788|01|Jun/21/94| | | |  |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: format and sd: Cannot format 9 GB disks
    101789|01|Jun/01/94| | | |  |2.3|sparc;|SUNWcsr:11.5.0,REV=2.0.19;|SunOS 5.3: RTELNET CAN FAIL WITH AN "OUT OF STREAMS RESOURCES
    101791|03|May/14/97|R| | |  |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: ksh patch
    101813|02|Aug/30/94| | | |  |2.3|101692-01;||OpenWindows 3.3: Korean F3 fonts fixes for Korean Solaris 2.3
    101814|02|Aug/05/94| | | |  |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: fixes for pcfs
    101815|01|Jun/29/94| | | |  |2.3|sparc.sun4;sparc.sun4c;sparc.sun4d;sparc.sun4e;sparc.sun4m;|SUNWcar:11.5.0,REV=2.0.18;|SunOS 5.3: Data fault in put() NULL queue passed from ttycommon_qf
    101816|01|Aug/05/94| | | |  |2.3|sparc.sun4m;sparc.sun4m1;101318-31;|SUNWcar:11.5.0,REV=2.0.20;SUNWcpr:1.3;|SunOS 5.3: Fix for Voyager CPU prefetch bug
    101818|01|Jun/17/94| | | |  |Unbundled|sparc;|SUNWjaCL:1.0;SUNWsteCL:1.0;|NeWSprinterCL+ 1.0: Need way to set inter-page pause per job and p
    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.
    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
    101836|02|Nov/16/94| | | |  |2.3|sparc.sun4m;|SUNWaudcr:1.0,REV=1.1;|SunOS 5.3: SS5 audio jumbo patch for Solaris Ed II
    101850|01|Jun/30/94| | | |  |Unbundled|sparc;|SUNWjaCL:1.0;SUNWsteCL:1.0;|NeWSprinterCL+ balancetool 1.0 does not display to a SX (cg14).
    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
    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
    101868|02|Jul/25/94| | | |  |2.3|sparc;|SUNWsprot:3.0,REV=93.09.07;|SunOS 5.3: sccs get does not get the right branch
    101873|02|Feb/21/95| | | |  |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: system accounting fixes
    101878|18|Jan/07/99|R|S| |  |2.4|sparc;|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: Xview Patch
    101879|02|Oct/21/96|R|S| |  |2.4|sparc;|SUNWowbcp:3.4.14,REV=0.94.06.23;|OpenWindows 3.4: XView Binary Compatibility Patch
    101880|16|Jun/30/00|R|S| |Y |2.4|sparc;102057-42;106672-01;106671-01;101878-17;|SUNWoldst:3.4.17,REV=0.94.07.15;|OpenWindows 3.4: Mailtool Patch
    101881|01|Jul/26/94| | |O|  |2.3|||OBSOLETED by 101318
    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
    101912|03|Jan/05/96| | | |  |Unbundled|sparc;|SPROlang:3.0.1;SPROpas:3.0.1;|SPARCompiler 3.0.1: Patch for Pascal 3.0.3
    101918|01|Sep/07/94| | |O|  |2.4|||OBSOLETED by 103935
    101919|01|Sep/07/94| | |O|  |2.4_x86|||OBSOLETED by 101946
    101920|03|Jul/07/95| | | |  |2.4|sparc;|SUNWdxlib:3.1.0,REV=2.10.0;|SunOS 5.4:  Direct Xlib (DXlib) Jumbo patch
    101921|20|Jun/11/96| | | |  |2.4|sparc;sparc.sun4c;sparc.sun4d;sparc.sun4m;|SUNWleo:1.0.0,REV=4.36.0;SUNWleoo:1.0.0,REV=4.35.0;SUNWleow:1.0.0,REV=4.36.0;|SunOS 5.4: ZX patch
    101922|17|Jan/23/98| | | |  |Unbundled|sparc;|SUNWsx:1.0.1,REV=4.34.0;SUNWsxow:1.0.0,REV=4.34.0;SUNWsxxgl:1.0.0,REV=4.35.0;SUNWsxxil:1.0.0,REV=4.34.0;|SunOS 5.4: SX Graphics Patch
    101923|09|Sep/27/96| | | |  |Unbundled|sparc;sparc.sun4m;|SUNWtcx:1.0.0,REV=4.36.0;SUNWtcxow:1.0.1,REV=4.35.0;SUNWtcxu:1.0.0,REV=4.34.0;|SunOS 5.4: TCX Jumbo patch
    101924|07|Sep/03/96|R|S| |  |2.4_x86|i386;|SUNWcsu:11.5.1,REV=94.07.22.14.24;SUNWhea:11.5.1,REV=94.07.18.19.02;|SunOS 5.4_x86: add_drv, drv_config, pcfs and fdformat fixes
    101925|02|Mar/07/95| | | |  |2.4|sparc;|SUNWhea:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: header file fixes
    101926|03|May/26/95| | | |  |2.4_x86|i386;|SUNWhea:11.5.1,REV=94.07.18.19.02;|SunOS 5.4_x86: header file fixes
    101927|01|Sep/30/94| | | |  |2.4|sparc;|SUNWjfpu:2.6,REV=1.0.40;|SunOS 5.4 (JFP 2.4): "ESC 2/8 4/9" is acceptable on reading email
    101928|01|Sep/30/94| | | |  |2.4_x86|i386;|SUNWjfpu:2.6,REV=1.0.40;|SunOS 5.4_x86 (JFP 2.4): "ESC 2/8 4/9" is acceptable on reading em
    101929|01|Aug/30/94| | | |  |Unbundled|sparc;|SUNWmd:2.0.1;|Online Disksuite 2.0.1: /tmp/.mdlock files left after metastat
    101930|01|Aug/18/94| | | |  |2.3|sparc;|SUNWcsr:11.5.0,REV=2.0.19;|SunOS 5.3: some files may not show up under cachefs
    101931|01|Aug/03/94| | |O|  |Unbundled|||OBSOLETED by 102068
    101933|01|Sep/12/94| | | |  |2.4|sparc;|SUNWxwmod:3.4.16,REV=0.94.06.22;|OpenWindows 3.4: Open of /dev/mouse causes OW cursor to freeze.
    101934|01|Jan/30/95| | |O| B|Unbundled|||OBSOLETED by 101911
    101939|01|Sep/07/94| | | |  |2.4_x86|i386.i86pc;|SUNWcar:11.5.1,REV=94.07.19.13.11;|SunOS 5.4_x86: XPG3/XPG4 VSX test panic x86 machines in emap_outpu
    101940|04|Aug/28/95| | | |  |2.4|sparc;sparc.sun4c;sparc.sun4m;|SUNWgt:12.0.0,REV=4.36.0;SUNWgtow:1.0.1,REV=4.35.0;SUNWgtu:12.0.0,REV=4.35.0;|SunOS 5.4: GT jumbo patch
    101941|04|May/21/99| | | |Y |Unbundled|sparc;|SUNWsteNP:2.5;|NeWSprint 2.5 Rev B: Printer status and Y2000 bugs
    101943|04|May/30/95| | | |  |Unbundled|sparc;|SPROltool:2.0;|iMPact 2.0: Looptool jumbo patch
    101944|03|Jan/05/95| | | |  |Unbundled|sparc;|SPROlklnt:2.0;|iMPact 2.0: various fixes for i18n in lock_lint
    101945|64|Jun/20/01|R|S| |  |2.4|sparc;sparc.sun4;sparc.sun4c;sparc.sun4d;sparc.sun4e;sparc.sun4m;|SUNWarc:11.5.1,REV=94.07.15.22.10,PATCH=163;SUNWbcp:11.5.1,REV=94.07.15.22.10,PATCH=44;SUNWcar:11.5.1,REV=94.07.15.22.10,PATCH=104;SUNWcar:11.5.1,REV=94.07.15.22.10,PATCH=91;SUNWcar:11.5.1,REV=94.07.15.22.10,PATCH=94;SUNWcar:11.5.1,REV=94.07.15.22.10,PATCH=96;SUNWcsr:11.5.1,REV=94.07.15.22.10,PATCH=188;SUNWcsu:11.5.1,REV=94.07.22.14.32,PATCH=400;SUNWhea:11.5.1,REV=94.07.15.22.10,PATCH=138;SUNWkvm:11.5.1,REV=94.07.15.22.10,PATCH=62;SUNWkvm:11.5.1,REV=94.07.15.22.10,PATCH=67;SUNWscpu:11.5.1,REV=94.07.15.22.10,PATCH=68;SUNWsra:11.5.1,REV=94.07.15.22.10,PATCH=44;SUNWsxr:11.5.1,REV=94.07.15.22.10,PATCH=18;|SunOS 5.4: Kernel update
    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
    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
    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
    101970|04|Oct/19/94| | |O|  |2.4_x86|||OBSOLETED by 101946
    101971|01|Sep/08/94| | |O|  |2.4|||OBSOLETED by 103935
    101972|01|Sep/08/94| | |O|  |2.4_x86|||OBSOLETED by 101946
    101973|41|Jun/19/01|R|S| |  |2.4|sparc;|SUNWarc:11.5.1,REV=94.07.15.22.10,PATCH=162;SUNWcsu:11.5.1,REV=94.07.22.14.32,PATCH=398;SUNWhea:11.5.1,REV=94.07.15.22.10,PATCH=137;SUNWnisu:11.5.1,REV=94.07.15.22.10,PATCH=80;|SunOS 5.4: libnsl, nistbladm & ypbind fixes
    101974|41|Jun/19/01|R|S| |  |2.4_x86|i386;|SUNWarc:11.5.1,REV=94.07.18.19.02,PATCH=156;SUNWcsu:11.5.1,REV=94.07.22.14.24,PATCH=375;SUNWhea:11.5.1,REV=94.07.18.19.02,PATCH=139;SUNWnisu:11.5.1,REV=94.07.18.19.02,PATCH=78;|SunOS 5.4_x86: libnsl, nistbladm & ypbind fixes
    101975|01|Sep/08/94| | |O|  |2.4|||OBSOLETED by 103935
    101976|01|Sep/08/94| | |O|  |2.4_x86|||OBSOLETED by 101946
    101977|06|Feb/27/97|R|S| |  |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32;|SunOS 5.4: lockd patch
    101978|03|Sep/30/94| | | |  |2.4_x86|i386;|SUNWcsu:11.5.1,REV=94.07.22.14.24;|SunOS 5.4_x86: lockd fixes
    101979|06|Aug/23/95| | |O|  |2.4|||OBSOLETED by 102001
    101981|02|Jan/31/95| |S|O|  |2.4|||OBSOLETED by 103935
    101982|02|Jan/31/95| |S|O|  |2.4_x86|||OBSOLETED by 101946
    101983|03|Oct/27/94| | |O|  |2.4|||OBSOLETED by 103935
    101984|03|Oct/27/94| | |O|  |2.4_x86|||OBSOLETED by 101946
    101985|01|Sep/08/94| | | |  |2.4|sparc;|SUNWaccu:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: acctwtmp does not work
    101986|01|Sep/08/94| | | |  |2.4_x86|i386;|SUNWaccu:11.5.1,REV=94.07.18.19.02;|SunOS 5.4_x86: acctwtmp does not work
    101987|02|Dec/07/94| | | |  |2.4|sparc;|SUNWinst:5.4,REV=1.0.94.07.22.10.50;|SunOS 5.4: swmtool does not correctly maintain spooled patches
    101988|03|Dec/07/94| | | |  |2.4_x86|i386;|SUNWinst:5.4,REV=1.0.94.07.22.10.49;|SunOS 5.4_x86: swmtool does not correctly maintain spooled patches
    101995|01|Sep/08/94| | | |  |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32;|SunOS 5.4: iconv(1) falls in endless loop
    101996|01|Sep/08/94| | | |  |2.4_x86|i386;|SUNWcsu:11.5.1,REV=94.07.22.14.24;|SunOS 5.4_x86: iconv(1) falls in endless loop
    101997|01|Oct/27/94| | | |  |2.3|sparc;|SUNWaccu:11.5.0,REV=2.0.18;|SunOS 5.3: acctwtmp does not work
    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
    102005|01|Sep/30/94| | |O|  |2.4|||OBSOLETED by 103825
    102006|01|Sep/30/94| | | |  |2.4_x86|i386;|SUNWjxplt:1.1,REV=1.0.40;|OpenWindows 3.4_x86 (JFP 2.4):  xci leaks memory a lot using LUC
    102007|02|Jul/26/95| | |O|  |2.4|||OBSOLETED by 103935
    102008|01|Sep/08/94| | |O|  |2.4_x86|||OBSOLETED by 101946
    102011|03|Jul/19/95| | | |  |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32;|SunOS 5.4: fixes to tar, cat, dd
    102012|03|Jul/19/95| | | |  |2.4_x86|i386;|SUNWcsu:11.5.1,REV=94.07.22.14.24;|SunOS 5.4_x86: fixes to tar, cat, dd
    102013|01|Sep/08/94| | | |  |2.4_x86|i386.i86pc;|SUNWcar:11.5.1,REV=94.07.19.13.11;|SunOS 5.4_x86: RAW token ring transmit should not add any headers
    102015|01|Nov/03/94| | |O|  |2.3|||OBSOLETED by 103941
    102016|01|Sep/08/94| | |O|  |2.4|||OBSOLETED by 103942
    102017|01|Sep/08/94| | |O|  |2.4_x86|||OBSOLETED by 103944
    102019|01|Aug/30/94| | |O|  |Unbundled|101956-01;||OBSOLETED by 101956
    102020|07|Jun/08/95| | |O|  |2.4|101945-06;||OBSOLETED by 103935
    102021|04|Jul/10/95| | |O|  |2.4_x86|101946-06;||OBSOLETED by 101946
    102024|02|Nov/20/95| | |O|  |2.4|||OBSOLETED by 103935
    102025|01|Oct/13/94| | |O|  |2.4_x86|||OBSOLETED by 101946
    102026|01|Sep/20/94| | | |  |2.4_x86|i386.i86pc;|SUNWcar:11.5.1,REV=94.07.19.13.11;|SunOS 5.4_x86: fixes to sctp driver
    102030|13|Jun/05/01|R|S| |  |2.4|sparc;101945-61;|SUNWoldcv:3.4.16,REV=0.94.06.23,PATCH=08;SUNWoldst:3.4.17,REV=0.94.07.15,PATCH=56;|OpenWindows 3.4: Calendar Manager patch
    102031|11|Jun/05/01|R|S| |  |2.4_x86|i386;101946-50;|SUNWoldcv:3.4.16,REV=0.94.06.23,PATCH=11;SUNWoldst:3.4.17,REV=0.94.07.15,PATCH=11;|OpenWindows 3.4_x86: Calendar Manager patch
    102034|05|Mar/20/98|R|S| |  |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: usr/sbin/rpcbind patch
    102035|01|Sep/15/94| | | |  |2.4|sparc;|SUNWcsr:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: st: dat soft error warning messages too frequently
    102036|04|Jan/31/96| | | |  |2.4|sparc.sun4;sparc.sun4m;|SUNWcar:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: jumbo patch for mcp, mcpzsa, mcpp drivers
    102037|01|Sep/12/94| | | |  |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32;SUNWhea:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: Extra clicks during audio mode changes
    102038|02|Oct/20/94| | | |  |2.4|sparc.sun4m;|SUNWcar:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: ddi_dma_sync(DDI_DMA_SYNC_FORKERNEL)/iommunex_dma_mctl
    102039|05|Aug/28/97|R| | |Y |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: fixes for package installation utilities
    102041|05|Sep/10/97|R| | |Y |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: fixes for package installation utilities
    102042|06|Aug/25/00|R|S| |  |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32;|SunOS 5.4: usr/bin/mail fixes
    102043|06|Aug/25/00|R|S| |  |2.4_x86|i386;|SUNWcsu:11.5.1,REV=94.07.22.14.24;|SunOS 5.4_x86: /usr/bin/mail fixes
    102044|01|Sep/12/94|R|S| |  |2.4|sparc;sparc.sun4;sparc.sun4c;sparc.sun4d;sparc.sun4e;sparc.sun4m;|SUNWcar:11.5.1,REV=94.07.15.22.10;SUNWcsr:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: bug in mouse code makes "break root" attack possible
    102045|01|Jun/29/95| | | |  |Unbundled|sparc;|SUNWpcnfs:1.0;|PC-NFS 5.1: Cannot delete single license from pcnfsldb database
    102046|05|Apr/25/96| | |O|  |Unbundled|||OBSOLETED by 103456
    102047|02|Jul/18/95| | | |  |2.3|all;sparc;101362;|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: Need XTEST 2.2 patch compatible with prior XDM pa
    102048|09|May/16/97|R| | |  |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32;|SunOS 5.4: fixes for ksh
    102049|05|Oct/23/96|R|S| |  |2.4|sparc;|SUNWarc:11.5.1,REV=94.07.15.22.10;SUNWbtool:11.5.1,REV=94.07.15.22.10;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;SUNWtoo:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: linker fixes
    102050|08|May/14/97|R| | |  |2.4_x86|i386;|SUNWcsu:11.5.1,REV=94.07.22.14.24;|SunOS 5.4_x86: ksh patch
    102052|01|Feb/07/95| | | |  |Unbundled|sparc;|SUNWipx:1.0.1;|PC Protocol Services 1.0: panic in MP config due to race condition
    102053|01|Feb/09/95| | | |  |Unbundled|i386;|SUNWipx:1.0.1;|PC Protocol Services 1.0: (i386 version) panic in MP config due to
    102054|04|Aug/08/95| | | |  |Unbundled|sparc;|SUNWmfwm:1.2.3,REV=2.1;|Motif 1.2.3: Motif Window Manager patch for Solaris 2.4
    102055|02|Aug/01/96| | | |  |Unbundled|sparc;101656-09;|SUNWjaCL:1.0;SUNWsteCL:1.0;|NeWSprinterCL+ 1.0:  raster file cannot print to NeWSprinterCL+.
    102056|02|Feb/16/95| | | |  |2.3|sparc;101428-10;|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: OLGX (libolgx) Jumbo Patch
    102057|42|Jun/12/98|R|S| |  |2.4|sparc;101933;|SUNWxwplt:3.4.18,REV=0.94.07.15;SUNWxwslb:3.4.17,REV=0.94.07.07;102203|OpenWindows 3.4: Server (Xsun) Patch
    102058|10|May/13/96| | | |  |2.4_x86|i386;102059-10;|SUNWpmi:3.4.4,REV=0.94.06.21;SUNWxwpls:3.4.4,REV=0.94.06.21;|OpenWindows 3.4_x86: New video card support for Solaris 2.4 X86
    102059|10|May/13/96| | | |  |2.4_x86|i386;102058-10;|SUNWos86r:1.0.0,REV=94.07.28.16.24;SUNWos86u:1.0.0,REV=94.06.22.10.15;|SunOS 5.4_x86: Kernel drivers & config support for new graphic car
    102061|04|Aug/28/96| | | |  |2.4_x86|i386;i386.i86pc;|SUNWcar:11.5.1,REV=94.07.19.13.11;SUNWhea:11.5.1,REV=94.07.18.19.02;|SunOS 5.4_x86: sbpro bug fixes
    102062|12|Jul/01/96| | | |  |2.4|sparc.sun4;sparc.sun4c;sparc.sun4d;sparc.sun4e;sparc.sun4m;|SUNWcar:11.5.1,REV=94.07.15.22.10;SUNWcg6:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: fixes for zs, zsh, cgsix drivers
    102064|20|Jun/16/98|R|S| |  |2.4_x86|i386;102480-02;|SUNWcsr:11.5.1,REV=94.07.18.19.02;SUNWcsu:11.5.1,REV=94.07.22.14.24;SUNWnisu:11.5.1,REV=94.07.18.19.02;|SunOS 5.4_x86: /usr/lib/sendmail patch
    102065|02|Oct/26/94| | | |  |2.4_x86|i386.i86pc;|SUNWcar:11.5.1,REV=94.07.19.13.11;|SunOS 5.4_x86: smc driver update and fixes
    102066|22|Jun/16/98|R|S| |  |2.4|sparc;102479-02;|SUNWcsr:11.5.1,REV=94.07.15.22.10;SUNWcsu:11.5.1,REV=94.07.22.14.32;SUNWnisu:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: /usr/lib/sendmail patch
    102068|02|Dec/17/96| | | |  |Unbundled|||PC-NFS 5.1: PC-NFS 5.1a jumbo patch.
    102070|07|Mar/30/01|R|S| |  |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32,PATCH=389;|SunOS 5.4: usr/sbin/rpcbind patch
    102071|07|Mar/30/01|R|S| |  |2.4_x86|i386;|SUNWcsu:11.5.1,REV=94.07.22.14.24,PATCH=366;|SunOS 5.4_x86: usr/sbin/rpcbind patch
    102077|01|Sep/23/94| | |O|  |2.4|||OBSOLETED by 101907
    102078|01|Sep/23/94| | |O|  |2.4_x86|||OBSOLETED by 101908
    102079|01|Oct/17/94| | | |  |2.4|sparc.sun4m;|SUNWsxr:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: Xsun without preloading SX driver hangs system
    102098|01|Sep/23/94| | |O|  |2.4|||OBSOLETED by 101907
    102099|01|Sep/23/94| | |O|  |2.4_x86|||OBSOLETED by 101908
    102103|01|Sep/28/94| | | |  |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: namefs fix
    102105|08|Nov/16/95| | |O|  |2.4|||OBSOLETED by 101973
    102106|01|Sep/29/94| | |O|  |2.4_x86|||OBSOLETED by 101974
    102108|02|Jul/17/96| | | |  |2.4|sparc;|SUNWcsr:11.5.1,REV=94.07.15.22.10;SUNWcsu:11.5.1,REV=94.07.22.14.32;|SunOS 5.4: sh/jsh fixes
    102109|01|Sep/30/94| | | |  |2.4_x86|i386;|SUNWcsr:11.5.1,REV=94.07.18.19.02;SUNWcsu:11.5.1,REV=94.07.22.14.24;|SunOS 5.4_x86: backgrounded bourne shell process stays around
    102110|01|Oct/11/94| | |O|  |2.3|||OBSOLETED by 101318
    102111|02|Dec/02/94| | | |  |2.4|sparc;|SUNWxwplt:3.4.18,REV=0.94.07.15;|OpenWindows 3.4: The Canadian French TBITS-5 key layout is wrong.
    102112|01|Oct/13/94| | | |  |2.4|sparc;|SUNWxwdv:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: Fix for locking problems with winlock
    102113|03|Nov/14/94| | | |  |Unbundled|sparc;|SUNWsteNP:2.5;|NeWSprint 2.5 RevB hangs when printing
    102114|04|Nov/13/95| | | |  |Unbundled|sparc;|SUNWsteNP:2.5;|NeWSprint 2.5 RevB: postreverse doesn't see correct tmp directory
    102117|02|Jan/19/96| | | |  |2.4|sparc;|SUNWgsow:1.0.1,REV=4.34.0;SUNWgsu:12.0.1,REV=4.34.0;|SunOS 5.4: GS graphics jumbo patch
    102119|01|Oct/18/94| | |O|  |2.4|101945-08;||OBSOLETED by 103935
    102120|01|Oct/18/94| | |O|  |2.4_x86|101946-08;||OBSOLETED by 101946
    102121|06|Mar/31/99| | | |  |2.4|sparc.sun4c;sparc.sun4d;sparc.sun4e;sparc.sun4m;|SUNWcar:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: fixes to stc driver
    102125|04|Apr/03/96| | | |  |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32;|SunOS 5.4: fixes to audio device driver
    102128|02|Oct/03/95| | | |  |2.3|sparc;|SUNWowrqd:3.3.19,REV=0.93.09.17;SUNWowrqd:3.3.20,REV=0.93.09.28;|OpenWindows 3.3: docviewer fixes
    102134|01|Oct/25/94| | | |  |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32;|SunOS 5.4: find  - -ok rm '{}' ';' is not useful
    102135|01|Oct/25/94| | | |  |2.4_x86|i386;|SUNWcsu:11.5.1,REV=94.07.22.14.24;|SunOS 5.4_x86: find  - -ok rm '{}' ';' is not use
    102137|01|Oct/17/94| | |O|  |2.4|||OBSOLETED by 103935
    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
    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
    102160|02|Apr/14/95| | | |  |Unbundled|sparc;|SUNWspcja:4.0;|Japanese SunPC 4.0: Jumbo patch
    102163|01|Feb/21/95| | | |  |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32;|SunOS 5.4: accounting record corruption after crash and reboot
    102165|04|Nov/03/97|R|S| |  |2.4|sparc;102479-02;|SUNWcsu:11.5.1,REV=94.07.22.14.32;|SunOS 5.4: nss_dns.so.1 fixes
    102166|03|Jul/19/96|R|S| |  |2.4_x86|i386;102480-02;|SUNWcsu:11.5.1,REV=94.07.22.14.24;|SunOS 5.4_x86: nss_dns.so.1 fixes
    102167|03|Jul/18/96|R|S| |  |2.3|sparc;101359-02;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: dns fix
    102168|01|Mar/02/95| | |O|  |2.3|||OBSOLETED by 101318
    102169|01|Nov/03/94| | |O|  |2.4|||OBSOLETED by 103935
    102170|01|Nov/04/94| | |O|  |2.4_x86|||OBSOLETED by 101946
    102171|04|Mar/20/95| | | |  |2.4_x86|i386;|SUNWadmap:6.4.16;SUNWadmfw:6.4.13;|SunOS 5.4_x86: Admintool Jumbo patch
    102179|01|Nov/23/94| | | |  |2.3|sparc;|SUNWsprot:3.0,REV=93.09.07;|SunOS 5.3:  SVR4.make Jumbo patch
    102181|04|Jun/27/95| | | |  |Unbundled|||PC-NFS 5.1: TelnetW jumbo patch
    102182|02|Dec/20/94| | | |  |2.3|sparc.sun4m;|SUNWaudcr:11.5.0,REV=2.0.1;|SunOS 5.3: SS5 audio Jumbo patch. Solaris 2.3 (Hardware 5/94).
    102183|01|Nov/23/94| | | |  |2.3|sparc.sun4m;|SUNWaudcr:11.6.0,REV=2.0.2;|SunOS 5.3: SS5 audio jumbo patch for Solaris Ed IV (Hardware 8/94)
    102196|05|Mar/03/98| | | |  |2.4|sparc;|SUNWxwplt:3.4.18,REV=0.94.07.15;SUNWxwslb:3.4.17,REV=0.94.07.07;|OpenWindows 3.4: libX11 patch
    102198|01|Nov/21/94| | | |  |Unbundled|sparc;102199-01;|SUNWvxva:1.3;|Volume Manager 1.3: fix for known problems with visual administrat
    102199|03|Aug/29/95| | | |  |Unbundled|sparc;102198-01;|SUNWvxvm:1.3.3;|Volume Manager 1.3: Volume Manager jumbo patchs
    102202|01|Jul/24/95| | | |  |2.4_x86|i386;i386.i86pc;|SUNWcar:11.5.1,REV=94.07.19.13.11;SUNWcsu:11.5.1,REV=94.07.22.14.24;|SunOS 5.4_x86: kd: boot on serial console hangs when no video card
    102205|07|Jan/08/97| | | |  |Unbundled|sparc;|SUNWcosia:8.0.2;SUNWcosic:8.0.2;SUNWcosid:8.0.2;|Sunlink OSI 8.0.2: (STACK) Jumbo Patch
    102206|09|Feb/05/97| | | |  |Unbundled|sparc;|SUNWftamb:8.0.2;|Sunlink FTAM 8.0.2 Jumbo Patch
    102207|04|Jul/31/95| | | |  |Unbundled|sparc;|SUNWxt:2.0;|X Terminal 2.0: Terminal software jumbo patch.
    102209|01|Jan/10/95| | | |  |2.4|sparc;101945-13;102066-02;|SUNWcsr:11.5.1,REV=94.07.15.22.10;SUNWcsu:11.5.1,REV=94.07.22.14.32;|SunOS 5.4: No way to cache the root and /usr file systems with Cac
    102210|01|Mar/06/95| | | |  |2.4_x86|i386;101946-11;102064-02;|SUNWcsr:11.5.1,REV=94.07.18.19.02;SUNWcsu:11.5.1,REV=94.07.22.14.24;|SunOS 5.4_x86: No way to cache root & /usr file systems with Cache
    102211|05|Feb/20/98| | | |  |Unbundled|sparc;|SUNWsteNP:2.5;|NeWSprint 2.5B: SPARCprinter jumbo patch
    102214|01|Nov/18/94| | | |  |Unbundled|||PC-NFS 5.1: Vendor applications fail on PC-NFS winsock implementat
    102216|07|Jun/27/96| |S|O|  |2.4|||OBSOLETED by 103935
    102217|07|Jun/27/96| |S|O|  |2.4_x86|||OBSOLETED by 101946
    102218|04|Feb/08/99|R|S| |  |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: libbsm fixes
    102219|04|Feb/08/99|R|S| |  |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: libbsm fixes
    102220|03|Jul/10/95| |S|O|  |2.3|||OBSOLETED by 101318
    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
    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
    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)
    102256|13|Jul/13/98| | | |  |Unbundled|sparc;|SUNWllc2a:1.20;SUNWllc2b:1.20;SUNWx25a:1.20;SUNWx25b:1.20;|SunLink X25 8.0.2: Patch
    102260|01|Dec/15/94| | | |  |Unbundled|||Rumba 3.2: To fix Rumba APL keyboard mapping.
    102263|01|Aug/08/95| | | |  |2.4_x86|i386;|SUNWxwpls:3.4.4,REV=0.94.06.21;|OpenWindows 3.4_x86: Compaq Qvision: Motif app buttons don't grey
    102266|03|Mar/02/95| | | |  |2.4_x86|i386.i86pc;|SUNWcar:11.5.1,REV=94.07.19.13.11;|SunOS 5.4_x86: ata & dadk fixes
    102267|01|Dec/29/94| | | |  |2.3|sparc;|SUNWhow:1.7,REV=1.0.14;|OpenWindows 3.3: fontedit doesn't function properly in S2.3
    102268|01|Feb/21/95| | | |  |2.3|sparc;|SUNWnisu:11.5.0,REV=2.0.18;|SunOS 5.3: nismkdir dumps core creating non-root masters
    102269|01|Dec/29/94| | | |  |2.4|sparc;|SUNWhodst:1.8,REV=1.0.20;SUNWhuccd:5.8,REV=1.0.6;|OpenWindows 3.4: fontedit doesn't function properly in S2.4
    102270|01|Dec/29/94| | | |  |2.4_x86|i386;|SUNWhodst:1.8,REV=1.0.20;SUNWhuccd:5.8,REV=1.0.6;|OpenWindows 3.4_x86: fontedit doesn't function properly in S2.4
    102271|02|Feb/24/95| | | |  |2.3|sparc;|SUNWowrqd:3.3.19,REV=0.93.09.17;SUNWowrqd:3.3.20,REV=0.93.09.28;|OpenWindows 3.3: Classing Engine Patch
    102272|03|Aug/13/97| | | |  |2.3|sparc;sparc.sun4m;|SUNWcar:11.5.0,REV=2.0.18;SUNWcsr:11.5.0,REV=2.0.19;|SunOS 5.3: /kernel/drv/le and /kernel/drv/ledma patch
    102273|01|Apr/06/95| | | |  |2.4|sparc;|SUNWnisu:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: nisupdkeys -a does not deal properly with multi-homed s
    102277|03|Jul/18/97|R|S| |  |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32;|SunOS 5.4: nss_nisplus.so.1 fixes
    102278|03|Jul/18/97|R|S| |  |2.4_x86|i386;|SUNWcsu:11.5.1,REV=94.07.22.14.24;|SunOS 5.4_x86: nss_nisplus.so.1 fixes
    102282|01|Jan/24/95| | | |  |Unbundled|sparc;|SPROflmrg:2.1.1;|SPARCworks 3.0.1: filemerge no highlight of glyphs on mono monitor
    102283|02|Aug/27/97| | | |  |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32;|SunOS 5.4: usr/sbin/disks patch
    102286|03|Sep/24/96| | | |  |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32;|SunOS 5.4: /usr/lib/utmpd fix
    102287|01|Jan/18/95| | | |  |2.4_x86|i386;|SUNWcsu:11.5.1,REV=94.07.22.14.24;|SunOS 5.4_x86: /usr/lib/utmpd fix
    102292|04|Jun/26/98|R|S| |  |2.4|sparc;|SUNWoldst:3.4.17,REV=0.94.07.15;|OpenWindows 3.4: filemgr (ff.core) fixes
    102293|04|May/05/98|R|S| |  |2.4_x86|i386;|SUNWoldst:3.4.17,REV=0.94.07.15;|OpenWindows 3.4_x86: filemgr (ff.core) fixes
    102294|01|Feb/16/95| | | |  |2.4|sparc;|SUNWxwopt:3.4.15,REV=0.94.06.02;|OpenWindows 3.4: xdm cannot be used on NIS+ networks
    102301|01|Feb/17/95| | | |  |Unbundled|sparc;|SUNWvxvm:2.0.1;|Volume Manager 2.0: log replay problems with raid5 write entries
    102302|02|Oct/03/95| | | |  |Unbundled|sparc;|SUNWasn1:1.0;|SunLink ASN.1 1.0 : Jumbo Patch
    102305|03|Mar/10/95| | |O|  |Unbundled|||OBSOLETED by 102950
    102308|06|Jun/30/95| | | |  |2.4_x86|i386;i386.i86pc;|SUNWcar:11.5.1,REV=94.07.19.13.11;SUNWhea:11.5.1,REV=94.07.18.19.02;|SunOS 5.4_x86: mlx Jumbo Patch
    102310|04|Mar/08/00| | | |  |2.4|sparc;|SUNWaocom:1.2,REV=1.0.15;SUNWaxcom:1.2,REV=1.0.14;|OpenWindows 3.4: XIM XI18N jumbo patch for ja, ko, zh locales
    102311|03|Oct/18/95| | | |  |2.4_x86|i386;|SUNWaocom:1.2,REV=1.0.15;SUNWaxcom:1.2,REV=1.0.14;|OpenWindows 3.4_x86: XIM XI18N jumbo patch for ja, ko, zh locales
    102312|16|Dec/11/98| | | |  |Unbundled|sparc;102874-12;|SUNWpu21:9.0;|SunLink SNA 9.0: (3270 Gateway, 3770 RJE, LUO, P2P, P2P RUNTIME, S
    102318|01|Feb/10/95| | | |  |2.4_x86|i386.i86pc;|SUNWcar:11.5.1,REV=94.07.19.13.11;|SunOS 5.4_x86: gld fixes
    102319|01|May/26/95| |S|O|  |2.4|||OBSOLETED by 102066
    102320|01|May/26/95| |S|O|  |2.4_x86|||OBSOLETED by 102064
    102321|02|Sep/01/95| | | |  |2.4_x86|i386;i386.i86pc;101924-04;|SUNWcar:11.5.1,REV=94.07.19.13.11;SUNWhea:11.5.1,REV=94.07.18.19.02;|SunOS 5.4_x86: fd and fdc fixes
    102324|05|Jun/03/97| | | |  |2.4_x86|i386.i86pc;|SUNWcar:11.5.1,REV=94.07.19.13.11;|SunOS 5.4_x86: asy patch
    102327|01|Sep/20/95| | | |  |Unbundled|sparc;|SPROltool:2.0.1;|iMPact 2.0: Fixes sorting bug in original release of loopreport
    102328|01|Feb/16/95| | | |  |2.4_x86|i386.i86pc;|SUNWcar:11.5.1,REV=94.07.19.13.11;|SunOS 5.4_x86: x86 hsfs CDs: partition is 1 sector too small
    102330|03|May/09/95| | | |  |Unbundled|sparc;|SUNWwabi:2.0;|Wabi 2.0: Jumbo patch
    102331|03|May/09/95| | | |  |Unbundled|i386;102321-01;|SUNWwabi:2.0;|Wabi 2.0: Jumbo patch
    102332|01|May/22/95| | | |  |2.4|sparc.sun4m;|SUNWcar:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: ledma fix
    102334|01|Apr/06/95| | | |  |2.4|sparc;|SUNWesu:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: vold cannot recognize NEC-2HD medium density floppy dis
    102345|02|Sep/29/95| | | |  |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: mv, cp and ln fixes
    102347|10|Jan/09/96| | |O|  |Unbundled|102020-03;||OBSOLETED by 103290
    102348|01|Feb/17/95| | | |  |Unbundled|||PC-NFSpro 1.1: fix to permit users without passwords to login
    102350|01|Apr/11/95| | | |  |2.4_x86|i386;|SUNWxwplt:3.4.18,REV=0.94.07.15;SUNWxwslb:3.4.17,REV=0.94.07.07;|OpenWindows 3.4_x86: Docviewer won't start when colormap is near f
    102352|01|Mar/29/95| | | |  |2.4_x86|i386.i86pc;|SUNWcar:11.5.1,REV=94.07.19.13.11;|SunOS 5.4_x86: /kernel/drv/lp fix
    102354|02|Apr/11/95| | | |  |Unbundled|||PC-NFSpro 1.1: set host command and 7 bit national character set f
    102355|07|Jul/27/99| | | |Y |Unbundled|sparc;|SUNWcosiA:8.0.2;SUNWmhs1b:8.0.2;SUNWmhs1c:8.0.2;|Sunlink X.400 8.0.2: Patch
    102357|01|Feb/23/95| | |O|  |2.4|||OBSOLETED by 102788
    102366|01|Aug/28/95| | | |  |2.4|sparc;|SUNWoldte:3.4.16,REV=0.94.06.23;|OpenWindows 3.4: cmdtool can't connect with htt.
    102367|01|Aug/28/95| | | |  |2.4_x86|i386;|SUNWoldte:3.4.16,REV=0.94.06.23;|OpenWindows 3.4_x86: owplaces fixes
    102369|01|Feb/28/95| | | |  |Unbundled|sparc;|SUNWccrcv:1.0;|Cooperative Console 1.0: cc_receiver not display error msg. from c
    102378|02|May/02/95| | | |  |2.3|sparc;|SUNWowrqd:3.3.19,REV=0.93.09.17;SUNWowrqd:3.3.20,REV=0.93.09.28;|OpenWindows 3.3: After saving workspace, cmdtool can't connect htt
    102381|01|Apr/26/95| |S| |  |Unbundled|sparc;|SUNWlicsw:2.0;|FLEXlm 4.0 jumbo patch
    102382|11|Nov/21/96| | | |  |Unbundled|sparc;|SUNWxt:2.1;SUNWxt2x:2.1;|X Terminal 2.1: Terminal software jumbo patch.
    102386|09|Oct/07/97|R|S| |  |2.4|sparc;|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: OLIT Patch
    102388|05|Oct/23/95| | | |  |Unbundled|sparc;|SUNWpexcl:2.2,REV=1.6.0;SUNWpexsv:2.2,REV=1.6.0;|PEX 2.2: Jumbo Patch
    102389|09|Oct/07/97|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: OLIT Patch
    102392|01|Apr/24/95| | | |  |Unbundled|sparc;102382-01;|SUNWxt1x:2.1;SUNWxt2x:2.1;|X Terminal 2.1: Terminal software patch.
    102400|05|Nov/08/95| | |O|  |Unbundled|||OBSOLETED by 103351
    102403|04|Feb/01/96| | | |  |Unbundled|sparc;|SUNWvmman:2.1;SUNWvxva:2.1;SUNWvxvm:2.1;|Volume Manager 2.1: Volume Manager Jumbo Patch
    102404|08|Oct/20/97| | | |Y |2.4|sparc;101907-09;102292-02;|SUNWoldst:3.4.17,REV=0.94.07.15;|OpenWindows 3.4: File Manager Patch
    102405|08|Oct/20/97| | | |Y |2.4_x86|i386;102293-03;|SUNWoldst:3.4.17,REV=0.94.07.15;|OpenWindows 3.4_x86: File Manager Patch
    102408|05|Nov/08/95| | |O|  |Unbundled|||OBSOLETED by 103351
    102417|01|Mar/21/95| | | |  |Unbundled|i386;|SPROsw:2.0.3;|ProWorks dbx 2.0.1: fix dbx 2.0.1 to read Solaris 2.5 scoped libra
    102432|10|Jan/09/96| | |O|  |Unbundled|102020-03;||OBSOLETED by 103290
    102437|03|Aug/16/95| | |O|  |2.4||102004-02|OBSOLETED by 102788
    102445|01|Feb/06/01| |S|O|  |2.3|sparc;|SUNWcsr:11.5.0,REV=2.0.19,PATCH=152;|Obsoleted by: 101318-94 SunOS 5.3: anyone can gain root access to
    102446|03|Mar/05/97| | | |  |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32;|SunOS 5.4: format patch
    102447|01|Jan/18/95| | | |  |2.3|sparc;|SUNWowMIT:3.3.18,REV=0.93.09.07;|OpenWindows 3.3: xdm cannot be used on NIS+ networks
    102450|03|Feb/24/98| | | |  |2.4|sparc;|SUNWxwplt:3.4.18,REV=0.94.07.15;SUNWxwslb:3.4.17,REV=0.94.07.07;|OpenWindows 3.4: Docviewer will not start when colormap is near fu
    102454|01|Mar/21/95| | | |  |Unbundled|||PC-NFS 5.1a: MS Windows crashing problem when using PC-NFSpro NetB
    102456|03|Jan/30/98| | | |  |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32;|SunOS 5.4: quota patch
    102457|03|Feb/17/98| | | |  |2.4_x86|i386;|SUNWcsu:11.5.1,REV=94.07.22.14.24;|SunOS 5.4_x86: quota patch
    102463|06|Mar/19/97| | |O|  |Unbundled|||OBSOLETED by 105579
    102465|02|Nov/08/95| | |O|  |Unbundled|||OBSOLETED by 103351
    102467|02|Jul/18/95| | | |  |Unbundled|||PC-NFSpro 1.1, 1.1.1:  jumbo patch
    102474|01|May/16/95| | | |  |Unbundled|sparc;|SUNWxilow:1.1,REV=2.0.0;|XIL 1.1: Function call to xil functions causes error
    102476|02|May/12/95| | | |  |2.3|sparc;|SUNWjwrqd:1.6,REV=1.0.25;|OpenWindows 3.3 (JFP 2.3): Fontmanager generates X_QueryColors err
    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
    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 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
    102521|01|Jul/18/95| | | |  |2.4|sparc;|SUNWnisu:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: rpc.nisd leaks one file descriptor each checkpoint requ
    102523|01|May/23/95| | | |  |2.3|sparc;|SUNWnisu:11.5.0,REV=2.0.18;|SunOS 5.3: rpc.nisd leaks one file descriptor for each checkpoint
    102527|01|Apr/27/95| | | |  |Unbundled|sparc;|SUNW3270c:8.0;|SunLink Client 3270 8.0 - patch for BSC 3270 ONLY
    102529|01|Aug/10/95| | | |  |2.4|sparc.sun4;sparc.sun4c;sparc.sun4d;sparc.sun4e;sparc.sun4m;|SUNWcar:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: kgmon -i sometimes hangs the system on sun4m
    102533|04|Aug/19/96| | | |  |Unbundled|sparc;|SUNWguide:3.0.1,REV=2.0;|DevGuide 3.0.1: Developers Guide Patch
    102534|01|May/17/95| | | |  |2.4|sparc.sun4;sparc.sun4c;sparc.sun4d;sparc.sun4e;sparc.sun4m;|SUNWcar:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: syslog msgs not outputted
    102537|05|Dec/13/99| | | |Y |Unbundled|sparc;|SUNWsSP:1.0,REV=95.04.12.13.47;SUNWsSPA:1.0,REV=95.04.12.14.01;SUNWsSPC:1.0,REV=95.04.17.02.45;SUNWsSPE:1.0,REV=95.04.12.14.04;|SUNprint 1.0: SUNprint patch (Solaris 2.x version) and Y2000
    102538|02|Oct/20/97| | | |Y |2.4|sparc;|SUNWolimt:3.4.16,REV=0.94.06.23;|OpenWindows 3.4: Imagetool fixes
    102542|02|Oct/20/97| | | |Y |2.4_x86|i386;|SUNWolimt:3.4.16,REV=0.94.06.23;|OpenWindows 3.4_x86: Imagetool fixes
    102546|01|Jun/29/95|R|S| |  |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: drvconfig changes permissions on existing device
    102552|02|Jul/12/95| | | |  |2.4|sparc;|SUNWcsr:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: semsys fixes
    102554|01|Jun/02/95| | | |  |2.3|sparc;|SUNWowmod:3.3.18,REV=0.93.09.07;|OpenWindows 3.3: hwc prevents FB driver cleanup on exit.
    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
    102590|02|Jun/29/95| | | |  |2.4_x86|i386.i86pc;|SUNWcar:11.5.1,REV=94.07.19.13.11;|SunOS 5.4_x86: mcis:initial boot after pkgadd installation hangs
    102592|04|Apr/22/98| | | |  |Unbundled|i386;|SUNWipx:1.1;|PC Protocol Services 1.1 : Updates patch for Lotus Notes related i
    102593|02|Jun/29/95| | | |  |2.4_x86|i386;i386.i86pc;|SUNWcar:11.5.1,REV=94.07.19.13.11;SUNWcsr:11.5.1,REV=94.07.18.19.02;SUNWhea:11.5.1,REV=94.07.18.19.02;|SunOS 5.4_x86: st driver fixes
    102595|02|Oct/20/95| | | |  |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32;|SunOS 5.4: Updated zoneinfo files
    102596|02|Sep/10/97| | | |  |2.4_x86|i386;|SUNWcsu:11.5.1,REV=94.07.22.14.24;|SunOS 5.4_x86: Updated zoneinfo files
    102601|02|Oct/18/95| | | |  |2.4|sparc;|SUNWaocom:1.2,REV=1.0.21;SUNWaxcom:1.2,REV=1.0.20;|OpenWindows 3.4: XIM XI18N jumbo patch for zh_TW (Taiwan) locale
    102602|02|Oct/18/95| | | |  |2.4_x86|i386;|SUNWaocom:1.2,REV=1.0.21;SUNWaxcom:1.2,REV=1.0.20;|OpenWindows 3.4_x86: XIM XI18N jumbo patch for zh_TW (Taiwan) loca
    102603|05|May/10/96| | | |  |2.3|sparc;|SUNWjwrqd:1.6,REV=1.0.25;|OpenWindows 3.3 (JFP 2.3): type3creator patch
    102608|04|Jun/19/97| | | |  |2.4|sparc;|SUNWnisu:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: nisaddent and nispopulate fixes
    102609|04|Jun/19/97| | | |  |2.4_x86|i386;|SUNWnisu:11.5.1,REV=94.07.18.19.02;|SunOS 5.4_x86: nisaddent and nispopulate fixes
    102610|02|Sep/08/95| | | |  |Unbundled|sparc;101318-71;101734-03;101945-27;102038-02;|SUNWnfr:3.0.1;|SunLink FDDI/S 3.0.1: jumbo patch
    102611|02|Apr/08/96| | | |  |2.4_x86|i386;|SUNWcsr:11.5.1,REV=94.07.18.19.02;|SunOS 5.4_x86: ufsboot fix
    102614|01|Jun/06/95| | | |  |Unbundled|||PC-NFS 5.1a: does not allow user to dismount file systems
    102615|01|Jul/11/95|R|S| |  |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: praudit core dumps on certain audit trails
    102616|01|Jun/13/95| | | |  |Unbundled|||PC-X 1.0: GPF when PC-X starts up
    102619|03|Jun/10/97| | | |  |2.4|sparc;|SUNWcsr:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: fixes for HSFS (CD-ROM) filesystem
    102620|02|Jun/10/97| | | |  |2.4_x86|i386;|SUNWcsr:11.5.1,REV=94.07.18.19.02;|SunOS 5.4_x86: fixes for HSFS cd filesystem
    102622|01|Aug/31/95|R|S| |  |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: auditd crashes if hard limit is exceeded
    102625|01|Jun/13/95| | | |  |Unbundled|||PC-X 1.0: XDCMP does not work in broadcast mode in PCX 1.0
    102628|01|Jul/21/95| |S| |  |Unbundled|102629-01;||Firewall-1 1.0.7: filter doesn't load w/ 'failed to bind interface
    102629|01|Jul/19/95| |S|O|  |Unbundled|||OBSOLETED by 103334
    102631|01|Jul/20/95| |S| |  |Unbundled|||Firewall-1 1.0.7: Large filters fail to load
    102633|01|Jul/21/95| |S| |  |Unbundled|||Firewall-1 1.0.7: Filters with many objects fail to compile
    102634|01|Jul/21/95| |S| |  |Unbundled|||Firewall-1 1.0.7: Filters with many objects fail to compile
    102642|03|Nov/03/95| | | |  |Unbundled|sparc;|SUNWpcdhc:1.5;SUNWpcnet:1.5;SUNWtbesl:1.5;|PC-Admin 1.5: Jumbo Patch
    102645|03|Nov/03/95| | | |  |Unbundled|i386;|SUNWpcdhc:1.5;SUNWpcnet:1.5;SUNWtbesl:1.5;|PC-Admin 1.5: Jumbo Patch
    102651|01|Oct/31/95| | | |  |Unbundled|||PC-NFS 5.1a: FTP unable to understand VAX filesystems/directories
    102652|01|Jul/11/95| | | |  |Unbundled|sparc;|SUNWmfdev:1.2.3,REV=2.1;|Motif 1.2.3: Developer kit fixes
    102653|01|Jul/21/95| | | |  |Unbundled|||PC-NFS 5.1DE: German TelnetW jumbo patch
    102654|02|Jan/07/98|R|S| |  |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: /usr/lib/nfs/mountd patch
    102655|01|Jun/27/95| | | |  |Unbundled|||SolarNet PC-Admin 1.5: NetBIOS interface does not work.
    102656|01|Jun/26/95|R|S| |  |2.4|sparc;|SUNWcsr:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: /dev/qec should protect against being opened directly
    102657|01|Jul/12/95| | | |  |Unbundled|sparc;|SUNWxilrt:1.2,REV=3.4.0;|XIL 1.2: Print Preview in 256 color mode causes core dump on leo f
    102658|01|Jul/12/95| | | |  |Unbundled|i386;|SUNWxilrt:1.2,REV=3.4.0;|XIL 1.2: Print Preview in 256 color mode causes core dump on leo f
    102660|03|Apr/05/96| | | |  |Unbundled|sparc;|SUNWccm:1.0,REV=1.0;SUNWclmon:1.0,REV=1.0;SUNWdlm:1.0,REV=1.0;SUNWdlmd:1.0,REV=1.0;SUNWmond:1.0,REV=1.0;SUNWpdb:1.0,REV=1.0;|SPARCcluster PDB 1.0: Jumbo patch
    102664|01|Oct/25/95|R| | |  |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32;|SunOS 5.4: data fault in scanc() due to bad "cp" argument
    102666|01|Jul/19/95|R| | |  |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: data fault in scanc() due to bad "cp" argument
    102668|01|Jul/13/95| | | |  |Unbundled|||PC-NFSpro 1.1.1: Private Control sequences not recognized in Telne
    102670|03|May/09/96| | | |  |Unbundled|sparc;102432-08;|SUNWvxvm:vxvm2.1/cvm1.0;|SPARCcluster PDB 1.0:  Cluster Volume Manager Jumbo Patch
    102671|02|Nov/28/95| | | |  |2.4|sparc;|SUNWxwplt:3.4.18,REV=0.94.07.15;|OpenWindows 3.4: libserverdps Jumbo patch
    102676|01|Jul/06/95| | | |  |2.4_x86|i386;|SUNWxwplt:3.4.18,REV=0.94.07.15;|OpenWindows 3.4_x86: bitmap sizing problem on Japanese Answerbook
    102677|01|Jul/10/95| | | |  |2.4|sparc;|SUNWnisu:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: nispasswd coredumps in malloc with SEGV
    102679|01|Jul/10/95| | | |  |2.3|sparc;|SUNWnisu:11.5.0,REV=2.0.18;|SunOS 5.3: nispasswd coredumps in malloc with SEGV
    102680|04|Aug/27/96| |S|O|  |2.4|||OBSOLETED by 103263
    102681|01|Sep/11/95|R|S|O|  |2.4_x86|i386;|SUNWcsu:11.5.1,REV=94.07.22.14.24;|Obsoleted by: 101946-64 SunOS 5.4_x86: dump/rwall still have utmp
    102685|03|Mar/30/01|R|S| |  |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32,PATCH=392;|SunOS 5.4: /usr/lib/nfs/mountd patch
    102686|03|Mar/30/01|R|S| |  |2.4_x86|i386;|SUNWcsu:11.5.1,REV=94.07.22.14.24,PATCH=369;|SunOS 5.4_x86: /usr/lib/nfs/mountd patch
    102687|02|Sep/06/95| | | |  |Unbundled|sparc;|SUNWemcpa:1.1;|Solstice Enterprise Manager 1.1 CMIP MPA jumbo patch
    102688|03|Sep/20/95| | | |  |Unbundled|||PC-X 1.1: GPF when running CDE over PC-X
    102689|01|Jul/19/95| | | |  |2.3|sparc;|SUNWowMIT:3.3.18,REV=0.93.09.07;|OpenWindows 3.3: last doesn't work with xdm
    102690|06|May/05/98| | | |  |Unbundled|sparc;|SUNWopcl:9.0;|SunLink SNA 3270 Gateway 9.0: client3270 can't comm with SNA Gatew
    102692|01|Aug/11/95| | | |  |Unbundled|sparc;|SUNWsmsha:2.0.1,REV=1.0.0;|ShowMe SharedApp 2.0.1: cannot call SunOS 4.1.4 machine
    102693|12|Oct/12/99|R|S| |Y |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32;|SunOS 5.4: /usr/bin/at and /usr/sbin/cron patch
    102694|12|Oct/12/99|R|S| |Y |2.4_x86|i386;|SUNWcsu:11.5.1,REV=94.07.22.14.24;|SunOS 5.4_x86: /usr/bin/at and /usr/sbin/cron patch
    102695|01|May/08/96| | | |  |2.4|sparc;|SUNWcsr:11.5.1,REV=94.07.15.22.10;SUNWcsu:11.5.1,REV=94.07.22.14.32;|SunOS 5.4: nss_files.so is built without -lnsl
    102697|04|Sep/05/96| | | |  |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32;|SunOS 5.4: syslogd fixes
    102699|01|Aug/15/95| | | |  |2.3|sparc;|SUNWesu:11.5.0,REV=2.0.18;|SunOS 5.3: patch in asa for DevPro SC4.0 fortran compiler
    102700|01|Aug/15/95| | | |  |2.4|sparc;|SUNWesu:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: patch in asa for DevPro SC4.0 fortran compiler
    102702|01|Aug/29/95| | | |  |Unbundled|||PC-NFSpro 1.1.1: Windows crashes when Dbase for dos is run in wind
    102704|02|Sep/15/95|R|S| |  |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32;SUNWnisu:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: jumbo patch for NIS commands
    102705|02|Sep/15/95|R|S| |  |2.4_x86|i386;|SUNWcsu:11.5.1,REV=94.07.22.14.24;SUNWnisu:11.5.1,REV=94.07.18.19.02;|SunOS 5.4_x86: jumbo patch for NIS commands
    102707|02|Sep/15/95|R|S| |  |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;SUNWnisu:11.5.0,REV=2.0.18;|SunOS 5.3: jumbo patch for NIS commands
    102709|01|Aug/04/95| | | |  |Unbundled|||PC-NFS 5.1a: ping -s pcname 300 1 REBOOTS or HANGS using ODI drive
    102710|01|Aug/03/95| | | |  |Unbundled|102467;||PC-NFSpro 1.1.1: therefore unable to correctly display files and d
    102711|02|Jul/11/97|R|S| |  |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32;SUNWscpu:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: usr/bin/ps and usr/ucb/ps patch
    102712|02|Jul/07/97|R|S| |  |2.4_x86|i386;|SUNWcsu:11.5.1,REV=94.07.22.14.24;SUNWscpu:11.5.1,REV=94.07.18.19.02;|SunOS 5.4_x86: usr/bin/ps and usr/ucb/ps patch
    102713|04|Aug/06/97| | | |  |Unbundled|sparc;102874-06;102312-08;|SUNWappc:9.0;|SunLink SNA Peer-to-Peer (API) 9.0: CPIC header compilation error
    102716|01|Aug/24/95| | | |  |2.4|sparc;|SUNWdoc:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: eqn doesn't appear to handle bar properly under solaris
    102718|04|Feb/10/98| | | |Y |2.4|sparc;|SUNWjbcp:1.5,REV=1.0.40;|SunOS 5.4 (JFP 2.4): Japanese BCP libc patch
    102722|01|Aug/24/95| | | |  |2.4|sparc;|SUNWjfpr:2.6,REV=1.0.40;|SunOS 5.4: Run-level change runs S90loc.ja.cssd twice
    102723|02|Aug/28/95| | | |  |Unbundled|102467-02;||PC-NFSpro 1.1.1: GPF error in File Manager.
    102728|02|May/07/96| | | |  |Unbundled|sparc;|SUNWisdn:1.0.2;SUNWisdni:1.0.2;SUNWisdnm:1.0.2;SUNWisdnu:1.0.2,REL=PATCH;|SunISDN 1.0.2: ETSI fix
    102730|01|Aug/15/95| | | |  |Unbundled|sparc;|SUNWsmvid:2.0.1,REV=1.0.1;|ShowMe Video 2.0.1: Video breaks up when sending at high res.
    102731|01|Aug/23/95| | | |  |2.4_x86|i386;|SUNWjfpr:2.6,REV=1.0.40;|SunOS 5.4_x86: Run-level change runs S90loc.ja.cssd twice
    102732|03|Sep/29/95| | | |  |Unbundled|||PC-NFS 5.1: File corruption on a solaris 2.x server
    102734|06|Nov/09/01|R|S| |  |2.4|sparc;101973-40;|SUNWtltk:3.4.16,REV=0.94.06.23,PATCH=06;SUNWtltkd:3.4.16,REV=0.94.06.23,PATCH=06;SUNWtltkm:3.4.16,REV=0.94.06.23,PATCH=06;|OpenWindows 3.4: ToolTalk 1.1.2: fix core dumps, leaks, ODS instal
    102735|01|Aug/25/95| | |O|  |Unbundled|||OBSOLETED by 102865
    102736|01|Jan/09/96| | | |  |Unbundled|sparc;|SUNWjxf3:1.2,REV=1.0.54;|NeWSprint 2.5B: Build font directory to share it with J-OpenWindow
    102737|01|Aug/30/95| | | |  |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32;|SunOS 5.4: join(1) core dumps when using more than 25 fields
    102739|02|Jan/26/96| | | |  |Unbundled|||PC-NFS 5.1a: Cannot mount a home directory using the NIS map auto.
    102741|01|Oct/30/95|R| | |  |2.4|sparc;|SUNWlibm:5.4,REV=94.04.14;SUNWlibms:5.4,REV=94.04.14;|SunOS 5.4: libm can hit SEGV in multi-threaded mode
    102742|01|Jan/18/96|R| | |  |2.4_x86|i386;|SUNWlibm:5.4,REV=94.04.14;SUNWlibms:5.4,REV=94.04.14;|SunOS 5.4_x86: libm can hit SEGV in multi-threaded mode
    102746|01|Sep/29/95| | | |  |Unbundled|sparc;|SPROvisu:1.0;|SPARCworks Visual 1.0: on-line manual
    102752|01|Aug/24/95| | | |  |2.4|sparc;|SUNWhea:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: /usr/include/thread.h fix
    102754|01|Aug/24/95| | | |  |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32;|SunOS 5.4: rpld fixes
    102755|01|Aug/24/95| | | |  |2.4_x86|i386;|SUNWcsu:11.5.1,REV=94.07.22.14.24;|SunOS 5.4_x86: rpld fixes
    102756|01|Oct/30/95|R|S| |  |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32;|SunOS 5.4: expreserve still has security problem
    102757|01|Oct/30/95|R|S| |  |2.4_x86|i386;|SUNWcsu:11.5.1,REV=94.07.22.14.24;|SunOS 5.4_x86: expreserve still has security problem
    102758|01|Aug/31/95| | | |  |Unbundled|sparc;101458-03;|SUNWdniKR:8.0;|Sunlink DNI 8.0: kernel patch - SUNWdniKR patch
    102761|01|Oct/06/95| | | |  |Unbundled|||PC-NFSPro 1.1.1: LPD GPF's when MS-Excel 5.0a changes printers
    102769|08|Mar/30/01|R|S| |  |2.4|sparc;101945-61;|SUNWcsu:11.5.1,REV=94.07.22.14.32,PATCH=391;|SunOS 5.4: statd fixes
    102770|08|Mar/30/01|R|S| |  |2.4_x86|i386;101946-54;|SUNWcsu:11.5.1,REV=94.07.22.14.24,PATCH=368;|SunOS 5.4_x86: statd fixes
    102771|01|Sep/06/95| | | |  |Unbundled|sparc;|SUNWemalb:1.1;|Solstice Enterprise Manager 1.1: reduce memory consumption.
    102773|02|Mar/17/97|R|S| |  |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32;|SunOS 5.4: in.tftpd patch
    102774|02|Mar/17/97|R|S| |  |2.4_x86|i386;|SUNWcsu:11.5.1,REV=94.07.22.14.24;|SunOS 5.4_x86: in.tftpd patch
    102775|01|Dec/01/95| | | |  |Unbundled||102467-01, 102467-02|PC-NFSpro-de 1.1.1 rev A:  jumbo patch ver. 1.1.1.1
    102776|03|Oct/02/97| | | |Y |2.4|sparc;|SUNWxwopt:3.4.15,REV=0.94.06.02;|OpenWindows 3.4: xterm patch
    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
    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
    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.
    102796|10|Apr/24/96| | | |  |Unbundled|||PC-X 1.1: Keyboards don't work properly with PC-X 1.1
    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.
    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
    102836|02|Oct/20/97| | | |Y |2.5_x86|i386;|SUNWoldst:3.5.21,REV=0.95.08.23;|OpenWindows 3.5_x86: filemgr fixes
    102837|01|Nov/27/95| | |O|  |2.5|||OBSOLETED by 103251
    102838|01|Nov/27/95| | | |  |2.5_x86|i386;|SUNWoldst:3.5.21,REV=0.95.08.23;|OpenWindows 3.5_x86: Calendar Manager display is incorrect for MET
    102839|07|Dec/21/99|R|S| |Y |2.5|sparc;103210-25;106667-01;106666-01;102832-06;|SUNWoldst:3.5.21,REV=0.95.08.23;|OpenWindows 3.5: Mailtool patch
    102840|06|Dec/21/99|R|S| |Y |2.5_x86|i386;104242-03;106669-01;106668-01;102833-03;|SUNWoldst:3.5.21,REV=0.95.08.23;|OpenWindows 3.5_x86: Mailtool patch
    102841|01|Nov/27/95| | | |  |2.5|sparc;|SUNWolrte:3.5.21,REV=0.95.08.23;SUNWolslb:3.5.21,REV=0.95.08.23;|OpenWindows 3.5: OLGX (libolgx) Xsun memory leak with Caption widg
    102843|01|Nov/27/95| | | |  |2.5_x86|i386;|SUNWolrte:3.5.21,REV=0.95.08.23;SUNWolslb:3.5.21,REV=0.95.08.23;|OpenWindows 3.5_x86: OLGX (libolgx) Xsun memory leak with Caption
    102846|03|Oct/20/97| | | |Y |2.5|sparc;|SUNWolimt:3.5.21,REV=0.95.08.23;|OpenWindows 3.5: Imagetool fixes
    102849|02|Oct/20/97| | | |Y |2.5_x86|i386;|SUNWolimt:3.5.21,REV=0.95.08.23;|OpenWindows 3.5_x86: Imagetool fixes
    102850|06|Jan/26/00|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: OLIT Patch
    102851|05|Sep/10/98|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: OLIT Jumbo Patch
    102852|01|Oct/13/95| | | |  |2.4|sparc;|SUNWjfpu:2.6,REV=1.0.40;|SunOS 5.4 (JFP 2.4): jtops don't handle ^L correctly.
    102853|04|Sep/21/98| | | |  |Unbundled|sparc;|SUNWpcdhc:1.5.1.0;SUNWpcnet:1.5.1.0;SUNWpcpro:1.5.1.0;|PC-Admin 1.5.1: Upgrade Kit for PCNFSPRO 2.0 & Network Client 3.0
    102854|01|Nov/20/95| | | |  |2.4|sparc;|SUNWpppk:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: Windows 95 PPP causes Solaris to crash every time
    102855|01|Nov/20/95| | | |  |2.4_x86|i386;|SUNWpppk:11.5.1,REV=94.07.18.19.02;|SunOS 5.4_x86: Windows 95 PPP causes Solaris to crash every time
    102856|01|Nov/15/95| | | |  |2.4|sparc;|SUNWbnuu:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: uucico dumps core receiving files with the "f" protocol
    102859|02|Feb/11/97| | |O|  |Unbundled|||OBSOLETED by 106804
    102860|01|Oct/02/95| | | |  |Unbundled|||PC-NFSpro 1.1.1: Specific route option routes through the default
    102861|01|Oct/16/95| | | |  |Unbundled|||PC-NFS 5.1a: Corrects between US DST periods and European DST peri
    102862|01|Oct/10/95| | | |  |Unbundled|102467-02;||PC-NFSpro 1.1.1: hangs when mounting OS/2 file system
    102863|02|Mar/21/96| | | |  |Unbundled|102467-02;||PC-NFSpro 1.1.1: Non-blocking send does not always return bytes se
    102865|02|Oct/31/95| | |O|  |Unbundled|||OBSOLETED by 103837
    102869|01|Oct/24/95| | |O|  |Unbundled|||OBSOLETED by 103016
    102873|03|Sep/20/96| | |O|  |2.4|||OBSOLETED by 102693
    102874|13|Dec/11/98| | | |  |Unbundled|sparc;102312-15;|SUNWlu62:9.0;|SunLink SNA Logical Unit 6.2: patch
    102884|01|Oct/16/95| | | |  |Unbundled|sparc;|SUNWxilow:1.2,REV=3.4.0;|XIL 1.2: Xil memory code crashes in xil_bilinear_scale_2x_BYTE
    102885|01|Oct/19/95| | | |  |Unbundled|i386;|SUNWxilow:1.2,REV=3.4.0;|XIL 1.2_x86: Xil memory code crashes in xil_bilinear_scale_2x_BYTE
    102886|01|Sep/13/95| | | |  |Unbundled|||PC-NFSpro 1.1.1: FTP does not display remote files and directories
    102887|01|Oct/31/95| | | |  |Unbundled|102467-02;||PC-NFSpro 1.1.1: Corrupts pc-nfspro .lic license database
    102889|02|Nov/15/95| | | |  |Unbundled|sparc;|SUNWfw:1.2.1;|Solstice FireWall 1.2.1: Jumbo Patch w/ Network Address Translatio
    102891|02|Nov/15/95| | | |  |Unbundled|i386;|SUNWfw:1.2.1;|Solstice FireWall-1 1.2.1: Network Address Translation patch for i
    102892|01|Jan/18/96|R| | |  |2.3|sparc;|SUNWlibm:3.0,REV=93.09.07;SUNWlibms:3.0,REV=93.09.07;|SunOS 5.3: libm can hit SEGV in multi-threaded mode
    102893|01|Oct/19/95| | |O|  |Unbundled|||OBSOLETED by 103090
    102894|03|Jul/13/98| | | |  |Unbundled|i386;|SUNWpcdhc:1.5.1.0;SUNWpcnet:1.5.1.0;SUNWpcpro:1.5.1.0;|PC-Admin 1.5.1_x86: Upgrade Kit for PCNFSPRO 2.0.
    102899|02|May/01/98| | | |  |Unbundled|sparc;|SUNWpcnet:1.5;SUNWpcpro:1.5;|PC-Admin: Upgrade Kit for PCNFSPRO 2.0 & Solstice Network Client 3
    102900|01|Dec/13/95| | | |  |Unbundled|i386;|SUNWpcnet:1.5;SUNWpcpro:1.5;|PC-Admin 1.5: Upgrade Kit for PCNFSPRO 2.0.
    102907|02|Mar/25/96| | | |  |Unbundled|sparc;|SUNWwabi:2.0;|Wabi 2.0: Japanese jumbo patch (sparc version)
    102908|02|Mar/25/96| | | |  |Unbundled|i386;|SUNWwabi:2.0;|Wabi 2.0: Japanese version (x86) jumbo patch
    102913|02|Jan/06/97| | | |  |Unbundled|||PC-NFSpro 1.1.1: Time is not set correctly for non-US DST periods.
    102914|01|Jan/08/97| | | |  |Unbundled|i386;|SUNWpcdhc:1.5.1.0;|PC-Admin 1.5.1: DHCP patch for i386.
    102915|01|Nov/15/95| | | |  |2.4|sparc;|SUNWinst:5.4,REV=1.0.94.07.22.10.50;|SunOS 5.4: touch AUTOINSTALL and reboot; an expr error results
    102916|01|Jan/09/95| | | |  |Unbundled|||PC-NFS 5.1aDE: fixes problem w/ kybd transaltion table in telnet.e
    102917|02|Oct/16/95| | | |  |Unbundled|||PC-NFS 5.1a: fixes keyboard xlation problem and line drawing probl
    102922|05|Jun/08/99|R|S| |  |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32;|SunOS 5.4: inetd fixes
    102923|05|Jun/08/99|R|S| |  |2.4_x86|i386;|SUNWcsu:11.5.1,REV=94.07.22.14.24;|SunOS 5.4_x86: inetd fixes
    102924|26|Mar/24/98| | | |  |Unbundled|sparc;|SUNWsunpc:4.1;|SunPC 4.1: for Solaris 2.4 2.5, 2.5.1, 2.6 and sparc architectures
    102929|02|Nov/17/95| | | |  |Unbundled|||PC-ADMIN 1.5: Ignores groups larger than 512 bytes
    102931|02|Aug/13/96| | | |  |Unbundled|sparc;|SPROada:2.1.1;|SPARCompiler Ada 2.1.1: iMPact Ada license, POSIX fixes
    102932|05|Jun/01/99|R|S| |  |2.3|sparc;101318-92;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: statd fixes
    102934|10|May/13/97| | | |  |Unbundled|sparc;|SPROcpl:4.0;SPROlang:4.0;|SPARCompiler 4.0: Patch for C++ 4.1 on Solaris 2.x
    102935|10|Dec/03/96| | | |  |Unbundled|sparc;|SPROf77:4.0;SPROlang:4.0;SPROlib77:4.0;SPROmrf77:4.0;|SPARCompiler 4.0: FORTRAN 77 patch for Solaris 2.x
    102937|09|Apr/16/97| | | |  |Unbundled|sparc;|SPROlang:4.0;SPROpas:4.0;|SPARCompiler 4.0: Pascal 4.0 patch for Solaris 2.x
    102943|01|Nov/08/95| | | |  |Unbundled|||PC-NFS 5.1a: Toolkit based TSR's occasionally hang
    102944|03|Sep/12/96| | | |  |Unbundled|sparc;|SUNWipx:1.1;|PC Protocol Services 1.1: Jumbo patch for Lotus Notes related issu
    102945|01|Nov/09/95| | |O|  |Unbundled|||OBSOLETED by 103016
    102947|01|Nov/03/95| | | |  |Unbundled|||PC-ADMIN 1.5: Dos Client FTPW field lenght truncates at 16 chars
    102948|02|Mar/18/96| | | |  |Unbundled|sparc;|SUNWte320:8.0;|SunLink TE320 8.0 patch - TE320 fixes
    102950|01|Nov/03/95| | | |  |Unbundled|||Cobol 3.2: Cobol Jumbo Patch
    102951|01|Aug/16/96| | | |  |2.4_x86|i386;|SUNWbtool:11.5.1,REV=94.07.18.19.02;|SunOS 5.4_x86: yacc core dumps on valid input with segmentation fa
    102952|01|Aug/16/96| | | |  |2.4|sparc;|SUNWbtool:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: yacc core dumps on valid input with segmentation fault
    102953|01|Nov/16/95| | | |  |2.4|sparc;|SUNWhea:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: #pragma pack(2) in timeb.h causes SIGBUS errors
    102955|09|Oct/09/96| | | |  |Unbundled|sparc;|SPROcc:4.0;SPROlang:4.0;|SPARCompiler C 4.0: C patch for Solaris 2.x
    102956|01|Dec/14/95| | | |  |2.4|sparc;|SUNWpppk:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: PPP diag crashes if non-implemented option received
    102957|01|Jan/17/96| | | |  |2.4_x86|i386;|SUNWpppk:11.5.1,REV=94.07.18.19.02;|SunOS 5.4_x86: PPP diag crashes if non-implemented option received
    102958|20|Mar/24/99| | | |  |Unbundled|sparc;|SUNWxgldg:4.0,REV=3.0.27;SUNWxglrt:4.0,REV=3.0.27;|XGL 3.2: XGL Patch (unstripped version)
    102959|20|Mar/24/99|R| | |  |Unbundled|sparc;|SUNWxgldg:4.0,REV=3.0.27;SUNWxglrt:4.0,REV=3.0.27;|XGL 3.2: XGL Patch (stripped version)
    102960|01|Dec/06/95|R|S| |  |2.4|sparc;|SUNWscpu:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: vipw has security problem
    102961|01|Dec/06/95|R|S| |  |2.4_x86|i386;|SUNWscpu:11.5.1,REV=94.07.18.19.02;|SunOS 5.4_x86: vipw has a security problem
    102962|01|Dec/06/95|R|S| |  |2.3|sparc;|SUNWscpu:11.5.0,REV=2.0.18;|SunOS 5.3: vipw has a security problem
    102963|01|Mar/01/96| | | |  |2.3|sparc;|SUNWvolu:11.5.0,REV=2.0.18;|SunOS 5.3: changed to past time using date command, floppy won't e
    102964|16|Jul/23/01|R|S| |  |2.5|sparc;|SUNWlpr:11.5.1,REV=95.10.27.15.23;SUNWlps:11.5.1,REV=95.10.27.15.23;SUNWlpu:11.5.1,REV=95.10.27.15.23;SUNWscpu:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: lp patch
    102965|16|Aug/31/01|R|S| |  |2.5_x86|i386;|SUNWlpr:11.5.1,REV=95.10.27.15.21;SUNWlps:11.5.1,REV=95.10.27.15.21;SUNWlpu:11.5.1,REV=95.10.27.15.21;SUNWscpu:11.5.1,REV=95.10.27.15.21;|SunOS 5.5_x86: lp patch
    102971|01|Dec/11/95|R|S| |  |2.5|sparc;|SUNWscpu:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: vipw fix
    102972|01|Dec/11/95|R|S| |  |2.5_x86|i386;|SUNWscpu:11.5.1,REV=95.10.27.15.21;|SunOS 5.5_x86: vipw fix
    102974|01|Dec/06/95| | | |  |2.5_x86|i386;|SUNWvolu:11.5.1,REV=95.10.27.15.21;|SunOS 5.5_x86: dev_floppy.so.1 fix
    102977|04|Aug/01/96| | | |  |2.5|sparc.sun4c;sparc.sun4d;sparc.sun4m;sparc.sun4u;|SUNWcar:11.5.1,REV=95.10.27.15.23;SUNWcar:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: zsh driver fixes
    102979|12|Aug/10/98| | | |  |2.5|sparc;|SUNWcsr:11.5.1,REV=95.10.27.15.23;SUNWhea:11.5.1,REV=95.10.27.15.23;SUNWhmd:11.5.1,REV=95.10.27.15.23;SUNWhmdu:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: hme driver patch
    102980|18|Jun/16/98|R|S| |  |2.5|sparc;103667-01;|SUNWcsr:11.5.1,REV=95.10.27.15.23;SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: /usr/lib/sendmail fixes
    102981|18|Jun/16/98|R|S| |  |2.5_x86|i386;103668-01;|SUNWcsr: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/sendmail fixes
    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
    103014|02|Jul/17/96| | | |  |2.5_x86|i386;|SUNWpsdcr:1.0.0,REV=95.10.27.15.21;|SunOS 5.5_x86: kd fixes
    103015|01|Dec/08/95| | | |  |Unbundled|i386;|SUNWpexcl:2.2,REV=1.6.0;SUNWpexsv:2.2,REV=1.6.0;|PEX 2.2_x86: Jumbo Patch
    103016|01|Dec/04/95| | | |  |Unbundled|sparc;|SUNWatm:1.0;|SunATM 1.0: System panic while running SunVTS on SunFire
    103017|05|Aug/29/96| | |O|  |2.5|||OBSOLETED by 104793
    103021|03|Apr/14/97| | | |  |2.5|sparc.sun4c;sparc.sun4d;sparc.sun4m;sparc.sun4u;|SUNWcar:11.5.1,REV=95.10.27.15.23;SUNWcar:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: zs driver patch
    103023|02|Dec/11/95| | |O|  |Unbundled|||OBSOLETED by 103789
    103024|03|Jul/10/97|R|S| |  |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: libvolmgt patch
    103026|01|Dec/19/95| | |O|  |2.5|||OBSOLETED by 102979
    103027|08|Nov/07/96| | | |  |Unbundled|sparc;|SPROdbgr:3.1;|SPARCworks 3.1: dbx fixes
    103037|03|Feb/27/96| | | |  |Unbundled|sparc;|SUNWccsnd:1.0;|Cooperative Console 1.0: cc_sender is not working with two diffren
    103039|13|Jul/13/98| | | |  |Unbundled|i386;|SUNWllc2a:1.20;SUNWllc2b:1.20;SUNWx25a:1.20;SUNWx25b:1.20;|SunLink X25 8.0.2_x86: Patch (i386)
    103040|01|Dec/13/95| | | |  |Unbundled|i386;|SUNWcosia:8.0.2;SUNWcosic:8.0.2;SUNWcosid:8.0.2;|Sunlink OSI 8.0.2: (STACK) Jumbo Patch for x86
    103041|02|Oct/18/96| | | |  |2.5|sparc.sun4c;sparc.sun4d;sparc.sun4m;sparc.sun4u;|SUNWcar:11.5.1,REV=95.10.27.15.23;SUNWcar:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: stc driver patch
    103043|08|Dec/02/97| | | |  |Unbundled|sparc;|SUNWprsto:2.4.2;|Prestoserve 2.4.2: Jumbo Patch
    103044|02|Apr/01/97|R|S| |  |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: libvolmgt patch
    103045|02|Dec/13/95| | | |  |Unbundled|||Solarnet PC-X 1.1.1: NFM doesn't work over Serial Connection
    103048|03|Jul/29/96| | |O|  |2.5|||OBSOLETED by 103187
    103053|08|Oct/29/98| | | |  |Unbundled|sparc;|SUNWnsktu:95.08.07.15.02;|NSKIT 1.2: NSKIT v1.2 Patch
    103054|09|Oct/06/98| | | |  |Unbundled|i386;|SUNWnsktu:95.08.07.15.04;|NSKIT 1.2: Patch for NSKIT v1.2
    103056|11|Jul/24/98| | | |  |Unbundled|sparc;|SUNWcosia:8.1;SUNWcosic:8.1;SUNWcosid:8.1;|Sunlink OSI 8.1: Update Patch
    103057|08|Jan/27/97| | | |  |Unbundled|i386;|SUNWcosia:8.1;SUNWcosic:8.1;SUNWcosid:8.1;|Sunlink OSI 8.1: (STACK)
    103059|01|Jan/08/96| | | |  |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: automountd /dev rdev not in mnttab
    103060|05|Sep/16/96| | |O|  |2.5|||OBSOLETED by 103187
    103061|05|Sep/16/96| | |O|  |2.5_x86|||OBSOLETED by 103188
    103062|01|Dec/15/95| | |O|  |2.4|101945-06;||OBSOLETED by 101945
    103063|01|Jan/31/96| | |O|  |2.3|||OBSOLETED by 101318
    103064|01|Feb/05/96| | |O|  |2.4|||OBSOLETED by 101973
    103066|01|Jan/31/96| | |O|  |2.5|||OBSOLETED by 103187
    103067|01|Jan/31/96| | |O|  |2.5_x86|||OBSOLETED by 103188
    103068|15|Jan/28/99| | | |  |Unbundled|sparc;|SUNWllc2a:1.23;SUNWx25a:1.23;SUNWx25b:1.23;|SunLink X25 9.0: Patch
    103069|01|Jan/11/96| | | |  |Unbundled|||PC-NFS 5.1FR: pcnfslpd does not work in background mode
    103070|02|Jun/05/00|R|S| |  |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32;|SunOS 5.4: patch usr/bin/tip
    103073|02|Sep/16/96| | | |  |Unbundled|sparc;|SUNWtcxow:1.1.0,REV=2.0.0;|SunOS 5.5: TCX Graphics Patch
    103074|04|Nov/03/97| | | |  |Unbundled|sparc;|SUNWsx:1.1.0,REV=2.0.0;SUNWsxow:1.1.0,REV=2.0.0;SUNWsxxgl:1.1.0,REV=2.0.1;SUNWsxxil:1.1.0,REV=2.0.0;|SunOS 5.5: SX Graphics Patch
    103075|04|Nov/07/96| | | |  |Unbundled|sparc;|SUNWleoo:1.1.0,REV=2.0.1;SUNWleor:1.1.0,REV=2.0.1;SUNWleow:1.1.0,REV=2.0.1;|SunOS 5.5:  ZX Graphics Patch
    103076|13|May/27/99|R|S| |  |Unbundled|sparc;sparc.sun4u;102959-20;|SUNWffb:1.1.0,REV=3.0.5;SUNWffbcf:1.1.0,REV=3.0.4;SUNWffbmn:1.1.0,REV=3.0.4;SUNWffbw:1.1.0,REV=3.0.5;SUNWffbxg:1.1.0,REV=3.0.4;SUNWvlxil:1.1.0,REV=3.0.4;|Creator 2.5_HW:1/96: FFB Graphics Patch
    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 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
    103092|01|Apr/17/96| | | |  |Unbundled|||PC-NFS V5.1c telnetw.exe doesn't  recover from execution of DOS co
    103093|28|Mar/31/00|R|S| |Y |2.5|sparc;sparc.sun4c;sparc.sun4d;sparc.sun4m;sparc.sun4u;|SUNWcar:11.5.1,REV=95.10.27.15.23;SUNWcar:11.5.1,REV=95.10.30.16.09;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: kernel update
    103094|23|Mar/31/00|R|S| |Y |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;SUNWcsu:11.5.1,REV=95.10.30.17.24;SUNWhea:11.5.1,REV=95.10.27.15.21;|SunOS 5.5_x86: kernel update
    103095|02|Apr/26/96| |S| |  |Unbundled|sparc;|SUNWpcnfd:1.1;SUNWpcnfs:1.0;|PC-NFS 5.1a: Pcnfsd authentication and printer daemon patch
    103097|04|Mar/14/97| | | |  |Unbundled|sparc;|SUNWvts:1.9.0,REV=0.2.0;|SunVTS 1.0: tcxtest corrected for SS5 110 and tapetest enhancement
    103098|01|May/10/96| | | |  |2.3|sparc;|SUNWcsr:11.5.0,REV=2.0.19;|SunOS 5.3: spec_write incorrectly sets bdevsize
    103102|11|Jun/30/98| | | |  |2.5.1_x86|i386;|SUNWman:38.0,REV=7;SUNWos86r:1.0.0,REV=96.03.27.17.56;|SunOS 5.5.1_x86: iprb bug fixes
    103135|01|Jan/04/96| | | |  |2.5|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: arch does not work correctly on non-SMI sparc systems
    103136|01|Jan/12/96| | | |  |2.5|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: bugfix for renice
    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
    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
    103162|04|Dec/14/01| | | |  |2.5|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;SUNWsutl:11.5.1,REV=95.10.27.15.23;SUNWxcu4:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: cp, mv and ln fixes
    103163|01|Jan/22/96| | | |  |2.5_x86|i386;|SUNWcsu:11.5.1,REV=95.10.30.17.24;|SunOS 5.5_x86: cp, mv and ln fix
    103164|06|Nov/05/96| | |O|  |2.5|||OBSOLETED by 103093
    103165|08|Jan/15/97| | |O|  |2.5_x86|||OBSOLETED by 103094
    103169|15|Nov/01/99|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;|SunOS 5.5: arp,ip,udp,icmp driver and ifconfig fixes
    103170|15|Nov/01/99|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;|SunOS 5.5_x86: arp,ip,udp,icmp driver, and ifconfig fixes
    103171|01|Jan/22/96| | | |  |Unbundled|sparc;|SUNWemmis:1.1;|Solstice Enterprise Manager 1.1: patch
    103173|01|Feb/05/96| | | |  |Unbundled|||PC-NFSPro-DE 1.1, 1.1.1: National Replacement Character sets don't
    103178|09|Oct/06/98|R|S| |Y |2.5|sparc;104410-02;|SUNWcsr:11.5.1,REV=95.10.27.15.23;SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: pam security patch
    103179|09|Oct/06/98|R|S| |Y |2.5_x86|i386;104411-02;|SUNWcsr:11.5.1,REV=95.10.27.15.21;SUNWcsu:11.5.1,REV=95.10.30.17.24;|SunOS 5.5_x86: pam security patch
    103180|01|Feb/12/96| | | |  |Unbundled|||PC-Admin 1.5.1: Excel work files are corrupted
    103182|03|Aug/29/96| |S| |  |Unbundled|sparc;|SUNWpcu:12.0,REV=95.09.18.11.55;SUNWpsf:12.0,REV=95.09.18.11.55;SUNWpsr:12.0,REV=95.09.18.11.55;SUNWpsu:12.0,REV=95.09.18.11.55;SUNWscplp:12.0,REV=95.09.18.11.55;|SunSoft Print Client (SSPC) patch
    103185|02|Aug/04/97|R|S| |  |2.4_x86|i386;|SUNWxwplt:3.4.18,REV=0.94.07.15;SUNWxwslb:3.4.17,REV=0.94.07.07;|OpenWindows 3.4_x86: libX11 patch
    103186|30|May/22/98|R| | |  |Unbundled|sparc;|SUNWmfrun:1.2.6,REV=10.95.09.29;|Motif 1.2.3: Runtime library patch
    103187|49|Jun/19/01|R|S| |  |2.5|sparc;|SUNWarc:11.5.1,REV=95.10.27.15.23;SUNWcsu:11.5.1,REV=95.10.30.16.09;SUNWfns:11.5.1,REV=95.10.27.15.23;SUNWhea:11.5.1,REV=95.10.27.15.23;SUNWnisu:11.5.1,REV=95.10.27.15.23;SUNWsutl:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: libc, libnsl, libucb, nis_cachemgr and rpc.nisd patch
    103188|49|Jun/19/01|R|S| |  |2.5_x86|i386;|SUNWarc:11.5.1,REV=95.10.27.15.21;SUNWcsu:11.5.1,REV=95.10.30.17.24;SUNWfns:11.5.1,REV=95.10.27.15.21;SUNWhea:11.5.1,REV=95.10.27.15.21;SUNWnisu:11.5.1,REV=95.10.27.15.21;SUNWsutl:11.5.1,REV=95.10.27.15.21;|SunOS 5.5_x86: libc, libnsl, libucb, nis_cachemgr and rpc.nisd pat
    103189|02|Apr/09/96| | | |  |Unbundled|sparc;|SUNWnwclt:1.1.1;SUNWsnclt:1.1.1;|LanClient 1.1: not able to connect to NetWare server.
    103190|02|Apr/09/96| | | |  |Unbundled|i386;|SUNWnwclt:1.1.1;SUNWsnclt:1.1.1;|LAN Client 1.1: not able to connect to NetWare server
    103200|01|Feb/01/96| | | |  |Unbundled|||PC-NFSpro 2.0: Large newsrc (usually > 256K) causes newsreader to
    103203|01|Feb/29/96| | | |  |2.4|sparc;|SUNWoldst:3.4.17,REV=0.94.07.15;|OpenWindows 3.4: nohup cmdtool hangs up when parent dies
    103204|01|Mar/01/96| | | |  |2.4_x86|i386;|SUNWoldst:3.4.17,REV=0.94.07.15;|OpenWindows 3.4_x86: nohup cmdtool hangs up when parent dies.
    103208|01|Jan/26/96| | |O|  |Unbundled|||OBSOLETED by 103334
    103210|31|Nov/01/01|R|S| |  |2.5|sparc;|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: Server (Xsun, libX11, xterm) Patch
    103212|02|Jun/07/96| | | |  |Unbundled|sparc;sparc.sun4d;sparc.sun4m;|SUNWmsmc:1.0,REV=95/11/21;SUNWsms:1.0,REV=95/11/21;SUNWsmsr:1.0,REV=95/11/21;|SMC 1.0 Jumbo Patch
    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
    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
    103224|03|May/16/97| | | |  |2.4|sparc;|SUNWarc:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: /usr/ccs/lib/libmalloc.a patch
    103226|07|Jun/10/96| | |O|  |2.5|||OBSOLETED by 103093
    103227|06|Jun/12/96| | |O|  |2.5_x86|||OBSOLETED by 103478
    103230|05|Aug/13/96| | |O|  |2.5|||OBSOLETED by 103187
    103231|05|Aug/13/96| | |O|  |2.5_x86|||OBSOLETED by 103188
    103233|01|Mar/07/96| | | |  |Unbundled|||WebScout 1.0: Include botton in compose window overwrites text
    103234|01|Mar/07/96| | | |  |Unbundled|||WebScout 1.0: Jumbo patch
    103235|12|Aug/20/97| |S| |Y |Unbundled|sparc;|SUNWsadma:6.5,REV=95.10.26.00.11;SUNWsadmc:6.5,REV=95.10.26.00.11;SUNWsadmo:6.5,REV=95.10.26.00.11;|Solstice AdminSuite 2.1: AdminSuite patch
    103236|12|Aug/20/97| |S| |Y |Unbundled|i386;|SUNWsadma:6.5,REV=95.10.12.01.40;SUNWsadmc:6.5,REV=95.10.12.01.40;SUNWsadmo:6.5,REV=95.10.12.01.40;|Solstice AdminSuite 2.1: AdminSuite patch
    103238|04|Dec/09/96| | | |  |2.5|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: libaio patch
    103239|04|Dec/10/96| | | |  |2.5_x86|i386;|SUNWcsu:11.5.1,REV=95.10.30.17.24;|SunOS 5.5_x86: libaio patch
    103240|01|Mar/13/96| | | |  |Unbundled|sparc;|SPROpmake:1.0.4;|SPARCworks TeamWare 1.0.4: PMake fails w/ "Host  reboote
    103241|05|Jan/22/98|R|S| |Y |2.5|sparc;|SUNWbcp:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: BCP (binary compatibility) patch
    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
    103253|10|Nov/05/01|R|S| |  |2.5|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: ksh fixes
    103254|10|Nov/05/01|R|S| |  |2.5_x86|i386;|SUNWcsu:11.5.1,REV=95.10.30.17.24;|SunOS 5.5_x86: ksh fixes
    103255|01|Feb/13/96| | | |  |Unbundled|||PC-NFSpro.fr 1.1.1: Private Control sequences are not recognized i
    103256|03|Jan/26/98|R| | |  |2.5|sparc;|SUNWcsr:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: /kernel/fs/cachefs patch
    103257|03|Feb/04/98| | | |  |2.5_x86|i386;|SUNWcsr:11.5.1,REV=95.10.27.15.21;|SunOS 5.5_x86: kernel/fs/cachefs patch
    103259|06|Jun/03/97| | | |  |Unbundled|sparc;|SUNWccm:1.1,REV=1.0;SUNWclmon:1.1,REV=1.1;SUNWdlm:1.1,REV=1.0;SUNWmond:1.1,REV=1.1;SUNWpdb:1.1,REV=1.0;|Sparc Cluster PDB 1.1 jumbo patch
    103260|05|Feb/07/97| | | |  |Unbundled|sparc;|SUNWvxvm:vxvm2.1/cvm1.1;|SPARCcluster PDB 1.1: Jumbo Patch for the Cluster Volume Manager
    103261|08|Jun/19/01|R|S| |  |2.5|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: ufsdump & ufsrestore patch
    103262|08|Jun/19/01|R|S| |  |2.5_x86|i386;|SUNWcsu:11.5.1,REV=95.10.30.17.24;|SunOS 5.5_x86: ufsdump & ufsrestore patch
    103263|04|Jun/15/01|R|S| |  |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32,PATCH=401;|SunOS 5.4: ufsdump, ufsrestore and wall patch
    103264|03|Mar/30/98|R|S|O|Y |2.4_x86|i386;|SUNWcsu:11.5.1,REV=94.07.22.14.24;|Obsoleted by: 101946-64 SunOS 5.4_x86: ufsdump, ufsrestore and wal
    103266|01|Jun/27/96|R|S| |  |2.5|sparc;|SUNWnisu:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: nissetup default permissions for password table not sec
    103267|01|Jun/27/96|R|S| |  |2.5_x86|i386;|SUNWnisu:11.5.1,REV=95.10.27.15.21;|SunOS 5.5_x86: nissetup default password table permissions not sec
    103268|15|Jan/29/99| | | |  |Unbundled|i386;|SUNWllc2a:1.23;SUNWx25a:1.23;SUNWx25b:1.23;|SunLink X25 9.0: Patch_x86
    103269|01|Jun/27/96|R|S| |  |2.3|sparc;|SUNWnisu:11.5.0,REV=2.0.18;|SunOS 5.3: nissetup default permissions not secure enough
    103270|01|Jun/27/96|R|S| |  |2.4|sparc;|SUNWnisu:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: nissetup default permissions not secure enough
    103271|01|Jun/27/96|R|S| |  |2.4_x86|i386;|SUNWnisu:11.5.1,REV=94.07.18.19.02;|SunOS 5.4_x86: nissetup default permissions not secure enough
    103273|09|Apr/13/00|R|S| |Y |2.5_x86|i386;|SUNWoldcv:3.5.21,REV=0.95.08.23;SUNWoldst:3.5.21,REV=0.95.08.23;|Openwindows 3.5_x86: calendar manager patch
    103274|01|May/13/96| | | |  |Unbundled|sparc;|SPROswada:2.1;|SPARCworks Ada 2.1.1: Can't debug if exec. is in different directo
    103276|03|Sep/04/01|R|S| |  |2.5|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: /bin/mail patch
    103277|03|Sep/05/01|R|S| |  |2.5_x86|i386;|SUNWcsu:11.5.1,REV=95.10.30.17.24;|SunOS 5.5_x86: /usr/bin/mail patch
    103278|02|May/31/96| | |O|  |Unbundled|||OBSOLETED by 103864
    103279|04|May/25/00|R|S| |  |2.5|sparc;103667-01;|SUNWcsr:11.5.1,REV=95.10.27.15.23;SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: nscd/nscd_nischeck/nss_files.so.1 patch
    103280|04|May/25/00|R|S| |  |2.5_x86|i386;103668-01;|SUNWcsr:11.5.1,REV=95.10.27.15.21;SUNWcsu:11.5.1,REV=95.10.30.17.24;|SunOS 5.5_x86: nscd/nscd_nischeck/nss_files.so.1 patch
    103282|02|Mar/13/96| | | |  |2.5|sparc;|SUNWoldst:3.5.21,REV=0.95.08.23;|OpenWindows 3.5: nohup cmdtool hangs up when parent dies
    103283|01|Feb/29/96| | | |  |2.5_x86|i386;|SUNWoldst:3.5.21,REV=0.95.08.23;|OpenWindows 3.5_x86: nohup cmdtool hangs up when parent dies
    103285|07|Aug/07/97|R| | |Y |2.5|sparc;|SUNWsprot:5.5,REV=95.10.20;SUNWxcu4t:5.5,REV=95.10.20;|SunOS 5.5: Patch for make, sccs
    103287|02|Jul/15/96| | | |  |Unbundled|all;|SUNWhagen:1.0,REV=1.0;|Solstice HA 1.0: fixes for SUNWhagen and hasetup
    103289|01|Mar/22/96| | | |  |2.4|sparc;101945-05;|SUNWcsr:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: metainit is slow on 2.9GB disks.
    103290|08|Oct/16/97|R| | |  |Unbundled|sparc;|SUNWssadv:1.0,REV=1.4;SUNWssadv:2.0,REV=1.0;SUNWssaop:1.0,REV=1.2;SUNWssaop:2.0,REV=1.0;|SPARCstorage Array 2.0: SSA Jumbo patch for Solaris 2.4 11/94, HW3
    103291|03|Nov/05/97|R|S| |  |2.5|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: syslogd patch
    103292|03|Nov/05/97|R|S| |  |2.5_x86|i386;|SUNWcsu:11.5.1,REV=95.10.30.17.24;|SunOS 5.5_x86: syslogd patch
    103293|03|Jun/23/97|R|S| |  |2.5|sparc;|SUNWapppu:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: aspppd patch
    103294|03|Jun/23/97|R|S| |  |2.5_x86|i386;|SUNWapppu:11.5.1,REV=95.10.27.15.21;|SunOS 5.5_x86: aspppd patch
    103295|01|Mar/01/96| | | |  |2.5|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: fold loses data if files contain no newline
    103298|05|Oct/30/97|R| | |Y |2.5_x86|i386;|SUNWsprot:5.5,REV=95.10.20;SUNWxcu4t:5.5,REV=95.10.20;|SunOS 5.5_x86: Patch for make & sccs
    103300|03|Apr/28/98|R|S| |  |2.5|sparc;|SUNWoldst:3.5.21,REV=0.95.08.23;|OpenWindows 3.5: filemgr (ff.core) fixes
    103301|03|Apr/28/98|R|S| |  |2.5_x86|i386;|SUNWoldst:3.5.21,REV=0.95.08.23;|OpenWindows 3.5_x86: filemgr (ff.core) fixes
    103304|03|Sep/12/96| | | |  |Unbundled|||PC-NFSpro 2.0: Supports 32 bit windows socket applications
    103308|01|Apr/12/96| | | |  |Unbundled|||PC-NFS 5.1C: NIS sockets 5.1a1 5.1c pcnfs locks heap program manag
    103309|01|Mar/08/95| | |O|  |2.4|||OBSOLETED by 102432
    103310|01|Jan/31/95| | | |  |2.4|sparc;|SUNWman:36.0,REV=11;|SunOS 5.4: updated man pages to support PCMCIA
    103311|01|Mar/05/96| | | |  |Unbundled|sparc;|SUNWacmgr:1.0;|Solstice AutoClient 1.0, 1.0.1: Jumbo Patch
    103313|02|Nov/04/96| | | |  |2.4|sparc;|SUNWjfpr:2.6,REV=1.0.40;|SunOS 5.4 (JFP 2.4): STREAMS modules jconv7 jconv8 jconvs not MT-s
    103318|04|Aug/16/99|R|S| |  |2.5|sparc;|SUNWcsr:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: kernel/fs/fifofs and kernel/sys/pipe fixes
    103319|04|Aug/16/99|R|S| |  |2.5_x86|i386;|SUNWcsr:11.5.1,REV=95.10.27.15.21;|SunOS 5.5_x86: kernel/fs/fifofs and kernel/sys/pipe fixes
    103324|03|May/03/96| | |O|  |Unbundled|102068-01;||OBSOLETED by 103519
    103325|02|Jun/20/96| | |O|  |2.5|||OBSOLETED by 103093
    103328|04|Jan/26/98|R| | |  |2.5|sparc;103093-17;|SUNWcsr:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: /kernel/fs/procfs fix
    103329|04|Feb/04/98|R| | |  |2.5_x86|i386;103094-14;|SUNWcsr:11.5.1,REV=95.10.27.15.21;|SunOS 5.5_x86: /kernel/fs/procfs patch
    103333|01|Apr/19/96| | | |  |Unbundled|sparc;|SPROcodmg:1.0.4;|SPARCworks/TeamWare 1.0.4: bringover gives a file conflict
    103334|06|Sep/30/96| | | |  |Unbundled|sparc;|SUNWfw:2.0;102629-01 103208-01 103337-01|Firewall-1 2.0: Jumbo patch for Solstice FireWall-1 2.0
    103336|05|Sep/30/96| | | |  |Unbundled|i386;|SUNWfw:2.0;102629-01 103208-01 103337-01|Firewall-1 2.0: Jumbo patch for Solstice FireWall-1 2.0
    103337|05|Sep/30/96| | | |  |Unbundled|sparc;|SUNWfw:2.0;102629-01 103208-01 103337-01|Firewall-1 2.0: Jumbo patch for Solstice FireWall-1 2.0 VPN
    103339|06|Sep/30/96| | | |  |Unbundled|i386;|SUNWfw:2.0;102629-01 103208-01 103337-01|Firewall-1 2.0: Jumbo patch for Solstice FireWall-1 2.0 VPN
    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|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
    103352|02|Jun/03/96| | | |  |Unbundled|sparc;|SUNWsms:1.1,REV=96/01/24;|SMC 1.1: Patch
    103353|02|May/17/96| | | |  |2.5|sparc;103247;|SUNWjadma:1.1,REV=1.0.54.1;|SunOS 5.5: Japanese Localization for admintool patch
    103356|01|Sep/17/96| | | |  |Unbundled|sparc;|SUNWisdni:1.0.3;SUNWisdnk:1.0.3;SUNWisdnm:1.0.3;SUNWisdnu:1.0.3;|SunISDN 1.0.3: Misc. fixes
    103365|01|Mar/29/96| | | |  |Unbundled|sparc;|SUNWnetA:2.0,REV=2.0;|IGS 1.0: Allows igs to find interfaces which prtconf misses in Sol
    103367|03|Jan/02/97| | | |  |Unbundled|sparc;|SUNWvmman:2.1.2;SUNWvxva:2.1.1;SUNWvxvm:2.1.2;|SSA Volume Manager 2.1.1: Veritas patch for Solaris 2.5/2.5.1
    103368|23|Feb/28/01| | | |  |Unbundled|sparc;|SUNWxgldg:4.0,REV=3.0.31;SUNWxglrt:4.0,REV=3.0.31;|XGL 3.2.1: XGL Patch (unstripped version)
    103369|23|Feb/28/01| | | |  |Unbundled|sparc;|SUNWxgldg:4.0,REV=3.0.31;SUNWxglrt:4.0,REV=3.0.31;|XGL 3.2.1: XGL Patch (stripped version)
    103371|02|Apr/08/96| | | |  |Unbundled|||PC-NFSpro 2.0: Win95 Telnet does not handle compose character key
    103373|01|May/30/96| | | |  |Unbundled|sparc;|SUNWsmjvi:2.0.1,REV=1.0.1;|ShowMe Video 2.0.1: Video breaks up when sending at high res.
    103374|01|Mar/28/96| | |O|  |Unbundled|||OBSOLETED by 104739
    103377|01|Sep/24/96| | | |  |2.5_x86|i386;|SUNWscpu:11.5.1,REV=95.10.27.15.21;SUNWsra:11.5.1,REV=95.10.27.15.21;|SunOS 5.5_x86: ucblib fixes
    103379|01|Sep/30/96| | | |  |2.3|sparc;|SUNWcsr:11.5.0,REV=2.0.19;|SunOS 5.3: _svcauth_unix can crash the kernel
    103381|02|Jun/06/96| | |O|  |2.5|||OBSOLETED by 103210
    103387|01|Apr/08/96| | | |  |2.5_x86|i386.i86pc;|SUNWcar:11.5.1,REV=95.10.27.15.21;|SunOS 5.5_x86: ufsboot fixes
    103388|01|May/09/96| | | |  |2.3|sparc;|SUNWowrqd:3.3.19,REV=0.93.09.17;SUNWowrqd:3.3.20,REV=0.93.09.28;|OpenWindows 3.3: Motif application causes olwm to hang (pointer gr
    103389|02|Jul/17/96| | | |  |2.4|sparc;|SUNWoldte:3.4.16,REV=0.94.06.23;|OpenWindows 3.4: window manager (olwm) fixes
    103390|01|Apr/19/96| | | |  |2.4_x86|i386;|SUNWoldte:3.4.16,REV=0.94.06.23;|OpenWindows 3.4_x86: Motif application causes olwm to hang.
    103399|02|Dec/24/97|R|S| |  |2.5|sparc;|SUNWcsr:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: /kernel/strmod/sockmod patch
    103401|10|May/19/98| | | |  |Unbundled|sparc;|SUNWemalb:1.2;SUNWemapp:1.2;SUNWembc:1.2;SUNWemcpa:1.2;SUNWemmis:1.2;|Solstice Enterprise Manager 1.2: patch
    103402|01|May/14/96| | | |  |2.3|sparc;|SUNWowrqd:3.3.19,REV=0.93.09.17;SUNWowrqd:3.3.20,REV=0.93.09.28;|OpenWindows 3.3: Snapshot can't capture XGL double-buffered window
    103406|03|Jul/03/96| | | |  |Unbundled|||PC-NFSPro 2.0: WINSOCK jumbo patch
    103409|01|May/14/96| | | |  |2.4|sparc;|SUNWoldst:3.4.17,REV=0.94.07.15;|OpenWindows 3.4: Snapshot can't capture XGL double-buffered window
    103411|01|May/10/96| | | |  |2.5|sparc;|SUNWoldte:3.5.21,REV=0.95.08.23;|OpenWindows 3.5: Motif application causes olwm to hang (pointer gr
    103414|03|Dec/22/98| | | |  |Unbundled|sparc;|SUNWdtbas:1.0.1,REV=10.95.09.20;|CDE 1.0.1: dtterm libDtTerm.so.1 patch
    103426|01|Apr/24/96| | | |  |2.4|sparc;|SUNWploc:1.0,REV=15.0;|SunOS 5.4: wcsxfrm() dumps core (receives SIGSEGV) on 5.4
    103427|01|Apr/16/96| | | |  |Unbundled|||PC-NFSpro 2.0: doesn't configure Lanman/Pathworks/VINES network co
    103432|01|May/13/96| | | |  |2.4_x86|i386;102058-09;102059-09;|SUNWxwpls:3.4.4,REV=0.94.06.21;|OpenWindows 3.4_x86: Xsun has memory leak on Dell OptiPlex XMT 510
    103441|02|Dec/06/96| | | |  |2.5|sparc;|SUNWcsr:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: tmpfs fixes
    103447|10|Oct/13/97|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;|SunOS 5.5: tcp patch
    103448|10|Oct/13/97|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;|SunOS 5.5_x86: tcp patch
    103451|05|May/21/98| | | |  |Unbundled|||Hardware, 2.1GB Disks: Download program and ST32550W 0420 firmware
    103452|01|May/16/96| | |O|  |2.4|||OBSOLETED by 103825
    103453|01|May/16/96| | | |  |2.4_x86|i386;|SUNWjxplt:1.1,REV=1.0.40;|OpenWindows 3.4_x86: patch for Japanese input method in OLIT text
    103454|01|May/16/96| | | |  |2.5|sparc;|SUNWjxplt:1.2,REV=1.0.54;|OpenWindows 3.5: patch for Japanese input method in text of OLIT
    103455|01|May/16/96| | | |  |2.5_x86|i386;|SUNWjxplt:1.2,REV=1.0.54;|OpenWindows 3.5_x86: patch for Japanese input method in OLIT text
    103457|02|Oct/10/00| |S| |  |Unbundled|||Pcnfsd authentication and printer daemon patch
    103461|35|Mar/08/01|R| | |  |Unbundled|sparc;|SUNWmfrun:1.2.6,REV=10.96.03.28;|Motif 1.2.3: Runtime library patch
    103464|01|Jul/02/96| | | |  |Unbundled|sparc;|SUNWpcnet:1.5.1.0;SUNWpcpro:1.5.1.0;|PC-Admin 1.5.1: Upgrade Kit for PCNFSPRO 2.0.de
    103465|01|Jul/02/96| | | |  |Unbundled|i386;|SUNWpcnet:1.5.1.0;SUNWpcpro:1.5.1.0;|PC-Admin 1.5.1: Upgrade Kit for PCNFSPRO.de 2.0.
    103466|02|Sep/06/96| | | |  |Unbundled||103458-01|PC-NFSpro 2.0: ccmail/Win95 locks Win 3.1 users & Visual Basic err
    103468|05|Apr/24/01|R|S| |  |2.5|sparc;103187-43;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: /usr/lib/nfs/statd patch
    103469|06|Apr/24/01|R|S| |  |2.5_x86|i386;103188-43;|SUNWcsu:11.5.1,REV=95.10.30.17.24;|SunOS 5.5_x86: /usr/lib/nfs/statd patch
    103472|02|Oct/02/97| | | |  |2.5|sparc;|SUNWcsr:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: TL driver fixes
    103475|01|Jun/14/96| | | |  |Unbundled|103324-03;||PC-NFS 5.1c: 0 length send gives pc socket errors 10055 and 10022
    103476|01|May/31/96| | | |  |2.5|sparc;|SUNWcsr:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: bpp fixes
    103477|12|Nov/05/97| | |O|  |2.5|||OBSOLETED by 103093
    103478|11|Jul/17/97| | |O|  |2.5_x86|||OBSOLETED by 103094
    103480|04|Jan/17/97| | | |  |Unbundled|sparc;|SUNWsbuc:4.2.2;SUNWsbus1:4.2.2;SUNWsbus2:4.2.2;|Solstice Backup 4.2.2: various fixes
    103484|01|May/16/96| | | |  |2.4|sparc;|SUNWjbcp:1.5,REV=1.0.40;|SunOS 5.4: patch for kkcv and ccv when rlim_fd_cur is set > 256.
    103485|02|May/20/96| | | |  |2.5|sparc;|SUNWjbcp:1.6,REV=1.0.54;|SunOS 5.5: patch for kkcv and ccv when rlim_fd_cur is set > 256
    103488|02|Aug/02/96| | | |  |Unbundled|sparc;|SUNWomgtb:8.2;|Solstice CMIP 8.2 : Jumbo patch for runtime and examples fixes
    103491|01|May/22/96| | | |  |2.4|sparc.sun4c;sparc.sun4d;sparc.sun4e;sparc.sun4m;|SUNWcar:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: bpp driver fixes
    103492|03|Jan/26/98|R| | |  |2.5|sparc;103256-03;103477-13;|SUNWcsr:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: /kernel/fs/autofs patch
    103493|03|Feb/04/98| | | |  |2.5_x86|i386;103257-03;103478-13;|SUNWcsr:11.5.1,REV=95.10.27.15.21;|SunOS 5.5_x86: /kernel/fs/autofs patch
    103497|01|May/23/96| | | |  |Unbundled|103498-01;||PC-NFS 5.1: NfsServer fails to get the correct pwd
    103498|03|Aug/26/96| | | |  |Unbundled|103497-01;||PC-NFSpro 2.0: NFS server daemon patch
    103500|11|Nov/03/98| | | |  |2.5_x86|i386;|SUNWos86r:1.0.0,REV=95.10.13.23.57;SUNWos86r:1.0.0,REV=96.03.27.17.56;SUNWos86u:1.0.0,REV=95.09.25.23.56;SUNWos86u:1.0.0,REV=96.02.12.22.02;SUNWpmi:3.5.2,REV=0.95.08.17;SUNWpmi:3.5.3,REV=0.96.02.09;SUNWxwpls:3.5.2,REV=0.95.09.20;SUNWxwpls:3.5.3,REV=0.96.02.29;|OpenWindows 3.5_x86: Updated S3 Video Support
    103502|07|Aug/20/97| |S| |Y |Unbundled|all;sparc;|SUNWsacb:6.5,REV=96.04.18.16.51;SUNWsadma:6.5,REV=96.04.18.16.51;SUNWsadmb:6.5,REV=96.04.18.16.51;SUNWsadmc:6.5,REV=96.04.18.16.51;SUNWsadmm:6.5,REV=96.04.18.16.51;SUNWsadmo:6.5,REV=96.04.18.16.51;|Solstice AdminSuite 2.2: AdminSuite patch
    103503|07|Aug/20/97| |S| |Y |Unbundled|all;i386;|SUNWsacb:6.5,REV=96.04.18.18.40;SUNWsadma:6.5,REV=96.04.18.18.40;SUNWsadmb:6.5,REV=96.04.18.18.40;SUNWsadmc:6.5,REV=96.04.18.18.40;SUNWsadmm:6.5,REV=96.04.18.18.40;SUNWsadmo:6.5,REV=96.04.18.18.40;|Solstice AdminSuite 2.2: AdminSuite patch
    103504|05|Aug/20/97| |S| |  |Unbundled|ppc;|SUNWsadma:6.5,REV=96.04.18.17.19;SUNWsadmc:6.5,REV=96.04.18.17.19;SUNWsadmo:6.5,REV=96.04.18.17.19;|Solstice AdminSuite 2.2: AdminSuite patch
    103505|01|May/29/96| | | |  |2.5|sparc;|SUNWolrte:3.5.21,REV=0.95.08.23;|OpenWindows 3.5: snapshot fails on FFB when default visual is over
    103506|01|May/16/96| | | |  |2.5|sparc;|SUNWxwpsr:3.5.23,REV=0.95.09.22;|OpenWindows 3.5: Main window not redrawn correctly after unmapping
    103508|01|May/29/96| | |O|  |2.5.1|||OBSOLETED by 103566
    103509|03|Jan/28/97| | | |  |Unbundled|sparc;|SUNWvmman:2.1.1;SUNWvxva:2.1.1;SUNWvxvm:2.1.1;|SSA Volume Manager 2.1.1: Veritas patch for Solaris 2.4
    103511|01|Sep/04/97| | | |  |Unbundled|||Solstice Network Client (SNC) 3.0: fields in GUI are greyed out
    103512|02|Nov/18/97| | | |  |Unbundled|sparc;|SUNWsmsha:2.0.1,REV=1.0.0;|Showme 2.0.1: sharedapp fails with Parametric ProEngineer on MP sy
    103514|01|Jul/01/96| | | |  |Unbundled|sparc;|SUNWipx:2.0,REV=1.0;SUNWnwsvr:2.0,REV=1.0;SUNWsnadm:2.0,REV=1.0;|Solstice NW Server 2.0: patch for misc. fixes .
    103515|08|Nov/19/97| | | |  |Unbundled|sparc;|SUNWlmsvr:2.0,REV=1.0;SUNWnbnam:2.0,REV=1.0;SUNWsnadm:2.0,REV=1.0;|Solstice LM Server 2.0:  Bug Fixes for LMfile & NT file attributes
    103516|01|Jun/20/96| | | |  |2.5|sparc;|SUNWipx:1.1N;SUNWipxip:1.2,REV=1.1;|SunOS 5.5: IPX/SPX and IPX Gateway hangs on heavy server load.
    103517|01|Jul/01/96| | | |  |Unbundled|i386;|SUNWomgtb:8.2;|Solstice CMIP 8.2 : Jumbo patch for runtime and examples fixes
    103518|03|Jan/08/98| | | |  |Unbundled|sparc;|SUNWccrcv:1.1;SUNWccsnd:1.1;|Cooperative Consoles 1.1: jumbo patch
    103519|03|Jan/23/97| | | |  |Unbundled|102068-01;||PC-NFS 5.1: Patch to update to 5.1D
    103526|02|Oct/10/96| | | |  |2.5|sparc;sparc.sun4c;sparc.sun4m;sparc.sun4u;|SUNWcar:11.5.1,REV=95.10.27.15.23;SUNWcar:11.5.1,REV=95.10.30.16.09;SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: fd, fdformat fixes
    103527|01|Jul/03/96| | | |  |Unbundled|i386;|SUNWipx:2.0,REV=1.0;SUNWnwsvr:2.0,REV=1.0;SUNWsnadm:2.0,REV=1.0;|Solstice NW Server 2.0: datestamp, snlicense, sn-command parsing f
    103528|04|Apr/29/97| | | |  |Unbundled|i386;|SUNWlmsvr:2.0,REV=1.0;SUNWnbnam:2.0,REV=1.0;SUNWsnadm:2.0,REV=1.0;|Solstice LM Server 2.0:  Bug Fixes for LMfile & NT file attributes
    103536|01|Jun/06/96| | | |  |Unbundled|sparc;|SPROswada:3.0;|SPARCworks Ada 3.0: AdaVision can't print unit graph
    103538|02|Jun/11/96| | | |  |Unbundled|sparc;|SUNWxildg:1.2.1,REV=4.0.7;|XIL 1.2.1: imagetool / sdtimage fail to read valid kodak photocd f
    103540|01|May/30/96| | | |  |2.3|sparc;|JSatok7:1.2,REV=1.0.25;|SunOS 5.3: can't convert some words after atok7sdictool registrati
    103543|03|Jul/01/96| | | |  |2.5|sparc;|JSat8xw:1.1,REV=1.0.34;|SunOS 5.5: ATOK8 leaks memory
    103548|01|May/21/96| | | |  |Unbundled|||PC-NFSpro-DE 1.1.1: Excel work files are corrupted
    103558|16|Jan/04/01|R|S| |  |2.5.1|sparc;|SUNWadmap:6.5,REV=96.04.25.18.08;SUNWadmc:6.5,REV=96.04.25.17.31;SUNWsadml:6.5,REV=96.04.25.17.31;|SunOS 5.5.1: admintool/launcher fixes + swmtool fixes & y2000
    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: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.
    103577|13|Jul/17/01|R|S| |  |2.5|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: ftp, in.ftpd, in.rexecd and in.rshd patch
    103578|13|Jul/17/01|R|S| |  |2.5_x86|i386;|SUNWcsu:11.5.1,REV=95.10.30.17.24;|SunOS 5.5_x86: ftp, in.ftpd, in.rexecd and in.rshd patch
    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
    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
    103595|19|Jun/15/99|R|S| |  |2.5.1_x86|i386;103664-01;|SUNWcsr:11.5.1,REV=96.05.02.19.23;SUNWcsu:11.5.1,REV=96.05.02.19.23;SUNWnisu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: sendmail fixes
    103596|05|Dec/13/96|R|S| |  |2.5.1_ppc|ppc;103665-01;|SUNWcsu:11.5.1,REV=96.05.02.20.57;|SunOS 5.5.1_ppc: /usr/lib/sendmail fixes
    103597|04|Nov/20/97|R| | |  |2.5.1|sparc;|SUNWcsr:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /kernel/strmod/sockmod patch
    103598|02|Dec/09/97| | | |  |2.5.1_x86|i386;|SUNWcsr:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: sockmod fix
    103600|18|Aug/15/97| | |O|  |2.5.1|||OBSOLETED by 103640
    103601|18|Dec/10/97| | |O|  |2.5.1_x86|||OBSOLETED by 103641
    103603|16|Jun/25/01|R|S| |  |2.5.1|sparc;105097-03;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: ftp, in.ftpd, in.rexecd and in.rshd patch
    103604|16|Jun/25/01|R|S| |  |2.5.1_x86|i386;105098-03;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: ftp, in.ftpd, in.rexecd and in.rshd patch
    103606|02|Sep/20/96| | |O|  |2.5.1|||OBSOLETED by 103627
    103607|02|Sep/20/96| | |O|  |2.5.1_x86|||OBSOLETED by 103628
    103608|02|Sep/20/96| | | |  |2.5.1_ppc|ppc;|SUNWhea:11.5.1,REV=96.05.02.20.57;SUNWtoo:11.5.1,REV=96.05.02.20.57;|SunOS 5.5.1_ppc: libld.so.2 patch
    103609|02|Jul/11/96| | |O|  |2.5.1|||OBSOLETED by 103640
    103610|01|Jun/20/96| | |O|  |2.5.1_x86|||Obsoleted by: 103641-35
    103611|01|Jun/20/96| | | |  |2.5.1_ppc|ppc;|SUNWcsr:11.5.1,REV=96.05.02.20.57;|SunOS 5.5.1_ppc: RPC: Unable to send/receive
    103612|51|Jan/27/99| |S|O|Y |2.5.1|||OBSOLETED by 103640
    103613|46|Oct/02/98| |S|O|Y |2.5.1_x86|||Obsoleted by: 103641-35
    103614|06|Nov/19/96|R|S| |  |2.5.1_ppc|ppc;|SUNWarc:11.5.1,REV=96.05.02.20.57;SUNWcsu:11.5.1,REV=96.05.02.20.57;SUNWnisu:11.5.1,REV=96.05.02.20.57;|SunOS 5.5.1_ppc: libc, libnsl, nis_cachemgr and rpc.nisd patch
    103615|04|Sep/05/96| | |O|  |2.5.1|||OBSOLETED by 103640
    103616|04|Sep/05/96| | |O|  |2.5.1_x86|||OBSOLETED by 103641
    103617|04|Sep/04/96| | |O|  |2.5.1_ppc|||OBSOLETED by 103614
    103618|03|Jun/15/99| | | |  |2.5.1|sparc;|SUNWcsr:11.5.1,REV=96.05.02.21.09;iss_sparc-01;|SunOS 5.5.1: tl driver patch
    103619|02|Apr/21/97| | | |  |2.5.1_x86|i386;|SUNWcsr:11.5.1,REV=96.05.02.19.23;iss_x86-01;|SunOS 5.5.1_x86: tl driver patch
    103621|01|Apr/29/97| | | |  |2.5.1|sparc;|SUNWcsr:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: panic "bad rmfree" running tip to a parallel printer
    103622|16|Apr/20/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/sd driver patch
    103623|03|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/kernel/fs/pcfs patch
    103624|01|Apr/29/97| | | |  |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: Cannot mount Fujitsu FMR diskette on Solaris2.4/2
    103626|01|Jul/30/96| | |O|  |Unbundled|||OBSOLETED by 103860
    103627|15|Oct/31/00|R|S| |  |2.5.1|sparc;103640-27;|SUNWarc:11.5.1,REV=96.05.02.21.09;SUNWbtool:11.5.1,REV=96.05.02.21.09;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;SUNWtoo:11.5.1,REV=96.05.02.21.09;SUNWxcu4:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: Linker patch
    103628|14|Oct/31/00|R|S| |  |2.5.1_x86|i386;103641-27;|SUNWarc:11.5.1,REV=96.05.02.19.23;SUNWbtool: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;SUNWhea:11.5.1,REV=96.05.02.19.23;SUNWtoo:11.5.1,REV=96.05.02.19.23;SUNWxcu4:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: Linker patch
    103630|15|Oct/29/99|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;iss_sparc-01;|SunOS 5.5.1: ip ifconfig arp udp icmp patch
    103631|15|Oct/29/99|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;iss_x86-01;|SunOS 5.5.1_x86: ip ifconfig arp udp icmp patch
    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|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
    103645|01|Jun/28/96| | | |  |2.5.1_ppc|ppc;|SUNWnisu:11.5.1,REV=96.05.02.20.57;|SunOS 5.5.1_ppc: nisaddent fails on group entry larger than 1K
    103651|01|Jul/10/96| | | |  |Unbundled|||WebScout/NW 1.0 and  Netra-i 2.0, 3.0: Fixes for GPF in ijclient.e
    103657|03|Jul/27/99| | | |Y |Unbundled|i386;|SUNWcosiA:8.0.2;SUNWmhs1b:8.0.2;SUNWmhs1c:8.0.2;|Sunlink X.400 8.0.2_x86: Patch
    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|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
    103669|03|Apr/21/97| | | |  |2.5.1|sparc.sun4c;sparc.sun4d;sparc.sun4m;sparc.sun4u;|SUNWcar:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: zsh driver patch
    103670|08|Sep/07/00|R|S| |Y |Unbundled|sparc;|SUNWdtdmn:1.0.2,REV=10.96.04.12;SUNWdtdst:1.0.2,REV=10.96.04.12;|CDE 1.0.2: dtcm sdtcm_convert rpc.cmsd patch
    103671|08|Jun/30/00|R|S| |Y |Unbundled|sparc;|SUNWdtdmn:1.0.1,REV=10.95.09.20;SUNWdtdst:1.0.1,REV=10.95.10.10;|CDE 1.0.1: dtcm sdtcm_convert rpc.cmsd patch
    103676|01|Jul/01/96| | | |  |Unbundled|||PC-NFSpro 2.0: SNMP agent doesn't return interface addresses below
    103677|01|Jul/01/96| | | |  |Unbundled|||PC-NFS 5.1c: "NFS909F Ring Failure" if a TR cable removed from the
    103680|04|Nov/01/00|R|S| |  |2.5.1|sparc;103663-01;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: nscd/nscd_nischeck/nss_files.so.1 patch
    103681|04|Nov/01/00|R|S| |  |2.5.1_x86|i386;103664-01;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: nscd/nscd_nischeck/nss_files.so.1 patch
    103682|01|Jul/24/96|R|S| |  |2.5.1_ppc|ppc;103665-01;|SUNWcsu:11.5.1,REV=96.05.02.20.57;|SunOS 5.5.1_ppc: nscd/nscd_nischeck rebuild for BIND 4.9.3
    103683|01|Jul/24/96| |S|O|  |2.5.1|103663-01;||OBSOLETED by 103663
    103684|01|Jul/24/96| |S|O|  |2.5.1_x86|103664-01;||OBSOLETED by 103664
    103685|01|Jul/23/96|R|S|O|  |2.5.1_ppc|103665-01;||OBSOLETED by 103665
    103686|03|Jun/01/01|R|S| |  |2.5.1|sparc;103663-01;|SUNWnisu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: rpc.nisd_resolv patch
    103687|03|Jun/19/01|R|S| |  |2.5.1_x86|i386;103664-01;|SUNWnisu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: rpc.nisd_resolv patch
    103688|01|Jul/24/96|R|S| |  |2.5.1_ppc|ppc;103665-01;|SUNWnisu:11.5.1,REV=96.05.02.20.57;|SunOS 5.5.1_ppc: rpc.nisd_resolv rebuild for BIND 4.9.3
    103690|13|Nov/17/99|R|S| |Y |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: cron/crontab/at/atq/atrm patch
    103691|12|Oct/12/99|R|S| |Y |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: cron/crontab/at/atq/atrm patch
    103693|02|Aug/27/97| | | |  |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;iss_sparc-01;|SunOS 5.5.1: /usr/kernel/fs/namefs patch
    103694|02|Sep/05/97| | | |  |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;iss_x86-01;|SunOS 5.5.1_x86: /usr/kernel/fs/namefs patch
    103696|05|Mar/19/99|R|S|O|  |2.5.1|sparc;103640;|SUNWcsr:11.5.1,REV=96.05.02.21.09;SUNWcsu:11.5.1,REV=96.05.02.21.09;|Obsoleted by: 103640-35 SunOS 5.5.1: /sbin/su, /usr/bin/su and /sb
    103697|05|Mar/19/99|R|S|O|  |2.5.1_x86|i386;103641;|SUNWcsr:11.5.1,REV=96.05.02.19.23;SUNWcsu:11.5.1,REV=96.05.02.19.23;|Obsoleted by: 103641-35 SunOS 5.5.1_x86: /sbin/su, /usr/bin/su and
    103698|02|Jan/21/97| |S| |  |2.5.1_ppc|ppc;103614-02;|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: /sbin/su and /usr/bin/su patch
    103699|02|Jul/14/98|R|S| |  |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/sbin/ping patch
    103700|02|Jul/14/98|R|S| |  |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: /usr/sbin/ping patch
    103703|01|Jul/19/96| |S|O|  |2.5|103667-01;||OBSOLETED by 103667
    103704|01|Jul/19/96| |S|O|  |2.5_x86|103668-01;||OBSOLETED by 103668
    103705|01|Jul/18/96|R|S| |  |2.3|sparc;101359-02;|SUNWnisu:11.5.0,REV=2.0.18;|SunOS 5.3: rpc.nisd_resolv rebuild for BIND 4.9.3
    103706|03|Mar/30/01|R|S| |  |2.4|sparc;102479-02;|SUNWnisu:11.5.1,REV=94.07.15.22.10,PATCH=77;|SunOS 5.4: rpc.nisd_resolv rebuild for BIND 4.9.3
    103707|03|Mar/30/01|R|S| |  |2.4_x86|i386;102480-02;|SUNWnisu:11.5.1,REV=94.07.18.19.02,PATCH=75;|SunOS 5.4_x86: rpc.nisd_resolv rebuild for BIND 4.9.3
    103708|03|Apr/24/01|R|S| |  |2.5|sparc;103667-01;|SUNWnisu:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: /usr/sbin/rpc.nisd_resolv patch
    103709|03|Apr/24/01|R|S| |  |2.5_x86|i386;103668-01;|SUNWnisu:11.5.1,REV=95.10.27.15.21;|SunOS 5.5_x86: /usr/sbin/rpc.nisd_resolv patch
    103712|02|Sep/23/97|R| | |  |2.5|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: /usr/kernel/fs/namefs patch
    103713|02|Sep/23/97| | | |  |2.5_x86|i386;|SUNWcsu:11.5.1,REV=95.10.30.17.24;|SunOS 5.5_x86: /usr/kernel/fs/namefs patch
    103717|09|Sep/07/00|R|S| |Y |Unbundled|i386;|SUNWdtdmn:1.0.2,REV=10.96.04.12;SUNWdtdst:1.0.2,REV=10.96.04.12;|CDE 1.0.2_x86: dtcm sdtcm_convert rpc.cmsd patch
    103718|09|Jun/30/00|R|S| |Y |Unbundled|i386;|SUNWdtdmn:1.0.1,REV=10.95.09.20;SUNWdtdst:1.0.1,REV=10.95.10.10;|CDE 1.0.1_x86: dtcm sdtcm_convert rpc.cmsd patch
    103722|06|Apr/18/97| | | |  |Unbundled|i386;|SUNWpppk:3.0.1;SUNWpppr:3.0.1;SUNWppps:3.0.1;SUNWpppu:3.0.1;|SunLink PPP 3.0.1: Jumbo patch for PPP 3.0.1 (x86)
    103723|13|Jul/12/99|R|S| |Y |2.5|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: /usr/bin/at and /usr/sbin/cron patch
    103724|13|Oct/12/99|R|S| |Y |2.5_x86|i386;|SUNWcsu:11.5.1,REV=95.10.30.17.24;|SunOS 5.5_x86: /usr/bin/at and /usr/sbin/cron patch
    103725|01|Jun/17/96| | |O|  |Unbundled|||OBSOLETED by 105714
    103728|01|Jun/20/96| | |O|  |Unbundled|||OBSOLETED by 108363
    103732|01|Aug/02/96| | | |  |2.5|sparc;|SUNWcsr:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: SYS V msgs are protected by a single global mutex
    103734|03|Jun/29/99| | | |  |2.5.1|sparc;|SUNWcsr:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /kernel/sys/msgsys patch
    103735|01|Apr/30/97| | | |  |2.5.1_x86|i386;|SUNWcsr:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: /kernel/sys/msgsys patch
    103738|14|Feb/14/00|R|S| |  |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/sbin/syslogd patch
    103739|14|Feb/14/00|R|S| |  |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: /usr/sbin/syslogd patch
    103742|09|Feb/19/97| | | |  |Unbundled|sparc;|SUNWglrt:1.0,REV=96.06.19;|OpenGL 1.0: OpenGL Patch
    103743|01|Jul/25/96|R|S| |  |2.5.1|sparc;103663-01;|SUNWfns:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: XFN source modifications for BIND 4.9.3
    103744|01|Jul/25/96|R|S| |  |2.5.1_x86|i386;103664-01;|SUNWfns:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: XFN source modifications for BIND 4.9.3
    103745|01|Jul/25/96|R|S| |  |2.5.1_ppc|ppc;103665-01;|SUNWfns:11.5.1,REV=96.05.02.20.57;|SunOS 5.5.1_ppc: XFN source modifications for BIND 4.9.3
    103746|01|Jul/22/96|R|S| |  |2.5|sparc;103667-01;|SUNWfns:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: XFN source modifications for BIND 4.9.3
    103747|01|Jul/22/96|R|S| |  |2.5_x86|i386;103668-01;|SUNWfns:11.5.1,REV=95.10.27.15.21;|SunOS 5.5_x86: XFN source modifications for BIND 4.9.3
    103750|03|Aug/12/97| | | |  |2.5.1|sparc;|SUNWarc:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/ccs/lib/libmalloc.a patch
    103751|03|Dec/09/97| | | |  |2.5.1_x86|i386;|SUNWarc:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: /usr/ccs/lib/libmalloc.a patch
    103766|02|Aug/29/96| | |O|  |2.5.1|||OBSOLETED by 104708
    103767|01|Jan/27/97| | | |  |Unbundled|||PC-Admin 1.5.1: Winsock app. (Atlantis Client) fails to connect
    103768|01|Jun/27/96| | | |  |Unbundled|103324-03;||PC-NFS 5.1c: Accessing the client mail app (cc:mail) hangs the pc
    103770|04|Jan/20/98| | | |  |2.5.1|sparc;|SUNWnisu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: nistbladm patch
    103771|04|Jan/20/98| | | |  |2.5.1_x86|i386;|SUNWnisu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: nistbladm patch
    103774|01|Jul/30/96| | | |  |2.5|sparc;|SUNWnisu:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: nistbladm patch
    103776|02|May/05/97| | | |  |Unbundled|||PC-NFSPro 2.0: ls-l incorrect if comment field greater than 128 by
    103777|02|Nov/17/97| | | |  |Unbundled|||PC-NFSpro 2.0: Displays UID not username when displaying files in
    103778|02|Sep/12/96| | | |  |Unbundled|sparc;|SUNWpexcl:3.0,REV=2.0.6;SUNWpexsv:3.0,REV=2.0.6;|PEX 3.0: PEX fixes
    103780|01|Jul/03/96| | | |  |Unbundled|||PC-NFSpro 2.0: Time is not set correctly for non-US DST periods.
    103783|01|Jul/25/96| | | |  |Unbundled|sparc;101656-09;|SUNWspii:1.0;|SPARCprinter II: cant select tray on SPARCprinterII with pl comman
    103785|02|Aug/09/99| | | |  |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: nss_nisplus.so.1 patch
    103786|02|Aug/09/99| | | |  |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: nss_nisplus.so.1 patch
    103787|01|Aug/08/96| | | |  |2.5.1_ppc|ppc;|SUNWcsu:11.5.1,REV=96.05.02.20.57;|SunOS 5.5.1_ppc: nss_nisplus.so.1 patch
    103788|02|Sep/26/96| | | |  |Unbundled|103304-03;||PC-NFSpro 2.0: performance issues using Oracle SQL-Net & NetBIOS h
    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
    103795|05|Nov/30/99| | | |  |Unbundled|sparc;|SUNWleoo:1.2.0,REV=1.1.0;SUNWleor:1.2.0,REV=1.1.0;SUNWleow:1.2.0,REV=1.1.0;|SunOS 5.5.1:  ZX Graphics Patch
    103796|19|Nov/18/97| |S|O|  |Unbundled|||OBSOLETED by 105790
    103801|07|Mar/19/98|R| | |Y |2.5.1|sparc;|SUNWsprot:5.5.1,REV=96.02.06;SUNWxcu4t:5.5.1,REV=96.02.06;|SunOS 5.5.1: Patch for make, sccs, as
    103802|05|Jun/24/97|R| | |Y |2.5.1_x86|i386;|SUNWsprot:5.5.1,REV=96.02.06;SUNWxcu4t:5.5.1,REV=96.02.06;|SunOS 5.5.1_x86: Patch for make & sccs
    103804|01|Aug/16/96| | |O|  |Unbundled|||OBSOLETED by 105715
    103806|01|Aug/16/96| | |O|  |Unbundled|||OBSOLETED by 108364
    103807|02|Oct/06/97| | | |  |Unbundled|sparc;sparc.sun4u;|SUNWcar:11.5.1,REV=96.05.02.21.09;SUNWcsr:11.5.1,REV=96.05.02.21.09;SUNWcsu:11.5.1,REV=96.05.02.21.09;|Netra NFS SmartServe 1.1: Apple Talk server crashes machine
    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|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
    103817|04|Feb/25/00|R|S| |  |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/bin/rdist patch
    103818|04|Feb/16/00|R|S| |  |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: /usr/bin/rdist patch
    103819|01|Jul/23/96|R|S| |  |2.5.1_ppc|ppc;|SUNWcsu:11.5.1,REV=96.05.02.20.57;|SunOS 5.5.1_ppc: rdist suffers from buffer overflow
    103821|05|Nov/15/01| | | |  |2.5.1|sparc.sun4c;sparc.sun4d;sparc.sun4m;sparc.sun4u;103640-38;|SUNWcar:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: zs driver patch
    103825|01|Aug/06/96| | | |  |2.4|sparc;|SUNWjxplt:1.1,REV=1.0.40;|OpenWindows 3.4: htt shows Aux region on wrong side with 2 display
    103828|02|Jun/19/97| | | |  |Unbundled|||PC-NFSpro 2.0: Modems drop connection above 38.4 kb baud rate
    103834|01|Dec/23/96| | | |  |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: New zoneinfo file required for Portugal from 1996
    103835|01|Apr/30/97| | | |  |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: New zoneinfo file required for Portugal from 1996
    103838|01|Sep/16/96| | | |  |Unbundled|sparc;|SUNWpcpro:1.5;|PC-Admin 1.5: FTP cannot copy or view filenames containing % sign
    103839|02|Oct/23/96| | | |  |2.5.1|sparc;|SUNWbtool:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/ccs/bin/lex patch
    103840|02|Oct/23/96| | | |  |2.5.1_x86|i386;|SUNWbtool:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: /usr/ccs/bin/lex patch
    103841|02|Oct/23/96| | | |  |2.5.1_ppc|ppc;|SUNWbtool:11.5.1,REV=96.05.02.20.57;|SunOS 5.5.1_ppc: /usr/ccs/bin/lex patch
    103844|02|Sep/20/96| | |O|  |2.5|||OBSOLETED by 103261
    103846|09|Dec/21/98| | | |  |Unbundled|sparc;|SUNWdtbas:1.0.2,REV=10.96.04.12;|CDE 1.0.2: libDtTerm.so.1 dtterm patch
    103847|02|Mar/17/97| | |O|  |2.5.1|||OBSOLETED by 104490
    103848|02|Apr/22/97| | |O|  |2.5.1_x86|||OBSOLETED by 104491
    103850|09|Dec/21/98| | | |  |Unbundled|i386;|SUNWdtbas:1.0.2,REV=10.96.04.12;|CDE 1.0.2_x86: libDtTerm.so.1 dtterm patch
    103851|02|Sep/27/96| | | |  |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32;|SunOS 5.4: xargs terminates silently
    103852|02|Sep/27/96| | | |  |2.4_x86|i386;|SUNWcsu:11.5.1,REV=94.07.22.14.24;|SunOS 5.4_x86: xargs terminates silently
    103857|17|Jun/02/00| | | |  |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/st patch
    103858|01|Jan/28/97| | | |  |Unbundled|sparc;|SPROlang:4.0;SPROtha:3.0;|SPARCompiler 4.0: Thread Analyzer coredumps
    103859|03|Jan/30/98| | | |  |Unbundled|sparc;|SUNWpexcl:3.0,REV=2.0.8;SUNWpexsv:3.0,REV=2.0.8;|PEX 3.0: PEX fixes
    103864|01|Jul/30/96| | |O|  |Unbundled|||OBSOLETED by 103091
    103865|01|Nov/07/96| | |O|  |Unbundled|||OBSOLETED by 103090
    103866|05|Jan/22/98|R|S| |Y |2.5.1|sparc;|SUNWbcp:11.5.1,REV=96.05.02.21.09;iss_sparc-01;|SunOS 5.5.1: BCP (binary compatibility) patch
    103867|04|Dec/12/01|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;|SunOS 5.5.1: jsh, sh and rsh patch
    103868|04|Dec/12/01|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;|SunOS 5.5.1_x86: jsh, sh and rsh patch
    103870|03|Nov/10/97| | | |  |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: st driver patch
    103872|01|Aug/29/96| | | |  |2.5|sparc;|SUNWcsr:11.5.1,REV=95.10.27.15.23;SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: bourne shell patch
    103873|01|Aug/29/96| | | |  |2.5_x86|i386;|SUNWcsr:11.5.1,REV=95.10.27.15.21;SUNWcsu:11.5.1,REV=95.10.30.17.24;|SunOS 5.5_x86: bourne shell patch
    103876|03|Aug/27/97| | | |Y |2.5.1|sparc;|SUNWjbcp:1.6,REV=1.0.79;|SunOS 5.5.1 (JFP 2.5.1): Japanese BCP libc patch
    103878|05|Mar/19/99|R|S| |  |2.5|sparc;|SUNWkcspg:1.0,REV=1.0.14;SUNWkcsrt:1.0,REV=1.0.14;|OpenWindows 3.5: KCMS tools have security vulnerability
    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.
    103911|01|Sep/17/96| | |O|  |2.5.1|||OBSOLETED by 104873
    103912|01|Apr/30/97| | |O|  |2.5.1_x86|||OBSOLETED by 104874
    103918|01|Sep/23/96| | | |  |Unbundled|sparc;|SPROcodmg:1.0.4;SPROflmrg:2.1.2;SPROfrzpt:1.0.4;SPROpmake:1.0.4;SPROvertl:1.0.4;|SPARCworks/TeamWare 1.0.4: Patch for Solaris 2.x
    103920|05|Oct/23/96| | |O|  |2.5.1|||OBSOLETED by 103640
    103921|03|Nov/14/96| | |O|  |2.5.1_x86|||OBSOLETED by 103641
    103923|03|Aug/29/97| | | |  |Unbundled|sparc;|SUNWsnmag:2.2.3;SUNWsnmct:2.2.3;SUNWsnmpd:2.2.3;|Solstice SunNet Manager 2.2.3: jumbo patch
    103925|03|Aug/29/97| | | |  |Unbundled|i386;|SUNW86nma:2.2.3;SUNW86nmc:2.2.3;SUNW86nmp:2.2.3;|Solstice SunNet Manager 2.2.3: jumbo patch
    103927|01|Aug/15/96| | | |  |Unbundled|||HelpDesk 2.1.1: aradmin crashes when filter specifies a floating p
    103928|02|Sep/22/97| | | |  |2.5.1|sparc;|SUNWcsr:11.5.1,REV=96.05.02.21.09;iss_sparc-01;|SunOS 5.5.1: kernel/fs/lofs patch
    103929|02|Jul/07/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/lofs patch
    103931|01|Nov/15/96| | | |  |Unbundled|sparc;|CYRSssp:1.2.0,REV=1.0.0;|SSP 2.1 CS6400: OpenBoot Prom fixes
    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
    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
    103944|02|Sep/10/97| | | |Y |2.4_x86|i386;|SUNWaccu:11.5.1,REV=94.07.18.19.02;|SunOS 5.4_x86: accounting fixes
    103945|02|Aug/25/97| | | |Y |2.5|sparc;|SUNWaccu:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: accounting patch
    103946|02|Sep/08/97| | | |Y |2.5_x86|i386;|SUNWaccu:11.5.1,REV=95.10.27.15.21;|SunOS 5.5_x86: accounting patch
    103947|05|May/27/98|R| | |  |Unbundled|i386;|SUNWmfrun:1.2.6,REV=10.95.09.29;|Motif 1.2.3_x86: Runtime library patch
    103948|02|Aug/26/97| | | |Y |2.5.1|sparc;|SUNWaccu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: accounting patch
    103949|02|Sep/04/97| | | |Y |2.5.1_x86|i386;|SUNWaccu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: accounting patch
    103954|01|Sep/20/96| | | |  |2.4_x86|i386;102058-10;102059-10;|SUNWxwpls:3.4.4,REV=0.94.06.21;|OpenWindows 3.4_x86: Cirrus Logic GD5436 support
    103955|04|Mar/08/99| | | |  |2.5.1|sparc.sun4c;sparc.sun4m;sparc.sun4u;|SUNWcar:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: fd driver patch
    103956|02|Aug/30/96| | | |  |Unbundled|sparc;|SUNWmfwm:1.2.6,REV=10.95.08.23;|Motif 1.2.6: Motif Window Manager (mwm) fixes
    103957|28|Mar/30/00| |S| |Y |2.5_CS6400|sparc;sparc.cray4d;|SUNWcar:11.5.1,REV=96.01.09.00.43;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;103084-02 103489-01 103325-03 103164-07 103226-07 103477-13 103153-17 103093-28|SunOS 5.5 CS6400: kernel update
    103958|02|Aug/27/96| | | |  |Unbundled|||Solstice PC-X 1.0: Cannot convert from X11R5 BDF format
    103959|13|Jul/27/01|R|S| |  |2.5.1|sparc;|SUNWlpr:11.5.1,REV=96.05.02.21.09;SUNWlps:11.5.1,REV=96.05.02.21.09;SUNWlpu:11.5.1,REV=96.05.02.21.09;SUNWscpu:11.5.1,REV=96.05.02.21.09;iss_sparc-01 (or newer)|SunOS 5.5.1: lp patch
    103960|13|Sep/05/01|R|S| |  |2.5.1_x86|i386;|SUNWlpr:11.5.1,REV=96.05.02.19.23;SUNWlps:11.5.1,REV=96.05.02.19.23;SUNWlpu:11.5.1,REV=96.05.02.19.23;SUNWscpu:11.5.1,REV=96.05.02.19.23;iss_x86-01 (or newer)|SunOS 5.5.1_x86: lp patch
    103962|01|Sep/16/96| | |O|  |2.5|||OBSOLETED by 104889
    103967|02|Jun/11/97| | | |  |2.5_CS6400|sparc.cray4d;102979-05;|SUNWcar:11.5.1,REV=96.01.09.00.43;|SunOS 5.5 CS6400: /platform/cray4d/kernel/drv/qe fixes
    103968|02|Feb/25/97| | | |  |2.5_CS6400|sparc.cray4d;|SUNWcar:11.5.1,REV=96.01.09.00.43;|SunOS 5.5 CS6400: sd driver fix
    103969|05|Nov/26/97| | | |  |2.5_CS6400|sparc.cray4d;104793-04;|SUNWcar:11.5.1,REV=96.01.09.00.43;|SunOS 5.5 CS6400: jumbo patch for SSA for Solaris 2.5
    103970|02|Feb/25/97| | | |  |2.5_CS6400|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5 CS6400: libaio patch
    103971|03|Feb/25/97| | | |  |2.5_CS6400|sparc.cray4d;|SUNWcar:11.5.1,REV=96.01.09.00.43;|SunOS 5.5 CS6400: le driver patch
    103972|01|Nov/18/96| | | |  |2.5_CS6400|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5 CS6400: libkvm big memory fix
    103973|05|Dec/19/97| | | |  |2.5_CS6400|sparc;sparc.cray4d;|CYRShea:1.1.0,REV=96.01.09.00.43;SUNWcar:11.5.1,REV=96.01.09.00.43;SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5 CS6400: st driver patch
    103974|01|Nov/18/96| | | |  |2.5_CS6400|sparc.cray4d;|CYRSdrr:1.1.0,REV=96.01.09.00.43;|SunOS 5.5 CS6400: dr driver patch
    103975|01|Nov/18/96| | | |  |2.5_CS6400|sparc;|CYRSbtms:1.1.0,REV=96.01.09.00.43;|SunOS 5.5 CS6400: sga driver patch
    103976|01|Nov/18/96| | | |  |Unbundled|sparc;|SUNWcsr:11.5.1,REV=95.10.27.15.23;|SunOS 5.5 CS6400: Swapadd changes to support Alternate Pathing
    103977|01|Nov/19/96| | | |  |2.5_CS6400|sparc.cray4d;|SUNWcar:11.5.1,REV=96.01.09.00.43;|SunOS 5.5 CS6400: hotswap patch
    103978|01|Nov/19/96| | | |  |Unbundled|sparc;|SUNWbf:2.0.1_Cray_R,REV=96.01.08.13.52;|FDDI 2.0.1 CS6400: fixes for FDDI DR detach
    103979|01|Nov/19/96| | | |  |2.5_CS6400|sparc.cray4d;|CYRSdru:1.1.0,REV=96.01.09.00.43;|SunOS 5.5 CS6400: dr daemon patch
    103981|18|May/16/00|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;SUNWpd:1.0,REV=96.05.02.21.09;SUNWpdu:1.0,REV=96.05.02.21.09;|SunOS 5.5.1: glm driver patch
    103986|01|Mar/27/97| | | |  |2.5.1|sparc;|SUNWjxplt:1.2,REV=1.0.79;|OpenWindows 3.5.1: patch for Japanese input method in OLIT textfie
    103987|01|Mar/27/97| | | |  |2.5.1_x86|i386;|SUNWjxplt:1.2,REV=1.0.79;|OpenWindows 3.5.1_x86: patch for OLIT textfield Japanese input met
    103988|01|Mar/27/97| | | |  |2.5.1_ppc|ppc;|SUNWjxplt:1.2,REV=1.0.79;|OpenWindows 3.5.1_ppc: patch for OLIT textfield Japanese input met
    103989|03|Apr/04/97| | | |  |2.5.1|sparc;|JSat8xw:1.3,REV=1.0.4;|SunOS 5.5.1 (JFP 2.5.1): ATOK8 patch
    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|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: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,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
    104034|06|Feb/04/00| |S| |  |2.5_CS6400|sparc.cray4d;103169-15;|SUNWcar:11.5.1,REV=96.01.09.00.43;|SunOS 5.5 CS6400: ip driver fixes
    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|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
    104067|05|Mar/31/98| | | |  |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: /usr/kernel/drv/audiocs patch
    104068|01|Sep/16/96| | | |  |2.5.1_ppc|ppc;|SUNWcsu:11.5.1,REV=96.05.02.20.57;|SunOS 5.5.1_ppc: audiocs patch
    104072|02|May/19/98| | | |  |2.5.1|sparc;103612-08;|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/rm and /usr/xpg4/bin/rm patch
    104073|01|Apr/30/97| | | |  |2.5.1_x86|i386;103613-08;103641-35;|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: rm command will not work if cwd is not readable
    104075|01|Oct/03/96| |S| |  |Unbundled|sparc;|SUNWfw:2.1;|Firewall-1 2.1: Unix FW-1 VPN manager module creates zombie proces
    104077|01|Oct/04/96| |S| |  |Unbundled|i386;|SUNWfw:2.1;|Firewall-1 2.1: Unix FW-1 VPN manager module creates zombie proces
    104079|02|May/19/98| | | |  |2.5|sparc;103187-11;|SUNWcsu:11.5.1,REV=95.10.30.16.09;SUNWxcu4:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: rm command will not work if cwd is not readable
    104081|01|Oct/17/96| | | |  |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: drvconfig patch
    104084|01|Sep/16/96| | | |  |Unbundled|i386;|SUNWpcpro:1.5;|PC-Admin 1.5: FTP cannot copy or view filenames containing % sign
    104085|01|Sep/16/96| | | |  |Unbundled|sparc;|SUNWpcpro:1.5.1.0;|PC-Admin 1.5.1: FTP cannot copy or view filenames containing % sig
    104086|01|Sep/16/96| | | |  |Unbundled|i386;|SUNWpcpro:1.5.1.0;|PC-Admin 1.5.1: FTP cannot copy or view filenames containing % sig
    104092|01|Dec/19/96| | | |  |Unbundled|sparc;|CYRSssp:1.2.0,REV=1.0.0;|SSP 2.1 CS6400: rename_host fails to properly update machine_confi
    104093|08|Dec/21/99|R|S| |Y |2.5.1|sparc;103566-36;106663-01;106662-01;103901-11;|SUNWoldst:3.5.30,REV=0.96.03.18;|OpenWindows 3.5.1: mailtool patch
    104094|01|Apr/22/97| | | |  |2.5.1|sparc;|SUNWhea:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: dkio.h patch
    104095|01|Apr/22/97| | | |  |2.5.1_x86|i386;|SUNWhea:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: hdio.h patch
    104098|02|Jul/30/97| | | |  |Unbundled|i386;|SUNWipx:2.0.1,REV=1.0;|Solstice Connect/NW 2.0.1: Jumbo patch for Lotus Notes related iss
    104099|01|Nov/18/96| | | |  |Unbundled|sparc;|CYRSssp:1.2.0,REV=1.0.0;|SSP 2.1 CS6400: bringup, cvc, reboot_host and obp_helper fixes
    104100|01|Nov/18/96| | | |  |Unbundled|sparc;|CYRSssp:1.2.0,REV=1.0.0;|SSP 2.1 CS6400: domain_create/domain_remove fixes
    104101|01|Nov/19/96| | | |  |2.5|sparc;|CYRSssp:1.2.0,REV=1.0.0;|SSP 2.1 CS6400: missing hostname/messages file after initial insta
    104102|02|Oct/29/98| | | |  |Unbundled|sparc;|CYRSssp:1.2.0,REV=1.0.0;|SSP 2.1 CS6400: hostview, libdr and libsuperd fixes
    104103|01|Nov/19/96| | | |  |Unbundled|sparc;|CYRSssp:1.2.0,REV=1.0.0;|SSP 2.1 CS6400: DR detach voyager support for POST & download_help
    104104|01|Nov/19/96| | | |  |Unbundled|sparc;|CYRSssp:1.2.0,REV=1.0.0;|SSP 2.1 CS6400: Intermittent POST scanlength errors caused by host
    104105|01|Nov/19/96| | | |  |Unbundled|sparc;|CYRSssp:1.2.0,REV=1.0.0;|SSP 2.1 CS6400: DR application title is incorrect
    104106|01|Nov/19/96| | | |  |Unbundled|sparc;|CYRSssp:1.2.0,REV=1.0.0;|SSP 2.1 CS6400: Voyager interconnect test support
    104107|01|Nov/19/96| | | |  |Unbundled|sparc;|CYRSssp:1.2.0,REV=1.0.0;|SSP 2.1 CS6400: hostmon fails to reboot after watchdog reset
    104108|01|Nov/19/96| | | |  |2.4_CS6400|sparc;|CYRScvc:1.1.0,REV=94.12.22.23.36;|SunOS 5.4 CS6400: cvc panic during boot
    104111|01|Nov/20/96| | | |  |2.4_CS6400|sparc;|CYRSbtms:1.1.0,REV=94.12.22.23.36;|SunOS 5.4 CS6400: DLT support for SCSI Autoloader driver
    104112|01|Nov/20/96| | | |  |2.4_CS6400|sparc.cray4d;|SUNWcar:11.5.1,REV=94.12.22.23.36;|SunOS 5.4 CS6400: DR detach support for scsi driver
    104113|01|Dec/19/96| | | |  |2.4_CS6400|sparc.cray4d;|SUNWdfb:11.5.1,REV=94.12.22.23.36;|SunOS 5.4 CS6400: BAD TRAP panic SS20MP
    104114|02|Dec/19/96| | | |  |2.4|sparc.cray4d;|SUNWcar:11.5.1,REV=94.12.22.23.36;|SunOS 5.4 CS6400: st driver fixes
    104116|01|Nov/20/96| | | |  |2.4_CS6400|sparc;|SUNWcsr:11.5.1,REV=94.07.15.22.10;|SunOS 5.4 CS6400: Ethernet performance fixes
    104117|01|Nov/20/96| | | |  |2.4_CS6400|sparc;|SUNWcsr:11.5.1,REV=94.07.15.22.10;|SunOS 5.4 CS6400: Swapadd changes to support Alternate Pathing
    104119|01|Nov/20/96| | | |  |Unbundled|sparc;|CYRShippi:1.1.0,REV=1.0.0;|HiPPI 2.0 CS6400: fixes for HiPPI and Dynamic Reconfiguration supp
    104120|01|Nov/20/96| | | |  |Unbundled|sparc;|CYRShippi:1.1.0,REV=1.0.0;|HiPPI 2.0 CS6400: support for Alternate Pathing in HiPPI startup
    104121|01|Nov/20/96| | | |  |Unbundled|sparc;|SUNWbf:2.0_Cray_R,REV=1.0.0;|FDDI 2.0 CS6400: fixes for FDDI, DR and AP support
    104122|02|Dec/19/96| | | |  |2.4|sparc;sparc.cray4d;102001-11;|CYRShea:1.1.0,REV=94.12.22.23.36;SUNWcar:11.5.1,REV=94.12.22.23.36;|SunOS 5.4 CS6400: fixes for qe, le drivers
    104123|03|Feb/27/98| | | |  |Unbundled|sparc;|SUNWssadv:2.1_Cray_R,REV=95.06.14.13.48;SUNWssaop:1.0,REV=1.2;|SPARCstorage Array 2.1 CS6400: SSA patch for Solaris 2.4
    104124|01|Dec/19/96| | | |  |Unbundled|sparc;101945-27;|SUNWnfr:3.0.1_Cray_R;SUNWnft:3.0.1_Cray_R;|SunLink FDDI/S 3.0.1 CS6400: jumbo patch, includes DR and AP suppo
    104125|01|Nov/20/96| |S| |  |2.4_CS6400|sparc.cray4d;102044-01;|SUNWcar:11.5.1,REV=94.12.22.23.36;|SunOS 5.4 CS6400: bug in mouse code makes "break root" attack poss
    104153|02|Dec/19/96| | | |  |2.4_CS6400|sparc.cray4d;|SUNWcar:11.5.1,REV=94.12.22.23.36;SUNWcg6:11.5.1,REV=94.12.22.23.36;|SunOS 5.4 CS6400: fixes for zs, zsh, cgsix drivers
    104154|02|Dec/19/96| | | |  |2.4_CS6400|sparc.cray4d;|SUNWcar:11.5.1,REV=94.12.22.23.36;|SunOS 5.4 CS6400: fixes to stc driver
    104155|02|Dec/19/96| | | |  |2.4_CS6400|sparc.cray4d;|SUNWcar:11.5.1,REV=94.12.22.23.36;|SunOS 5.4 CS6400: shared memory fixes
    104156|01|Nov/20/96| | | |  |2.4_CS6400|sparc.cray4d;|SUNWcar:11.5.1,REV=94.12.22.23.36;102529-01|SunOS 5.4 CS6400: kgmon -i sometimes hangs the system on sun4m
    104157|01|Nov/20/96| | | |  |2.4_CS6400|sparc.cray4d;|SUNWcar:11.5.1,REV=94.12.22.23.36;|SunOS 5.4 CS6400: syslog msgs not outputed
    104158|02|Dec/19/96| | | |  |2.4_CS6400|sparc.cray4d;|SUNWcar:11.5.1,REV=94.12.22.23.36;|SunOS 5.4 CS6400: semsys fixes
    104159|01|Nov/20/96| |S| |  |2.4_CS6400|sparc.cray4d;|SUNWcar:11.5.1,REV=94.12.22.23.36;102656-01|SunOS 5.4 CS6400: /dev/qec protect against being opened directly
    104160|01|Nov/20/96| | | |  |2.4_CS6400|sparc.cray4d;|SUNWcar:11.5.1,REV=94.12.22.23.36;|SunOS 5.4 CS6400: bpp driver fixes
    104161|01|Dec/19/96| | | |  |2.4_CS6400|sparc.cray4d;|SUNWcar:11.5.1,REV=94.12.22.23.36;|SunOS 5.4 CS6400: msgsys limits increase
    104162|02|Jan/15/97| | | |  |2.5.1|sparc;|SUNWoldst:3.5.30,REV=0.96.03.18;|OpenWindows 3.5.1: snapshot fixes
    104166|05|Jun/01/01|R|S| |  |2.5.1|sparc;104654-05;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/lib/nfs/statd patch
    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|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
    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
    104183|01|Nov/04/96| | | |  |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: quotacheck patch
    104184|01|Nov/04/96| | | |  |2.5.1_ppc|ppc;|SUNWcsu:11.5.1,REV=96.05.02.20.57;|SunOS 5.5.1_ppc: quotacheck patch
    104185|04|Dec/27/99|R|S| |  |Unbundled|i386;|SUNWdtdst:1.0.2,REV=10.96.04.12;|CDE 1.0.2_x86: dtmail fixes
    104186|02|Feb/11/97| |S|O|  |Unbundled|||OBSOLETED by 104830
    104190|14|Jul/20/00| | | |  |Unbundled|sparc;|SUNWomgta:8.2.1;SUNWomgtb:8.2.1;SUNWomgte:8.2.1;106822-04|Solstice CMIP 8.2.1 : patch for runtime and examples fixes
    104192|05|Sep/17/97| | | |  |Unbundled|i386;|SUNWomgta:8.2.1;SUNWomgtb:8.2.1;SUNWomgte:8.2.1;|Solstice CMIP 8.2.1 : Jumbo patch for runtime and examples fixes
    104195|20|Mar/08/01|R| | |  |Unbundled|i386;|SUNWmfrun:1.2.6,REV=10.96.03.28;|Motif 1.2.3_x86: Runtime library patch
    104196|03|Feb/17/98| | | |  |2.5|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: quota patch
    104197|03|Feb/17/98| | | |  |2.5_x86|i386;|SUNWcsu:11.5.1,REV=95.10.30.17.24;|SunOS 5.5_x86: quota patch
    104200|01|Oct/10/96| | | |  |2.5.1|sparc.sun4c;sparc.sun4d;sparc.sun4m;sparc.sun4u;|SUNWcar:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: stc driver patch
    104201|01|Oct/11/96| | | |  |2.5.1|sparc;|SUNWcsr:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: wrong x,y location is given on mouse up events
    104202|01|Dec/11/96| | | |  |Unbundled|sparc;|SUNWdial:3.1.0,REV=2.0.0;|BD graphics 2.5: Buttons/Dials Patch
    104203|01|May/15/97| | | |  |2.5|sparc;|SUNWcsr:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: wrong x,y location given on mouse up events
    104204|01|Oct/15/96| | | |  |Unbundled|||PC-NFSpro 2.0: Allow user to disable PC-NFSpro splash screen
    104207|01|Oct/17/96| | | |  |Unbundled|||PC-NFSpro 2.0: RLM keeps connection up if exited without disconnec
    104208|01|Oct/23/96| | | |  |2.5.1|sparc;|SUNWbtool:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: usr/ccs/bin/yacc patch
    104209|01|Oct/23/96| | | |  |2.5.1_x86|i386;|SUNWbtool:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: usr/ccs/bin/yacc patch
    104210|01|Oct/23/96| | | |  |2.5.1_ppc|ppc;|SUNWbtool:11.5.1,REV=96.05.02.20.57;|SunOS 5.5.1_ppc: usr/ccs/bin/yacc patch
    104212|15|Apr/18/01|R|S| |  |2.5.1|sparc;|SUNWhmd:11.5.1,REV=96.05.02.21.09;SUNWhmdu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /kernel/drv/hme patch
    104215|01|Nov/20/96| | | |  |Unbundled|||Solstice Helpdesk 1.1: Can't cut/paste Swedish characters within t
    104218|04|Oct/01/97| | | |  |2.5|sparc;|SUNWoldst:3.5.21,REV=0.95.08.23;|OpenWindows 3.5: textedit fixes
    104220|04|Jun/01/01|R|S| |  |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/lib/nfs/mountd patch
    104221|04|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/lib/nfs/mountd patch
    104223|03|Apr/24/01|R|S| |  |2.5|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: /usr/lib/nfs/mountd patch
    104224|03|Apr/24/01|R|S| |  |2.5_x86|i386;|SUNWcsu:11.5.1,REV=95.10.30.17.24;|SunOS 5.5_x86: /usr/lib/nfs/mountd patch
    104227|01|Nov/05/96| | | |  |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: echo command patch
    104228|01|Apr/30/97| | | |  |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: echo command patch
    104231|01|Apr/28/97| | | |  |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: in.routed patch
    104232|01|Dec/24/96| | | |  |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32;|SunOS 5.4: in.routed patch
    104234|01|Nov/06/96| | | |  |2.5|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: in.routed patch
    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: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
    104246|08|Nov/16/98|R| | |  |2.5.1|sparc;|SUNWhmd:11.5.1,REV=96.05.02.21.09;SUNWhmdu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /kernel/drv/fas patch
    104248|04|Mar/16/01| | | |  |Unbundled|sparc;|SUNWdtdte:1.0.1,REV=10.95.09.20;SUNWdtdte:1.0.1,REV=10.95.09.20,PATCH=12;|CDE 1.0.1: dtsession patch for screenlock
    104249|03|Mar/16/01| | | |  |Unbundled|i386;|SUNWdtdte:1.0.1,REV=10.95.09.20;SUNWdtdte:1.0.1,REV=10.95.09.20,PATCH=12;|CDE 1.0.1_x86: dtsession patch for screenlock
    104254|06|Feb/27/97| | | |  |Unbundled|||PC-NFSpro 2.0: PCNFSPRO 2.0 network printing problem under Win95
    104258|01|Oct/29/96| | | |  |Unbundled|||Hardware/Disk, 2.9GB disk: Download program and firmware ST43401N
    104259|05|Aug/26/97| | | |  |2.5.1|sparc;103640-11;|SUNWcsr:11.5.1,REV=96.05.02.21.09;iss_sparc-01;|SunOS 5.5.1: tmpfs patch
    104260|05|Sep/04/97| | | |  |2.5.1_x86|i386;103641-11;|SUNWcsr:11.5.1,REV=96.05.02.19.23;iss_x86-01;|SunOS 5.5.1_x86: tmpfs patch
    104263|01|May/01/97| | | |  |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: fdformat patch
    104264|01|May/01/97| | | |  |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: fdformat patch
    104266|02|Jun/10/99|R|S| |  |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: inetd patch
    104267|02|Jul/12/99|R|S| |  |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: inetd patch
    104269|02|Jun/08/99|R|S| |  |2.5|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: inetd patch
    104270|02|Jun/08/99|R|S| |  |2.5_x86|i386;|SUNWcsu:11.5.1,REV=95.10.30.17.24;|SunOS 5.5_x86: inetd patch
    104271|13|Oct/11/01| |S| |  |Unbundled|sparc;|SUNWx4cli:9.0,PATCH=13;|Solstice X.400 9.0 Client Toolkit Patch
    104272|13|Dec/07/01| |S| |  |Unbundled|sparc;|SUNWx4srv:9.0,PATCH=13;|Solstice X.400 9.0 Messaging Server Patch
    104273|13|Oct/12/01| |S| |  |Unbundled|i386;|SUNWx4cli:9.0,PATCH=13;|Solstice X.400 9.0 Client Toolkit Patch_x86
    104274|13|Dec/07/01| |S| |  |Unbundled|i386;|SUNWx4srv:9.0,PATCH=13;|Solstice X.400 9.0 Messaging Server Patch_x86
    104275|01|Nov/06/96| | | |  |Unbundled|||Solstice DiskSuite 4.1: User's Guide and Reference postscript erro
    104277|01|Nov/05/96| | | |  |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: useradd with no uid specified gives large uid
    104278|01|Feb/28/97| | | |  |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: useradd with no uid specified gives large uid
    104280|01|May/01/97| | | |  |2.5.1|sparc;|SUNWtoo:11.5.1,REV=96.05.02.21.09;iss_sparc-01;|SunOS 5.5.1: truss patch
    104281|01|May/01/97| | | |  |2.5.1_x86|i386;|SUNWtoo:11.5.1,REV=96.05.02.19.23;iss_x86-01;|SunOS 5.5.1_x86: truss patch
    104283|04|Apr/29/98|R|S| |  |2.5.1|sparc;103640-14;|SUNWcsr:11.5.1,REV=96.05.02.21.09;iss_sparc-01;|SunOS 5.5.1: /kernel/fs/procfs patch
    104284|03|Dec/24/97|R|S| |  |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: procfs patch
    104286|07|Jul/22/99| | | |Y |Unbundled|sparc;104812-05;|SUNWdniCU:8.0.1;|SunLink DNI 8.0.1: DNI Y2000 complaint patch
    104287|01|Jan/15/97| | | |  |2.5.1|sparc;|SUNWoldte:3.5.30,REV=0.96.03.18;|OpenWindows 3.5.1: olwm fix
    104288|07|Mar/07/00| | | |  |Unbundled|||Hardware/PROM: Ultra 1E Standalone Flash PROM Update
    104297|01|Nov/05/96| | | |  |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: halt patch
    104298|01|May/01/97| | | |  |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: halt patch
    104312|09|Jun/02/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;SUNWhea:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: format and fdisk patch
    104313|06|Oct/02/97| | | |  |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;|SunOS 5.5.1_x86: format and fdisk patch
    104314|01|Nov/25/96| | | |  |2.5.1_ppc|ppc;|SUNWcsu:11.5.1,REV=96.05.02.20.57;|SunOS 5.5.1_ppc: format patch
    104317|01|May/01/97| |S|O|  |2.5.1|||OBSOLETED by 103640
    104318|01|May/01/97| |S|O|  |2.5.1_x86|||OBSOLETED by 103641
    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|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
    104347|08|Jun/22/99| | | |  |Unbundled|sparc;|SUNWvmdev:2.2;SUNWvmman:2.2;SUNWvxvm:vxvm2.2/cvm2.2;|Ultra Enterprise PDB 1.2: Multiple fixes for Cluster Volume Manage
    104350|01|Nov/25/96| | | |  |2.5.1_x86|i386;|SUNWpsdir:1.0.0,REV=96.05.02.19.23;|SunOS 5.5.1_x86: el driver patch
    104357|07|Apr/24/01|R|S| |  |2.5|sparc;103187-37;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: /usr/sbin/rpcbind patch
    104358|07|Apr/24/01|R|S| |  |2.5_x86|i386;103188-37;|SUNWcsu:11.5.1,REV=95.10.30.17.24;|SunOS 5.5_x86: /usr/sbin/rpcbind patch
    104361|01|Dec/10/96| | | |  |2.5.1|sparc;|SUNWarc: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: libw patch
    104362|01|May/02/97| | | |  |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: libw patch
    104366|10|Jan/03/00| | | |Y |Unbundled|sparc;104529-15;|SPROf90:1.2;SPROmrf90:1.2;|Fortran 90 1.2: Patch for Fortran 90 1.2
    104369|01|Nov/15/96| | | |  |Unbundled|sparc;|OMRONWnn6:2.11;|Wnn6 2.11: jserver can not access the second license server
    104371|01|Jan/21/97| | | |  |Unbundled|i386;|SUNWjws:1.0;|Java WorkShop 1.0: Patch for pkg install on Solaris 2.x_x86
    104372|01|Jan/16/97| | | |  |Unbundled|||Java WorkShop 1.0: Patch for Win95 and NT
    104374|05|Nov/25/98| | | |  |Unbundled|sparc;|SUNWdtwm:1.0.2,REV=10.96.04.12;|CDE 1.0.2: dtwm patch
    104375|05|Nov/25/98| | | |  |Unbundled|i386;|SUNWdtwm:1.0.2,REV=10.96.04.12;|CDE 1.0.2_x86: dtwm patch
    104376|04|Aug/04/98| | | |  |Unbundled|sparc;|SUNWdtwm:1.0.1,REV=10.95.09.20;|CDE 1.0.1: dtwm patch
    104377|04|Aug/04/98| | | |  |Unbundled|i386;|SUNWdtwm:1.0.1,REV=10.95.09.20;|CDE 1.0.1_x86: dtwm patch
    104380|08|Nov/17/99| | | |  |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/bin/cpio patch
    104381|07|Mar/11/98| | | |  |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: /usr/bin/cpio patch
    104383|01|Nov/25/96| | | |  |2.5.1_x86|i386.i86pc;|SUNWcar:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: uppc intr handler assumes PIC state is never chan
    104385|05|Dec/01/99| | | |  |2.5|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: /usr/bin/cpio patch
    104386|04|Dec/22/97| | | |  |2.5_x86|i386;|SUNWcsu:11.5.1,REV=95.10.30.17.24;|SunOS 5.5_x86: /usr/bin/cpio patch
    104387|01|Nov/15/96| | | |  |Unbundled|sparc;|OMRONWnn6:2.10;|Wnn 2.10: jserver can not access the second license server
    104388|02|Oct/09/97| | | |  |Unbundled|sparc;|SUNWnwsvr:2.0,REV=1.0;|Solstice NW Server 2.0: WP filesharing, Novell 32 client, OS/2 tim
    104389|01|Nov/26/96| | | |  |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: dumpkeys(1): infinite loop with no keyboard
    104393|01|Nov/20/96| | |O|  |Unbundled|103008-01;||OBSOLETED by 103090
    104396|01|Feb/14/97| | | |  |Unbundled|||PC-NFSpro-DE 2.0: NFSWCONF GPF's configuring netbios or services
    104397|01|Aug/05/97| | | |  |Unbundled|||SJSP 3.3: Jumbo patch - misc. bug fixes - Sybase version
    104398|01|Aug/05/97| | | |  |Unbundled|||SJSP 3.3: Jumbo patch - misc. bug fixes - Sybase version
    104400|01|Aug/05/97| | | |  |Unbundled|sparc;|SUNWsjs:3.3,REV=96.08.03.16.28;|Solstice Jobs Scheduler Pro 3.3: Jumbo Patch - Sybase Version
    104406|01|Nov/26/96| | | |  |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: Fix for groupadd
    104407|01|Nov/26/96| | | |  |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: Fixfor groupadd
    104410|05|Jun/19/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;|SunOS 5.5: /sbin/su, /usr/bin/su and /sbin/sulogin patch
    104411|05|Jun/19/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;|SunOS 5.5_x86: /sbin/su, /usr/bin/su and /sbin/sulogin patch
    104413|01|Dec/09/96| | | |  |Unbundled|sparc;103259-03;|SUNWccon:1.1,REV=1.1;SUNWclmon:1.1,REV=1.1;|Sparc Cluster PDB 1.1 client-side patch
    104415|01|Feb/14/97| | | |  |Unbundled|||PC-NFSpro-FR 2.0: NFSWCONF GPF's configuring netbios or services
    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
    104433|09|Oct/06/98| |S|O|Y |2.5.1|103612-27;103696-03;||OBSOLETED by 106563
    104434|08|Oct/06/98|R|S|O|Y |2.5.1_x86|i386;103613-27;103697-03;103641-34;103641-35;103641-35;|SUNWcsr:11.5.1,REV=96.05.02.19.23;SUNWcsu:11.5.1,REV=96.05.02.19.23;iss_x86-01;|Obsoleted by: 104819-02 SunOS 5.5.1_x86: pam security patch
    104436|01|Jan/10/97| | | |  |2.4|sparc;|SUNWarc:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: mutex_lock bug in crypt()
    104440|01|Dec/16/96| | | |  |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/sbin/swap patch
    104441|01|Dec/24/96| | | |  |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: /usr/sbin/swap patch
    104443|02|Apr/22/97| | | |  |2.5.1|sparc;|SUNWpcmcu:1.0,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/lib/pcmciad patch
    104444|02|Apr/22/97| | | |  |2.5.1_x86|i386;|SUNWpcmcu:1.0,REV=96.05.02.19.23;|SunOS 5.5.1_x86: /usr/lib/pcmciad patch
    104445|01|Jan/22/98| |S| |  |Unbundled|||PCNFS 5.1: Pcnfsd authentication, printer and slip daemon patch
    104447|01|Apr/22/97| | |O|  |2.5.1|||OBSOLETED by 103640
    104448|01|Apr/22/97| | |O|  |2.5.1_x86|||OBSOLETED by 103641
    104452|05|Jun/09/98| | | |  |Unbundled|sparc;|SUNWhagen:1.2,REV=1.1;|Solstice HA 1.2: SUNWhagen Patch
    104453|02|Sep/29/97| | | |  |2.5.1|sparc;|SUNWoldst:3.5.30,REV=0.96.03.18;|OpenWindows 3.5.1: textedit
    104455|04|Jul/25/97| | | |  |Unbundled|sparc;|SUNWfw:2.1;|Solstice FireWall-1 2.1:  Version 2.1c (basic) upgrade/jumbo patch
    104457|02|Jul/30/97| | | |  |Unbundled|i386;|SUNWfw:2.1;|Solstice FireWall-1 2.1: (basic) upgrade/jumbo patch
    104458|01|Dec/11/96| | | |  |Unbundled|sparc;|SUNWfw:2.0;|Firewall-1 2.0: snmpd doesn't work with Sun Net Manager properly
    104459|03|Jan/16/98| | | |  |Unbundled|sparc;104459-01;|SUNWipxip:1.2,REV=1.1;103516-01|Netra-i 3.0, 3.1: The SPX/IPX Gateway server Core Dump
    104460|03|Jan/21/98| | | |  |Unbundled|sparc;|SUNWipx:1.1N;SUNWipxip:1.2,REV=1.1;103516-01, 103568-01|Netra-i 3.0, 3.1: Jumbo patch for  related issues
    104461|01|Jan/28/97| | | |  |2.5|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: ksyms patch
    104463|03|Oct/26/98| | | |Y |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/date patch
    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|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
    104474|02|Aug/01/97| | | |  |2.5_x86|i386;|SUNWnisu:11.5.1,REV=95.10.27.15.21;|SunOS 5.5_x86: ypbind patch
    104475|02|Aug/01/97| | | |  |2.5.1|sparc;|SUNWnisu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: ypset patch
    104476|02|Aug/01/97| | | |  |2.5.1_x86|i386;|SUNWnisu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: ypset patch
    104478|04|May/09/02| | | |  |2.5.1|sparc;|SUNWaccu:11.5.1,REV=96.05.02.21.09;SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/lib/sa/sadc and /usr/sbin/sar patch
    104479|04|May/09/02| | | |  |2.5.1_x86|i386;|SUNWaccu:11.5.1,REV=96.05.02.19.23;SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: /usr/lib/sa/sadc and /usr/sbin/sar patch
    104482|03|Apr/10/98| | | |  |2.5.1|sparc;|SUNWpppk:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/kernel/strmod/ppp patch
    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|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
    104497|05|Jan/27/99| |S| |  |Unbundled|sparc;103884-06;|SUNWdtdte:1.0.1,REV=10.95.09.20;|CDE 1.0.1: dtappgather patch
    104498|05|Jan/27/99| |S| |  |Unbundled|sparc;103882-08;|SUNWdtdte:1.0.2,REV=10.96.04.12;|CDE 1.0.2: dtappgather patch
    104499|05|Jan/27/99| |S| |  |Unbundled|i386;103885-06;|SUNWdtdte:1.0.1,REV=10.95.09.20;|CDE 1.0.1_x86: dtappgather patch
    104500|05|Jan/27/99| |S| |  |Unbundled|i386;103886-07;|SUNWdtdte:1.0.2,REV=10.96.04.12;|CDE 1.0.2_x86: dtappgather patch
    104505|01|Jan/06/97| | | |  |Unbundled|||PC-Admin 1.5: Allows support for Australian DST
    104512|01|Feb/26/97| | | |  |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: ex core dumps on procedure
    104516|03|Jun/23/97|R|S| |  |2.5.1|sparc;|SUNWapppu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: aspppd patch
    104517|03|Jun/23/97|R|S| |  |2.5.1_x86|i386;|SUNWapppu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: aspppd patch
    104518|02|Jun/10/97| |S| |  |Unbundled|sparc;|SUNWssm:4.3,REV=2;|Solstice Security Manager (SSM) 4.3: sundry patch
    104529|15|Dec/23/99| | | |Y |Unbundled|sparc;|SPROf77:4.2;SPROlang:4.2;SPROlib77:4.2;SPROmrf77:4.2;|FORTRAN 77 4.2: Patch for FORTRAN 77 4.2
    104530|01|Feb/07/97| | | |  |Unbundled|||PC-NFSPro 2.0: Fixes GPF under MS Access if sending mail.
    104532|01|Jan/28/97| | | |  |2.4|sparc;|SUNWolimt:3.4.16,REV=0.94.06.23;|OpenWindows 3.4: Imagetool displays incorrect color of a dumped im
    104533|05|Jul/19/99|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: OLIT Patch
    104538|01|Jan/21/97| | | |  |2.5.1|sparc;|SUNWolimt:3.5.30,REV=0.96.03.18;|OpenWindows 3.5.1: Imagetool displays incorrect color (dumped imag
    104539|10|Nov/21/00| | | |  |Unbundled|||SunATM 2.1: rolls up bug fixes for 2.1 release of SunATM software
    104547|04|Aug/25/98| | | |  |Unbundled|sparc;|SUNW3770:9.0;|SunLink SNA 3770 RJE 9.0: doesn't execute all the spooled jobs
    104548|03|Jun/06/97| | | |  |2.5_CS6400|sparc.cray4d;|SUNWcar:11.5.1,REV=96.01.09.00.43;|SunOS 5.5 CS6400: isp driver fixes
    104551|04|Dec/16/98| |S| |  |Unbundled|sparc;|SUNWdtdst:1.0.1,REV=10.95.10.10;|CDE 1.0.1: dtpad patch
    104552|05|Dec/16/98| |S| |  |Unbundled|sparc;|SUNWdtdst:1.0.2,REV=10.96.04.12;|CDE 1.0.2: dtpad patch
    104553|03|Dec/16/98| |S| |  |Unbundled|i386;|SUNWdtdst:1.0.1,REV=10.95.10.10;|CDE 1.0.1_x86: dtpad patch
    104554|04|Dec/16/98| |S| |  |Unbundled|i386;|SUNWdtdst:1.0.2,REV=10.96.04.12;|CDE 1.0.2_x86: dtpad patch
    104555|02|Jun/10/97| |S| |  |Unbundled|i386;|SUNWssm:4.3,REV=2;|Solstice Security Manager (SSM) 4.3: sundry patch
    104556|01|Feb/10/97| | | |  |2.5|sparc;|SUNWoldst:3.5.21,REV=0.95.08.23;|OpenWindows 3.5: Pageview patch
    104557|04|Aug/05/99|R|S| |  |2.5.1_x86|i386;|SUNWolrte:3.5.31,REV=0.96.03.18;SUNWolslb:3.5.30,REV=0.96.03.18;|OpenWindows 3.5.1_x86: OLIT multiple fixes patch
    104560|05|Jul/21/98|R| | |  |2.5.1|sparc;|SUNWcsr:11.5.1,REV=96.05.02.21.09;iss_sparc-01;|SunOS 5.5.1: /kernel/fs/hsfs patch
    104561|01|Feb/20/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/hsfs patch
    104563|02|Feb/26/97| | | |  |Unbundled|sparc;|SUNWosau:1.0,REV=06.00;|Sun RSM Array 2000 1.0: ICON Chip Failure Messages
    104564|03|May/20/97| | | |  |Unbundled|sparc;|SUNWosar:1.0,REV=06.00;|Sun RSM Array 2000 1.0: Rdriver deadlock detection code fix
    104572|10|Oct/29/98| | | |  |Unbundled|sparc;101945-27;102038-02;|SUNWnfr:5.0;SUNWnft:5.0;|SunFDDI 5.0: fixes in handling multicast addresses, performance
    104573|02|Mar/19/97| | | |  |Unbundled|sparc;101318-71;101734-03;|SUNWnfr:5.0;|SunFDDI 5.0: fixes for FDDI 5.0 driver under Solaris 2.3
    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: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|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
    104603|02|Aug/01/97| | | |  |Unbundled|i386;|SUNWfwvpn:2.1;|Solstice FireWall-1 2.1c: (VPN) upgrade/jumbo patch
    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|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
    104614|01|Apr/24/97|R|S| |  |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: /usr/lib/newsyslog patch
    104615|01|Mar/10/97| | | |  |2.5.1|sparc;|SUNWcsr:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /kernel/misc/scsi patch
    104616|01|Apr/24/97| | | |  |2.5.1_x86|i386;|SUNWcsr:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: /kernel/misc/scsi patch
    104617|01|Feb/28/97|R|S| |  |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32;|SunOS 5.4: /usr/lib/newsyslog patch
    104619|01|Jun/09/97| | | |  |Unbundled|sparc.sun4m;|ftSPARC:2.4,REV=2.1;|ftSPARC 4.1 : Change processing of multiple mxcc commands
    104628|05|Sep/02/97|R| | |  |2.5.1|sparc;|SUNWcsr:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: driver_aliases, driver_classes and name_to_major patc
    104629|01|Mar/05/97|R|S| |  |2.5|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: syslogd patch
    104631|07|Jul/17/98| | | |  |Unbundled|sparc;|SPROcpl:4.2;SPROlang:4.2;SPROtlbin:4.2;SPROtlbn7:4.2;|SPARCompiler C++ 4.2: C++ 4.2 patch for Solaris 2.x
    104632|11|Jan/06/00| | | |Y |Unbundled|sparc;|SPROlang:4.2;SPROpas:4.2;|SPARCompiler Pascal 4.2: Patch for Pascal 4.2
    104633|01|Jun/09/97| | | |  |Unbundled|sparc.sun4m;|ftSPARC:2.4,REV=2.1;|FTsparc 4.1: Console hangs on splitmaster command.
    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
    104644|01|Feb/25/97| | | |  |2.5.1|sparc;|SUNWscpu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/ucb/stty patch
    104645|01|Feb/25/97| | | |  |2.5.1_x86|i386;|SUNWscpu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: /usr/ucb/stty patch
    104650|03|Apr/05/99|R|S| |  |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/bin/rlogin patch
    104651|02|Oct/06/97|R|S| |  |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: /usr/bin/rlogin patch
    104652|06|Feb/07/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;|SunOS 5.5.1: tar command patch
    104653|05|Mar/12/01| | | |  |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;|SunOS 5.5.1_x86: /usr/sbin/tar patch
    104654|05|May/08/98|R|S| |  |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: automount/automountd patch
    104655|05|Jun/01/99|R|S| |  |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: automount/automountd patch
    104656|01|Mar/10/97| | | |  |2.5.1|sparc.sun4u;|SUNWcar:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /platform/sun4u/kernel/drv/sbus patch
    104658|01|Apr/24/97| | | |  |2.5.1|sparc;|SUNWdoc:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: tbl becomes confused with long tables
    104659|01|Apr/25/97| | | |  |2.5.1_x86|i386;|SUNWdoc:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: tbl becomes confused with long tables
    104660|04|Nov/24/98| |S| |  |Unbundled|sparc;|SUNWdtdst:1.0.1,REV=10.95.10.10;|CDE 1.0.1: dtfile patch
    104661|09|Apr/21/99| |S| |  |Unbundled|sparc;|SUNWdtdst:1.0.2,REV=10.96.04.12;SUNWdtdte:1.0.2,REV=10.96.04.12;|CDE 1.0.2: dtfile patch
    104662|05|Nov/24/98| |S| |  |Unbundled|i386;|SUNWdtdst:1.0.1,REV=10.95.10.10;|CDE 1.0.1_x86: dtfile patch
    104663|10|Apr/22/99| |S| |  |Unbundled|i386;|SUNWdtdst:1.0.2,REV=10.96.04.12;SUNWdtdte:1.0.2,REV=10.96.04.12;|CDE 1.0.2_x86: dtfile patch
    104664|01|Apr/25/97| | | |  |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/sbin/wall patch
    104665|01|Apr/25/97| | | |  |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: /usr/sbin/wall patch
    104668|09|Jan/21/99| | | |  |Unbundled|sparc;|SPROcc:4.2;SPROlang:4.2;|SPARCompiler C 4.2: C patch for Solaris 2.x
    104669|02|Oct/06/97|R|S| |  |2.5|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: rlogin patch
    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|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
    104691|01|Jul/11/97|R|S| |  |2.5_x86|i386;|SUNWcsu:11.5.1,REV=95.10.30.17.24;|SunOS 5.5_x86: usr/sbin/in.talkd patch
    104692|02|May/14/02|R|S| |  |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: usr/sbin/in.talkd patch
    104693|02|May/14/02|R|S| |  |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: usr/sbin/in.talkd patch
    104695|01|Apr/03/97| | | |  |Unbundled|||PC-NFSPro 2.0: Fixes case NetBios returning wrong MAC addr
    104696|02|Sep/14/99| | | |  |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;SUNWesu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: egrep/fgrep/grep/sort patch
    104697|01|Apr/25/97| | | |  |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;SUNWesu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: egrep/fgrep/grep/sort patch
    104698|01|Jul/11/97|R|S| |  |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: in.talkd security problem fix
    104701|01|Jul/11/97|R|S| |  |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32;|SunOS 5.4: in.talkd security problem fix
    104702|01|Jul/11/97|R|S| |  |2.4_x86|i386;|SUNWcsu:11.5.1,REV=94.07.22.14.24;|SunOS 5.4_x86: in.talkd security problem fix
    104704|01|Mar/14/97|R|S| |  |2.5|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: in.tftpd patch
    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
    104715|01|Aug/05/97| | | |  |Unbundled|||SJSP 3.3: Jumbo patch - misc. bug fixes - Oracle version
    104717|01|Aug/05/97| | | |  |Unbundled|||SJSP 3.3: Jumbo patch - misc. bug fixes - Oracle version
    104719|02|Mar/26/97| | |O|  |Unbundled|||OBSOLETED by 104452
    104721|01|Jul/21/97| | | |  |Unbundled|sparc;|SUNWsjs:3.3,REV=96.08.03.16.28;|Solstice Job Scheduler Pro 3.3: Jumbo Patch - Oracle Version
    104725|02|Jun/03/98| | | |  |Unbundled|sparc;|SUNWxildg:1.2.1,REV=4.0.7;|XIL 1.2.1: Corrupted Jpeg bitstream files pipelines fail linker pa
    104727|01|Apr/14/97| | | |  |Unbundled|sparc;|SUNWxildg:1.2,REV=3.4.0;|XIL 1.2: Jpeg files bitstream is corrupted in Quality over 90
    104729|01|Mar/19/97| | | |  |Unbundled|sparc.sun4u;|SUNWcpr:2.10,REV=96.04.16.12.05;|Power_Mgmt-SW 2.5.1: Red State Exception on resume on MP sun4u mac
    104731|06|Feb/10/99| | | |  |Unbundled|sparc;|SPROdbx:4.0;|WorkShop IPE 4.0: Patch for dbx
    104732|04|May/07/98| | | |  |2.5|sparc;|SUNWcsr:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: /kernel/fs/hsfs patch
    104733|01|Jun/11/97| | | |  |2.5_x86|i386;|SUNWcsr:11.5.1,REV=95.10.27.15.21;|SunOS 5.5_x86: kernel/fs/hsfs patch
    104734|07|Dec/17/99| |S| |Y |Unbundled|sparc;|SUNWpcu:12.0,REV=95.09.18.11.55;SUNWpsf:12.0,REV=95.09.18.11.55;SUNWpsr:12.0,REV=95.09.18.11.55;SUNWpsu:12.0,REV=95.09.18.11.55;SUNWscplp:12.0,REV=95.09.18.11.55;|SunSoft Print Client (SSPC) 1.0: Product patch
    104735|02|May/08/97|R| | |  |2.5.1|sparc.sun4m;|SUNWsxr:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: platform/sun4m/kernel/drv/sx patch
    104736|06|Feb/01/02|R|S| |  |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/bin/csh patch
    104737|06|Feb/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/csh patch
    104739|02|Apr/28/97| | | |  |Unbundled|||PC-NFSpro 2.0: FTP does not interpret  VAX/IP/UCX filenames correc
    104741|01|Apr/07/97| | | |  |Unbundled|sparc;|SPROtha:1.2;|Thread Analyzer 1.2: Patch for Thread Analyzer 1.2 for Solaris 2.x
    104742|02|Apr/29/98| | | |  |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/lib/fs/ufs/mkfs patch
    104743|01|Dec/09/97| | | |  |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: usr/lib/fs/ufs/mkfs patch
    104744|02|Nov/05/97|R| | |  |2.5|sparc.sun4m;|SUNWsxr:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: platform/sun4m/kernel/drv/sx patch
    104747|02|Jun/24/97| |S| |  |Unbundled|sparc;104455-01;|SUNWfw:2.1;|FireWall-1 2.1 fd leak in fwd
    104748|01|Mar/28/97| |S| |  |Unbundled|sparc;|SUNWfw:2.1;|Solstice FireWall-1 2.1c: FD leak in fwd (VPN)
    104749|01|Mar/28/97| |S| |  |Unbundled|i386;|SUNWfw:2.1;|Solstice FireWall-1 2.1c: FD leak in fwd (Non-VPN)
    104750|01|Mar/28/97| |S| |  |Unbundled|i386;|SUNWfw:2.1;|Solstice FireWall-1 2.1c: FD leak in fwd (VPN)
    104751|02|Jun/24/97| | | |  |Unbundled|sparc;104455-01;|SUNWfw:2.1;|Solstice Firewall-1 2.1c:  fwui core dumps @264+ rules (non-VPN)
    104752|01|Mar/28/97| | | |  |Unbundled|sparc;|SUNWfw:2.1;|Solstice Firewall-1 2.1c: fwui core dumps @264+ rules (VPN)
    104763|01|Mar/21/97| | | |  |Unbundled|||PC-Admin 1.5: File Manager exessive lookups of PCNFSWIN.INI
    104768|06|Apr/14/99| | | |  |Unbundled|i386;|SPROdbx:4.0;|WorkShop IPE 4.0_x86: Patch for WorkShop IPE 4.0 dbx
    104769|01|Apr/03/97| | | |  |Unbundled|||PC-NFSPro 2.0: Fixes case NetBios hang after many mount/dismounts
    104772|02|Jul/22/97| | | |  |Unbundled|sparc;|SUNWtmns1:1.0.1;SUNWtmns3:1.0.1;|Solstice TMNscript 1.0.1 Toolkit Jumbo Patch
    104773|02|Jun/19/97| | | |  |Unbundled|sparc;|SUNWtmnt1:1.0;|Solstice AgentTester 1.0 Jumbo Patch
    104774|01|Apr/03/97| | | |  |Unbundled|sparc;|SUNWvts:2.1.21,REV=17.96.04.22;|SunVTS 2.0: improved reliabilty of tcx, ffb test and general fixes
    104776|02|Dec/08/97|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;iss_sparc-01;|SunOS 5.5.1: libvolmgt patch
    104777|02|Dec/09/97|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: libvolmgt patch
    104778|03|Jul/13/98| | | |  |Unbundled|sparc;|SUNWhainf:1.3,REV=1.2;|Solstice HA 1.3: SUNWhainf Patch
    104779|01|Apr/24/97| | | |  |Unbundled|i386;|SUNWtmns1:1.0.1;|Solstice TMNscript 1.0.1 Jumbo Patch
    104781|01|Apr/16/97| | | |  |2.5_CS6400|sparc.cray4d;|SUNWcar:11.5.1,REV=96.01.09.00.43;|SunOS 5.5 CS6400: stc driver patch
    104782|02|Mar/13/98| | | |  |2.5_CS6400|sparc.cray4d;|SUNWcar:11.5.1,REV=96.01.09.00.43;|SunOS 5.5 CS6400: platform/cray4d/kernel/sched/TS patch
    104785|01|May/29/97| | | |  |Unbundled|sparc;|SUNWhainf:1.2,REV=1.1;|Solstice HA 1.2: RFE 4039326, support for Informix 7.2 in HA-INFOR
    104793|04|Oct/24/97|R| | |  |2.5|sparc;|SUNWssadv:11.5.1,REV=95.10.27.15.23;SUNWssaop:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: ssd, pln, soc, ssacli, ssaadm and ssafirmware patch
    104794|01|Apr/17/97| | | |  |Unbundled|||PC-NFSpro 2.0: Winsock cause 100% CPU usage in Windows & Win95
    104795|02|Jul/18/97|R|S| |  |2.5.1|sparc.sun4c;sparc.sun4d;sparc.sun4m;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: eeprom patch
    104796|01|Jun/17/97|R|S| |  |2.5|sparc.sun4c;sparc.sun4d;sparc.sun4m;sparc.sun4u;|SUNWkvm:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: eeprom patch
    104797|02|Sep/03/97|R|S| |Y |2.3|sparc.sun4;sparc.sun4c;sparc.sun4d;sparc.sun4e;sparc.sun4m;|SUNWkvm:11.5.0,REV=2.0.18;|SunOS 5.3: eeprom patch
    104801|01|Apr/17/97| | | |  |Unbundled|||PC-NFSPro 2.0: Fixes lock problem using MS Schedule+ under Win95
    104802|01|Jun/18/97| | | |  |Unbundled|||Solstice Network Client (SNC) 3.0: PC-Xware:NT GPFs if you reuse r
    104803|04|Mar/25/98| | | |  |Unbundled|sparc.sun4m;|ftSPARC:2.4,REV=2.1;|ftSPARC 4.1: Solaris 2.4 Mod. of DAT timeout & firmware ver. inqui
    104804|04|Jan/26/99| | | |  |2.5.1|sparc;|SUNWploc1:1.0,REV=14.0;|SunOS 5.5.1: Incorrect Danish and Norwegian cultural data
    104807|01|Aug/15/97| | | |  |2.5.1|sparc;|SUNWdoc:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: usr/bin/roffbib, usr/bin/refer & usr/lib/refer/hunt p
    104808|01|Dec/09/97| | | |  |2.5.1_x86|i386;|SUNWdoc:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: usr/bin/{roffbib,refer} & usr/lib/refer/hunt patc
    104810|01|Aug/15/97| | | |  |2.5.1|sparc;|SUNWcsr:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: kernel/strmod/timod patch
    104811|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/strmod/timod patch
    104812|05|Oct/16/98| | | |  |Unbundled|sparc;104286-03;|SUNWdniKR:8.0.1;|Sunlink DNI 8.0.1: kernel patch - SUNWdniKR patch
    104816|01|Aug/26/97| | |O|Y |2.5.1|sparc;|SUNWaccu:11.5.1,REV=96.05.02.21.09;|Obsoleted by: 104478-03 SunOS 5.5.1: usr/sbin/sar patch
    104817|01|Sep/05/97| | |O|Y |2.5.1_x86|i386;|SUNWaccu:11.5.1,REV=96.05.02.19.23;|Obsoleted by: 104479-03 SunOS 5.5.1_x86: usr/sbin/sar patch
    104818|02|Nov/02/01|R|S| |  |2.5.1|sparc;103640-37;103640-37;|SUNWarc:11.5.1,REV=96.05.02.21.09;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;SUNWnisu:11.5.1,REV=96.05.02.21.09;iss_sparc-01 (or newer)|SunOS 5.5.1: /usr/bin/passwd and pam patch
    104819|02|Nov/06/01|R|S| |  |2.5.1_x86|i386;103641-35;103641-37;|SUNWarc: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;SUNWhea:11.5.1,REV=96.05.02.19.23;SUNWnisu:11.5.1,REV=96.05.02.19.23;iss_x86-01 (or newer)|SunOS 5.5.1_x86: /usr/bin/passwd and /etc/lib/pam_pwmgt.so.1 patch
    104820|01|Aug/26/97| | | |Y |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/lib/saf/listen patch
    104821|01|Sep/05/97| | | |Y |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: /usr/lib/saf/listen patch
    104822|01|Aug/26/97| | | |Y |2.5.1|sparc;|SUNWarc: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: usr/lib/libadm.so.1 and usr/lib/libadm.a patch
    104823|01|Sep/05/97| | | |Y |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: usr/lib/libadm.so.1 and usr/lib/libadm.a patch
    104824|01|Aug/26/97| | | |Y |2.5.1|sparc;|SUNWfac:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: usr/vmsys/bin/initial patch
    104825|01|Sep/05/97| | | |Y |2.5.1_x86|i386;|SUNWfac:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: usr/vmsys/bin/initial patch
    104827|02|May/22/97| | | |  |Unbundled|||Solstice Network Client (SNC) 3.0: FTP does not interpret PCNFSpro
    104828|01|Jun/03/97| | | |  |Unbundled|||Solstice Network Client (SNC) 3.0: FTPD doesn't correctly transmit
    104829|02|Dec/24/99| |S| |Y |Unbundled|sparc;|SUNWlicsw:4.2;SUNWlit:4.0;|FLEXlm 4.1c: Patch for FLEXlm 4.1c and lit/lit_tty
    104830|02|Dec/24/99| |S| |Y |Unbundled|i386;|SUNWlicsw:4.2;SUNWlit:4.0;|FLEXlm 4.1c_x86: Patch for FLEXlm 4.1c and lit/lit_tty
    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|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
    104854|02|Aug/26/97| | | |Y |2.5.1|sparc;|SUNWdoc:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: troff macro patch
    104855|02|Sep/05/97| | | |Y |2.5.1_x86|i386;|SUNWdoc:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: troff macro patch
    104856|02|Jul/18/97| | | |  |Unbundled|||Cobol 12.03 is a full product update to Cobol v4.0
    104857|01|Aug/27/97| | | |Y |2.5.1|sparc;|SUNWjfpu:2.7,REV=1.0.79;|SunOS 5.5.1 (JFP 2.5.1): Japanese Year 2000 patch for LP
    104858|01|Aug/27/97| | | |Y |2.5.1_x86|i386;|SUNWjfpu:2.7,REV=1.0.79;|SunOS 5.5.1_x86 (JFP 2.5.1): Japanese Year 2000 patch for LP
    104861|01|Aug/25/97| | | |Y |2.5|sparc;|SUNWaccu:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: usr/sbin/sar patch
    104862|01|Sep/08/97| | | |Y |2.5_x86|i386;|SUNWaccu:11.5.1,REV=95.10.27.15.21;|SunOS 5.5_x86: usr/sbin/sar patch
    104863|02|Aug/25/97| | | |Y |2.5|sparc;|SUNWdoc:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: troff macro patch
    104864|02|Sep/08/97| | | |Y |2.5_x86|i386;|SUNWdoc:11.5.1,REV=95.10.27.15.21;|SunOS 5.5_x86: troff macro patch
    104865|01|Aug/25/97| | | |Y |2.5|sparc;103178-04;|SUNWcsu:11.5.1,REV=95.10.30.16.09;SUNWnisu:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: /usr/bin/passwd patch
    104866|01|Sep/08/97| | | |Y |2.5_x86|i386;103179-04;|SUNWcsu:11.5.1,REV=95.10.30.17.24;SUNWnisu:11.5.1,REV=95.10.27.15.21;|SunOS 5.5_x86: /usr/bin/passwd patch
    104867|01|Aug/25/97| | | |Y |2.5|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: /usr/lib/saf/listen patch
    104868|01|Sep/08/97| | | |Y |2.5_x86|i386;|SUNWcsu:11.5.1,REV=95.10.30.17.24;|SunOS 5.5_x86: /usr/lib/saf/listen patch
    104869|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/libadm.a & usr/lib/libadm.so.1 patch
    104870|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/libadm.a & usr/lib/libadm.so.1 patch
    104871|01|Aug/25/97| | | |Y |2.5|sparc;|SUNWfac:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: usr/vmsys/bin/initial patch
    104872|01|Sep/08/97| | | |Y |2.5_x86|i386;|SUNWfac:11.5.1,REV=95.10.27.15.21;|SunOS 5.5_x86: usr/vmsys/bin/initial patch
    104873|08|Oct/22/01|R|S| |  |2.5.1|sparc;|SUNWbnuu:11.5.1,REV=96.05.02.21.09;iss_sparc-01 (or newer)|SunOS 5.5.1: /usr/bin/uustat and other uucp fixes
    104874|08|Oct/22/01|R|S| |  |2.5.1_x86|i386;|SUNWbnuu:11.5.1,REV=96.05.02.19.23;iss_x86-01 (or newer)|SunOS 5.5.1_x86: /usr/bin/uustat and other uucp fixes
    104875|01|May/12/97| | | |  |Unbundled|104856-01;104755-02;||Cobol 4.0: Product update for Cobol 4.0
    104877|01|Sep/03/97| | | |Y |2.3|sparc;|SUNWaccu:11.5.0,REV=2.0.18;|SunOS 5.3: usr/sbin/sar patch
    104878|01|Sep/03/97| | | |Y |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: usr/bin/date patch
    104880|02|Mar/30/00|R|S| |Y |2.3|sparc;|SUNWbnuu:11.5.0,REV=2.0.18;|SunOS 5.3: usr/bin/uustat patch
    104881|07|Mar/07/00| | | |  |Unbundled|||Hardware/PROM: Ultra 1 (non-E) Standalone Flash PROM Update
    104882|01|Sep/03/97| | | |Y |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: usr/lib/saf/listen patch
    104883|02|Apr/21/98| | | |Y |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: usr/lib/fs/ufs/ufsdump and usr/lib/fs/ufs/ufsrestore pa
    104884|01|Sep/03/97| | | |Y |2.3|sparc;|SUNWfac:11.5.0,REV=2.0.18;|SunOS 5.3: usr/vmsys/bin/initial patch
    104889|08|Oct/22/01|R|S| |  |2.5|sparc;|SUNWbnuu:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: /usr/bin/uustat and other uucp fixes
    104890|08|Oct/22/01|R|S| |  |2.5_x86|i386;|SUNWbnuu:11.5.1,REV=95.10.27.15.21;|SunOS 5.5_x86: /usr/bin/uustat and other uucp fixes
    104891|02|Jan/07/98| | | |  |Unbundled|sparc;|SUNWtmna4:2.0,REV=27;SUNWtmna5:2.0,REV=27;|TMN Agent Toolkit 2.0: Jumbo patch
    104892|02|Jan/07/98| | | |  |Unbundled|i386;|SUNWtmna4:2.0,REV=27;SUNWtmna5:2.0,REV=27;|TMN Agent Toolkit 2.0: i386 Jumbo patch
    104893|02|Jul/01/99|R|S| |  |2.5.1|sparc;|SUNWcsr:11.5.1,REV=96.05.02.21.09;iss_sparc-01;|SunOS 5.5.1: /kernel/sys/c2audit patch
    104894|01|May/29/97|R|S| |  |2.5.1_x86|i386;|SUNWcsr:11.5.1,REV=96.05.02.19.23;iss_x86-01;|SunOS 5.5.1_x86: kernel/sys/c2audit patch
    104897|04|Apr/17/98| | | |  |Unbundled|sparc;|SUNWsms:2.0.1,REV=97.02.27;|Sun Media Center 2.0.1: Update Patch
    104900|04|Nov/07/97| | | |  |Unbundled|sparc;|SUNWssppo:3.0.0,REV=97.02.27.20.05;|System Service Processor (SSP) 3.0: hpost and redx fixes
    104901|01|Sep/16/97| | | |Y |2.5|sparc;|SUNWjbcp:1.6,REV=1.0.54;|SunOS 5.5 (JFP 2.5): Japanese BCP libc patch
    104902|01|Sep/16/97| | | |Y |2.5|sparc;|SUNWjfpu:2.7,REV=1.0.54;|SunOS 5.5 (JFP 2.5): Japanese Year 2000 patch for LP
    104903|01|Sep/16/97| | | |Y |2.5_x86|i386;|SUNWjfpu:2.7,REV=1.0.54;|SunOS 5.5_x86 (JFP 2.5): Japanese Year 2000 patch for LP
    104905|02|Jul/09/97| | | |  |2.5|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: echo command patch
    104906|02|Jul/09/97| | | |  |2.5_x86|i386;|SUNWcsu:11.5.1,REV=95.10.30.17.24;|SunOS 5.5_x86: echo command patch
    104911|01|Jun/18/97| | | |  |2.4|sparc.sun4m;|ftSPARC:2.4,REV=2.1;|SunOS 5.4: Pri program with ultra-stealthy behaviour
    104912|01|Jun/12/97| | | |  |Unbundled|||Solstice Network Client (SNC) 3.0: PC Skip: Improved key generatio
    104913|01|Jun/12/97| | | |  |Unbundled|||Solstice Network Client (SNC) 3.0: PC Skip: Improved key generatio
    104915|10|Jan/25/99| | |O| B|2.5.1|103640-23;||OBSOLETED by 103640
    104917|03|Jul/06/98| | | |  |Unbundled|all;sparc;|SUNWtmna2:2.0,REV=27;SUNWtmna3:2.0,REV=27;SUNWtmna4:2.0,REV=27;SUNWtmna5:2.0,REV=27;SUNWtmnah:2.0;|TMN Agent Toolkit 2.0: Patch
    104918|01|Jun/12/97| | | |Y |2.5.1|sparc;|SUNWoldst:3.5.30,REV=0.96.03.18;|OpenWindows 3.5.1: y2000 filemgr patch
    104919|04|Sep/17/99| | | |Y |Unbundled|sparc;|SPROcodmg:2.0;SPROdmake:2.0;SPROflmrg:3.0;SPROfrzpt:2.0;SPROmktl:2.0;SPROvertl:2.0;|TeamWare 2.0: Patch for TeamWare 2.0
    104920|01|May/27/97| | | |  |Unbundled|sparc;|SUNWx500c:1.0;|Solstice X.500 1.0: Client Toolkit Jumbo Patch
    104921|01|May/27/97| | | |  |Unbundled|i386;|SUNWx500c:1.0;|Solstice X.500 1.0: Client Toolkit Jumbo Patch
    104933|01|Oct/03/97|R|S| |  |2.5|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: usr/sbin/in.rlogind patch
    104934|01|Oct/03/97|R|S| |  |2.5_x86|i386;|SUNWcsu:11.5.1,REV=95.10.30.17.24;|SunOS 5.5_x86: usr/sbin/in.rlogind patch
    104935|01|Oct/03/97|R|S| |  |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;iss_sparc-01;|SunOS 5.5.1: usr/sbin/in.rlogind patch
    104936|01|Oct/03/97|R|S| |  |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/in.rlogind patch
    104938|04|Jun/25/01|R|S| |  |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18,PATCH=387;|SunOS 5.3: usr/sbin/in.ftpd patch
    104940|01|Jun/18/97| | | |  |2.5.1|sparc.sun4m;|ftSPARC:2.5.1,REV=1.0;|SunOS 5.5.1: Pri program with ultra-stealthy behaviour
    104941|02|Jun/17/97| | | |  |Unbundled|sparc;|WEBStlkr:1.0;|WebStalker-First 1.0: illegal ftp access and nobody4 patch
    104942|01|Aug/29/97| | | |Y |2.4|sparc;|SUNWaccu:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: usr/sbin/sar patch
    104943|01|Sep/10/97| | | |Y |2.4_x86|i386;|SUNWaccu:11.5.1,REV=94.07.18.19.02;|SunOS 5.4_x86: usr/sbin/sar patch
    104944|01|Aug/29/97| | | |Y |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32;|SunOS 5.4: usr/bin/date patch
    104945|01|Sep/10/97| | | |Y |2.4_x86|i386;|SUNWcsu:11.5.1,REV=94.07.22.14.24;|SunOS 5.4_x86: usr/bin/date patch
    104946|01|Aug/29/97| | | |Y |2.4|sparc;|SUNWdoc:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: troff macro patch
    104947|01|Sep/10/97| | | |Y |2.4_x86|i386;|SUNWdoc:11.5.1,REV=94.07.18.19.02;|SunOS 5.4_x86: troff macro patch
    104948|01|Aug/29/97| | | |Y |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32;|SunOS 5.4: usr/bin/passwd patch
    104949|01|Sep/10/97| | | |Y |2.4_x86|i386;|SUNWcsu:11.5.1,REV=94.07.22.14.24;|SunOS 5.4_x86: usr/bin/passwd patch
    104950|03|Mar/29/01|R|S| |  |2.4|sparc;|SUNWbnuu:11.5.1,REV=94.07.15.22.10,PATCH=7;|SunOS 5.4: usr/bin/uustat patch
    104951|03|May/31/01|R|S| |  |2.4_x86|i386;|SUNWbnuu:11.5.1,REV=94.07.18.19.02,PATCH=7;|SunOS 5.4_x86: usr/bin/uustat & usr/sbin/cu patch
    104952|01|Aug/29/97| | | |Y |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32;|SunOS 5.4: usr/lib/saf/listen patch
    104953|01|Sep/10/97| | | |Y |2.4_x86|i386;|SUNWcsu:11.5.1,REV=94.07.22.14.24;|SunOS 5.4_x86: usr/lib/saf/listen patch
    104954|01|Aug/29/97| | | |Y |2.4|sparc;|SUNWfac:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: usr/vmsys/bin/initial patch
    104955|01|Sep/10/97| | | |Y |2.4_x86|i386;|SUNWfac:11.5.1,REV=94.07.18.19.02;|SunOS 5.4_x86: usr/vmsys/bin/initial patch
    104956|04|Aug/15/97|R| | |  |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: usr/sbin/in.rarpd patch
    104957|04|Dec/09/97| | | |  |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: usr/sbin/in.rarpd patch
    104958|01|Jul/15/97|R| | |  |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: usr/sbin/in.rdisc patch
    104959|01|Jul/16/97| | | |  |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: usr/sbin/in.rdisc patch
    104960|02|Dec/07/99|R|S| |  |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;iss_sparc-01;|SunOS 5.5.1: usr/sbin/snoop patch
    104961|02|Dec/07/99|R|S| |  |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/snoop patch
    104962|01|Jun/19/97| | | |  |Unbundled|||Solstice Network Client (SNC) 3.0: mounts/dismounts would appear t
    104964|02|Jun/09/97| | | |  |Unbundled|||Solstice Network Client (SNC) 3.0: Server and user authentication
    104965|02|Jul/28/97| | |O|  |Unbundled|||OBSOLETED by 105206
    104967|10|Oct/29/98| | | |  |Unbundled|sparc;101945-27;102038-02;|SUNWnfr:5.0;SUNWnft:5.0;|SunFDDI 5.0: Misc. fixes
    104968|02|Jan/20/98|R|S| |  |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: chkey and newkey patch
    104969|02|Jan/21/98|R|S| |  |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: chkey and newkey patch
    104971|01|Jun/13/97|R|S| |  |2.5|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: chkey and newkey patch
    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|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
    104979|01|Jul/09/97| | | |  |Unbundled|sparc;|SUNWfw:3.0;|Solstice FireWall-1 3.0a: Upgrade/Jumbo "Non" VPN, sparc version
    104980|01|Jul/09/97| | | |  |Unbundled|sparc;|SUNWfw:3.0;|Solstice FireWall-1 3.0a: Upgrade/Jumbo (VPN), sparc version
    104981|03|Oct/16/97| | | |  |Unbundled|i386;|SUNWfw:3.0;|Solstice FireWall-1 3.0a: Upgrade/Jumbo (Non-VPN)
    104982|02|Oct/16/97| | | |  |Unbundled|i386;|SUNWfw:3.0;|Solstice FireWall-1 3.0a: Upgrade/Jumbo (VPN)
    104983|02|Aug/13/97| | | |  |Unbundled|sparc;104601-01;|SUNWfw:2.1;|Solstice FireWall-1: Version 2.1 Inspecting large pkts core dumps.
    104993|01|Jun/13/97| | | |  |Unbundled|sparc;|OMRONWnn6:2.10;|Wnn6 2.10: client xwnmo patch
    104994|01|Jun/19/97| | | |  |Unbundled|sparc;|OMRONWnn6:2.11;|Wnn6 2.11: client xwnmo patch
    104995|04|Sep/14/01| | | |Y |2.5.1|sparc;|SUNWolimt:3.5.30,REV=0.96.03.18;|OpenWindows 3.5.1: imagetool patch
    104996|04|Dec/04/97| | | |  |Unbundled|sparc;105008-03;|SUNWhaor:1.3,REV=1.2;|Solstice HA 1.3: SUNWhaor Patch
    105003|01|Jun/11/97| | |O|  |Unbundled|||OBSOLETED by 102874
    105004|11|Jan/28/99|R|S| |  |2.5.1|sparc;sparc.sun4u;|SUNWcar:11.5.1,REV=96.05.02.21.09;SUNWcsr:11.5.1,REV=96.05.02.21.09;SUNWhea:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: pci_pci, ebus, pci and rootnex driver patch
    105005|04|Oct/06/97| | | |  |Unbundled|sparc;|SUNWsspob:3.0.0,REV=97.02.27.20.05;SUNWsspop:3.0.0,REV=97.02.27.20.05;|SSP 3.0: cbs, obp_helper, netcon_server and snmpd fixes
    105008|04|Feb/08/99| | | |  |Unbundled|sparc;|SUNWhagen:1.3,REV=1.2;|Solstice HA 1.3: Patch
    105009|03|Mar/11/99| | | |  |Unbundled|sparc;|SUNWvtexe:8.0.1;|Sunlink VT 8.0.1: Patch
    105010|01|Jun/19/97| | | |  |Unbundled|sparc;|OMRONWnn6:2.12;|Wnn6 2.12: (JFP) client xwnmo patch
    105011|01|Jul/17/97| | | |  |2.5.1|sparc;|SUNWesu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: usr/bin/dc patch
    105013|01|Sep/03/97| | | |Y |2.3|sparc;|SUNWarc:11.5.0,REV=2.0.18;SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: usr/lib/libkrb.a and usr/lib/libkrb.so.1 patch
    105014|01|Aug/29/97| | | |Y |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: usr/lib/libkrb.a and usr/lib/libkrb.so.1 patch
    105015|01|Sep/10/97| | | |Y |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: usr/lib/libkrb.a and usr/lib/libkrb.so.1 patch
    105016|01|Aug/26/97| | | |Y |2.5.1|sparc;|SUNWarc: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: usr/lib/libkrb.a and usr/lib/libkrb.so.1 patch
    105017|01|Sep/05/97| | | |Y |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: usr/lib/libkrb.a and usr/lib/libkrb.so.1 patch
    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|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
    105031|01|Jul/23/97| | | |  |Unbundled|sparc;|SUNWsbus1:4.2.6;|Solstice Backup 4.2.6 fixes
    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
    105049|03|Jan/13/98| | | |  |Unbundled|sparc;|SUNWffbgl:1.1,REV=1997.06.11;SUNWglrt:1.1,REV=1997.06.11;SUNWglrtu:1.1,REV=1997.06.11;|OpenGL 1.1: OpenGL Patch
    105050|01|Jul/07/97|R|S| |  |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;SUNWscpu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: usr/bin/ps and usr/ucb/ps patch
    105051|01|Jul/07/97|R|S| |  |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;SUNWscpu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: usr/bin/ps and usr/ucb/ps patch
    105052|01|Jul/07/97|R|S| |  |2.5|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;SUNWscpu:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: /usr/bin/ps /usr/ucb/ps
    105053|01|Jul/11/97|R|S| |  |2.5_x86|i386;|SUNWcsu:11.5.1,REV=95.10.30.17.24;SUNWscpu:11.5.1,REV=95.10.27.15.21;|SunOS 5.5_x86: /usr/bin/ps /usr/ucb/ps
    105054|02|Sep/09/97| | | |  |Unbundled|||SNC 3.0, 3.1: 8bit print, VT/VT200/ANSI emulation, protocol file t
    105057|03|Dec/24/97| | | |  |Unbundled|||Synopsis: Solstice Network Client (SNC) 3.0, 3.1: DDE only works i
    105058|01|Aug/22/97| | | |Y |2.5.1|sparc;|SUNWcbcp:5.9.1,REV=1.0.4;SUNWhbcp:5.9.1,REV=1.0.4;SUNWkbcp:5.9.1,REV=1.0.4;|SunOS 5.5.1: BCP libc patch (Asian)
    105061|01|Jul/15/97| | | |  |Unbundled|sparc;|SUNWvts:2.0.1,REV=16.97.03.13;|SunVTS 2.0.1: fix to accomodate disk arrays in excess of 1000 driv
    105062|05|Mar/28/00| | | |  |Unbundled|i386;|SPROcc:4.2;SPROlang:4.2;|C 4.2_x86: Patch for C 4.2 compiler
    105063|03|Apr/10/00| | | |  |Unbundled|i386;|SPROcpl:4.2;SPROlang:4.2;SPROtlbin:4.2;SPROtlbn7:4.2;|Compilers 4.2: Patch for C++ 4.2 on Solaris _x86
    105068|04|May/25/00| | | |  |2.5.1|sparc.sun4u;|SUNWevc:11.5.1,REV=97.06.30.23.44;|SunOS 5.5.1: /platform/sun4u/kernel/drv/envctrl driver patch
    105069|01|Jul/23/97| | |O|  |2.5.1|||OBSOLETED by 103627
    105070|01|Jul/23/97| | |O|  |2.5.1_x86|||OBSOLETED by 103628
    105073|05|Jun/10/98| | | |Y |Unbundled|i386;|SPROf77:4.2;SPROlang:4.2;SPROlib77:4.2;SPROmrf77:4.2;|SPARCompiler 4.2_x86: FORTRAN 77 patch for Solaris 2.x_x86
    105074|03|Nov/04/98| | | |  |Unbundled|sparc.sun4m;|ftSPARC:2.5.1,REV=1.0;|FTsparc 5.0: Reason codes to signify changes to module conditions
    105075|01|Jul/15/97|R|S| |  |2.4|sparc;|SUNWxwplt:3.4.18,REV=0.94.07.15;SUNWxwslb:3.4.17,REV=0.94.07.07;|OpenWindows 3.4: libXt patch
    105076|04|Aug/02/01| |S| |  |Unbundled|sparc;|SUNWdtbas:1.0.2,REV=10.96.04.12;SUNWdtbas:1.0.2,REV=10.96.04.12,PATCH=04;|CDE 1.0.2: libDtHelp.so.1 patch
    105077|06|May/25/00|R|S|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/fifofs patch
    105078|06|May/25/00|R|S|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/fifofs patch
    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: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
    105092|01|Oct/06/97|R|S| |  |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: usr/sbin/sysdef patch
    105093|01|Oct/06/97|R|S| |  |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: usr/sbin/sysdef patch
    105094|01|Jul/29/97| |S| |  |2.5_CS6400|sparc.cray4d;|SUNWkvm:11.5.1,REV=96.01.09.00.43;|SunOS 5.5 CS6400: eeprom patch
    105095|01|Jul/17/97| | | |  |Unbundled|sparc;104979-01;|SUNWfwgui:3.0;|Solstice FireWall-1 3.0a Motif GUI: (Non-VPN)
    105096|01|Jul/17/97| | | |  |Unbundled|sparc;|SUNWfwgui:3.0;|Solstice FireWall-1 3.0a Motif GUI: (VPN)
    105097|03|Jun/21/01|R| | |  |2.5.1|sparc;103663-17;|SUNWarc:11.5.1,REV=96.05.02.21.09;SUNWcsu:11.5.1,REV=96.05.02.21.09;iss_sparc-01 (or newer)|SunOS 5.5.1: usr/lib/libsocket.a and usr/lib/libsocket.so.1 patch
    105098|03|Jun/21/01| | | |  |2.5.1_x86|i386;103664-17;|SUNWarc:11.5.1,REV=96.05.02.19.23;SUNWcsu:11.5.1,REV=96.05.02.19.23;iss_x86-01 (or newer)|SunOS 5.5.1_x86: usr/lib/libsocket.a and usr/lib/libsocket.so.1 pa
    105099|01|Oct/06/97|R|S| |  |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32;|SunOS 5.4: usr/sbin/sysdef patch
    105100|01|Oct/06/97|R|S| |  |2.4_x86|i386;|SUNWcsu:11.5.1,REV=94.07.22.14.24;|SunOS 5.4_x86: usr/sbin/sysdef patch
    105101|01|Oct/06/97|R|S| |  |2.5|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: usr/sbin/sysdef patch
    105102|01|Oct/06/97|R|S| |  |2.5_x86|i386;|SUNWcsu:11.5.1,REV=95.10.30.17.24;|SunOS 5.5_x86: usr/sbin/sysdef patch
    105103|01|Aug/04/97|R|S| |  |2.4_x86|i386;|SUNWxwplt:3.4.18,REV=0.94.07.15;SUNWxwslb:3.4.17,REV=0.94.07.07;|OpenWindows 3.4_x86: libXt patch
    105104|02|Jan/12/98|R|S| |  |2.5_x86|i386;|SUNWxwplt:3.5.23,REV=0.95.09.22;SUNWxwslb:3.5.23,REV=0.95.09.22;|OpenWindows 3.5_x86: libXt patch
    105105|02|Apr/12/00|R|S| |  |2.5.1_x86|i386;|SUNWxwplt:3.5.27,REV=0.96.03.25;SUNWxwslb:3.5.27,REV=0.96.03.25;|OpenWindows 3.5.1_x86: libXt patch
    105106|01|Aug/04/97| |S|O|  |2.5.1_x86|||OBSOLETED by 104241
    105107|01|Aug/04/97| |S|O|  |2.5_x86|||OBSOLETED by 104242
    105108|01|Aug/04/97| |S|O|  |2.5_x86|||OBSOLETED by 104242
    105109|01|Aug/04/97| |S|O|  |2.5.1_x86|||OBSOLETED by 104241
    105110|01|Aug/04/97|R|S| |  |2.4_x86|i386;|SUNWxwplt:3.4.18,REV=0.94.07.15;|OpenWindows 3.4_x86: xlock patch
    105111|01|Jul/25/97| | | |  |Unbundled|sparc;|SUNWsspop:3.0.0,REV=97.02.27.20.05;|SSP 3.0: hostview fixes
    105112|01|Aug/21/97| | | |  |Unbundled|sparc;|SUNWapr:2.0.0,REV=97.02.21.16.57;|AP 2.0: ap startup fixes
    105115|01|Nov/07/97| | | |  |Unbundled|sparc;|SUNWhasyb:Dev;|Solstice High Availability (HA) 1.2: SUNWhasyb Patch
    105116|02|Feb/11/98| | | |  |Unbundled|sparc;|SUNWhagen:1.3,REV=1.2;SUNWhahtt:1.3,REV=1.2;SUNWhansm:1.3,REV=1.2;|Solstice High Availability (HA) 1.3: InternetPro Patch
    105117|01|Oct/13/97| | | |  |Unbundled|Solaris/netra;|iscan:1.52;|VirusWall 3.2: messes up Sun-V3-format mail messages (by OW mailto
    105118|03|Mar/09/99| | | |  |Unbundled|sparc;sparc.sun4u;|SUNWcar:11.5.1,REV=96.05.02.21.09;SUNWcsr:11.5.1,REV=96.05.02.21.09;SUNWcsu:11.5.1,REV=96.05.02.21.09;|Netra NFS SmartServe 1.2: Patch
    105122|01|Aug/04/97| | | |  |Unbundled|all;|SUNWgdmod:1.0.1;|GDMO/ASN.1 1.0.1: Documents Jumbo Patch
    105124|07|Mar/08/02|R|S| |  |2.5.1_x86|i386;103641-33;|SUNWoldcv:3.5.30,REV=0.96.03.18;SUNWoldst:3.5.30,REV=0.96.03.18;|OpenWindows 3.5.1_x86: Calendar Manager patch
    105125|01|Oct/01/97| | | |Y |2.5.1_x86|i386;|SUNWoldst:3.5.30,REV=0.96.03.18;|OpenWindows 3.5.1_x86: filemgr patch
    105126|04|Sep/14/01| | | |Y |2.5.1_x86|i386;|SUNWolimt:3.5.30,REV=0.96.03.18;|OpenWindows 3.5.1_x86: imagetool patch
    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|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
    105161|14|Mar/08/01| | | |  |2.6_x86|i386;|SUNWdtbas:1.2,REV=10.97.07.08;|CDE 1.2_x86: dtterm libDtTerm.so.1 patch
    105165|04|Jun/19/01|R|S| |  |2.5.1|sparc;|SUNWnisu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/lib/netsvc/yp/ypbind patch
    105166|04|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: /usr/lib/netsvc/yp/ypbind patch
    105168|06|Apr/13/01| | | |  |2.5.1|sparc.sun4u1;|SUNWcvc:1.0.0,REV=97.02.21.21.14;|SunOS 5.5.1: cvc driver fixes
    105169|04|Jun/19/01|R|S| |  |2.5|sparc;|SUNWnisu:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: /usr/lib/netsvc/yp/ypbind patch
    105170|04|Jun/19/01|R|S| |  |2.5_x86|i386;|SUNWnisu:11.5.1,REV=95.10.27.15.21;|SunOS 5.5_x86: /usr/lib/netsvc/yp/ypbind patch
    105171|01|Aug/27/97| | | |  |2.4_x86|i386;|SUNWcsu:11.5.1,REV=94.07.22.14.24;|SunOS 5.4_x86: usr/sbin/disks patch
    105172|01|Aug/27/97| | | |  |2.5|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: usr/sbin/disks patch
    105173|01|Aug/27/97| | | |  |2.5_x86|i386;|SUNWcsu:11.5.1,REV=95.10.30.17.24;|SunOS 5.5_x86: usr/sbin/disks patch
    105174|12|May/17/01| | | |  |2.5.1|sparc.sun4u1;103640-27;|SUNWkvm:11.5.1,REV=97.02.21.21.14;|SunOS 5.5.1: dr_daemon patch
    105175|01|Nov/11/97| | |O|  |Unbundled|104539-02;||OBSOLETED by 104539
    105176|01|Aug/11/97| | | |  |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: usr/lib/utmp_update patch
    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|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: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.
    105192|03|Dec/04/98| | | |  |2.6_x86|i386;|SUNWxwpls:3.6.6,REV=0.97.06.12;|OpenWindows 3.6_x86: Updated Cirrus Logic video support
    105194|05|Jun/23/98| | | |  |2.6_x86|i386;|SUNWxwpls:3.6.6,REV=0.97.06.12;|OpenWindows 3.6_x86: Updated S3 Video Support.
    105195|06|Oct/22/99| | | |  |2.6_x86|i386;|SUNWxwpls:3.6.6,REV=0.97.06.12;|OpenWindows 3.6_x86: Updated Matrox video support
    105200|12|Oct/31/00| | | |  |2.6_x86|i386;|SUNWxwpls:3.6.6,REV=0.97.06.12;SUNWxwscf:3.6.0,REV=0.97.06.19;|OpenWindows 3.6_x86: Common library, monitors, and configuration
    105201|04|May/19/98| | |O|  |2.6_x86|||OBSOLETED by 106041
    105202|02|Sep/11/97| | | |  |Unbundled|||Solstice Network Client (SNC) 3.1: NFS file sharing problems with
    105203|07|Nov/20/98| |S| |  |Unbundled|sparc;|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: dtmail patch
    105205|01|Oct/06/97|R|S| |  |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: usr/sbin/sysdef patch
    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|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|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
    105231|01|Aug/11/97| | | |  |Unbundled|||PROM patch for Ultra 1, Ultra 1E, Ultra 2 and Ultra 30
    105233|01|Sep/16/97| | | |Y |2.3|sparc;|SUNWcbcp:5.7,REV=1.0.11;SUNWhbcp:5.7,REV=1.0.11;SUNWkbcp:5.7,REV=1.0.11;|SunOS 5.3: BCP libc patch (Asian)
    105234|01|Sep/16/97| | | |Y |2.4|sparc;|SUNWcbcp:5.8,REV=1.0.14;SUNWhbcp:5.8,REV=1.0.20;SUNWkbcp:5.8,REV=1.0.14;|SunOS 5.4: BCP libc patch (Asian)
    105235|01|Sep/16/97| | | |Y |2.5|sparc;|SUNWcbcp:5.9,REV=1.0.19;SUNWhbcp:5.9,REV=1.0.21;SUNWkbcp:5.9,REV=1.0.21;|SunOS 5.5: BCP libc patch (Asian)
    105238|03|Sep/17/99| | | |Y |Unbundled|i386;|SPROcodmg:2.0;SPROdmake:2.0;SPROflmrg:3.0;SPROfrzpt:2.0;SPROmktl:2.0;SPROvertl:2.0;|TeamWare 2.0_x86: Patch for TeamWare 2.0
    105243|01|Aug/18/97|R|S| |  |2.3|sparc;|SUNWowbcp:3.3.18,REV=0.93.09.07;|OpenWindows 3.3: libXt Binary Compatibility Patch
    105244|01|Aug/18/97|R|S| |  |2.4|sparc;|SUNWowbcp:3.4.14,REV=0.94.06.23;|OpenWindows 3.4: libXt Binary Compatibility Patch
    105245|01|Aug/18/97|R|S| |  |2.5|sparc;|SUNWowbcp:3.4.21,REV=0.94.12.02;|OpenWindows 3.5: libXt Binary Compatibility Patch
    105251|01|Aug/18/97|R|S| |  |2.5.1|sparc;|SUNWowbcp:3.4.38,REV=0.96.03.18;|OpenWindows 3.5.1: libXt Binary Compatibility Patch
    105253|01|Oct/06/97|R|S| |  |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: usr/bin/rlogin patch
    105254|01|Oct/06/97|R|S| |  |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32;|SunOS 5.4: usr/bin/rlogin patch
    105255|01|Oct/06/97|R|S| |  |2.4_x86|i386;|SUNWcsu:11.5.1,REV=94.07.22.14.24;|SunOS 5.4_x86: usr/bin/rlogin patch
    105256|01|Sep/11/97| | | |  |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: usr/sbin/add_drv patch
    105257|01|Sep/11/97| | | |  |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: usr/sbin/add_drv patch
    105258|01|Sep/22/97| | | |  |Unbundled|sparc.sun4m;|ftSPARC:2.5.1,REV=1.0;ftman:2.5.1,REV=1.0;|ftSPARC 5.0: xfixit with -nospawn option does not behave like a da
    105262|01|Dec/18/97| | | |  |Unbundled|sparc;|SUNWsaip:1.0.0;|Sun SAI/P 1.0.0: Driver patch for Solaris 2.6 and 2.5.1 fix
    105264|01|Sep/19/97| | | |  |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32;|SunOS 5.4: /usr/bin/yppasswd patch
    105266|14|Jun/20/01| |S| |  |Unbundled|sparc;|SUNWsds:1.0,PATCH=14;|Sun Directory Services 1.0 patch
    105270|01|Sep/02/97| | | |  |2.5.1|sparc;|SUNWoldst:3.5.30,REV=0.96.03.18;|OpenWindows 3.5.1: printtool patch
    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|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
    105295|01|Oct/14/97| | |O|  |Unbundled|||OBSOLETED by 104829
    105296|01|Oct/14/97| | |O|  |Unbundled|||OBSOLETED by 104830
    105297|01|Oct/20/97| | | |Y |2.4|sparc;|SUNWoldst:3.4.17,REV=0.94.07.15;|OpenWindows 3.4: Perfmeter will not handle year properly on year 2
    105298|02|Oct/17/97| | |O|  |Unbundled|||OBSOLETED by 105029
    105299|02|Apr/16/99|R|S| |  |2.5.1|sparc;|SUNWcsr:11.5.1,REV=96.05.02.21.09;iss_sparc-01;|SunOS 5.5.1: kernel/misc/nfssrv patch
    105300|02|May/15/98|R|S| |  |2.5.1_x86|i386;|SUNWcsr:11.5.1,REV=96.05.02.19.23;iss_x86-01;|SunOS 5.5.1_x86: kernel/misc/nfssrv patch
    105301|01|Sep/17/97| | |O|  |Unbundled|||OBSOLETED by 105029
    105302|01|Oct/01/97| | | |  |Unbundled|sparc;|SUNWapssp:2.0.0,REV=97.02.21.16.57;|AP 2.0: ap_reboot_host fixes
    105304|02|Mar/20/98| | | |  |Unbundled|sparc.sun4m;|ftSPARC:2.4,REV=2.1;|FTsparc 4.1: Multiple console and modem fixes
    105306|01|Oct/20/97| | | |Y |2.5_x86|i386;|SUNWoldst:3.5.21,REV=0.95.08.23;|OpenWindows 3.5_x86: Perfmeter won't handle year properly on year
    105307|01|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: perfmeter fixes
    105309|01|Oct/20/97| | | |Y |2.4_x86|i386;|SUNWoldst:3.4.17,REV=0.94.07.15;|OpenWindows 3.4_x86: Perfmeter not handle year properly on year 20
    105310|14|Oct/17/00|R| | |  |2.5.1|sparc;sparc.sun4d;sparc.sun4u;sparc.sun4u1;|SUNWluxal:1.0,REV=97.06.30.23.44;SUNWluxdv:1.0,REV=97.07.10.14.31;SUNWluxdv:1.0,REV=97.07.14.23.44;SUNWluxop:1.0,REV=97.06.30.23.44;|SunOS 5.5.1: Patch for socal, sf driver, and luxadm
    105312|01|Jan/26/98|R| | |  |2.5|sparc;103093-17;|SUNWcsr:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: /kernel/exec/elfexec patch
    105313|01|Feb/04/98| | | |  |2.5_x86|i386;103094-14;|SUNWcsr:11.5.1,REV=95.10.27.15.21;|SunOS 5.5_x86: /kernel/exec/elfexec patch
    105314|01|Jan/29/98| | | |  |2.4|sparc;101945-53;|SUNWcsr:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: /kernel/exec/elfexec patch
    105315|01|Mar/18/98| | | |  |2.4_x86|i386;101946-47;|SUNWcsr:11.5.1,REV=94.07.18.19.02;|SunOS 5.4_x86: /kernel/exec/elfexec patch
    105316|01|Jan/26/98|R| | |  |2.5|sparc;103093-17;103328-04;|SUNWtoo:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: /usr/bin/gcore patch
    105317|01|Feb/04/98| | | |  |2.5_x86|i386;103094-14;103329-04;|SUNWtoo:11.5.1,REV=95.10.27.15.21;|SunOS 5.5_x86: /usr/bin/gcore patch
    105318|01|Jan/29/98| | | |  |2.4|sparc;101945-53;|SUNWtoo:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: /usr/bin/gcore patch
    105319|01|Mar/18/98| | | |  |2.4_x86|i386;101946-47;|SUNWtoo:11.5.1,REV=94.07.18.19.02;|SunOS 5.4_x86: /usr/bin/gcore patch
    105320|01|Sep/24/97| | | |  |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32;|SunOS 5.4: /usr/sbin/passmgmt fix
    105321|01|Sep/24/97| | | |  |2.4_x86|i386;|SUNWcsu:11.5.1,REV=94.07.22.14.24;|SunOS 5.4_x86: /usr/sbin/passmgmt fix
    105323|02|Feb/25/98| | | |  |Unbundled|sparc;103923-03;|SUNWsnmag:2.2.3;|Solstice SunNet Manager 2.2.3: SNM fails with no response on some
    105324|04|Dec/23/99|R| | |  |2.5.1|sparc;|SUNWses:1.0,REV=97.06.30.23.44;|SunOS 5.5.1: ses driver patch
    105326|02|Feb/25/98| | | |  |Unbundled|i386;103925-03;|SUNW86nma:2.2.3;|Solstice SunNet Manager 2.2.3: SNM fails  with no response on some
    105327|03|Oct/06/97| | | |Y |Unbundled|sparc;|SUNWdtim:1.0.2,REV=10.96.04.12;|CDE 1.0.2: sdtimage fixes
    105328|01|Oct/02/97| | | |Y |Unbundled|i386;|SUNWdtim:1.0.2,REV=10.96.04.12;|CDE 1.0.2_x86: imagetool displays dates incorrectly after 2000
    105329|01|Oct/02/97| | | |Y |Unbundled|sparc;|SUNWdtim:1.0.1,REV=10.95.09.20;|CDE 1.0.1: imagetool displays dates incorrectly after 2000
    105330|01|Oct/02/97| | | |Y |Unbundled|i386;|SUNWdtim:1.0.1,REV=10.95.09.20;|CDE 1.0.1_x86: imagetool displays dates incorrectly after 2000
    105331|01|Sep/02/97| | | |  |Unbundled|sparc;|SUNWvts:2.0.1,REV=16.97.03.13;|SunVTS 2.0.1:  saiptest fails during modem loopback test
    105332|04|May/28/98| | | |  |2.6|sparc;|SUNWsodte:9.0,REV=97.03.13.12.19;SUNWsvdst:1.1,REV=97.07.14.13.14;SUNWsvdte:1.1,REV=97.08.01.15.39;SUNWsvis:8.0,REV=97.08.01.17.10;SUNWsvos:11.5.1,REV=97.07.14.14.35;|CDE 1.2: Various swedish GUI fixes for Solaris 2.6
    105333|01|Sep/11/97| | | |  |Unbundled|||Solstice Network Client (SNC) 3.1: Can't find Nis+ server
    105334|02|Dec/23/97| | | |  |Unbundled|||Solstice Network Client 3.1: Win95 hangs upon shutdown
    105335|03|Oct/16/97| | | |  |Unbundled|||Solstice Network Client (SNC) 3.1: Postscript files not read by GS
    105336|01|Sep/09/97| | | |  |Unbundled|||Solstice Network Client (SNC) 3.0: Can't find Nis+ server
    105338|27|May/18/01|R|S| |  |2.6|sparc;107434-01;|SUNWdtdst:1.2,REV=10.97.07.08;SUNWdthev:1.2,REV=10.97.06.27;SUNWdtma:1.2,REV=10.97.06.27;|CDE 1.2: dtmail patch
    105339|25|May/18/01|R|S| |  |2.6_x86|i386;107435-01;|SUNWdtdst:1.2,REV=10.97.07.08;SUNWdthev:1.2,REV=10.97.06.27;SUNWdtma:1.2,REV=10.97.06.27;|CDE 1.2_x86: dtmail patch
    105340|04|Feb/09/99| | | |  |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: usr/lib/fs/ufs/quota and usr/lib/fs/ufs/repquota patc
    105341|04|Mar/10/99| | | |  |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: usr/lib/fs/ufs/quota & usr/lib/fs/ufs/repquota pa
    105342|01|Sep/11/97| | | |  |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: usr/sbin/passmgmt patch
    105343|01|Sep/11/97| | | |  |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: usr/sbin/passmgmt patch
    105344|01|Dec/08/97|R| | |  |2.5.1|sparc;103640-14;104283-03;|SUNWtoo:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: usr/bin/gcore patch
    105345|01|Dec/24/97| | | |  |2.5.1_x86|i386;103641-14;104284-03;|SUNWtoo:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: usr/bin/gcore patch
    105346|12|Mar/22/00| |S| |  |Unbundled|sparc;|SUNWimap:2.0;SUNWipop:2.0;105526-01|Solstice Internet Mail Server 2.0: Misc. fixes
    105347|12|Mar/22/00| |S| |  |Unbundled|i386;|SUNWimap:2.0;SUNWipop:2.0;105527-01|Solstice Internet Mail Server 2.0_x86: Misc. fixes
    105350|02|Nov/19/97| | |O|  |Unbundled|||OBSOLETED by 106156
    105352|01|Dec/08/97|R| | |  |2.5.1|sparc;103640-14;|SUNWcsr:11.5.1,REV=96.05.02.21.09;iss_sparc-01;|SunOS 5.5.1: kernel/exec/elfexec patch
    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|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|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|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|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|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|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|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
    105408|01|Dec/18/97|R|S| |  |2.6_x86|i386;|SUNWvolu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/bin/volrmmount patch
    105411|05|Apr/01/99| |S| |  |Unbundled|i386;|SUNWpcu:12.0,REV=95.10.07.00.38;SUNWpsf:12.0,REV=95.10.07.00.38;SUNWpsr:12.0,REV=95.10.07.00.38;SUNWpsu:12.0,REV=95.10.07.00.38;SUNWscplp:12.0,REV=95.10.07.00.38;|SunSoft Print Client (SSPC) 1.0_x86: product patch
    105414|01|Oct/06/97| | | |  |2.5.1|sparc;|SUNWaccu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: usr/lib/acct/acctdisk patch
    105416|01|Oct/14/97| | | |  |2.6|sparc;|SUNWaccu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/lib/acct/acctdisk patch
    105417|01|Mar/06/98| | | |  |2.6_x86|i386;|SUNWaccu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/lib/acct/acctdisk patch
    105418|01|Oct/14/97| | | |  |2.5.1|sparc;|SUNWapppr:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: etc/init.d/asppp patch
    105419|01|Oct/14/97| | | |  |2.5.1_x86|i386;|SUNWapppr:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: etc/init.d/asppp patch
    105420|01|Oct/09/97| | | |  |2.5.1_x86|i386;|SUNWoldst:3.5.30,REV=0.96.03.18;|OpenWindows 3.5.1_x86: printtool patch
    105421|01|Mar/06/98| | | |  |2.6|sparc;|SUNWapppr:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /etc/init.d/asppp patch
    105422|01|Mar/06/98| | | |  |2.6_x86|i386;|SUNWapppr:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /etc/init.d/asppp patch
    105423|07|Jun/09/99| | | |  |2.6_x86|i386.i86pc;|SUNWcar:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /platform/i86pc/boot/solaris/boot.bin patch
    105424|01|Oct/14/97| | | |  |2.5|sparc;|SUNWapppr:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: etc/init.d/asppp patch
    105425|01|Oct/14/97| | | |  |2.5_x86|i386;|SUNWapppr:11.5.1,REV=95.10.27.15.21;|SunOS 5.5_x86: etc/init.d/asppp patch
    105426|01|Dec/11/97| | | |  |2.6|sparc;|SUNWtnfc:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/lib/libtnfprobe.so.1 patch
    105427|01|Oct/08/97| | | |  |2.6_x86|i386;|SUNWtnfc:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/lib/libtnfprobe.so.1 patch
    105432|01|Oct/01/97| | | |  |Unbundled|||Solstice Network Client (SNC) 3.1: Slow performance on NT with vir
    105433|01|Oct/14/97| | | |  |Unbundled|sparc;|SUNWdthep:1.1,REV=10.97.09.2410.97.09.2310.97.09.2310.97.09.1910.97.09.1910.97.09.19;|CDE 1.1: libDthelp.so.1 patch
    105435|01|Sep/26/97| | | |  |Unbundled|sparc;|SUNWsspop:3.0.0,REV=97.02.27.20.05;|SSP 3.0: 911 temp. alarm when power off of secondary control
    105441|01|Jan/22/98| | |O|  |Unbundled|104539-02;||OBSOLETED by 104539
    105452|01|Oct/01/97| | | |  |2.5.1_x86|i386;|SUNWoldst:3.5.30,REV=0.96.03.18;|OpenWindows 3.5.1_x86: textedit -En option does not work
    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|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
    105463|10|Sep/01/00| | | |  |Unbundled|sparc;|SUNWvmman:2.5;SUNWvxva:2.5;SUNWvxvm:2.5;|SEVM 2.5: Sun Enterprise Network Array
    105464|02|Feb/22/99|R| | |Y |2.6|sparc;|SUNWxwman:3.6.370,REV=0.97.06.19;SUNWxwopt:3.6.370,REV=0.97.06.19;|OpenWindows 3.6: Multiple xterm fixes
    105467|02|Feb/24/98| | | |  |Unbundled|||Solstice Network Client (SNC) 3.1: Quota manager doesn't work w/SN
    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|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
    105477|03|Dec/12/97| | | |  |Unbundled|sparc;|SUNWfw:3.0;|Solstice FireWall-1 3.0: Sparc Upgrade/Jumbo (Non-VPN)
    105478|02|Oct/07/97| | | |  |Unbundled|sparc;|SUNWfw:3.0;SUNWfwvpn:3.0;|Solstice FireWall-1 3.0b Sparc: Upgrade/Jumbo (VPN)
    105479|03|Dec/16/97| | | |  |Unbundled|i386;|SUNWfw:3.0,PATH=3.0b;SUNWfwdes:3.0;SUNWfwvpn:3.0;|Solstice FireWall-1 3.0: x86 DES Upgrade/Jumbo
    105480|03|Dec/16/97| | | |  |Unbundled|i386;|SUNWfw:3.0,PATH=3.0b;|Solstice FireWall-1 3.0: x86 Upgrade/Jumbo (Non-VPN)
    105481|04|Dec/16/97| | | |  |Unbundled|i386;|SUNWfw:3.0,PATH=3.0b;SUNWfwvpn:3.0;|Solstice FireWall-1 3.0: x86 Upgrade/Jumbo (VPN)
    105482|03|Dec/16/97| | | |  |Unbundled|sparc;|SUNWfwgui:3.0;|Solstice FireWall-1 3.0: Sparc Motif GUI: Upgrade/Jumbo (Non-VPN)
    105483|02|Oct/08/97| | | |  |Unbundled|sparc;|SUNWfweui:3.0;SUNWfwgui:3.0;|Solstice FireWall-1 3.0b Sparc Motif GUI: Upgrade/Jumbo (VPN)
    105484|03|Nov/04/97| | | |  |Unbundled|||Solstice FireWall-1 3.0b: Windows NT 4.x: Upgrade/Jumbo (Non-VPN)
    105486|07|Nov/05/01|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/hsfs patch
    105487|07|Nov/05/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/fs/hsfs patch
    105488|01|Jan/22/98| | |O|  |Unbundled||104018-03|OBSOLETED by 105554
    105490|07|Dec/23/98| |S|O|  |2.6|||OBSOLETED by 107733
    105491|09|Aug/28/00|R|S|O|  |2.6_x86|||OBSOLETED by 107734
    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|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|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
    105519|01|Nov/24/97| |S|O|  |2.6_x86|||OBSOLETED by 105396
    105520|01|Nov/24/97| |S|O|  |2.5.1|||OBSOLETED by 103594
    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|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
    105535|01|Oct/28/97| | | |  |Unbundled|||Solstice Network Client (SNC) 3.1 doesn't check license for File &
    105537|01|Jun/22/98| | | |  |Unbundled|sparc;|SUNWhasyb:1.3,REV=1.2;|Solstice HA 1.3: SUNWhasyb Patch
    105539|02|Nov/04/97| | | |  |Unbundled|||Solstice FireWall-1 3.0b: Windows NT 4.x: Upgrade/Jumbo (VPN)
    105540|02|Nov/03/97| | | |  |Unbundled|||Solstice FireWall-1 3.0b Windows NT 4.x: Upgrade/Jumbo (VPN DES)
    105541|05|Sep/15/98| | | |  |Unbundled|sparc;|SUNWqfed:1.1,REV=5.6;|Sun Quad FastEthernet 2.1: Patch for Solaris 2.6 qfe driver
    105543|01|Nov/07/97| |S| |Y |2.4|sparc.cray4d;|SUNWkvm:11.5.1,REV=94.12.22.23.36;|SunOS 5.4 CS6400: eeprom patch
    105544|01|Oct/28/97| | |O|  |Unbundled|104539-02;||OBSOLETED by 104539
    105545|02|Dec/12/97| | | |  |Unbundled|sparc;103189-02;|SUNWsnclt:1.1.1;|LAN Client 1.1: Shows incorrect time stamps in GB-Eire
    105546|01|Dec/01/97| | | |  |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: libw patch
    105548|01|Dec/18/97| | | |  |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: libw.so.1 patch
    105550|02|Dec/12/97| | | |  |Unbundled|i386;103190-02;|SUNWsnclt:1.1.1;|LAN Client 1.1: Shows incorrect time stamps in GB-Eire
    105552|03|Apr/14/00|R|S| |  |2.6|sparc;|SUNWnisu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/sbin/rpc.nisd_resolv patch
    105553|03|Aug/21/00|R|S| |  |2.6_x86|i386;|SUNWnisu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/sbin/rpc.nisd_resolv patch
    105554|10|Jan/20/99| | |O|  |Unbundled|104018-03;||OBSOLETED by 104018
    105557|01|Mar/24/98| | | |  |Unbundled|sparc;|SUNWsunpc:4.2;|SunPC 4.2: for Solaris 2.5, 2.5.1, 2.6 and sparc architectures
    105558|04|Apr/06/99|R|S| |  |2.6|sparc;107434-01;|SUNWdtdst:1.2,REV=10.97.07.08;SUNWdtdte:1.2,REV=10.97.07.02;|CDE 1.2: dtpad patch
    105559|04|Apr/06/99|R|S| |  |2.6_x86|i386;107435-01;|SUNWdtdst:1.2,REV=10.97.07.08;SUNWdtdte:1.2,REV=10.97.07.02;|CDE 1.2_x86: dtpad patch
    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|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|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
    105574|01|Nov/04/97| | | |  |Unbundled|||Solstice FireWall-1 3.0b: Windows GUI: Upgrade/Jumbo (Non-VPN)
    105575|01|Nov/03/97| | | |  |Unbundled|||Solstice FireWall-1 3.0b Windows GUI: Upgrade/Jumbo (VPN)
    105576|01|Nov/04/97| | | |  |Unbundled|||Solstice FireWall-1 3.0b: Windows GUI: Upgrade/Jumbo (VPN DES)
    105580|19|Mar/07/02|R| | |  |2.6|sparc;|SUNWpd:1.1,REV=1997.07.15.21.46;SUNWpdu:1.1,REV=1997.07.15.21.46;|SunOS 5.6: /kernel/drv/glm patch
    105581|04|Aug/26/98| | | |  |Unbundled|||Solstice FireWall-1 Windows 95/NT SecuRemote 4.0: Upgrade/Jumbo (V
    105582|04|Aug/27/98| | | |  |Unbundled|||Solstice FireWall-1 4.0: Windows 95/NT SecuRemote Upgrade/Jumbo (V
    105583|06|Oct/27/98| | |O|  |Unbundled|104019-03;||OBSOLETED by 104019
    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
    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|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
    105616|09|Jan/09/02|R|S| |  |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/lib/nfs/mountd patch
    105617|05|Jun/23/98| | | |  |2.6_x86|i386;|SUNWpsdcr:1.1.0,REV=1997.06.13.11.51;|SunOS 5.6_x86: asy driver patch
    105618|01|Nov/17/97| | | |  |2.6|sparc;|SUNWxwplt:3.6.370,REV=0.97.07.09;|OpenWindows 3.6: Xcms patch
    105620|01|Nov/18/97| | | |  |2.6_x86|i386;|SUNWxwplt:3.6.370,REV=0.97.07.09;|OpenWindows 3.6_x86: Xcms Patch
    105621|25|Nov/10/00|R|S|O|  |2.6|sparc;105181-20;|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;SUNWnisu:11.6.0,REV=1997.07.15.21.46;|Obsoleted by: 105181-25 SunOS 5.6: c2audit, libbsm and cron patch
    105622|25|Dec/19/00|R|S|O|  |2.6_x86|i386;105182-20;|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;SUNWnisu:11.6.0,REV=1997.07.16.00.21;|Obsoleted by: 105182-24 SunOS 5.6_x86: c2audit, libbsm and cron pa
    105623|01|Jan/15/98| | | |  |2.6|sparc;|SUNWfns:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/bin/fncreate_printer patch
    105624|01|Jan/15/98| | | |  |2.6_x86|i386;|SUNWfns:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/bin/fncreate_printer patch
    105626|01|Jan/16/98| | | |  |Unbundled|||Solstice Network Client (SNC) 3.1: Read-only attribute is set when
    105628|01|Nov/25/98| | | |  |2.5.1|sparc.sun4c;sparc.sun4d;sparc.sun4m;sparc.sun4u;|SUNWcg6:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: cgsix driver patch
    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|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: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)
    105646|01|Dec/08/97| |S| |  |Unbundled|sparc;|SUNWfw:3.0;|Solstice FireWall-1 3.0: Sparc Patch (VPN)
    105647|01|Dec/08/97| |S| |  |Unbundled|sparc;|SUNWfw:3.0;|Solstice FireWall-1 3.0: Sparc Patch (VPN+DES)
    105648|01|Dec/08/97| |S| |  |Unbundled|i386;|SUNWfw:3.0;|Solstice FireWall-1 3.0: x86 Patch (Non VPN)
    105649|01|Dec/08/97| |S| |  |Unbundled|i386;|SUNWfw:3.0;|Solstice FireWall-1 3.0: x86 Patch (VPN)
    105650|01|Dec/08/97| |S| |  |Unbundled|i386;|SUNWfw:3.0;|Solstice FireWall-1 3.0: x86 Patch (VPN+DES)
    105651|12|Mar/09/00| | |O|  |2.6|sparc;sparc.sun4u;105181-05;105222-02;105223-02;105492-02;105600-02;105604-03;105742-02;105795-02;105836-02;106168-01;106169-01;106170-01;106171-01;106172-01;106173-01;105181-25;|SUNWcar:11.6.0,REV=1997.07.15.21.46;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: ac/environ/fhc/sysctrl driver p
    105653|02|Dec/11/97|R|S| |  |2.4_x86|i386;i386.i86pc;|SUNWcar:11.5.1,REV=94.07.19.13.11;SUNWcsr:11.5.1,REV=94.07.18.19.02;|SunOS 5.4_x86: /kernel/misc/pdwa patch
    105654|03|Jan/30/98| | | |  |2.6|sparc;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: driver_aliases/driver_classes/name_to_major patch
    105655|01|Nov/21/97| | | |  |Unbundled|sparc;|SUNWnwsvr:2.0,REV=1.0;|Solstice NW Server 2.0: NWfile dumps core
    105658|06|Mar/26/99| | | |  |Unbundled|sparc;|SUNWsbuc:5.0.1;SUNWsbun:5.0.1;SUNWsbus1:5.0.1;SUNWsbus2:5.0.1;|Solstice Backup 5.0.1: Product Patch
    105664|05|Feb/06/98| | | |  |Unbundled|sparc;|SUNWab2s:1.19,REV=3;SUNWab2s:1.20,REV=1;|AnswerBook2 1.0: Printing; table column widths, japanese strings
    105665|04|Dec/13/01|R|S| |  |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/bin/login patch
    105666|04|Dec/13/01|R|S| |  |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/bin/login patch
    105667|03|Feb/21/01|R|S| |  |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/bin/rdist patch
    105668|02|Oct/16/98|R|S| |  |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/bin/rdist patch
    105669|11|Dec/07/01|R|S| |  |2.6|sparc;|SUNWdtbas:1.2,REV=10.97.07.08;|CDE 1.2: libDtSvc Patch
    105670|10|Dec/07/01|R|S| |  |2.6_x86|i386;|SUNWdtbas:1.2,REV=10.97.07.08;|CDE 1.2_x86: libDtSvc Patch
    105673|01|Dec/04/97| | | |  |Unbundled|sparc;|SUNWvts:2.1.21,REV=17.96.04.22;|SunVTS 2.0: Y2K compliance
    105675|03|Apr/01/99| | | |Y |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/sbin/auditreduce patch
    105676|01|Dec/18/97| | | |Y |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: /usr/sbin/auditreduce patch
    105677|02|Apr/01/99|R|S| |Y |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: /usr/sbin/auditreduce patch
    105678|02|Apr/01/99|R|S| |Y |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32;|SunOS 5.4: /usr/sbin/auditreduce patch
    105679|01|Dec/19/97| | | |Y |2.4_x86|i386;|SUNWcsu:11.5.1,REV=94.07.22.14.24;|SunOS 5.4_x86: /usr/sbin/auditreduce patch
    105680|03|Apr/01/99|R|S| |Y |2.5|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: /usr/sbin/auditreduce patch
    105681|01|Dec/19/97| | | |Y |2.5_x86|i386;|SUNWcsu:11.5.1,REV=95.10.30.17.24;|SunOS 5.5_x86: /usr/sbin/auditreduce patch
    105682|04|Jun/09/98| | | |  |Unbundled|sparc;|SUNWsspdf:3.1.0,REV=97.11.17.17.04;SUNWsspdr:3.1.0,REV=97.11.17.17.04;|SSP 3.1: libdr patch
    105683|13|Mar/09/99| | | |  |Unbundled|sparc;|SUNWsspdo:3.1.0,REV=97.11.17.17.04;SUNWsspop:3.1.0,REV=97.11.17.17.04;|SSP 3.1: sigbcmd/cbe/flash_boot patch
    105684|08|Dec/23/99| | | |  |Unbundled|sparc;|SUNWsspob:3.1.0,REV=97.11.17.17.04;|SSP 3.1: OBP need to support PCI probing & DR PCI attach/detach co
    105686|02|Mar/10/98| |S|O|Y |2.6|||OBSOLETED by 105621
    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|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|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
    105708|02|Apr/23/99| | | |Y |2.5|sparc;|SUNWadmap:6.5,REV=95.10.26.23.37;|SunOS 5.5: sysidsys unzip patch
    105709|01|Jan/16/98| | | |Y |2.5_x86|i386;|SUNWadmap:6.5,REV=95.10.27.00.22;|SunOS 5.5_x86: /usr/sbin/sysidsys patch
    105710|01|Dec/10/98| |S| |  |Unbundled|sparc;|SUNWfns:11.5.1,REV=1.0;SUNWfns:11.6.0,REV=1998.07.1.1.1;SUNWhttpr:1.0;SUNWhttpu:1.0;SUNWski:1.0;SUNWskica:1.0;SUNWskicw:1.0;SUNWskimc:1.0;SUNWskimu:1.0;SUNWssl:1.0;|Sun WebServer 1.0: Security and Performance international Patch
    105711|01|Jan/16/98| | | |Y |2.4|sparc;|SUNWinst:5.4,REV=1.0.94.07.22.10.50;|SunOS 5.4: /usr/sbin/sysidsys patch
    105712|01|Jan/16/98| | | |Y |2.4_x86|i386;|SUNWinst:5.4,REV=1.0.94.07.22.10.49;|SunOS 5.4_x86: /usr/sbin/sysidsys patch
    105713|01|Jan/15/98| | | |Y |2.3|sparc;|SUNWinst:4.0,REV=8.0;|SunOS 5.3: /usr/sbin/sysidsys patch
    105714|05|Dec/06/01| |S| |  |Unbundled|sparc;|SUNWdtbas:1.0.1,REV=10.95.09.20;SUNWdtbas:1.0.1,REV=10.95.09.20,PATCH=05;|CDE 1.0.1: libDtSvc Patch
    105715|05|Dec/06/01| |S| |  |Unbundled|i386;|SUNWdtbas:1.0.1,REV=10.95.09.20;SUNWdtbas:1.0.1,REV=10.95.09.20,PATCH=05;|CDE 1.0.1_x86: libDtSvc Patch
    105716|07|Jun/30/99| |S|O|  |Unbundled|||OBSOLETED by 108363 and 108289
    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|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
    105725|01|Dec/23/97| | |O|  |2.6_x86|||OBSOLETED by 105723
    105732|02|Sep/16/98|R| | |  |2.5.1|sparc;|SUNWfns:11.5.1,REV=96.05.02.21.09;iss_sparc-01;|SunOS 5.5.1: /usr/lib/libxfn.so.1 patch
    105733|02|Sep/16/98| | | |  |2.5.1_x86|i386;|SUNWfns:11.5.1,REV=96.05.02.19.23;iss_x86-01;|SunOS 5.5.1_x86: /usr/lib/libxfn.so.1 patch
    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|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|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|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
    105763|02|Aug/31/99| | | |  |Unbundled|sparc;|SUNWapr:2.0.0,REV=97.02.21.16.57;|AP 2.0: ap 2.0 allows ssd module to be unloaded whilst open.
    105774|01|Jan/06/98| | | |  |2.5.1|sparc;|SUNWcsr:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /kernel/sched/TS patch
    105776|01|Jan/14/98| | |O|  |2.6|||OBSOLETED by 105181
    105777|01|Mar/10/98| | |O|  |2.6_x86|||OBSOLETED by 105182
    105778|01|Feb/06/98| | |O|  |2.6|sparc;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;|Obsoleted by: 105181-32 SunOS 5.6: /kernel/fs/specfs patch
    105779|01|Mar/10/98| | |O|  |2.6_x86|i386;|SUNWcsr:11.6.0,REV=1997.07.16.00.21;|Obsoleted by: 105182-32 SunOS 5.6_x86: /kernel/fs/specfs patch
    105780|05|May/25/00|R|S| |  |2.6|sparc;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /kernel/fs/fifofs patch
    105781|05|May/25/00|R|S| |  |2.6_x86|i386;|SUNWcsr:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /kernel/fs/fifofs patch
    105782|01|Jan/09/98| | | |  |Unbundled|all;|SUNWgdmod:1.1;|GDMO/ASN.1 Documents Jumbo Patch
    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|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
    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|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|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
    105808|04|Aug/26/98| | | |  |Unbundled|||Solstice FireWall-1 3.0b (Build 3072) Intel: Upgrade/Jumbo (Non-VP
    105809|04|Aug/26/98| | | |  |Unbundled|||Solstice FireWall-1 3.0b (Build 3072) Intel: Upgrade/Jumbo (VPN)
    105810|04|Aug/26/98| | | |  |Unbundled|||Solstice FireWall-1 3.0b (Build 3072) Intel: Upgrade/Jumbo (VPN+DE
    105814|01|Jan/12/98| | | |  |Unbundled|||Solstice FireWall-1 3.0: HPUX: 3.0bp2 (Build 3045) Jumbo (Non-VPN)
    105816|01|Jan/12/98| | | |  |Unbundled|||Solstice FireWall-1 3.0: HPUX: 3.0bp2 (Build 3045) Jumbo (Des)
    105817|10|Aug/25/98| | |O|  |Unbundled|||OBSOLETED by 107132
    105818|10|Aug/25/98| | |O|  |Unbundled|||OBSOLETED by 107163
    105819|08|Aug/25/98| | |O|  |Unbundled|||OBSOLETED by 107164
    105820|10|Aug/25/98| | |O|  |Unbundled|||OBSOLETED by 107165
    105821|10|Aug/25/98| | |O|  |Unbundled|||OBSOLETED by 107166
    105822|08|Aug/26/98| | |O|  |Unbundled|||OBSOLETED by 107167
    105823|04|Aug/14/98| | |O|  |Unbundled|||OBSOLETED by 107168
    105824|04|Aug/14/98| | |O|  |Unbundled|||OBSOLETED by 107169
    105825|04|Aug/14/98| | | |  |Unbundled|sparc;|SUNWfw:3.0;|Solstice FireWall-1 3.0b (Build 3072) Motif GUI Sparc: (VPN-DES)
    105833|01|Jan/05/98| | | |  |Unbundled|||Solstice Network Client (SNC) 3.1: Unable to boot after installing
    105836|03|Oct/05/98| | |O|  |2.6|sparc;105181-05;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;|Obsoleted by: 105181-25 SunOS 5.6: /kernel/drv/qe patch
    105837|03|Jul/26/99|R|S| |  |Unbundled|sparc;|SUNWdtdte:1.2,REV=10.97.07.02;SUNWdtdte:1.3,REV=11.98.01.25;SUNWdtdte:1.3,REV=11.98.04.17;|CDE 1.2: dtappgather Patch, including SDE 1.0 installations
    105838|02|Mar/25/98|R|S| |  |2.6_x86|i386;|SUNWdtdte:1.2,REV=10.97.07.02;|CDE 1.2_x86: dtappgather Patch
    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|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|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
    105873|10|Nov/11/99| | | |  |Unbundled|sparc;106241-04;|SUNWsspop:3.1.0,REV=97.11.17.17.04;SUNWssppo:3.1.0,REV=97.11.17.17.04;|SSP 3.1: hpost/redx/PCI fixes
    105874|01|May/28/98| | | |  |2.6|sparc;|SUNWadmc:6.5,REV=1997.07.02.14.47;|SunOS 5.6: libspmisoft.so.1 patch for upgrade
    105875|01|May/29/98| | | |  |2.6_x86|i386;|SUNWadmc:6.5,REV=1997.07.02.09.56;|SunOS 5.6_x86: libspmisoft.so.1 patch for upgrade
    105877|01|Mar/25/98| | |O|  |2.5.1|104596-07;||OBSOLETED by 104596
    105878|01|Jan/22/98| | | |  |Unbundled|||Solstice Network Client (SNC) 3.1: Problems w/Access 7.0 databases
    105918|02|Nov/20/98| | | |  |Unbundled|sparc;|SUNWssmi:4.4,REV=1;|SSMI 4.4: Upgrade/Misc. fixes
    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|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
    105931|01|Jan/29/98| | | |  |Unbundled|||Solstice Network Client 3.1: Some PCs crash when SNC locking/shari
    105932|03|Oct/29/98| | | |  |Unbundled|sparc;|SUNWpfr:1.0;SUNWpft:1.0;|SunFDDI/P 1.0: fixes for driver attach/detach routines
    105933|01|Jan/22/98| | |O|  |Unbundled|104018-03;||OBSOLETED by 104018
    105934|01|Feb/04/98| | |O|  |Unbundled|104018-03;||OBSOLETED by 105554
    105935|09|Oct/02/98| |S| |  |Unbundled|sparc;|SUNWbbmta:3.2,REV=1998.02.02.17.01;SUNWimadm:3.2,REV=1998.02.02.17.01;SUNWimims:3.2,REV=1998.02.02.17.01;SUNWimimu:3.2,REV=1998.02.02.17.01;SUNWimmta:3.2,REV=1998.02.02.17.01;|Solstice Internet Mail Server 3.2: Misc. fixes
    105936|09|Oct/05/98| |S| |  |Unbundled|i386;|SUNWbbmta:3.2,REV=1998.02.02.17.01;SUNWimadm:3.2,REV=1998.02.02.17.01;SUNWimims:3.2,REV=1998.02.02.17.01;SUNWimimu:3.2,REV=1998.02.02.17.01;SUNWimmta:3.2,REV=1998.02.02.17.01;|Solstice Internet Mail Server 3.2_x86: Misc. fixes
    105937|10|Apr/17/01| | | |  |Unbundled|sparc;|SUNW3770:9.1;|SunLink 3770 Device Emulator, 9.1: patch 105937-10
    105948|01|Feb/04/98| | | |  |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/bin/xargs patch
    105949|01|Feb/04/98| | | |  |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: /usr/bin/xargs patch
    105950|01|Mar/02/98| | | |  |2.5.1|sparc;|SUNWale:5.9.1,REV=1.0.4;|SunOS 5.5.1: multibyte mailx loses last line if not newline termin
    105951|01|Mar/24/98| | | |  |Unbundled|sparc;|SUNWimgtw:3.2,REV=05;|Solstice Internet Mail Server 3.2: Messaging Connectivity Services
    105952|01|Mar/24/98| | | |  |Unbundled|i386;|SUNWimgtw:3.2,REV=08;|Solstice Internet Mail Server 3.2_x86: Messaging Connectivity Serv
    105953|01|Feb/04/98| | | |  |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/bin/xargs patch
    105954|01|Feb/04/98| | | |  |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/bin/xargs patch
    105955|01|Apr/21/99| | | |  |Unbundled|sparc;|SUNWsbus2:5.0.1;|Solstice Backup 5.0.1: Optical driver patch
    105956|01|Jan/27/98| | | |Y |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: /usr/bin/touch patch
    105957|01|Jan/27/98| | | |Y |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32;|SunOS 5.4: /usr/bin/touch patch
    105959|01|Feb/04/98| | | |  |2.6|sparc;|SUNWpppk:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/kernel/strmod/ppp patch
    105960|01|Feb/04/98| | | |  |2.6_x86|i386;|SUNWpppk:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/kernel/strmod/ppp patch
    105961|01|Jun/01/98| | | |  |2.6_x86|i386.i86pc;|SUNWcar:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /platform/i86pc/kernel/drv/pci patch
    105962|05|Sep/05/01|R|S| |  |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: vi/ex/edit/view/vedit patch
    105963|05|Sep/05/01|R|S| |  |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: vi/ex/edit/view/vedit patch
    105965|03|Sep/10/01|R|S| |  |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: vi/ex/edit/view/vedit patch
    105966|03|Sep/10/01|R|S| |  |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: vi/ex/edit/view/vedit patch
    105968|01|Feb/09/98| | |O|  |Unbundled|104539-02;||OBSOLETED by 104539
    105988|01|Feb/17/98| | | |  |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/sbin/rwall patch
    105989|01|Feb/17/98| | | |  |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/sbin/rwall patch
    105990|05|Sep/05/01|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: vi/ex/edit/view/vedit patch
    105991|05|Sep/05/01|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: vi/ex/edit/view/vedit patch
    105993|02|Mar/26/98| | | |  |Unbundled|||Solstice Network Client (SNC) 3.1.1: 16 Bit Solstice Utilites not
    105994|02|Mar/27/98| | | |  |Unbundled|||Solstice Network Client (SNC) 3.1.1: 16 Bit Utilites not entirely
    105995|01|Feb/19/98| | | |  |Unbundled|||Solstice Network Client (SNC) 3.1.1: French needs translation for
    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|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
    106004|01|Feb/27/98| | | |  |Unbundled|i386;|SUNWdtbas:1.1,REV=10.97.02.20;|CDE 1.1_x86: libDtTerm.so.1 dtterm patch
    106005|01|Feb/10/98| | |O|  |Unbundled|104018-03;||OBSOLETED by 104018
    106006|03|Mar/07/01|R|S| |  |2.3|sparc;|SUNWvolu:11.5.0,REV=2.0.18,PATCH=4;|SunOS 5.3: usr/sbin/vold patch
    106007|03|Mar/07/01|R|S| |  |2.5|sparc;|SUNWvolu:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: usr/sbin/vold patch
    106008|03|Mar/07/01|R|S| |  |2.5_x86|i386;|SUNWvolu:11.5.1,REV=95.10.27.15.21;|SunOS 5.5_x86: usr/sbin/vold patch
    106009|02|May/05/98| | |O|  |Unbundled|104539-02;||OBSOLETED by 104539
    106018|01|Feb/06/98| | | |  |Unbundled|||Network Client 3.1: LPD,it's not possible to share more than 1 pri
    106019|03|Mar/24/99| | | |  |Unbundled|sparc;|SUNWsspdf:3.1.0,REV=97.11.17.17.04;|SSP 3.1: scantool database and interconnect test fixes
    106022|09|Jun/29/99| | | |  |Unbundled|sparc;|SUNWffbgl:1.1.1,REV=1997.12.18;SUNWglh:1.1.1,REV=1997.12.19;SUNWglrt:1.1.1,REV=1997.12.19;SUNWglrtu:1.1.1,REV=1997.12.19;SUNWglut:1.1.1,REV=1997.12.19;|OpenGL 1.1.1: OpenGL Patch
    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|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
    106032|01|May/29/98| | |O|  |2.6_x86|i386;i386.i86pc;|SUNWcar:11.6.0,REV=1997.07.16.00.21;SUNWcsu:11.6.0,REV=1997.07.16.00.21;|Obsoleted by: 105182-31 SunOS 5.6_x86: adb & kadb patch
    106033|01|Mar/02/98| | |O|Y |2.6|||OBSOLETED by 105621
    106034|01|May/13/98| | |O|Y |2.6_x86|||OBSOLETED by 105622
    106035|01|May/29/98| | | |  |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/bin/getopt patch
    106036|01|May/29/98| | | |  |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/bin/getopt patch
    106037|06|Nov/13/98| |S| |  |Unbundled|sparc;|SUNWmibii:1.2,REV=1997.12.18.16.31;SUNWsacom:1.2,REV=1997.12.18.16.31;SUNWsasnm:1.2,REV=1997.12.18.16.31;|Solstice Enterprise Agent 1.0.2: SNMP
    106038|01|Apr/09/98| | | |  |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/bin/mkdir patch
    106039|01|Apr/09/98| | | |  |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: /usr/bin/mkdir patch
    106040|18|Jan/04/02|R|S| |  |2.6|sparc;|SUNWxi18n:2.0,REV=1.0.35;SUNWxim:2.0,REV=1.0.36;SUNWxim:2.0,REV=1.0.38;|SunOS 5.6: X Input & Output Method patch
    106041|18|Jan/04/02|R|S| |  |2.6_x86|i386;|SUNWxi18n:2.0,REV=1.0.35;SUNWxim:2.0,REV=1.0.36;SUNWxim:2.0,REV=1.0.38;|SunOS 5.6_x86: X Input & Output Method patch
    106042|01|Mar/02/98|R|S| |  |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32;|SunOS 5.4: in.rexecd does not prevent access to expired accounts
    106043|01|Mar/02/98|R|S| |  |2.4_x86|i386;|SUNWcsu:11.5.1,REV=94.07.22.14.24;|SunOS 5.4_x86: in.rexecd does not prevent access to expired accoun
    106044|03|Jun/22/00| | |O|  |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|Obsoleted by: 105210-38 SunOS 5.6: /usr/lib/nss_nisplus.so.1 patch
    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|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
    106060|04|Apr/29/98| | |O|  |Unbundled|||OBSOLETED by 106037
    106061|02|Mar/03/98| | | |  |2.6_x86|i386;|SUNWman:39.0,REV=16;|SunOS 5.6_x86: SGML Manual Pages Patch
    106064|01|May/29/98| | |O|  |2.6|||OBSOLETED by 105621
    106065|01|May/29/98| | |O|  |2.6_x86|||OBSOLETED by 105622
    106066|03|Jan/26/99| | |O|  |Unbundled|||OBSOLETED by 107523
    106067|02|May/18/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: allocate/deallocate/list_devices/bsmunconv/bsmconv pa
    106071|02|Nov/29/99| | | |Y |Trusted_Solaris_2.5|sparc;|SUNWbcp:11.5.1,REV=97.06.25.03.09;|Trusted Solaris 2.5: Fixes for Year 2000 portion of 103866-03
    106073|03|Jul/09/01| | | |  |Unbundled|sparc;|SUNWvts:2.1.1,REV=07.97.10.08;|SunVTS 2.1.1: Update afbtest, ffbtest and m64test
    106074|02|Nov/29/99| | | |Y |Trusted_Solaris_2.5|sparc;|SUNWaccu:11.5.1,REV=97.06.25.03.09;|Trusted Solaris 2.5: y2000 Patch for SUNWaccu
    106075|01|May/29/98| | |O|  |2.6|||OBSOLETED by 105621
    106076|01|May/29/98| | |O|  |2.6_x86|||OBSOLETED by 105622
    106077|02|Nov/29/99| | | |Y |Trusted_Solaris_2.5|sparc;|SUNWadmap:6.5,REV=97.06.25.05.33;SUNWsadma:6.5,REV=97.06.25.07.57;SUNWsadmc:6.5,REV=97.06.25.07.57;|Trusted Solaris 2.5: Y2000 AdminSuite Patch
    106078|02|Nov/29/99| | | |Y |Trusted_Solaris_2.5|sparc;|SUNWcsu:11.5.1,REV=97.06.25.03.09;|Trusted Solaris 2.5: Y2000 atq Patch
    106079|02|Nov/29/99| | | |Y |Trusted_Solaris_2.5|sparc;|SUNWcsu:11.5.1,REV=97.06.25.03.09;|Trusted Solaris 2.5: Y2000 Auditreduce Patch
    106080|02|Nov/29/99| | | |Y |Trusted_Solaris_2.5|sparc;|SUNWdtdst:1.0.2,REV=10.97.06.22;SUNWdthev:1.0.1,REV=10.97.06.22;|Trusted Solaris 2.5: Y2000 CalendarManager Patch
    106082|02|Apr/30/98| | |O|  |Unbundled|106066-02;106346-01;||OBSOLETED by 107523
    106084|04|Aug/17/98| | |O|  |Unbundled|||OBSOLETED by 107013
    106085|04|Aug/17/98| | | |  |Unbundled|i386;|SUNWxildh:1.3,REV=97.06.26;SUNWxilrl:1.3,REV=97.06.26;|XIL 1.3_x86: Graphics Patch
    106088|02|Nov/29/99| | | |Y |Trusted_Solaris_2.5|sparc;|SUNWdtbas:1.0.2,REV=10.97.06.22;|Trusted Solaris 2.5: Y2000 Dtexec Patch
    106089|02|Nov/29/99| | | |Y |Trusted_Solaris_2.5|sparc;|SUNWdtdst:1.0.2,REV=10.97.06.22;SUNWdtdte:1.0.2,REV=10.97.06.22;|Trusted Solaris 2.5: Y2000 Dtfile Patch
    106090|02|Nov/29/99| | | |Y |Trusted_Solaris_2.5|sparc;|SUNWdtbas:1.0.2,REV=10.97.06.22;|Trusted Solaris 2.5: Y2000 Dthelpprint Patch
    106091|02|Nov/29/99| | | |Y |Trusted_Solaris_2.5|sparc;|SUNWdtim:1.0.2,REV=10.97.06.22;|Trusted Solaris 2.5: y2000 Sdtimage Patch
    106092|02|Nov/29/99| | | |Y |Trusted_Solaris_2.5|sparc;|SUNWcsu:11.5.1,REV=97.06.25.03.09;SUNWxcu4:11.5.1,REV=97.06.25.03.09;|Trusted Solaris 2.5: y2000 Date Patch
    106093|02|Nov/29/99| | | |Y |Trusted_Solaris_2.5|sparc;|SUNWfac:11.5.1,REV=97.06.25.03.09;|Trusted Solaris 2.5: y2000 Face Patch
    106094|02|Nov/29/99| | | |Y |Trusted_Solaris_2.5|sparc;|SUNWcsu:11.5.1,REV=97.06.25.03.09;|Trusted Solaris 2.5: y2000 Fsck Patch
    106095|02|Nov/29/99| | | |Y |Trusted_Solaris_2.5|sparc;|SUNWarc:11.5.1,REV=97.06.25.03.09;SUNWcsu:11.5.1,REV=97.06.25.03.09;|Trusted Solaris 2.5: y2000 Libadm Patch
    106096|02|Nov/29/99| | | |Y |Trusted_Solaris_2.5|sparc;|SUNWarc:11.5.1,REV=97.06.25.03.09;SUNWcsu:11.5.1,REV=97.06.25.03.09;|Trusted Solaris 2.5: y2000 Libc Patch
    106097|02|Nov/29/99| | | |Y |Trusted_Solaris_2.5|sparc;|SUNWarc:11.5.1,REV=97.06.25.03.09;SUNWcsu:11.5.1,REV=97.06.25.03.09;|Trusted Solaris 2.5: y2000 Libkrb Patch
    106098|02|Nov/29/99| | | |Y |Trusted_Solaris_2.5|sparc;|SUNWcsu:11.5.1,REV=97.06.25.03.09;|Trusted Solaris 2.5: y2000 Listen Patch
    106099|02|Nov/29/99| | | |Y |Trusted_Solaris_2.5|sparc;|SUNWlps:11.5.1,REV=97.06.25.03.09;|Trusted Solaris 2.5: y2000 Lp Model Patch
    106100|02|Nov/29/99| | | |Y |Trusted_Solaris_2.5|sparc;|SUNWoldcv:3.5.30,REV=97.06.22.04.44;SUNWoldst:3.5.30,REV=97.06.22.04.44;|Trusted Solaris 2.5: y2000 cm Patch
    106101|02|Nov/29/99| | | |Y |Trusted_Solaris_2.5|sparc;|SUNWoldst:3.5.30,REV=97.06.22.04.44;|Trusted Solaris 2.5: y2000 FileManager Patch
    106102|02|Nov/29/99| | | |Y |Trusted_Solaris_2.5|sparc;|SUNWolimt:3.5.30,REV=97.06.22.04.44;|Trusted Solaris 2.5: y2000 Imagetool Patch
    106103|02|Nov/29/99| | | |Y |Trusted_Solaris_2.5|sparc;|SUNWoldst:3.5.30,REV=97.06.22.04.44;|Trusted Solaris 2.5: y2000 Mailtool Patch
    106104|02|Nov/29/99| | | |Y |Trusted_Solaris_2.5|sparc;|SUNWoldst:3.5.30,REV=97.06.22.04.44;|Trusted Solaris 2.5: Y2000 Perfmeter Patch
    106105|02|Nov/29/99| | | |Y |Trusted_Solaris_2.5|sparc;|SUNWcsr:11.5.1,REV=97.06.25.03.09;SUNWcsu:11.5.1,REV=97.06.25.03.09;|Trusted Solaris 2.5: y2000 PAM Patch
    106106|02|Nov/29/99| | | |Y |Trusted_Solaris_2.5|sparc;|SUNWcsu:11.5.1,REV=97.06.25.03.09;SUNWnisu:11.5.1,REV=97.06.25.03.09;|Trusted Solaris 2.5: y2000 Passwd Patch
    106107|02|Nov/29/99| | | |Y |Trusted_Solaris_2.5|sparc;|SUNWaccu:11.5.1,REV=97.06.25.03.09;|Trusted Solaris 2.5: y2000 Sar Patch
    106108|02|Nov/29/99| | | |Y |Trusted_Solaris_2.5|sparc;|SUNWdoc:11.5.1,REV=97.06.25.03.09;|Trusted Solaris 2.5: y2000 Troff Patch
    106109|02|Nov/29/99| | | |Y |Trusted_Solaris_2.5|sparc;|SUNWcsu:11.5.1,REV=97.06.25.03.09;|Trusted Solaris 2.5: y2000 Ufsdump Patch
    106110|02|Nov/29/99| | | |Y |Trusted_Solaris_2.5|sparc;|SUNWbnuu:11.5.1,REV=97.06.25.03.09;|Trusted Solaris 2.5: y2000 Uucp Patch
    106111|02|Nov/29/99| | | |Y |Trusted_Solaris_2.5|sparc;|SUNWxwopt:3.5.27,REV=97.06.22.04.44;|Trusted Solaris 2.5: y2000 Xterm Patch
    106112|06|Jul/25/00|R|S| |  |2.6|sparc;105669-07;|SUNWdtdst:1.2,REV=10.97.07.08;|CDE 1.2: dtfile patch
    106113|06|Jul/25/00|R|S| |  |2.6_x86|i386;105670-07;|SUNWdtdst:1.2,REV=10.97.07.08;|CDE 1.2_x86: dtfile patch
    106114|01|Feb/23/98| | | |  |Unbundled|sparc;|SUNWvts:2.1,REV=37.97.07.16;|SunVTS 2.1: Add blocksize argument to Tandberg QIC options.
    106116|01|Mar/06/98| | |O|  |Unbundled|104018-03;||OBSOLETED by 106493
    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|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|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
    106138|01|May/29/98| | | |  |2.6|sparc;|SUNWoldst:3.5.48,REV=0.97.07.02;|OpenWindows 3.6: mp fails to set correct A4 paper size information
    106139|01|May/29/98| | | |  |2.6_x86|i386;|SUNWoldst:3.5.48,REV=0.97.07.02;|OpenWindows 3.6_x86: mp fails to set correct A4 paper size informa
    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|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
    106150|03|Mar/31/00| | | |  |2.6|sparc;|SUNWdhcsu:2.1,REV=1997.07.15.21.46;|SunOS 5.6: in.dhcpd and pntadm patch
    106151|01|Mar/25/98| | | |  |2.6_x86|i386;|SUNWdhcsu:2.1,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/lib/inet/in.dhcpd patch
    106152|03|Nov/17/99| | | |  |2.6|sparc;106193-02;|SUNWsibi:6.5,REV=1997.07.02.15.44;|SunOS 5.6: suninstall ttinstall sysid patch on 2.6
    106153|03|Nov/17/99| | | |  |2.6_x86|i386;106194-02;|SUNWsibi:6.5,REV=1997.07.02.10.32;|SunOS 5.6_x86: suninstall ttinstall sysid patch on 2.6
    106154|03|Nov/17/99| | | |  |2.6|sparc;106193-02;|SUNWsibi:6.5,REV=1997.11.07.16.40;|SunOS 5.6: suninstall ttinstall sysid patch on HW398
    106155|01|Mar/04/98| | | |  |Unbundled|||Solstice Network Client (SNC) 3.1: SUNWFSD,rmdir segementation fau
    106156|01|Mar/04/98| | | |  |Unbundled|||Solstice Network Client (SNC) 3.1.1, 3.1: SUNWCFS,Gives windows pr
    106157|01|Nov/10/98| | | |Y |Unbundled|sparc;|SUNWtsa1:1.0,REV=1.30;|Solstice TMN/SNMP Q-Adaptor 1.0: TSA patch
    106158|07|May/21/98| | | |  |Unbundled|i386;sparc;|SUNWsadmi:1.2,REV=1997.12.19.09.26;SUNWsasdk:1.2;SUNWsasnm:1.2,REV=1997.12.19.09.26;|SEA 1.0.2: x86 patch, See Problem Description
    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|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
    106169|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: sbusmem driver patch
    106170|03|Nov/20/98| | |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/esp patch
    106171|01|May/28/98| | |O|  |2.6|sparc;105181-05;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;|Obsoleted by: 105181-25 SunOS 5.6: /kernel/drv/lebuffer patch
    106172|05|Dec/20/00|R| |O|  |2.6|sparc;105181-05;|SUNWhmd:11.6.0,REV=1997.07.15.21.46;|Obsoleted by: 105181-25 SunOS 5.6: /kernel/drv/fas patch
    106173|03|Jul/28/98| | |O|  |2.6|sparc;105181-05;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;|Obsoleted by: 105181-25 SunOS 5.6: /kernel/misc/scsi patch
    106176|02|Jan/25/99| | | |  |Unbundled|sparc;|SUNWqfed:1.1,REV=5.4;SUNWqfedu:1.1,REV=5.4;|Sun Quad FastEthernet 2.1: Patch for Solaris 2.4 qfe driver
    106177|01|Aug/11/98| | | |  |Unbundled|sparc;|SUNWqfed:1.1,REV=5.5;|Sun Quad FastEthernet 2.1: Patch for Solaris 2.5 qfe driver
    106178|03|Apr/30/99| | | |  |Unbundled|sparc;|SUNWvge:1.1,REV=2.0.24;|Sun GigabitEthernet Adapter 1.1: vge driver v2.0.29
    106179|01|Mar/12/98| | | |  |2.6|sparc;|SUNWjpxpl:1.0,REV=1.0.78;|OpenWindows 3.6: XIM XI18N jumbo patch for ja_JP.PCK locale
    106180|01|Mar/12/98| | | |  |2.6_x86|i386;|SUNWjpxpl:1.0,REV=1.0.78;|OpenWindows 3.6_x86: XIM XI18N jumbo patch for ja_JP.PCK locale
    106183|05|Apr/12/00| | | |  |2.6|sparc;sparc.sun4u;105181-05;105222-02;105223-02;105492-02;105600-02;105604-03;105651-03;105742-02;105795-02;105836-02;106168-01;106169-01;106170-01;106171-01;106172-01;106173-01;105181-25;105181-25;105181-25;105181-25;105181-25;105181-25;105181-25;105181-25;105181-25;105181-25;105181-25;105181-25;105181-25;|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;SUNWkvm:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: cfgadm utility & libraries
    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
    106194|06|Jun/21/01|R|S| |  |2.6_x86|i386;|SUNWadmap:6.5,REV=1997.07.02.10.32;|SunOS 5.6_x86: Patch for Taiwan timezone
    106195|01|Mar/18/98| | | |  |Unbundled|sparc;|SUNWsspop:3.1.0,REV=97.11.17.17.04;|System Service Processor (SSP) 3.1: VerExec - only checks the seco
    106197|07|May/17/02|R| | |  |2.5.1|sparc;103640-38;|SUNWide:1.0,REV=97.10.23.19.36;|SunOS 5.5.1: Jumbo patch for ide and atapi fixes
    106201|01|Mar/18/98| | | |  |Unbundled|sparc;|SUNWsspop:3.1.0,REV=97.11.17.17.04;|System Service Processor (SSP) 3.1: bringup of domain A arbstopped
    106204|02|May/11/98| | | |  |Unbundled|sparc;|SUNWsasnm:1.2,REV=1997.12.18.16.31;|SEA 1.0.2: managers line in snmpdx.acl  are useless, snmpget OID
    106206|01|Mar/27/98| | | |  |Unbundled|sparc;|SUNWsspop:3.1.0,REV=97.11.17.17.04;|System Service Processor (SSP) 3.1: In two-to-one mode "sys_clock"
    106208|01|Apr/03/98| | |O|  |Trusted_Solaris_2.5|||OBSOLETED by 106345
    106209|02|Jun/05/98| | | |  |Unbundled|||SNC 3.1.1: x86 Excel files saved to an NFS mounted drive take TOO
    106212|01|Mar/18/98| | | |  |2.5.1|sparc;|SUNWaccu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/lib/acct/acctdusg patch
    106213|01|Mar/31/98| | | |  |2.5.1_x86|i386;|SUNWaccu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: /usr/lib/acct/acctdusg patch
    106216|03|Dec/20/99| | | |  |2.6|sparc.sun4u;|SUNWcar:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /platform/sun4u/kernel/drv/envctrl patch
    106218|02|May/06/98| | | |  |Unbundled|sparc;|SUNWsadmi:1.2,REV=1997.12.18.16.31;|SEA 1.0.2: snmpXdmid (mapper) not working under Intel Solaris
    106219|03|Sep/14/99| | | |  |2.6|sparc;|SUNWman:39.0,REV=16;|SunOS 5.6: luxadm.1m Manual Page Patch
    106222|01|Apr/28/98|R|S| |  |2.6|sparc;|SUNWoldst:3.5.48,REV=0.97.07.02;|OpenWindows 3.6: filemgr (ff.core) fixes
    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: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
    106242|03|Aug/03/01|R|S| |  |2.6|sparc;|SUNWdtbas:1.2,REV=10.97.07.08;|CDE 1.2: libDtHelp.so.1 fixes
    106243|03|Aug/03/01|R|S| |  |2.6_x86|i386;|SUNWdtbas:1.2,REV=10.97.07.08;|CDE 1.2_x86: libDtHelp.so.1 fixes
    106244|01|May/01/98| | | |  |Unbundled|sparc;|SUNWsspop:3.1.0,REV=97.11.17.17.04;|SSP 3.1: SSP libraries are not multi-thread safe
    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|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|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
    106265|01|Apr/23/98| | | |  |2.5|sparc;|SUNWxwinc:3.5.23,REV=0.95.09.22;|OpenWindows 3.5: Xfuncs.h incompatible with strings.h
    106266|01|Apr/23/98| | | |  |2.5_x86|i386;|SUNWxwinc:3.5.23,REV=0.95.09.22;|OpenWindows 3.5_x86: Xfuncs.h incompatible with strings.h
    106267|04|Mar/12/01| | | |  |2.6|sparc;|SUNWdtim:1.2,REV=10.97.06.27;|CDE 1.2: sdtimage fixes
    106268|04|Mar/12/01| | | |  |2.6_x86|i386;|SUNWdtim:1.2,REV=10.97.06.27;|CDE 1.2_x86: sdtimage fixes
    106269|01|Jul/23/01| | | |  |2.6|sparc;|SUNWxwplt:3.6.370,REV=0.97.07.09;|OpenWindows 3.6: Korean toggle key is not recognized
    106271|09|Jan/04/02|R|S|O|  |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;SUNWnisu:11.6.0,REV=1997.07.15.21.46;|Obsoleted by: 106257-06 SunOS 5.6: /usr/lib/security/pam_unix.so.1
    106272|09|Jan/04/02|R|S|O|  |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;SUNWnisu:11.6.0,REV=1997.07.16.00.21;|Obsoleted by: 106258-06 SunOS 5.6_x86: /usr/lib/security/pam_unix.
    106273|01|Apr/01/98| | |O|  |Unbundled|104018-03;||OBSOLETED by 106493
    106274|01|Apr/23/98| | | |  |2.5.1|sparc;|SUNWarc:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/ccs/lib/libgen.a patch
    106278|05|Aug/27/98| | |O|  |Unbundled|104018-03;||OBSOLETED by 104018
    106280|01|Apr/16/98| | | |  |Unbundled|sparc;|SUNWprism:5.0;|HPC2.0: Prism GUI visualizer results inconsistent with output pane
    106281|02|Feb/17/99| | | |Y |Unbundled|sparc;|SUNWsspop:3.1.0,REV=97.11.17.17.04;|SSP 3.1: sys_id -m doesn't work in year 2000 or after (Y2K bug)
    106282|06|Sep/23/99| | | |Y |Unbundled|sparc;105683-07;|SUNWsspop:3.1.0,REV=97.11.17.17.04;|SSP 3.1: Hostview suppresses trap messages after 1999
    106284|07|Dec/01/00| | | |  |2.6|sparc.sun4u1;105181-08;|SUNWkvm:11.6.0,REV=1998.01.23.18.28;|SunOS 5.6: dr_daemon patch
    106285|03|Dec/19/00|R| | |  |2.6|sparc;|SUNWcsr:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /kernel/sys/msgsys patch
    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|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|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
    106310|01|Jun/05/98| | | |  |Unbundled|||SNC 3.1.1: x86: access denied when copy of files
    106311|03|Aug/16/01| | | |  |2.5.1|sparc.sun4u1;|SUNWcvc:1.0.0,REV=97.02.21.21.14;|SunOS 5.5.1: /sbin/cvcd patch
    106312|01|Apr/30/98| | | |  |Unbundled|||Java WorkShop 2.0a: Update Patch for tar install for Solaris 2.x
    106313|01|Apr/30/98| | | |  |Unbundled|||Java WorkShop 2.0a: Update Patch for tar install for Solaris 2.x_x
    106314|01|Apr/30/98| | | |  |Unbundled|||Java WorkShop 2.0_x86: Updates Patch for Win95 and NT
    106317|01|May/29/98| | | |  |2.6|sparc;|SUNWadmc:6.5,REV=1997.07.02.14.47;|SunOS 5.6:  upgrade_script terminated abnormally during upgrade
    106318|01|May/29/98| | | |  |2.6_x86|i386;|SUNWadmc:6.5,REV=1997.07.02.09.56;|SunOS 5.6_x86: upgrade_script terminated abnormally during upgrade
    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|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|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|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|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|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|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
    106388|01|Jun/11/98| | | |  |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/bin/localedef patch
    106389|01|Jun/11/98| | | |  |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/bin/localedef patch
    106390|01|Jun/01/98| | | |  |Unbundled|sparc;|SUNWdial:3.5.0,REV=1.0.29;SUNWdialh:3.5.0,REV=1.0.29;|BD graphics 2.6: Buttons/Dials Patch
    106391|01|Aug/04/98| | | |  |Unbundled|sparc;|SUNWtcxow:2.0.0,REV=1.0.27;|TCX 2.6: Graphics Patch
    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: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
    106407|08|May/17/02|R| | |  |2.6|sparc;105181-31;105798-04;|SUNWide:1.1,REV=1997.11.20.02.32;|SunOS 5.6: Jumbo patch for ide and atapi fixes
    106408|06|Aug/23/00| | | |  |Unbundled|sparc;|SUNWsbuc:5.1;SUNWsbun:5.1;SUNWsbus1:5.1;SUNWsbus2:5.1;|Solstice Backup 5.1: Product Patch
    106409|01|Dec/24/98| | | |  |2.6|sparc;|SUNWhttf:2.0,REV=1.0.37;|SunOS 5.6: Fixes the Traditional Chinese TrueType fonts
    106410|01|Dec/24/98| | | |  |2.6_x86|i386;|SUNWhttf:2.0,REV=1.0.37;|SunOS 5.6_x86: Fixes the traditional Chinese TrueType fonts
    106411|06|Apr/05/99|R|S| |  |2.5.1|sparc;|SUNWxwopt:3.5.27,REV=0.96.03.25;|OpenWindows 3.5.1: xdm patch
    106412|06|Apr/05/99|R|S| |  |2.5.1_x86|i386;|SUNWxwopt:3.5.27,REV=0.96.03.25;|OpenWindows 3.5.1_x86: xdm patch
    106413|04|Mar/10/99| | | |  |2.5|sparc;|SUNWxwopt:3.5.23,REV=0.95.09.22;|OpenWindows 3.5: X Display Manager patch
    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| |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|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|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
    106447|01|Jul/15/98|R|S| |  |2.5_x86|i386;|SUNWcsu:11.5.1,REV=95.10.30.17.24;|SunOS 5.5_x86: /usr/sbin/ping patch
    106448|01|Jul/14/98|R|S| |  |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/sbin/ping patch
    106449|01|Jul/14/98|R|S| |  |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/sbin/ping patch
    106450|01|Jul/15/98|R|S| |  |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: /usr/sbin/ping fix
    106451|01|Jul/15/98|R|S| |  |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32;|SunOS 5.4: /usr/sbin/ping fix
    106452|01|Jul/15/98|R|S| |  |2.4_x86|i386;|SUNWcsu:11.5.1,REV=94.07.22.14.24;|SunOS 5.4_x86: /usr/sbin/ping fix
    106453|02|Mar/24/99| | | |  |Unbundled|i386;|SUNWsbuc:5.0.1;SUNWsbun:5.0.1;SUNWsbus1:5.0.1;SUNWsbus2:5.0.1;|Solstice Backup 5.0.1_x86: Product Patch
    106454|01|Jul/09/99| | | |  |Unbundled|i386;|SUNWsbuc:5.1;SUNWsbun:5.1;SUNWsbus1:5.1;|Solstice Backup 5.1_x86: Product Patch
    106455|11|Sep/06/01| | | |  |Unbundled|||Hardware/PROM: Ultra 60 & E220R Standalone Flash PROM Update
    106457|01|Jun/03/98| | | |  |Unbundled|i386;|SUNWxildg:1.2.1,REV=4.0.7;|XIL 1.2.1_x86: Corrupted Jpeg bitstream pipelines not work with li
    106458|02|Aug/27/98| | | |  |Unbundled|||SNC 3.1.1 _x86: WINNT 4.0 crashes with message "kmode_exception_no
    106463|04|Feb/05/01| | | |  |Unbundled|all;sparc;|SUNWtmns1:1.1,PATCH=04;SUNWtmns2:1.1,PATCH=04;SUNWtmns3:1.1,PATCH=04;SUNWtmns4:1.1,PATCH=04;|TMNscript patch
    106465|04|Jun/07/00| | | |  |Unbundled|sparc;|SUNWsspop:3.1.0,REV=97.11.17.17.04;|SSP 3.1: power command fixes
    106466|01|Jul/01/98| | | |  |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: /usr/sbin/df & /usr/xpg4/bin/df patch
    106468|05|Oct/22/01|R|S| |  |2.6|sparc;|SUNWbnuu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/bin/cu and usr/bin/uustat patch
    106469|05|Oct/22/01|R|S| |  |2.6_x86|i386;|SUNWbnuu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/bin/cu and usr/bin/uustat patch
    106471|02|Dec/17/99| | | |  |2.6|sparc;|SUNWatfsr:11.6.0,REV=1997.07.15.21.46;SUNWatfsu:11.6.0,REV=1997.07.15.21.46;SUNWhea:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /kernel/fs/autofs patch
    106476|01|Oct/27/98| | |O|  |Unbundled|||OBSOLETED by 107604
    106479|01|Jun/24/98| | | |  |Unbundled|sparc.sun4m;|ftSPARC:2.5.1,REV=1.0;|ftSPARC 5.0.1, Solaris 2.5.1 Mod of DAT timeout and firmware ver.
    106480|01|Jul/13/98| | |O|  |2.6|||OBSOLETED by 105802
    106481|01|Jul/13/98| | |O|  |2.6_x86|||OBSOLETED by 105803
    106482|01|Jun/22/98| | |O|  |Unbundled|||OBSOLETED by 106854
    106483|02|Nov/17/98| |S| |  |Unbundled|sparc;|SUNWodu:2.1.2,REV=13.98.01.27;SUNWvts:2.1.2,REV=13.98.01.27;|SunVTS 2.1.2: msg prob under locale 'ja' security startup disktest
    106484|01|Jul/07/98| | | |  |Unbundled|sparc;|SUNWdtdte:1.0.2,REV=10.96.04.12;|CDE 1.0.2: dthello does not attach colormap CDE banner window
    106485|01|Jul/07/98| | | |  |Unbundled|i386;|SUNWdtdte:1.0.2,REV=10.96.04.12;|CDE 1.0.2_x86: dthello does not attach colormap CDE banner window
    106486|01|Jul/15/98| | |O|  |Unbundled|||OBSOLETED by 104539
    106487|03|Jan/29/99| | | |  |Unbundled|sparc;|SUNWscsap:2.1,REV=2.1;|SunCluster 2.1: HA-SAP Patch
    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|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|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|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|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|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|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
    106555|02|Aug/18/98| | | |  |2.6|sparc;|SUNWdtbas:1.3,REV=10.98.05.21;|SunOS 5.6: Core dump when running old version of motif apps.
    106556|01|Jul/22/98| | | |  |2.6|sparc;|SUNWciu8:6.0,REV=1.0.38;|SunOS 5.6: bad iso-2022-cn string cause crash in iconv problem
    106558|01|Aug/03/98| | |O|  |Unbundled|||OBSOLETED by 106465
    106559|01|Aug/21/98| | |O|  |Unbundled|||OBSOLETED by 104846
    106560|03|Apr/07/99| | | |  |Unbundled|||SNC 3.2 x86: WinNT 32 bit HostAccess update
    106561|01|Aug/06/98| | | |  |2.6|sparc;|SUNWapppu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/sbin/aspppd patch
    106562|01|Aug/10/98| | | |  |2.6_x86|i386;|SUNWapppu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/sbin/aspppd patch
    106563|04|Jan/22/99|R|S|O|Y |2.5.1|sparc;103612-27;103696-03;103640-34;103640-35;|SUNWarc:11.5.1,REV=96.05.02.21.09;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;|Obsoleted by: 104818-02 SunOS 5.5.1: PAM Patch
    106564|01|Sep/16/98|R|S|O|  |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;|Obsoleted by: 104819-02 SunOS 5.5.1_x86: Two buffer overflows exis
    106565|02|Aug/18/98| | | |  |2.6|sparc;|SUNWdtwm:1.3,REV=10.98.05.14;|SunOS 5.6: Dtwm crashes when fonts are changed using DtStyle
    106566|02|Aug/18/98| | | |  |2.6|sparc;|SUNWmfrun:2.1.1,REV=10.98.05.14;|SunOS 5.6: XmScrolled List XmWidth property disregarded
    106567|01|Sep/16/98|R|S| |  |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: Two buffer overflows exist in libauth
    106568|01|Sep/16/98|R|S| |  |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: Two buffer overflows exist in libauth
    106569|01|Sep/16/98|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: libauth.a & libauth.so.1 patch
    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|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
    106614|03|Aug/02/00| | | |  |2.6_x86|i386;|SUNWjiu8:1.0,REV=1.0.60;|SunOS 5.6_x86: Japanese UTF-8 iconv patch
    106617|01|Sep/11/98| | | |  |Unbundled|sparc;|SUNWsspop:3.1.0,REV=97.11.17.17.04;|SSP 3.1: cbs still leaks file descriptors
    106618|01|Aug/19/98| | | |  |2.6|sparc;|SUNWciu8:6.0,REV=1.0.33;|SunOS 5.6: bad iso-2022-cn string cause crash in iconv problem
    106619|01|Aug/19/98| | | |  |2.6_x86|i386;|SUNWciu8:6.0,REV=1.0.33;|SunOS 5.6_x86: bad iso-2022-cn string cause crash in iconv problem
    106620|01|Aug/11/98| | | |  |Unbundled|sparc;|SUNWsbuc:5.0.1;|Solstice Backup 5.0.1: nsrfile Patch
    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|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|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
    106644|02|Sep/24/99| | | |  |Unbundled|||SNC 3.1.1: x86: NT network provider DLL patch
    106645|01|Aug/17/98| | |O|  |Unbundled|||OBSOLETED by 107806
    106646|03|Dec/09/99| |S| |  |Unbundled|sparc;106811-04;|SUNWpcnfd:1.2;|SNC 3.2: rpc.pcnfsd has security problem, also hangs and dumps cor
    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|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|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|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
    106663|01|Sep/02/98|R|S| |  |2.5.1|sparc;|SUNWolrte:3.5.31,REV=0.96.03.18;|OpenWindows 3.5.1: libdeskset patch
    106664|01|Sep/02/98|R|S| |  |2.5.1_x86|i386;|SUNWolrte:3.5.31,REV=0.96.03.18;SUNWolslb:3.5.30,REV=0.96.03.18;|OpenWindows 3.5.1_x86: libce suid/sgid security fix
    106665|01|Sep/02/98|R|S| |  |2.5.1_x86|i386;|SUNWolrte:3.5.31,REV=0.96.03.18;|OpenWindows 3.5.1_x86: libdeskset patch
    106666|01|Sep/02/98|R|S| |  |2.5|sparc;|SUNWolrte:3.5.21,REV=0.95.08.23;SUNWolslb:3.5.21,REV=0.95.08.23;|OpenWindows 3.5: libce suid/sgid security fix
    106667|01|Sep/02/98|R|S| |  |2.5|sparc;|SUNWolrte:3.5.21,REV=0.95.08.23;|OpenWindows 3.5: libdeskset patch
    106668|01|Sep/02/98|R|S| |  |2.5_x86|i386;|SUNWolrte:3.5.21,REV=0.95.08.23;SUNWolslb:3.5.21,REV=0.95.08.23;|OpenWindows 3.5_x86: libce suid/sgid security fix
    106669|01|Sep/03/98|R|S| |  |2.5_x86|i386;|SUNWolrte:3.5.21,REV=0.95.08.23;|OpenWindows 3.5_x86: libdeskset patch
    106671|02|Sep/03/98|R|S| |  |2.4|sparc;|SUNWolrte:3.4.17,REV=0.94.07.15;SUNWolslb:3.4.17,REV=0.94.07.15;|OpenWindows 3.4: libce suid/sgid security fix
    106672|02|Sep/03/98|R|S| |  |2.4|sparc;|SUNWolrte:3.4.17,REV=0.94.07.15;|OpenWindows 3.4: libdeskset patch
    106673|02|Sep/03/98|R|S| |  |2.4_x86|i386;|SUNWolrte:3.4.17,REV=0.94.07.15;SUNWolslb:3.4.17,REV=0.94.07.15;|OpenWindows 3.4_x86: libce suid/sgid security fix
    106674|02|Sep/03/98|R|S| |  |2.4_x86|i386;|SUNWolrte:3.4.17,REV=0.94.07.15;|OpenWindows 3.4_x86: libdeskset patch
    106675|03|Sep/22/99|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;|OpenWindows 3.3: libce suid/sgid security fix
    106676|02|Sep/03/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: libdeskset patch
    106683|02|Sep/29/98| | | |  |Unbundled|sparc;|SUNWsdmo:2.1.0;|SDMO 2.1: Product Patch
    106685|05|Nov/30/99| | | |  |Unbundled|||SNC 3.2: x86: WinNT/95/98 NFS filesystem driver patch
    106686|06|Jun/28/01| | | |  |Unbundled|sparc;|SUNWmmgr:3.1.1;SUNWnetbp:3.1.1;|Netbackup 3.1.1 Jumbo Patch
    106688|01|Sep/16/98| | |O|  |Unbundled|||OBSOLETED by 106854
    106689|01|Sep/22/98|R|S| |  |2.5.1|sparc;|SUNWbnuu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/sbin/in.uucpd patch
    106690|01|Sep/22/98|R|S| |  |2.5.1_x86|i386;|SUNWbnuu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: /usr/sbin/in.uucpd patch
    106691|01|Sep/22/98|R|S| |  |2.5|sparc;|SUNWbnuu:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: /usr/sbin/in.uucpd patch
    106692|01|Sep/22/98|R|S| |  |2.5_x86|i386;|SUNWbnuu:11.5.1,REV=95.10.27.15.21;|SunOS 5.5_x86: /usr/sbin/in.uucpd patch
    106694|01|Sep/03/98| | | |  |Unbundled|||SNC 3.1.1, 3.2: x86 Pronto Italian Spanish Swedish Dutch Finish di
    106697|01|Sep/01/98| | | |  |Unbundled|sparc;|SUNWsasdk:1.2;|SEA 1.0.2: For SNMP and DMI Toolkit SUNWsasdk
    106699|03|Nov/05/98| | | |  |2.6_x86|||SunOS 5.6_x86: ncrs: Backport of Solaris 7 ncrs driver (driver pat
    106700|01|Sep/01/98| | | |  |2.4|sparc;|SUNWesu:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: compress/uncompress/zcat patch
    106702|01|Sep/22/98|R|S| |  |2.3|sparc;|SUNWbnuu:11.5.0,REV=2.0.18;|SunOS 5.3: Fix security problem in in.uucpd
    106703|01|Oct/05/98| |S| |Y |Unbundled|sparc;|SUNWvts:1.9.0,REV=0.2.0;103097-04|SunVTS 1.0: y2000 compliance and security
    106704|01|Sep/22/98|R|S| |  |2.4|sparc;|SUNWbnuu:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: /usr/sbin/in.uucpd patch
    106705|01|Sep/22/98|R|S| |  |2.4_x86|i386;|SUNWbnuu:11.5.1,REV=94.07.18.19.02;|SunOS 5.4_x86: /usr/sbin/in.uucpd patch
    106706|01|Jan/29/99| | | |  |Unbundled|sparc;|SUNWsapai:1.1;|Solstice Database Module SAP 1.1: Product Patch
    106707|05|Jun/05/01| | | |  |Unbundled|sparc;106513-03;|SUNWosafw:6.01,REV=01.11;SUNWosamn:6.01,REV=01.11;SUNWosar:6.01,REV=01.11;106552-01 108555-01|RAID Manager 6.1.1: A1000/A3x00 Support for Sun Cluster 2.x
    106709|02|Oct/27/98| | |O|  |Unbundled|||OBSOLETED by 104018
    106710|02|Oct/27/98| | |O|  |Unbundled|||OBSOLETED by 104019
    106711|01|Nov/03/98| | | |  |2.5_x86|i386;103500-11;|SUNWpinst:1.0,REV=7.0;SUNWploc:2.0,REV=9.0;SUNWploc1:1.0,REV=11.0;SUNWplow:1.0,REV=12.0;SUNWplow1:1.0,REV=12.0;|SunOS 5.5_x86: Addition of euro currency support/locales
    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|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|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
    106744|01|Nov/11/98| | | |  |Unbundled|sparc;106661-01;106743-01;|SUNWjddte:1.2,REV=1.1.3;SUNWjddte:1.2,REV=1.2.1;SUNWjdwm:1.2,REV=1.1.3;SUNWjeezt:1.2,REV=1.1.3;SUNWjpdte:1.2,REV=1.1.3;SUNWjpdte:1.2,REV=1.2.1;SUNWjpezt:1.2,REV=1.1.3;SUNWjpwm:1.2,REV=1.1.3;|SDE 1.0: Solaris Desktop Extensions patch for Japanese locales
    106745|09|Jun/03/02| | | |  |Unbundled|sparc;|SUNWged:2.0,REV=5.5.1.98.09.01;|Sun Gigabit Ethernet 2.0: Patch for Solaris 2.5.1 ge driver
    106746|01|Dec/11/98| | | |  |Unbundled|sparc;sun4u;|SUNWhtadm:2.0;SUNWhtsvl:2.0;SUNWhttp:2.0;SUNWisp:0.1;SUNWixamr:1.0;SUNWixfta:1.0;SUNWixsna:1.0;SUNWsnsc:1.0;SUNWsnsf:1.0;SUNWsnsr:1.0;|Solaris for ISPs 1.0:  Patch to fix multiple bugs
    106747|01|Dec/11/98| | | |  |Unbundled|i386;i86pc;|SUNWhtadm:2.0;SUNWhtsvl:2.0;SUNWhttp:2.0;SUNWisp:0.1;SUNWixamr:1.0;SUNWixfta:1.0;SUNWixsna:1.0;SUNWsnsc:1.0;SUNWsnsf:1.0;SUNWsnsr:1.0;|Solaris for ISPs 1.0_x86:  Patch to fix multiple bugs
    106748|04|Jan/07/00| | | |  |7|sparc;|SUNWsprot:5.7,REV=1998.04.28.15.05;SUNWxcu4t:5.6,REV=98.05.08;|SunOS 5.7: /usr/ccs/bin/sccs and /usr/ccs/bin/make patch
    106749|04|Jan/07/00| | | |  |7_x86|i386;|SUNWsprot:5.6,REV=98.04.28.15.05;SUNWxcu4t:5.6,REV=98.05.08;|SunOS 5.7_x86: /usr/ccs/bin/sccs and /usr/ccs/bin/make patch
    106751|01|Feb/17/99| | | |  |Unbundled|sparc;106757-02;|SUNWo1kpx:5.5.1,REV=1.1.0;|SunVideo Plus 1.1: Bug fixes and audio enhancement features
    106752|01|Feb/17/99| | | |  |Unbundled|sparc;106757-02;|SUNWo1kpx:5.6,REV=1.1.0;|SunVideo Plus 1.1: Bug fixes and audio enhancement features
    106753|01|Nov/23/98| |S| |  |Unbundled|sparc;|SUNWhmdl:11.5.1;|SunOS 5.4: /kernel/drv/hme patch
    106755|01|Dec/10/98| |S| |  |Unbundled|i386;|SUNWfns:11.5.1,REV=1.0;SUNWfns:11.6.0,REV=1998.07.1.1.1;SUNWhttpr:1.0;SUNWhttpu:1.0;SUNWski:1.0;SUNWskica:1.0;SUNWskicw:1.0;SUNWskimc:1.0;SUNWskimu:1.0;SUNWssl:1.0;|Sun WebServer 1.0: Security and Preformance international Patch
    106757|03|Apr/27/99| | | |  |Unbundled|sparc;sparc.sun4u;|SUNWo1kpd:1.0,REV=2.1.0;SUNWo1kpu:1.0,REV=1.1.0;SUNWvtsvp:2.1.1,REV=07.97.10.03;|SunVideo Plus 1.1: Bug fixes and audio enhancement features
    106758|02|Jan/19/01| |S| |  |Unbundled|sparc;|SUNWpppk:3.0.1;SUNWpppm:3.0.1;SUNWpppr:3.0.1;SUNWppps:3.0.1;SUNWpppu:3.0.1;|PPP 3.0.1: license lock, messages en_US locale, /etc
    106759|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: license lock, messages en_US locale, /etc
    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|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|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
    106794|07|Mar/26/01|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: ufsdump and ufsrestore patch
    106795|01|Oct/02/98| | |O|  |Unbundled|||OBSOLETED by 106408
    106796|02|Mar/09/99| | | |  |2.6|sparc.sun4d6;|SUNWcar:11.6.0,REV=1998.06.29.15.55;|SunOS 5.6 CS6400: /platform/sun4d6/kernel/drv/mm patch
    106797|03|Jan/10/00| | | |  |2.6|sparc;105181-17;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/lib/libposix4.so.1 patch
    106798|03|Nov/15/99| | | |  |2.6_x86|i386;105182-17;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/lib/libposix4.so.1 patch
    106800|01|Oct/26/98| | | |  |2.5.1|sparc;|JSatok7u:1.2,REV=1.0.79;|SunOS 5.5.1: Some user-registered words could not display on atok7
    106803|04|Jun/20/00| | | |  |Unbundled|sparc;|SUNWlibC:5.4,REV=94.04.14;|SunOS 5.4: Shared library patch for C++
    106804|06|Jun/20/00| | | |  |Unbundled|i386;|SUNWlibC:5.4,REV=94.04.14;|SunOS 5.4_x86: Shared library patch for C++
    106808|01|Oct/26/98| | | |  |2.6|sparc;|SUNWesu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/bin/dc patch
    106810|03|Mar/06/02| | | |  |Unbundled|sparc;|SUNWvts:2.1.3,REV=06.98.04.17;|Test and UI patch
    106811|05|Mar/15/00| | | |  |Unbundled|106646-03;106647-03;||SNC 3.2: x86: Print provider update
    106812|04|Nov/11/98| | |O|  |7|||OBSOLETED by 107432
    106813|02|Apr/13/01|R|S| |  |Trusted_Solaris_2.5.1|||Trusted Solaris 2.5.1: ToolTalk patch
    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: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|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
    106833|02|Mar/11/99| |S|O|  |7_x86|||OBSOLETED by 107118
    106834|02|Dec/05/00|R|S| |  |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;SUNWsutl:11.6.0,REV=1997.07.15.21.46;SUNWxcu4:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: cp/ln/mv patch
    106835|02|Dec/05/00|R|S| |  |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;SUNWsutl:11.6.0,REV=1997.07.16.00.21;SUNWxcu4:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: cp/ln/mv patch
    106839|01|Oct/30/98| | | |  |2.5|sparc;|SUNWxwplt:3.5.23,REV=0.95.09.22;|OpenWindows 3.5: Keytables patch
    106840|01|Oct/30/98| | | |  |2.5.1|sparc;|SUNWxwplt:3.5.27,REV=0.96.03.25;|OpenWindows 3.5.1: Keytables patch
    106841|01|Oct/30/98| | | |  |2.6|sparc;|SUNWxwplt:3.6.370,REV=0.97.07.09;|OpenWindows 3.6: Keytables patch
    106842|09|Apr/27/00| | | |  |2.6|sparc;105633-16;106841-01;|SUNWdedst:1.1,REV=97.07.14.16.49;SUNWdewm:1.1,REV=97.07.16.21.36;SUNWesdst:1.1,REV=97.08.01.15.53;SUNWeswm:1.1,REV=97.07.16.21.37;SUNWeuise:1.0,REV=1997.06.30.19.39;SUNWfrdst:1.1,REV=97.07.11.21.30;SUNWfrwm:1.1,REV=97.07.16.21.39;SUNWitdst:1.1,REV=97.07.11.22.00;SUNWitwm:1.1,REV=97.07.16.21.39;SUNWploc:2.0,REV=97.05.30.12.47;SUNWploc1:1.0,REV=1997.06.14.16.13;SUNWploc1:1.0,REV=1997.07.14.15.26;SUNWplow:1.0,REV=97.03.12.16.53;SUNWplow1:1.0,REV=1997.06.16.18.02;SUNWsvdst:1.1,REV=97.07.14.13.14;SUNWsvwm:1.1,REV=97.07.16.21.41;SUNWxwfnt:3.6.370,REV=0.97.06.19;|SunOS 5.6: Feature patch for Euro currency support in Solaris 2.6
    106843|01|Dec/24/98| | | |  |7|sparc;|SUNWjodte:1.4,REV=1.0.45;|OpenWindows 3.6.1 (JFP 7): Fixed OW ws menu bug
    106844|05|Dec/14/99| | | |  |2.6_x86|i386;106248-18;105200-10;|SUNWdedst:1.1,REV=97.07.14.16.54;SUNWdewm:1.1,REV=97.07.16.22.34;SUNWesdst:1.1,REV=97.08.01.15.55;SUNWeswm:1.1,REV=97.07.16.22.37;SUNWeuise:1.0,REV=1997.06.30.19.39;SUNWfrdst:1.1,REV=97.07.11.21.00;SUNWfrwm:1.1,REV=97.07.16.22.35;SUNWitdst:1.1,REV=97.07.11.21.03;SUNWitwm:1.1,REV=97.07.16.22.36;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;SUNWplow:1.0,REV=97.03.12.18.01;SUNWplow1:1.0,REV=1997.06.16.17.52;SUNWsvdst:1.1,REV=97.07.11.21.07;SUNWsvwm:1.1,REV=97.07.16.22.38;SUNWxwfnt:3.6.370,REV=0.97.06.18;|SunOS 5.6_x86: Feature patch for Euro currency support
    106846|01|Oct/13/98| | | |  |Unbundled|||SNC 3.1.1, 3.2: x86: Pronto does not retrieve all messages from Ex
    106850|01|Nov/23/98| | | |  |Unbundled|||SNC 3.1.1: x86: Print provider change to decrease load on pcnfs da
    106851|04|Mar/11/99| | |O|  |7|||OBSOLETED by 108068
    106852|04|Mar/11/99| | |O|  |7_x86|||OBSOLETED by 108069
    106853|02|Dec/21/99| | | |Y |2.4|sparc;|SUNWdiag:4.3.5,REV=1.0.2;|SunDiag 4.4: Not Y2K compliant
    106854|02|Nov/02/98| | | |  |Unbundled|sparc;|SUNWatm:3.0;|SunATM 3.0 Update 1: Misc. patch
    106855|01|Dec/22/98| | | |  |Unbundled|sparc;106854-02;|SUNWatm:3.0;|SunATM 3.0 Update 1: Fix for aar hang
    106857|10|Sep/11/00| | | |  |7|sparc;|SUNWdedst:1.1,REV=1998.09.11.21.37;SUNWdewm:1.1,REV=1998.09.11.21.38;SUNWesdst:1.1,REV=1998.09.11.21.47;SUNWeswm:1.1,REV=1998.09.11.21.49;SUNWeuise:1.0,REV=1998.09.11.21.33;SUNWfrdst:1.1,REV=1998.09.11.21.41;SUNWfrwm:1.1,REV=1998.09.11.21.43;SUNWitdst:1.1,REV=1998.09.11.21.44;SUNWitwm:1.1,REV=1998.09.11.21.46;SUNWpldte:1.1,REV=1998.10.02.15.10;SUNWplow:1.0,REV=1998.09.14.18.10;SUNWplow1:1.0,REV=1998.09.11.21.32;SUNWsvdst:1.1,REV=1998.09.11.21.50;SUNWsvwm:1.1,REV=1998.09.11.21.52;|SunOS 5.7: IS08859-15 bug fixes and EOL Openwindows support.
    106858|01|Oct/27/98| | | |  |Unbundled|sparc;|SUNWsms:2.1,REV=97.11.12;|Sun Media Center 2.1: Scheduler Patch
    106861|01|Nov/03/98| | | |  |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/tr and /usr/xpg4/bin/tr patch
    106862|01|Nov/03/98| | | |  |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/tr and /usr/xpg4/bin/tr patch
    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: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|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,
    106893|01|Nov/17/98| | | |  |Unbundled|||Hardware/PROM: No gigabitethernet link if the switch is not connec
    106894|01|Jan/04/99|R|S|O|  |2.6|sparc;|SUNWbnuu:11.6.0,REV=1997.07.15.21.46;|Obsoleted by: 106468-04 SunOS 5.6: /usr/bin/uux patch
    106895|01|Jan/04/99|R|S|O|  |2.6_x86|i386;|SUNWbnuu:11.6.0,REV=1997.07.16.00.21;|Obsoleted by: 106469-04 SunOS 5.6_x86: /usr/bin/uux patch
    106896|04|Aug/11/99| | | |  |2.6|sparc;|SUNWjeudc:1.0,REV=1.0.78;SUNWjpudc:1.0,REV=1.0.78;SUNWudct:1.0,REV=1.0.78;|CDE 1.2 (JFP 2.6): sdtudctool and sdtudc_extract patch
    106897|01|Nov/12/98| |S|O|  |Unbundled|||OBSOLETED by 107709
    106898|01|Dec/07/98| | | |  |Unbundled|sparc;|SUNWlmon:2.0,REV=98.09.14;|Sun StorEdge Library Monitor 2.0: Support for L280, L11000 librari
    106899|01|Dec/07/98| | | |  |Unbundled|sparc;|SUNWlagn:2.0,REV=98.09.14;|Sun StorEdge Library Agent 2.0: Support for L280 and L11000 librar
    106900|01|Nov/12/98| |S| |  |Unbundled|i386;|SUNWsadmi:11.7.0,REV=1998.09.01.04.53;|SEA 1.0.3_x86: DMI Server provider
    106901|01|Nov/19/98| | | |  |2.6|sparc;|SUNWpcmci:1.1,REV=1997.07.15.21.46;|SunOS 5.6: The PC Card are not recognized in Ultra5_10
    106902|02|Dec/02/98| | |O|  |Unbundled|||OBSOLETED by 107710
    106903|02|Feb/09/00| | | |  |Unbundled|sparc;|SUNWwa:1.0.1,REV=1998.10.01.06.06;|Web Access 1.0.1: Misc. fixes
    106904|02|Feb/09/00| | | |  |Unbundled|i386;|SUNWwa:1.0.1,REV=1998.10.01.08.24;|Web Access 1.0.1_x86: Misc. fixes
    106905|01|Jan/04/99|R|S| |  |2.5.1|sparc;|SUNWdoc:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: apropos/catman/man/whatis patch
    106906|01|Jan/04/99|R|S| |  |2.5.1_x86|i386;|SUNWdoc:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: apropos/catman/man/whatis patch
    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|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
    106914|04|Apr/05/99| | |O|  |7_x86|||OBSOLETED by 106542
    106915|02|Nov/15/99| | | |  |7|sparc;|SUNWgleu:7.0,REV=1.0.22.9;|SunOS 5.7: dtmail in zh.GBK can't read 2.5.1 Chinese email by defa
    106916|02|Nov/15/99| | | |  |7_x86|i386;|SUNWgleu:7.0,REV=1.0.22.9;|SunOS 5.7_x86: dtmail in zh.GBK can not read 2.5.1 Chinese email
    106917|01|Mar/11/99| | | |  |7|sparc;|SUNWciu8:7.0,REV=1.0.21;SUNWciu8x:7.0,REV=1.0.21;|SunOS 5.7: when view mails change charset, dtmail dump core.
    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|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|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
    106928|01|Dec/24/98| | | |  |7_x86|i386;|SUNWjodte:1.4,REV=1.0.45;|OpenWindows 3.6.1_x86 (JFP 7): OW ws menu bug
    106929|01|Nov/17/98| | | |  |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/sbin/uadmin patch
    106930|01|Nov/17/98| | | |  |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/sbin/uadmin patch
    106931|09|Sep/11/00| | | |  |7_x86|i386;|SUNWdedst:1.1,REV=1998.09.11.21.53;SUNWdewm:1.1,REV=1998.09.11.21.55;SUNWesdst:1.1,REV=1998.09.11.22.03;SUNWeswm:1.1,REV=1998.09.11.22.05;SUNWeuise:1.0,REV=1998.09.11.21.41;SUNWfrdst:1.1,REV=1998.09.11.21.57;SUNWfrwm:1.1,REV=1998.09.11.21.58;SUNWitdst:1.1,REV=1998.09.11.22.00;SUNWitwm:1.1,REV=1998.09.11.22.01;SUNWpldte:1.1,REV=1998.10.02.15.03;SUNWplow:1.0,REV=1998.09.14.18.11;SUNWplow1:1.0,REV=1998.09.11.21.40;SUNWsvdst:1.1,REV=1998.09.11.22.06;SUNWsvwm:1.1,REV=1998.09.11.22.08;|SunOS 5.7_x86: IS08859-15 bug fixes and EOL Openwindows support.
    106933|01|Nov/29/99| |S| |  |Trusted_Solaris_2.5.1|||Trusted Solaris 2.5.1: Buffer overflow in rdist
    106934|04|Dec/07/01|R|S| |  |7|sparc;|SUNWdtbas:1.3,REV=10.98.09.12;SUNWdtbax:1.3,REV=10.98.09.11;|CDE 1.3: libDtSvc Patch
    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|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|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|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|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
    106959|01|Feb/18/99| | | |  |7|sparc.sun4u;|SUNWensqr:4.0,REV=1998.04.15.10.34;SUNWensqx:1.1,REV=1998.04.15.10.34;|SunOS 5.7: Last portion of audio file gets chopped or repeats
    106960|01|Nov/18/98|R| | |  |7|sparc;|SUNWman:40.0,REV=23;|SunOS 5.7: Manual Pages for patchadd.1m and patchrm.1m
    106961|01|Nov/18/98|R| | |  |7_x86|i386;|SUNWman:40.0,REV=23;|SunOS 5.7_x86: Manual Pages for patchadd.1m and patchrm.1m
    106962|01|Jan/04/99|R|S| |  |2.4_x86|i386;|SUNWdoc:11.5.1,REV=94.07.18.19.02;|SunOS 5.4_x86: /usr/bin/apropos patch
    106963|01|Dec/02/98| | | |  |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/esp and /kernel/drv/sparcv9/esp patch
    106965|01|Dec/04/98| | | |  |2.5.1|sparc;|SUNWpsdpr:1.0,REV=96.11.13.11.38;|SunOS 5.5.1 -- Eliminated memory leaks and added hotplug robustnes
    106966|01|Nov/12/98| | | |  |2.5.1|sparc;|SUNWpcser:1.0,REV=96.01.17.13.40;|SunOS 5.5.1 -- Eliminated Warning Interrupt not serviced messages
    106967|01|Mar/11/99| | | |  |7|sparc;|SUNWcleu:7.0,REV=1.0.22.9;|SunOS 5.7: htt server unexpectedly restart
    106968|01|Mar/11/99| | | |  |7_x86|i386;|SUNWcleu:7.0,REV=1.0.22.9;|SunOS 5.7_x86: htt server unexpectedly restart
    106969|01|Jan/05/99| | | |  |7|sparc;|SUNWcleu:7.0,REV=1.0.22.9;SUNWgleu:7.0,REV=1.0.22.9;|SunOS 5.7: zh.GBK, Input Method, Alt+1 sometimes can not work prop
    106970|01|Jan/05/99| | | |  |7_x86|i386;|SUNWcleu:7.0,REV=1.0.22.9;SUNWgleu:7.0,REV=1.0.22.9;|SunOS 5.7_x86: zh.GBK, input method, Alt+1 sometimes work improper
    106971|01|Jan/05/99| | | |  |7|sparc;|SUNWgxplt:7.0,REV=1.0.22.9;|SunOS 5.7: xetops of zh.GBK locale doesn't process TAB character
    106972|02|Jan/06/99| | | |  |7_x86|i386;|SUNWgxplt:7.0,REV=1.0.22.9;|SunOS 5.7_x86: xetops of zh.GBK locale doesn't process TAB charact
    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|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|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
    106992|01|Dec/08/98| | | |  |2.5.1|sparc;|SUNWscpu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/ucb/ucblinks patch
    106994|01|Dec/09/98| | | |  |2.6|sparc;|SUNWscpu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/ucb/ucblinks patch
    106999|01|Jan/04/99| | | |  |7|sparc;|SUNWesxu:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /usr/lib/adb/sparcv9/adbsub.o patch
    107000|02|May/26/99| | | |  |2.6_x86|i386;|SUNWdtdst:1.2,REV=10.97.07.08;SUNWdtdte:1.2,REV=10.97.07.02;|CDE 1.2_x86: Actions patch
    107001|01|Dec/24/98| |S|O|  |7|||OBSOLETED by 107887
    107002|01|Dec/24/98| |S|O|  |7_x86|||OBSOLETED by 107888
    107003|03|Jan/26/99| | | |  |7|sparc;|SUNWi8rf:2.0,REV=1998.02.25.14.52;|SunOS 5.7: Updated Lucida Hebrew Fonts for Solaris 7
    107004|01|Nov/13/98| |S| |  |Unbundled|sparc;|SUNWmibii:1.1,REV=1997.07.15.21.46;SUNWsacom:1.1,REV=1997.07.15.21.46;SUNWsadmi:1.1,REV=1997.07.15.21.46;SUNWsasnm:1.1,REV=1997.07.15.21.46;|Solstice Enterprise Agent 1.0.1: SNMP DMI
    107006|01|Nov/29/99|R|S| |  |Trusted_Solaris_2.5.1|||Trusted Solaris 2.5.1: security issue in ftp client mget command
    107009|01|Jan/19/99| | | |Y |Unbundled|sparc;|SUNWcache:1.0,REV=12.08.1997;|Netra ProxyCache Server 1.0: Y2K problem
    107010|01|Nov/13/98| |S| |  |Unbundled|i386;|SUNWmibii:1.1,REV=1997.07.16.00.21;SUNWsacom:1.1,REV=1997.07.16.00.21;SUNWsadmi:1.1,REV=1997.07.16.00.21;SUNWsasnm:1.1,REV=1997.07.16.00.21;|Solstice Enterprise Agent 1.0.1 _x86: SNMP DMI
    107011|01|Nov/17/98| | | |  |7|sparc;|SUNWdtdst:1.3,REV=10.98.09.12;|CDE 1.3: sdtwebclient patch
    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| | |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|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|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
    107026|12|Aug/08/01| | | |  |7|sparc;sparc.sun4u;|SUNWscpu:11.7.0,REV=1998.09.01.04.16;SUNWsior:2.3,REV=1999.08.25.16.07;SUNWsiox:1.3,REV=1999.08.25.16.10;|SunOS 5.7: ucblinks and su driver patch
    107028|02|May/11/00| | | |  |Unbundled|||Hardware, 18/9/4GB disks: Download program and MAA3182S/MAB3091S/M
    107029|01|Mar/11/99| | |O|  |7|||OBSOLETED by 106541
    107030|01|Mar/11/99| | |O|  |7|||OBSOLETED by 106541
    107031|01|Mar/11/99| | |O|  |7|||OBSOLETED by 106541
    107032|01|Mar/11/99| | |O|  |7_x86|||OBSOLETED by 106542
    107033|01|Dec/14/98| | | |  |7|sparc;|SUNW5xplt:7.0,REV=1.0.21;|SunOS 5.7: xetops crashes for BIG5
    107034|01|Dec/14/98| | | |  |7_x86|i386;|SUNW5xplt:7.0,REV=1.0.21;|SunOS 5.7_x86: xetops crashes for BIG5
    107035|01|Nov/16/98| |S| |  |Unbundled|sparc;|SUNWmibii:1.1,REV=1997.07.15.21.46;SUNWsacom:1.1,REV=1997.07.15.21.46;SUNWsadmi:1.1,REV=1997.07.15.21.46;SUNWsasnm:1.1,REV=1997.07.15.21.46;|Solstice Enterprise Agent 1.0.1: SNMP DMI
    107036|01|Nov/16/98| |S| |  |Unbundled|i386;|SUNWmibii:1.1,REV=1997.07.16.00.21;SUNWsacom:1.1,REV=1997.07.16.00.21;SUNWsadmi:1.1,REV=1997.07.16.00.21;SUNWsasnm:1.1,REV=1997.07.16.00.21;|Solstice Enterprise Agent 1.0.1 _x86: SNMP DMI
    107037|02|Mar/02/00| | | |  |Unbundled|sparc;|SUNWsasdk:1.3;|Solstice Enterprise Agent 1.0.3: For SNMP and DMI Toolkit SUNWsasd
    107038|02|Jun/28/01|R|S| |  |7|sparc;|SUNWdoc:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: apropos/catman/man/whatis patch
    107039|02|Jun/28/01|R|S| |  |7_x86|i386;|SUNWdoc:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: apropos/catman/man/whatis patch
    107042|03|Jun/22/99| | | |  |7|sparc;|SUNWjadis:1.3,REV=1.0.45;SUNWjadma:1.3,REV=1.0.47;SUNWjpadi:1.1,REV=1.0.45;SUNWjpadm:1.1,REV=1.0.47;SUNWjuadi:1.1,REV=1.0.45;SUNWjuadm:1.1,REV=1.0.47;|SunOS 5.7 (JFP 7): install/sysadm messages patch
    107043|03|Jun/22/99| | | |  |7_x86|i386;|SUNWjadis:1.3,REV=1.0.45;SUNWjadma:1.3,REV=1.0.47;SUNWjpadi:1.1,REV=1.0.45;SUNWjpadm:1.1,REV=1.0.47;SUNWjuadi:1.1,REV=1.0.45;SUNWjuadm:1.1,REV=1.0.47;|SunOS 5.7_x86 (JFP 7): install/sysadm messages patch
    107044|01|Nov/23/98| | | |  |7|sparc;|SUNWplow1:1.0,REV=1998.09.11.21.32;|SunOS 5.7: Russian and Polish print failure on some printers
    107045|01|Mar/12/99| | | |  |7_x86|i386;|SUNWplow1:1.0,REV=1998.09.11.21.40;|SunOS 5.7_x86: Russian and Polish print failure on some printers
    107046|02|Jul/21/99| | | |  |Unbundled|||ChorusORB 5.0: Official patch for the escalation Esc# 517550
    107048|01|Nov/29/99|R| | |  |Trusted_Solaris_2.5.1|||Trusted Solaris 2.5.1: syslogd drops blocks of messages under heav
    107049|01|Jan/07/99| | | |  |7|sparc;|SUNWtddte:7.0,REV=1.0.21;|SunOS 5.7: dtlogin language menu displays wrong info
    107050|01|Jan/07/99| | | |  |7_x86|i386;|SUNWtddte:7.0,REV=1.0.21;|SunOS 5.7_x86: dtlogin language menu displays wrong info
    107051|01|Nov/24/98| | | |  |Unbundled|sparc;|OMRONWnn6:2.10;|Wnn6 2.10: dpkeyserv denies access from a remote host
    107052|01|Nov/24/98| | | |  |Unbundled|sparc;|OMRONWnn6:2.11;|Wnn6 2.11: dpkeyserv denies access from a remote host
    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|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: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
    107071|01|May/14/99| | | |  |Unbundled|sparc;|SUNWlagn:2.0,REV=98.09.14;|Sun StorEdge Library Agent 2.0: L280 and L11000 libraries (localiz
    107072|01|Dec/02/98| | | |  |7|sparc;|SUNWdtdst:1.3,REV=10.98.09.12;|CDE 1.3: Spell Checker patch
    107073|01|Dec/24/98| | | |  |Unbundled|i386;|SUNWdtdst:1.3,REV=10.98.09.12;|CDE 1.3_x86: Spell Checker patch
    107074|01|Dec/18/98| | | |  |7|sparc;|SUNWinst:11.7,REV=1998.09.10.20.16;|SunOS 5.7: SUNWultratest doesn't support sun4us platform
    107076|01|Mar/12/99| | | |  |7|sparc;|SUNWvolu:11.7.0,REV=1998.09.01.04.16;SUNWvolux:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /usr/kernel/drv/vol and /usr/kernel/drv/sparcv9/vol pat
    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|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
    107095|12|Mar/12/01| | | |  |7|i386;107082-07;|SUNWdtbas:1.3,REV=10.98.09.12;|CDE 1.3_x86: dtterm libDtTerm.so.2 Patch
    107099|01|Dec/23/98| | | |  |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/lib/fs/ufs/quota patch
    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|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
    107120|04|Jun/23/99| | | |  |7_x86|i386;|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_x86 (JFP 7): manpages patch
    107121|02|May/26/99| | |O|  |7|||OBSOLETED by 107458
    107122|01|Feb/05/99| | | |  |2.6|sparc;|SUNWjeuc:1.0,REV=1.0.78;SUNWjpck:1.0,REV=1.0.78;|SunOS 5.6: Japanese localization for sgml patch
    107123|01|Feb/09/99| | | |  |2.6_x86|i386;|SUNWjeuc:1.0,REV=1.0.78;SUNWjpck:1.0,REV=1.0.78;|SunOS 5.6_x86: Japanese localization for sgml patch
    107124|03|Oct/07/99| | | |  |7|sparc;|SUNWjeuc:1.1,REV=1.0.45.1;SUNWjpck:1.1,REV=1.0.45.1;SUNWju8:1.0,REV=1.0.45.1;|SunOS 5.7 (JFP 7): Message files patch
    107125|02|Oct/07/99| | | |  |7_x86|i386;|SUNWjeuc:1.1,REV=1.0.45.1;SUNWjpck:1.1,REV=1.0.45.1;SUNWju8:1.0,REV=1.0.45.1;|SunOS 5.7_x86 (JFP 7): Message files patch
    107126|01|Jul/21/99| | | |  |Unbundled|||ChorusOS 3.2: Patch for MPC860 (host Solaris) - Special 06
    107127|02|Mar/12/99| | | |  |7|sparc;|SUNWatfsu:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /usr/lib/autofs/automountd patch
    107128|01|Mar/12/99| | | |  |7_x86|i386;|SUNWatfsu:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: /usr/lib/autofs/automountd patch
    107129|01|Jan/08/99| | | |  |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: /usr/sbin/i86/sysdef patch
    107130|01|Jan/13/99| | | |  |Unbundled|sparc;|SUNWbak:1.0;SUNWbau:1.0;|Sun Bandwidth Allocator 1.0: patch
    107131|01|Jan/13/99| | | |  |Unbundled|i386;|SUNWbak:1.0;SUNWbau:1.0;|Sun Bandwidth Allocator 1.0: patch_x86
    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
    107138|01|Jan/07/99| | | |  |7|sparc;|SUNW5ttf:7.0,REV=1.0.21;|SunOS 5.7: Fixed SUNW5ttf package to display ps files
    107139|01|Jan/07/99| | | |  |7_x86|i386;|SUNW5ttf:7.0,REV=1.0.21;|SunOS 5.7_x86: Fixed SUNW5ttf package to display ps files
    107142|01|Mar/18/99| | |O|  |Unbundled|106606-01;||OBSOLETED by 106606
    107146|01|Mar/18/99| | |O|  |Unbundled|105463-06;||OBSOLETED by 105463
    107147|08|Aug/11/00| | |O|  |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;|Obsoleted by: 106541-14 SunOS 5.7: pci driver patch
    107148|11|Feb/15/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;SUNWhea:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /kernel/fs/cachefs patch
    107149|10|Feb/15/02|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: /kernel/fs/cachefs patch
    107152|01|Jun/11/99| | | |  |7_x86|i386;|SUNWgttf:7.0,REV=1.0.21;|SunOS 5.7_x86: There are three characters missed in zh.GBK songti.
    107153|01|Jun/11/99| | | |  |7|sparc;|SUNWgttf:7.0,REV=1.0.21;|SunOS 5.7: There are three characters missed in zh.GBK songti.ttf
    107154|01|Jun/11/99| | | |  |7_x86|i386;|SUNWcleu:7.0,REV=1.0.22.9;SUNWcwsr:7.0,REV=1998.11.27.15.50;SUNWgleu:7.0,REV=1.0.22.9;|SunOS 5.7_x86: some message files need be added/updated in SCH loc
    107155|01|Jun/11/99| | | |  |7|sparc;|SUNWcleu:7.0,REV=1.0.22.9;SUNWcwsr:7.0,REV=1998.11.27.15.50;SUNWgleu:7.0,REV=1.0.22.9;|SunOS 5.7: Some messages files need be added/updated in SCH locale
    107160|01|Dec/21/98| | |O|  |Unbundled|106686-01;||OBSOLETED by 106686
    107161|02|Mar/11/99| | | |  |Unbundled|sparc;106854-02;|SUNWatm:3.0;|SunATM 3.0 Update 1: Patch
    107162|01|Dec/17/98| | |O|  |Unbundled|||OBSOLETED by 107009
    107163|01|Feb/04/99| | | |Y |Unbundled|sparc;|SUNWfw:3.0;|Solstice FireWall-1 3.0b (Service Pack 8) Sparc: Upgrade patch (VP
    107164|01|Feb/04/99| | | |Y |Unbundled|sparc;|SUNWfw:3.0;|Solstice FireWall-1 3.0b (Service Pack 8) Sparc: patch (VPN+DES)
    107165|01|Feb/04/99| | | |Y |Unbundled|i386;|SUNWfw:3.0;|Solstice FireWall-1 3.0b (Service Pack 8)_x86: patch (Non-VPN)
    107166|01|Feb/04/99| | | |Y |Unbundled|i386;|SUNWfw:3.0;|Solstice FireWall-1 3.0b (Service Pack 8) _x86: Upgrade patch (VPN
    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|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|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|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|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
    107220|02|Jun/21/99| |S|O|  |7_x86|106935-02;||OBSOLETED by 107886
    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|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
    107234|01|Mar/10/99| | | |  |7_x86|i386;|SUNWxwopt:3.7.2100,REV=0.98.08.05;|OpenWindows 3.6.1_x86: xterm patch
    107237|01|Feb/03/99| | | |  |Unbundled|sparc;|SUNWvts:2.1.1,REV=07.97.10.08;|SunVTS 2.1.1: cpudatatest to detect (un)compress sequence failure
    107239|01|Jan/29/99| | |O|  |2.5.1|||OBSOLETED by 103640
    107240|01|Jan/29/99| | |O|  |2.5.1_x86|||OBSOLETED by 103641
    107242|02|Jul/23/99| | | |  |Unbundled|sparc;|SUNWjawag:3.0;SUNWjawcl:3.0;SUNWjawco:3.0;SUNWjawcs:3.0;SUNWjawdc:3.0;SUNWjawex:3.0;SUNWjawtk:3.0;|Java DMK 3.0: Patch
    107244|02|Jul/23/99| | | |  |Unbundled|||Java DMK 3.0: Patch
    107245|02|Jul/23/99| | | |  |Unbundled|sparc;|SUNWjawag:3.0;SUNWjawcl:3.0;SUNWjawco:3.0;|Java DMK 3.0: patch (Runtime only)
    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
    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: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|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|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
    107296|02|Sep/01/00| | | |  |Unbundled|i386;|SPROesrt:2.0;SPROws:5.0;|WorkShop IPE 5.0_x86: Patch for WorkShop IPE 5.0
    107297|01|Jan/27/99| | |O|  |Unbundled|||OBSOLETED by 106408
    107298|03|Oct/15/01|R|S| |  |2.6|sparc;|SUNWntpu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: ntpdate and xntpd patch
    107299|03|Oct/15/01|R|S| |  |2.6_x86|i386;|SUNWntpu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: ntpdate and xntpd patch
    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: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|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
    107317|01|Jun/23/99| | | |  |7_x86|i386;|SUNWploc:2.0,REV=1998.09.11.21.34;|SunOS 5.7_x86: localeconv() returns wrong results for French
    107318|04|Aug/04/99| | |O|  |7|||OBSOLETED by 108068
    107319|04|Aug/04/99| | |O|  |7_x86|||OBSOLETED by 108069
    107320|02|Feb/19/99| | | |  |Unbundled|sparc;|SUNWatm:3.0;|SunATM 3.0: system loses connection to IBM switch when sysUpTiem w
    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|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| |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
    107338|01|Mar/19/99|R|S| |  |2.6_x86|i386;|SUNWkcspg:1.1,REV=1.14;SUNWkcsrt:1.1,REV=1.14;|OpenWindows 3.6_x86: KCMS configure tool has a security vulnerabil
    107339|02|Sep/14/01|R|S| |  |7_x86|i386;|SUNWkcspg:1.1.1,REV=1.4;SUNWkcsrt:1.1.1,REV=1.4;|SunOS 5.7_x86: KCMS configure security vulnerability patch
    107350|03|May/02/00| | | |  |Unbundled|sparc;|SUNWxgldg:5.0,REV=98.07.09;SUNWxglrt:5.0,REV=98.07.09;|XGL 3.3.1: XGL Patch (unstripped version)
    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|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|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
    107372|01|Mar/09/99| | | |  |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: usr/lib/fs/tmpfs/mount patch
    107373|01|Mar/09/99| | | |  |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: usr/lib/fs/tmpfs/mount patch
    107374|02|Jul/23/01|R|S| |  |7|sparc;|SUNWolinc:3.6.1,REV=1.98.08.13;SUNWolrte:3.6.1,REV=1.98.08.13;SUNWolslb:3.6.1,REV=1.98.08.13;|Openwindows 3.6.1: Xview Patch
    107375|02|Jul/23/01|R|S| |  |7_x86|i386;|SUNWolinc:3.6.1,REV=1.98.08.13;SUNWolrte:3.6.1,REV=1.98.08.13;SUNWolslb:3.6.1,REV=1.98.08.13;|Openwindows 3.6.1_x86: Xview Patch
    107377|05|Jul/19/00| | | |  |Unbundled|sparc;107356-05;107357-04;107989-01;|SPROl90x:2.0;|Fortran 90 2.0: Patch for 64-bit Fortran 90 (f90) 2.0 compiler
    107381|01|Dec/16/99| | | |  |2.6|sparc;|SUNWxwplt:3.6.370,REV=0.97.07.09;|OpenWindows 3.6: libsv8.so.1 Patch
    107386|01|Apr/29/99| | | |  |Unbundled|sparc;|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: SKI/SSL Services
    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|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|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)
    107413|01|Jun/23/99| | | |  |7|sparc;|SUNWcleu:7.0,REV=1.0.22.9;SUNWgleu:7.0,REV=1.0.22.9;|SunOS 5.7: Fix Translation "Incomplete last line" in vi for zh/zh.
    107414|01|Jun/23/99| | | |  |7_x86|i386;|SUNWcleu:7.0,REV=1.0.22.9;SUNWgleu:7.0,REV=1.0.22.9;|SunOS 5.7_x86: Fix Translation "Incomplete last line" in vi
    107415|01|Jun/23/99| | | |  |7|sparc;|SUNWgxplt:7.0,REV=1.0.22.9;|SunOS 5.7: Result of TAB in xetops of zh.GBK isn't the same with v
    107416|01|Jun/23/99| | | |  |7_x86|i386;|SUNWgxplt:7.0,REV=1.0.22.9;|SunOS 5.7_x86: Result of TAB in xetops isn't the same with vi
    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|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
    107432|03|Sep/08/99| | | |  |7|sparc;|SUNWisolc:1.0,REV=1998.02.25.14.53;SUNWisolx:1.0,REV=1998.04.27.15.00.35;SUNWplc1x:1.0,REV=1998.09.11.23.52;SUNWploc1:1.0,REV=1998.09.11.21.29;SUNWplow1:1.0,REV=1998.09.11.21.32;|SunOS 5.7: CTL printing patch
    107433|02|Sep/08/99| | | |  |7_x86|i386;|SUNWisolc:1.0,REV=1998.02.11.17.25;SUNWploc1:1.0,REV=1998.09.11.21.36;SUNWplow1:1.0,REV=1998.09.11.21.40;|SunOS 5.7_x86: ctlmp printing utility patch.
    107434|01|Apr/05/99|R| | |  |2.6|sparc;|SUNWdtdst:1.2,REV=10.97.07.08;|CDE 1.2: Spell checking occasionally kills mail
    107435|01|Apr/05/99|R| | |  |2.6_x86|i386;|SUNWdtdst:1.2,REV=10.97.07.08;|CDE 1.2_x86: dtmail patch
    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  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|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| | |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|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|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|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|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
    107485|01|Apr/01/99| | | |  |Unbundled|all;i386;sparc,x86;|SUNWftpm:1.1;SUNWftpr:11.6.0,REV=1999.01.15.16.13;SUNWftpu:11.6.0,REV=1999.01.15.16.13;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.07;SUNWncman:11.7.0,REV=1999.01.27.19.02;SUNWsnsc:1.1;SUNWsnsf:1.1;SUNWsnsr:1.1;|Solaris ISP Server 2.0_x86: Patch for product components
    107486|01|May/05/99| | | |  |2.6|sparc;|SUNWpppk:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: ipd_tellcm->putnext causes panic
    107487|01|May/05/99| | | |  |2.6_x86|i386;|SUNWpppk:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: ipd_tellcm->putnext causes panic
    107488|01|Apr/05/99| | | |  |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: df -o i" fails for lofs mounted directories
    107489|01|Apr/16/99| | | |  |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: df -o i" fails for lofs mounted directories
    107490|01|Apr/05/99|R| | |  |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: savecore doesn't work if swap slice is over 2G
    107491|01|Apr/05/99|R| | |  |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: savecore doesn't work if swap slice is over 2G
    107492|01|Apr/05/99| | | |Y |2.6|sparc;|SUNWaccu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: Y2000, runacct cannot update /var/adm/acct/sum/loginlog
    107493|01|Apr/05/99| | | |Y |2.6_x86|i386;|SUNWaccu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: Y2000, runacct cannot update /var/adm/acct/sum/logi
    107494|01|Apr/05/99| | | |Y |2.4|sparc;|SUNWaccu:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: Y2000, runacct cannot update /var/adm/acct/sum/loginlog
    107495|01|Apr/05/99| | | |Y |2.4_x86|i386;|SUNWaccu:11.5.1,REV=94.07.18.19.02;|SunOS 5.4_x86: Y2000, runacct cannot update /var/adm/acct/sum/logi
    107496|01|Nov/17/99| | | |  |2.5.1|sparc;sparc.sun4u;|SUNWvplr:11.5.1,REV=97.09.23.11.46;SUNWvplu:11.5.1,REV=97.09.23.11.46;SUNWvplxw:11.5.1,REV=97.09.23.11.46;|SunOS 5.5.1: sun4u platform links patch
    107497|01|Nov/17/99| | | |  |2.6|sparc;sparc.sun4u;|SUNWvplr:11.6,REV=1997.11.20.02.32;SUNWvplu:11.6,REV=1997.11.20.02.32;SUNWvplxw:11.6,REV=1997.11.20.02.32;|SunOS 5.6: sun4u platform links patch
    107498|01|Apr/19/99| | | |  |Unbundled|sparc;|SUNWsspdf:3.1.0,REV=97.11.17.17.04;SUNWsspop:3.1.0,REV=97.11.17.17.04;|SSP 3.1: autoconfig fixes
    107499|02|Aug/17/99| | | |  |7|sparc;|SUNWpldte:1.1,REV=1998.10.02.15.10;|SunOS 5.7: koi8-R -ow hanged before dtlogin screen
    107500|02|Aug/17/99| | | |  |7_x86|i386;|SUNWkoi8f:3.6,REV=1998.09.25.15.13;SUNWpldte:1.1,REV=1998.10.02.15.03;|SunOS 5.7_x86: koi8-R -cde & ow hanged before dtlogin screen
    107502|01|Mar/17/99| | | |  |Unbundled|||Hardware, Tape: L280 autoloader / Libraries
    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
    107523|04|Feb/04/00| | | |Y |Unbundled|sparc;|SUNWmpi:3.0;SUNWrte:3.0;|HPC2.0: Critical fixes and updates for RTE and MPI
    107524|01|Apr/05/99| | | |Y |2.5.1|sparc;|SUNWaccu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: On Y2k, runacct cannot update /var/adm/acct/sum/login
    107525|01|Apr/05/99| | | |Y |2.5.1_x86|i386;|SUNWaccu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: Y2k runacct cannot update /var/adm/acct/sum/login
    107526|01|Apr/05/99| | | |Y |2.5|sparc;|SUNWaccu:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: On Y2000, runacct cannot update /var/adm/acct/sum/login
    107527|01|Apr/05/99| | | |Y |2.5_x86|i386;|SUNWaccu:11.5.1,REV=95.10.27.15.21;|SunOS 5.5_x86: Y2000, runacct cannot update /var/adm/acct/sum/logi
    107528|01|Apr/05/99| | | |  |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: df -o i" fails for lofs mounted directories
    107529|01|Apr/05/99| | | |  |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: df -o i" fails for lofs mounted directories
    107531|01|Apr/05/99| | |O|  |2.6|sparc;|SUNWvolu:11.6.0,REV=1997.07.15.21.46;|Obsoleted by: 107618-03 SunOS 5.6: vold dumps core
    107532|01|Apr/05/99| | |O|  |2.6_x86|i386;|SUNWvolu:11.6.0,REV=1997.07.16.00.21;|Obsoleted by: 107619-03 SunOS 5.6_x86: vold dumps core
    107537|01|Apr/05/99| | | |  |7_x86|i386;|SUNWpsdcr:1.1.0,REV=1998.08.07.12.41;|SunOS 5.7_x86: kd patch
    107538|05|Aug/06/01| | | |  |Unbundled|sparc;|SUNWccon:2.2,REV=1999.02.09.23.30;SUNWccp:2.2,REV=1999.02.09.23.30;SUNWscmgr:2.2,REV=1999.02.09.23.30;|Sun Cluster 2.2: System Management Patch
    107540|02|Oct/29/99| | | |  |Unbundled|sparc;|SUNWsdmi:dbmi-1.0.1;|Solstice Database Module Informix: Informix Module (v1.0.1)
    107542|01|May/21/99| | | |  |Unbundled|sparc;|SUNWvts:2.1.3,REV=06.98.04.17;|SunVTS 2.1.3: cpudatatest detects compress/uncompress sequence fai
    107543|02|May/08/01| | | |  |Unbundled|sparc;|SUNWvts:3.0,REV=21.98.09.02;SUNWvtsx:3.0,REV=21.98.09.02;|SunVTS 3.0: Test patch for cpudata, m64test, saiptest, disktest, t
    107544|03|Oct/21/99|R| | |  |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/ufs/fsck patch
    107545|03|Nov/18/99|R| | |  |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/ufs/fsck patch
    107546|02|Apr/27/99| | | |  |7|sparc;|SUNWxwpsr:3.7.1400,REV=0.98.04.16;|OpenWindows 3.6.1: Ultra 80 Support Patch
    107551|01|Apr/05/99| | | |  |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/date and /usr/xpg4/bin/date patch
    107552|01|Apr/05/99| | | |  |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/date and /usr/xpg4/bin/date patch
    107553|01|May/05/99| | | |  |7|sparc;|SUNWpppk:11.7.0,REV=1998.09.01.04.16;SUNWpppkx:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /usr/kernel/drv/ipdcm & /usr/kernel/drv/sparcv9/ipdcm p
    107554|01|May/05/99| | | |  |7_x86|i386;|SUNWpppk:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: /usr/kernel/drv/ipdcm patch
    107555|01|May/12/99| | | |  |7|sparc;|SUNWldapx:11.7.0,REV=1998.09.01.04.16;SUNWlldap:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /usr/lib/libldap.so.3 & /usr/lib/sparcv9/libldap.so.3 p
    107556|01|May/17/99| | | |  |7_x86|i386;|SUNWlldap:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: /usr/lib/libldap.so.3 patch
    107557|02|Aug/26/99| | | |  |7|sparc;|SUNWaccu:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /usr/sbin/sag patch
    107558|02|Aug/26/99| | | |  |7_x86|i386;|SUNWaccu:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: /usr/sbin/sag patch
    107560|02|May/24/99| | | |  |7|sparc;|SUNWisolc:1.0,REV=1998.02.25.14.53;|SunOS 5.7: (32bit) Support for ISO8859-1/IBM-500 iconv conversion
    107562|02|May/24/99| | | |  |7|sparc;|SUNWisolx:1.0,REV=1998.04.27.15.00.35;|SunOS 5.7: (64bit) Support for ISO8859-1/IBM-500 iconv conversion
    107565|03|Sep/14/01|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;|SunOS 5.6: /usr/sbin/in.tftpd patch
    107566|03|Sep/14/01|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;|SunOS 5.6_x86: /usr/sbin/in.tftpd patch
    107571|01|Nov/29/99| |S| |  |Trusted_Solaris_2.5.1|||Trusted Solaris 2.5.1: Changing SL via file manager DnD does not a
    107573|06|Apr/01/99| | |O|  |7_x86|||OBSOLETED by 107867
    107576|01|Aug/23/99| | | |  |2.6_x86|||SunOS 5.6_x86: dnet patch
    107577|01|Jun/24/99| | | |  |7|sparc;|SUNWjwsr:1.1,REV=1.1.7;|SunOS 5.7 (JFP 7): Japanese installer utility patch
    107578|01|Jun/24/99| | | |  |7_x86|i386;|SUNWjwsr:1.1,REV=1.1.7;|SunOS 5.7_x86 (JFP 7): Japanese installer utility patch
    107579|03|May/22/00| | | |  |Unbundled|||Jumbo Patch for ChorusOS r3.2.1 for UltraSparc-IIi (host Solaris)
    107580|01|Mar/24/99| | | |  |Unbundled|sparc;|SUNWhsmee:3.1.1,REV=04.28.98;|HSM 3.1.1: Updates Patch
    107581|01|May/05/99| | | |  |Unbundled|||Netbackup GDM 3.1.1: Patch
    107584|01|May/03/99| | |O|  |7|sparc;|SUNWvolu:11.7.0,REV=1998.09.01.04.16;|Obsoleted by: 107259-03 SunOS 5.7: /usr/lib/vold/dev_cdrom.so.1 pa
    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|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
    107596|03|Nov/08/99| | | |  |Unbundled|sparc;107357-03;107989-01;|SPROf77:5.0;SPROlib77:5.0;SPROmrf77:5.0;|F77 5.0: Patch for FORTRAN 77 (f77) 5.0 compiler
    107600|01|Apr/22/99| | | |  |2.6|sparc;|SUNWxwdv:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: seglock_lockfault()/lock_wakeup() deadlock
    107604|02|May/07/99| | | |  |Unbundled|sparc;|SUNWhsmee:3.1.1;|Veritas Branded HSM 3.1.1: Multiple fixes Patch
    107607|01|Apr/16/99| | |O|  |Unbundled|||OBSOLETED by 107081
    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: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|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
    107649|09|Feb/08/00| |S|O|  |7_x86|107079-13;||OBSOLETED by 108377
    107650|08|Sep/15/00|R|S| |  |7|sparc;108376-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 X11R6.4 Xprint Extension Patch
    107651|08|Sep/15/00|R|S| |  |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: X11R6.4 Xprint Extension Patch
    107652|06|Feb/08/00| | | |  |7|sparc;108376-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: X11R6.4 XKB Extension Patch
    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|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
    107667|01|May/21/99| | | |Y |Unbundled|||Solstice FireWall-1 3.0b: Windows NT 4.0 SP-8 Non-VPN upgrade patc
    107668|01|May/21/99| | | |Y |Unbundled|||Solstice FireWall-1 3.0b: Windows NT 4.0 VPN upgrade patch
    107669|06|Jul/09/01| | | |  |Unbundled|||Jumbo Patch for ChorusOS r3.2.1 for PowerPC 60x (host Solaris)
    107670|04|Sep/22/00| | | |  |Unbundled|||Jumbo Patch for ChorusOS r3.2.1 for PowerPC 60x (host Solaris)
    107671|06|Jul/10/01| | | |  |Unbundled|||Jumbo Patch for ChorusOS r3.2.1 for PowerPC 60x (host HP-UX)
    107672|01|Aug/18/99| | | |  |Unbundled|||ChorusOS r3.2.1: Patch for PowerPC 60x (host HP-UX)
    107673|01|Aug/18/99| | | |  |Unbundled|||ChorusOS r3.2.1: Patch for MPC8xx (host Solaris)
    107674|01|Aug/18/99| | | |  |Unbundled|||ChorusOS r3.2.1: Patch for MPC8xx (host Solaris)
    107675|01|Aug/18/99| | | |  |Unbundled|||ChorusOS r3.2.1: Patch for MPC8xx (host HP-UX)
    107676|01|Aug/18/99| | | |  |Unbundled|||ChorusOS r3.2.1: Patch for MPC8xx (host HP-UX)
    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|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|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|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|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
    107720|02|Jul/01/99| | | |  |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 day information in 'pt' and 'pt_BR' local
    107722|01|Jul/19/00| | | |  |Unbundled|sparc;107698-01;|SPROildx:3.0;|ild 3.0: Patch for 64-bit ild 3.0 (SPARC/V9)
    107723|01|May/25/99| | | |  |7|sparc;|SUNWoldst:3.6.1,REV=1.98.08.13;|OpenWindows 3.6.1: printtool patch
    107724|01|May/25/99| | | |  |7_x86|i386;|SUNWoldst:3.6.1,REV=1.98.08.13;|OpenWindows 3.6.1_x86: printtool patch
    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|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
    107738|01|Aug/23/00| | | |  |7|sparc;|SUNWeuise:1.0,REV=1998.09.11.21.33;SUNWpldte:1.1,REV=1998.10.02.15.10;SUNWploc1:1.0,REV=1998.09.11.21.29;SUNWplow1:1.0,REV=1998.09.11.21.32;|SunOS 5.7: Estonian locale uses incorrect codeset (QU)
    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|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
    107747|03|Aug/23/00| | | |  |7_x86|i386;|SUNWploc1:1.0,REV=1998.09.11.21.36;|SunOS 5.7_x86: Croatian locale hr_HR corrections
    107748|02|Nov/04/99| | |O|  |Unbundled|sparc;|SUNWcmm:2.2,REV=1999.02.09.23.00;|Obsoleted by: 109208-01 SunCluster 2.2: clustd patch
    107749|02|Mar/13/00| | |O|  |Unbundled|sparc;|SUNWcmm:2.2,REV=1999.02.09.23.30;|Obsoleted by: 109209-06 SunCluster 2.2: clustd patch
    107750|01|Feb/04/00| | |O|  |Unbundled|sparc;|SUNWsc:2.2,REV=1999.02.09.23.00;|Obsoleted by: 109208-01 SunCluster 2.2: ha-nfs error for logical h
    107751|01|Feb/04/00| | |O|  |Unbundled|sparc;|SUNWsc:2.2,REV=1999.02.09.23.30;|Obsoleted by: 109209-06 SunCluster 2.2: ha-nfs error for logical h
    107754|01|May/26/99|R|S| |  |2.5|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: Pax incorrectly change mode of symlink target file
    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|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
    107764|02|Apr/28/00| | |O|  |Unbundled|sparc;108521-01;109209-06;|SUNWsc:2.2,REV=1999.02.09.23.30;|Obsoleted by: 109209-06 SunCluster 2.2: framework rpcbind patch
    107765|01|May/06/99| | | |  |2.6_x86|i386.i86pc;|SUNWcar:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: ddi_dma_nextcookie() returns wrong cookies on 2.6 x
    107766|01|Aug/09/99|R|S| |  |2.6|sparc;|SUNWast:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: ASET cklist reports unchanged 6month older files as new
    107767|01|Aug/09/99|R|S| |  |2.6_x86|i386;|SUNWast:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: ASET cklist reports unchanged 6month older files as
    107768|02|Nov/30/99| | | |  |2.6_x86|||SunOS 5.6_x86: Cadp Bootconf patch
    107771|02|Feb/16/01| | | |  |2.6|sparc;|SUNWtoo:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: patch usr/bin/strings
    107772|02|Feb/20/01| | | |  |2.6_x86|i386;|SUNWtoo:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: patch usr/bin/strings
    107773|01|Aug/02/99| | |O|  |Unbundled|||OBSOLETED by 105463
    107774|01|Jun/08/99|R|S| |  |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: inetd denial-of-service attack
    107775|01|Jun/08/99|R|S| |  |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: inetd denial-of-service attack
    107778|06|Jun/12/00| | | |  |Unbundled|sparc.sun4u;|SUNWftcar:5.6,REV=1999.01.28.13.32;|Sun Quad FastEthernet 2.2: Patch for u4ft Solaris 2.6 qfe driver
    107780|02|Apr/22/02| |S| |  |Unbundled|sparc;|SUNWjawag:3.2,PATCH=02;SUNWjawcl:3.2,PATCH=02;SUNWjawco:3.2,PATCH=02;SUNWjawcs:3.2,PATCH=02;SUNWjawdc:3.2,PATCH=02;SUNWjawex:3.2,PATCH=02;SUNWjawtk:3.2,PATCH=02;|Java DMK 3.2 patch
    107782|02|Apr/29/02| |S| |  |Unbundled|||Java DMK 3.2 patch (Runtime only)
    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|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
    107797|02|Oct/15/99| | | |  |7_x86|i386;|SUNWcsr:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: /kernel/fs/lofs patch
    107799|02|Mar/24/00| | | |  |7|sparc;|SUNWesu:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: compress/uncompress/zcat patch
    107800|01|Sep/20/99| | | |  |7_x86|i386;|SUNWesu:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: compress/uncompress/zcat patch
    107802|01|Jun/02/99| | |O|  |7|||OBSOLETED by 107081
    107803|01|Jun/02/99| | |O|  |7_x86|||OBSOLETED by 107082
    107804|01|May/28/99| | | |  |2.5.1|sparc;|SUNWtoo:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/bin/strings patch
    107806|01|May/07/99| | | |  |Unbundled|||SNC 3.2: x86: Consolidated NT network provider patch.
    107807|01|Jun/02/99| | | |  |7|sparc;|SUNWxwplt:3.7.2103,REV=0.98.08.26;|OpenWindows 3.6.1: xrdb patch
    107808|02|Jun/15/99| | | |  |7_x86|i386;|SUNWxwplt:3.7.2103,REV=0.98.08.26;|OpenWindows 3.6.1_x86: xrdb patch
    107811|01|Jun/15/99| | | |  |7|sparc;|SUNWjfpu:2.9,REV=1.0.45;SUNWjfpux:1.0,REV=1.0.45;|SunOS 5.7: Japanese iconv patch
    107812|01|Jun/15/99| | | |  |7_x86|i386;|SUNWjfpu:2.9,REV=1.0.45;|SunOS 5.7_x86: Japanese iconv patch
    107813|01|Jun/15/99| | | |  |7|sparc;|SUNWjiu8:1.1,REV=1.0.43;SUNWjiu8x:1.0,REV=1.0.43;|SunOS 5.7: Japanese UTF-8 iconv patch
    107814|01|Jun/15/99| | | |  |7_x86|i386;|SUNWjiu8:1.1,REV=1.0.43;|SunOS 5.7_x86: Japanese UTF-8 iconv patch
    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|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|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|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|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
    107878|01|Sep/30/99| | | |  |7_x86|i386;|SUNWman:40.0,REV=23;SUNWos86r:1.1.0,REV=1998.08.07.12.41;|SunOS 5.7_x86: /kernel/drv/cadp patch
    107879|02|Sep/30/99| | | |  |7_x86|i386;|SUNWman:40.0,REV=23;SUNWos86r:1.1.0,REV=1998.08.07.12.41;|SunOS 5.7_x86: /kernel/drv/ncrs patch
    107881|10|Dec/07/99| | |O|  |7|107200-08;107226-07;107248-01;108151-01;108343-01;||OBSOLETED by 108374
    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|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|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
    107900|01|Jul/24/00| | | |  |7|sparc;|SUNWploc:2.0,REV=1998.09.11.21.27;SUNWploc1:1.0,REV=1998.09.11.21.29;|SunOS 5.7: Broken backward compatibility for some Solaris locales
    107904|04|Nov/29/99| | | |  |Unbundled|||ChorusOS r3.1: Special 11.8 (host Solaris)
    107905|04|Dec/01/00| | | |  |Unbundled|||Jumbo Patch for ChorusOS r3.1 Special 11.12 (host Solaris)
    107906|04|Jun/06/00| | | |  |Unbundled|||ChorusOS r3.2.1: Jumbo Patch Special 01 (host Solaris)
    107907|04|Jun/06/00| | | |  |Unbundled|||ChorusOS r3.2.1: Jumbo Patch Special 01 (host HP-UX)
    107908|01|Feb/17/00| | |O|  |Unbundled|sparc;|SUNWscsyb:2.2,REV=1999.02.09.23.00;|Obsoleted by: 108511-03 Sun Cluster 2.2: hasybase_config_V1
    107909|01|Feb/17/00| | |O|  |Unbundled|sparc;|SUNWscsyb:2.2,REV=1999.02.09.23.30;|Obsoleted by: 108512-03 SunCluster 2.2: hasybase_config_V1 patch
    107911|01|Jun/25/99| | |O|  |Unbundled|106686-03;||OBSOLETED by 106686
    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|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
    107922|01|Jul/23/99| | | |  |7_x86|i386;|SUNWxwplt:3.7.2103,REV=0.98.08.26;|OpenWindows 3.6.1_x86: xwininfo patch
    107924|01|Sep/20/00| | | |  |7|sparc;|SUNWhleu:7.0,REV=1.0.22.9;SUNWhleux:7.0,REV=1.0.22.9;|SunOS 5.7: Fix the problem with Dtmail sent data
    107925|01|Sep/20/00| | | |  |7_x86|i386;|SUNWhleu:7.0,REV=1.0.22.9;|SunOS 5.7_x86: Fix the problem with Dtmail sent data
    107926|04|Jul/26/99| | | |  |Unbundled|sparc.sun4u;107369-17;|SUNWcmsdf:5.6,REV=1999.01.28.13.32;SUNWftcar:5.6,REV=1999.01.28.13.32;SUNWftmuu:5.6,REV=1999.01.28.13.32;SUNWftutu:5.6,REV=1999.01.28.13.32;SUNWspltu:5.6,REV=1999.01.28.13.32;|Netra ft1800 6.7: OSdog patch
    107927|02|Sep/30/99| | | |  |7_x86|i386;|SUNWhea:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: /usr/include/sys/kbio.h patch
    107931|02|Jun/02/00| | |O|  |Unbundled|sparc;|SUNWpnm:2.2,REV=1999.02.09.23.00;|Obsoleted by: 109211-01 SunCluster 2.2: pnmd patch
    107932|02|Jun/02/00| | |O|  |Unbundled|sparc;|SUNWpnm:2.2,REV=1999.02.09.23.30;|Obsoleted by: 109212-02 SunCluster 2.2: pnmd patch
    107933|02|May/31/00| | | |  |7|sparc;|SUNWdeos:11.5.1,REV=1998.11.30.11.54;SUNWesos:11.5.1,REV=1998.11.30.13.22;SUNWfros:11.5.1,REV=1998.11.30.11.45;SUNWitos:11.5.1,REV=1998.11.30.13.06;SUNWsvos:11.5.1,REV=1998.11.30.13.14;|SunOS 5.7: l10n_euro message updates for SUNW(euro)is SUNW(euro)os
    107934|02|May/31/00| | | |  |7_x86|i386;|SUNWdeos:11.5.1,REV=1998.11.30.13.32;SUNWesos:11.5.1,REV=1998.11.30.13.44;SUNWfros:11.5.1,REV=1998.11.30.13.29;SUNWitos:11.5.1,REV=1998.11.30.13.38;SUNWsvos:11.5.1,REV=1998.11.30.13.43;|SunOS 5.7_x86: l10n_euro msg updates for SUNW(euro)is SUNW(euro)os
    107935|02|May/31/00| | | |  |7|sparc;|SUNWdeos:11.5.1,REV=1998.08.03.15.40;SUNWesos:11.5.1,REV=1998.08.03.15.45;SUNWfros:11.5.1,REV=1998.08.03.15.36;SUNWitos:11.5.1,REV=1998.08.03.15.44;SUNWsvos:11.5.1,REV=1998.08.03.15.48;|SunOS 5.7: l10n_euro message updates for SUNW(euro)is SUNW(euro)os
    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| | |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
    107953|02|Sep/15/99| | | |  |Unbundled|sparc;|SUNWmpix:3.0;|HPC 3.0: MPI 64bit fixes
    107954|01|Jul/19/99| | | |  |Unbundled|sparc;|SUNWrsm:1.0;|HPC 3.0: RSM fixes for SunOS 5.6
    107955|01|Jul/19/99| | | |  |Unbundled|sparc;|SUNWrsm:2.0;|HPC 3.0: RSM fixes for SunOS 5.7
    107956|02|Sep/21/99| | | |  |Unbundled|sparc;|SUNWcre:4.0;|HPC 3.0: CRE fixes
    107957|02|Sep/21/99| | | |  |Unbundled|sparc;|SUNWcrex:4.0;|HPC 3.0: CRE 64bit fixes
    107958|08|Mar/23/01| | | |  |Unbundled|sparc;|SUNWvmdev:2.2.1,REV=1999.02.09.18.30;SUNWvmman:2.2.1,REV=1999.02.09.18.30;SUNWvxva:2.2.1,REV=1999.02.09.18.30;SUNWvxvm:2.2.1,REV=1999.02.09.20.00;|Sun Cluster 2.2: Patch for CVM 2.2.1
    107959|02|Mar/06/00| | | |  |Unbundled|sparc;|SUNWtrsd:4.0,REV=1.60.1998.10.28;107990-02|SunLink TRI/S 4.0: tr driver patch
    107960|02|Aug/29/00| | | |  |Unbundled|sparc;|SUNWnbora:3.1.1;|Netbackup 3.1.1 Database extention for Oracle
    107962|01|Jul/27/99| | | |  |7|sparc;|SUNWciu8:7.0,REV=1.0.21;SUNWciu8x:7.0,REV=1.0.21;SUNWhiu8:7.0,REV=1.0.21;SUNWhiu8x:7.0,REV=1.0.21;|SunOS 5.7: iconv from UTF-8 to euc requires a buffer with 1 extra
    107963|01|Jul/27/99| | | |  |7_x86|i386;|SUNWciu8:7.0,REV=1.0.21;SUNWhiu8:7.0,REV=1.0.21;|SunOS 5.7_x86: iconv from UTF-8 to euc requires buffer w/ 1 extra
    107964|01|Jul/27/99| | | |  |2.6|sparc;|SUNWciu8:6.0,REV=1.0.38;SUNWhiu8:6.0,REV=1.0.38;|SunOS 5.6: iconv from UTF-8 to euc requires a buffer with 1 extra
    107965|01|Jul/27/99| | | |  |2.6_x86|i386;|SUNWciu8:6.0,REV=1.0.38;SUNWhiu8:6.0,REV=1.0.33;|SunOS 5.6_x86: iconv from UTF-8 to euc requires buffer w/ 1 extra
    107966|01|Jul/20/01| | | |  |2.6|sparc;|SUNWhxplt:2.0,REV=1.0.38;|Solaris 2.6: 'Chinese/English' key is not working correctly
    107968|01|Jul/20/01| | | |  |7|sparc;|SUNWhxplt:7.0,REV=1.0.22.9;|SunOS 5.7: 'Chinese/English' key is not working correctly
    107970|01|Jun/21/99| | | |  |Unbundled|sparc;|SUNWsyc:1.6,REV=34;SUNWsye:1.6,REV=34;SUNWsyrt:1.6,REV=34;SUNWsys:1.6,REV=34;|SyMON 1.6: A5000 (Photon) has no rules file in Symon 1.6
    107971|01|Jun/08/99| | | |  |Unbundled|sparc;|SUNWatm:3.0;|SunATM 3.0 Update 1: ilmid sysUpTime causes IBM 8265 send coldstar
    107972|02|Mar/26/01|R|S| |  |7|sparc;|SUNWsutl:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /usr/sbin/static/rcp patch
    107973|02|Mar/26/01|R|S| |  |7_x86|i386;|SUNWsutl:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: /usr/sbin/static/rcp patch
    107980|01|Jul/19/99| | | |  |Unbundled|sparc;|SUNWrte:4.0;|HPC 3.0: RTE fixes
    107981|01|Jul/19/99| | | |  |Unbundled|sparc;|SUNWrtex:4.0;|HPC 3.0: RTE 64bit fixes
    107982|01|Sep/03/99| | |O|  |Unbundled|106686-03;||OBSOLETED by 106686
    107983|01|Dec/24/99| | | |Y |2.3|sparc;|SUNWscbcp:3.0,REV=93.09.07;|SunOS 5.3: Patch for SPARCompiler Binary Compatibility Libraries
    107984|01|Dec/24/99| | | |Y |2.4|sparc;|SUNWscbcp:5.4,REV=94.04.14;|SunOS 5.4: Patch for SPARCompiler Binary Compatibility Libraries
    107985|01|Oct/29/99| | | |Y |2.5|sparc;|SUNWscbcp:5.5,REV=95.3.01;|SunOS 5.5: Patch for SPARCompiler Binary Compatibility Libraries
    107986|01|Oct/29/99| | | |Y |2.5.1|sparc;|SUNWscbcp:5.5.1,REV=96.02.20;|SunOS 5.5.1: Patch for SPARCompiler Binary Compatibility Libraries
    107988|01|Oct/29/99| | | |Y |2.6|sparc;|SUNWscbcp:5.6,REV=97.01.31;|SunOS 5.6: Patch for SPARCompiler Binary Compatibility Libraries
    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;|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
    108003|01|Jul/19/99| | | |  |Unbundled|sparc;|SUNWs3lx:3.0;|HPC 3.0: S3L 64bit fixes
    108006|03|Nov/06/00| | | |  |Unbundled|||Jumbo Patch for ChorusOS r3.2.1 Special 04 (host Solaris)
    108007|03|Nov/06/00| | | |  |Unbundled|||Jumbo Patch for ChorusOS r3.2.1 Special 04 (host Windows NT)
    108010|01|Sep/03/99| | | |  |Unbundled|sparc;|SUNWnbsyb:3.1.1;|Netbackup 3.1.1: Database Extention Patch
    108014|01|Sep/14/99| | | |  |Unbundled|sparc;|SUNWlmon:2.0,REV=98.09.14;|Sun StorEdge Library Monitor 2.0: Support for Solaris 7 64-bit
    108015|01|Sep/14/99| | | |  |Unbundled|sparc;|SUNWlagn:2.0,REV=98.09.14;|Sun StorEdge Library Agent 2.0: Support for Solaris 7 64-bit
    108016|01|Sep/14/99| | | |  |Unbundled|sparc;|SUNWlmon:2.0,REV=98.09.14;|Sun StorEdge Library Monitor 2.0: Support for Solaris 7 64-bit
    108017|01|Sep/14/99| | | |  |Unbundled|sparc;|SUNWlagn:2.0,REV=98.09.14;|Sun StorEdge Library Agent 2.0: Support for Solaris 7 64-bit
    108019|01|Jul/21/99| | | |Y |Unbundled|||Veritas File System 3.2.6: Patch
    108024|01|Jul/19/99| | | |  |Unbundled|sparc;107952-01;|SUNWpfs:2.0;|HPC 3.0: PFS fixes
    108025|01|Jul/19/99| | | |  |Unbundled|sparc;107953-01;|SUNWpfsx:2.0;|HPC 3.0: PFS 64bit fixes
    108027|02|Apr/02/02| | | |  |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: grep patch
    108028|02|Apr/02/02| | | |  |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: grep patch
    108029|03|Aug/28/01|R| | |  |7|sparc;|SUNWwsr:2.0.6,REV=1998.11.28;|SunOS 5.7: S899 u3 prodreg fix for Java 1.1 and Java 1.2 VM
    108030|03|Aug/27/01|R| | |  |7_x86|i386;|SUNWwsr:2.0.6,REV=1998.11.28;|SunOS 5.7_x86: prodreg fix for Java 1.1 and Java 1.2 VM
    108034|03|Feb/21/02| |S| |  |Unbundled|sparc;|SUNWsctiv:2.2,REV=1999.02.09.23.00;|Sun Cluster 2.2: HA-Tivoli Patch
    108036|01|Aug/06/99| | | |  |7|sparc;|SUNWplow:1.0,REV=1998.09.14.18.10;|SunOS 5.7: Keyboards don't recognize SunFA_Acute characters
    108039|02|Sep/09/99| | | |  |2.6|sparc;|SUNWaccu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: sag command is broken
    108040|02|Sep/09/99| | | |  |2.6_x86|i386;|SUNWaccu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: sag command is broken
    108041|01|Nov/29/99| |S| |  |Trusted_Solaris_2.5.1|||Trusted Solaris 2.5.1: auditreduce memory allocation or read error
    108044|01|Jul/07/99| | | |  |Unbundled|sparc;|SUNWsspop:3.1.0,REV=97.11.17.17.04;|SSP 3.1: netcontool patch
    108045|01|Jul/28/99| | | |  |Unbundled|sparc;|SUNWsspop:3.1.0,REV=97.11.17.17.04;|SSP 3.1: cbs has memory leaks sometimes from invoking netcon_serve
    108046|01|Aug/10/99| | | |  |2.6|sparc;|SUNWw250h:11.6,REV=1998.04.01.16.31;|SunOS 5.6: (HW598) E250 Env. Driver update problem (SUNWw250h pkg)
    108047|03|Sep/09/99| | | |  |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: tail command restricted to 65K characters
    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
    108069|03|Jan/10/00| | | |  |7_x86|i386;|SUNWman:40.0,REV=23;|SunOS 5.7_x86: Manual Page updates for Solaris 7
    108075|01|Aug/10/99| | | |  |2.6|sparc;|SUNWvolu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: Solaris 2.6 volmgt mount options support for hsfs is br
    108080|02|Jun/07/00| | | |  |Unbundled|sparc;|SUNWsspop:3.1.1,REV=99.06.14.19.40;|SSP 3.1.1: power off system boards on domains at OBP causes arbsto
    108083|01|Aug/06/99|R| | |  |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: Dump patch
    108086|01|Aug/02/99| | |O|  |Unbundled|sparc;|SUNWsc:2.2,REV=1999.02.09.23.00;|Obsoleted by: 109208-01 SunCluster 2.2: disktype patch
    108087|01|Aug/02/99| | |O|  |Unbundled|sparc;|SUNWsc:2.2,REV=1999.02.09.23.30;|Obsoleted by: 109209-06 SunCluster 2.2: disktype patch
    108088|06|Jul/23/01|R|S| |  |7_x86|i386;|SUNWxwpls:3.6.6,REV=0.98.08.19;SUNWxwscf:3.6.0,REV=0.98.08.03;|SunOS 5.7_x86: Updated video drivers and fixes, S7 FCS Only
    108089|04|Nov/27/01| | | |  |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/tail Patch
    108090|04|Nov/27/01| | | |  |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/tail Patch
    108091|03|Mar/09/00| | | |  |2.6|sparc;|SUNWplow:1.0,REV=97.03.12.16.53;|SunOS 5.6: ssJDK1.2.1_03 fails with fatal error in ISO8859-01 Loca
    108092|05|Jul/23/01| |S| |  |7_x86|i386;|SUNWxwpls:3.6.6,REV=0.98.10.31;SUNWxwscf:3.6.0,REV=0.98.10.29;|SunOS 5.7_x86: Updated video drivers and fixes, S7 3/99 Only
    108094|01|Sep/07/99| | |O|  |Unbundled|||OBSOLETED by 108598
    108095|01|Dec/03/99| | |O|  |Unbundled|sparc;|SUNWsc:2.2,REV=1999.02.09.23.00;|Obsoleted by: 109208-01 SunCluster 2.2: hactl patch
    108096|01|Dec/03/99| | |O|  |Unbundled|sparc;|SUNWsc:2.2,REV=1999.02.09.23.30;|Obsoleted by: 109209-06 SunCluster 2.2: hactl patch
    108100|03|Sep/11/00| | | |  |Unbundled|sparc;|SUNWapdv:2.2.0,REV=1999.04.12.15.17;|AP 2.2: networking switching mutex_panic HW chksumming
    108101|03|Aug/03/00| | | |  |Unbundled|sparc;|SUNWapr:2.0.1,REV=99.05.17.14.58;|AP 2.0.1:  BAD TRAP panic mether_rarp mutex_panic chksumming
    108102|04|May/11/00| | |O|  |Unbundled|||Obsoleted by: 109962-04 Hardware, 18GB Disks: Download program and
    108103|02|May/11/00| | | |  |Unbundled|||Hardware, 9/4GB Disks: Download program and DDRS39130/DDRS34560 S9
    108104|03|May/11/00| | |O|  |Unbundled|||Obsoleted by: 109962-04 Hardware, 9GB Disks: Download program and
    108105|02|May/11/00| | | |  |Unbundled|||Hardware, 9GB Disks: Download program and ST39102LC 6329 firmware
    108107|05|Jan/09/01| | | |  |Unbundled|||Jumbo Patch for ChorusOS r3.2.1 Special 06.3 for MPC860 (host Sola
    108108|05|Jan/09/01| | | |  |Unbundled|||Jumbo Patch for ChorusOS r3.2.1 Special 06.3 for microSPARC-IIep (
    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|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|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
    108137|01|Sep/24/99| | | |  |7_x86|i386;|SUNWsibi:11.7,REV=1998.09.14.14.51;|SunOS 5.7_x86: fsck fails on IDE disk with re-preinstall
    108141|02|Dec/15/99| | | |  |Unbundled|sparc;|SUNWhip:1.0,REV=5.6.1999.02.03;|SunHIPPI/P 1.0: hippi driver patch
    108142|02|Dec/15/99| | | |  |Unbundled|sparc;|SUNWhip:1.0,REV=5.7.1999.02.03;|SunHIPPI/P 1.0: hippi driver patch
    108143|06|Dec/07/00| | | |  |7_x86|i386;|SUNWos86r:1.1.0,REV=1998.08.07.12.41;|SunOS 5.7_x86: iprb patch
    108145|10|Oct/12/99| | | |  |Unbundled|sparc;sparc.sun4u;105181-14;|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;SUNWcrash: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;SUNWftcau:5.6,REV=1999.01.28.13.32;SUNWftm:5.6,REV=1999.01.28.13.32;SUNWftmur: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;SUNWlogr:5.6,REV=1999.01.28.13.32;SUNWlogu: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;SUNWttymx:5.6,REV=1999.01.28.13.32;|Netra ft1800 6.7: Multiple fixes patch
    108146|02|Aug/19/99| | | |  |Unbundled|sparc.sun4u;|SUNWlomr:1.0.0,REV=1999.07.12.18.00";SUNWlomu:1.0.0,REV=1999.07.12.18.00";|Netra-T1 1.0: Patch
    108147|01|Aug/26/99| | | |  |7|sparc;|SUNWxilcg:7.0.0,REV=1998.08.11;|SunOS 5.7: SX Graphics Patch
    108148|01|Aug/27/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: prtconf patch
    108151|02|Nov/30/99| | | |  |7|sparc;108374-01;|SUNWdtezt:1.3,REV=10.98.09.12;|CDE 1.3: sdtname patch
    108152|02|Nov/30/99| | | |  |7_x86|i386;108375-01;|SUNWdtezt:1.3,REV=10.98.09.12;|CDE 1.3_x86: sdtname patch
    108158|01|Sep/17/99| | | |  |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: /usr/lib/fs/nfs/share patch
    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|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
    108168|01|Sep/14/99| | | |  |7|sparc;|SUNWxwinc:3.7.2100,REV=0.98.08.05;|OpenWindows 3.6.1: X Window include files patch
    108169|01|Sep/14/99| | | |  |7_x86|i386;|SUNWxwinc:3.7.2100,REV=0.98.08.05;|OpenWindows 3.6.1_x86: X Window include files patch
    108170|01|Sep/22/99| | | |  |7|sparc;|SUNWadmc:11.7,REV=1998.09.10.19.57;|SunOS 5.7: showrev patch
    108171|01|Sep/22/99| | | |  |7_x86|i386;|SUNWadmc:11.7,REV=1998.09.10.20.02;|SunOS 5.7_x86: showrev patch
    108172|01|Sep/22/99| | | |  |2.6|sparc;|SUNWadmc:6.5,REV=1997.07.02.14.47;|SunOS 5.6: showrev patch
    108173|01|Sep/22/99| | | |  |2.6_x86|i386;|SUNWadmc:6.5,REV=1997.07.02.09.56;|SunOS 5.6_x86: showrev patch
    108174|02|Oct/14/99| | | |  |Unbundled|sparc;|STORtools:3.1.1;|STORtools 3.1: Update patch to Config Matrix 1.21 level
    108175|02|Dec/04/01| | | |  |7|sparc;|SUNWadmc:11.7,REV=1998.09.10.19.57;|SunOS 5.7: DSR Upgrade patch for localization packages
    108176|02|Dec/04/01| | | |  |7_x86|i386;|SUNWadmc:11.7,REV=1998.09.10.20.02;|SunOS 5.7_x86: DSR upgrade patch for localization packages
    108179|01|Sep/08/99| | | |  |Unbundled|sparc;|SUNWapdv:2.2.0,REV=1999.04.12.15.17;|AP 2.2: ap_dmd fixes
    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 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
    108196|03|Aug/10/00| |S| |  |Unbundled|i386;108364-01;|SUNWdtdst:1.0.2,REV=10.96.04.12;|CDE 1.0.2_x86: dtprintinfo patch
    108197|02|May/08/01| | | |  |7|sparc;|SUNWdtdst:1.3,REV=10.98.09.12;|CDE 1.3: dtpad patch
    108198|02|May/09/01| | | |  |7_x86|i386;|SUNWdtdst:1.3,REV=10.98.09.12;|CDE 1.3_x86: dtpad patch
    108199|01|Sep/13/99|R|S| |  |2.6|sparc;|SUNWdtdmn:1.2,REV=10.97.07.02;|CDE 1.2: dtspcd Patch
    108200|01|Sep/13/99|R|S| |  |2.6_x86|i386;|SUNWdtdmn:1.2,REV=10.97.07.02;|CDE 1.2_x86: dtspcd Patch
    108201|01|Sep/13/99|R|S| |  |2.6|sparc;|SUNWdtbas:1.2,REV=10.97.07.08;|CDE 1.2: dtaction Patch
    108202|01|Sep/13/99|R|S| |  |2.6_x86|i386;|SUNWdtbas:1.2,REV=10.97.07.08;|CDE 1.2_x86: dtaction Patch
    108203|05|Feb/16/01| | | |  |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: adb macro & headers for fibre channel transport layer
    108205|01|Sep/13/99| |S| |  |Unbundled|sparc;|SUNWdtdmn:1.0.2,REV=10.96.04.12;|CDE 1.0.2: dtspcd Patch
    108206|01|Sep/13/99| |S| |  |Unbundled|i386;|SUNWdtdmn:1.0.2,REV=10.96.04.12;|CDE 1.0.2_x86: dtspcd Patch
    108207|04|Apr/05/01| | | |  |Unbundled|sparc;|SUNWwa:1.2,REV=1999.06.11.01.53;|Web Access 1.2: Misc. fixes
    108208|04|Apr/05/01| | | |  |Unbundled|i386;|SUNWwa:1.2,REV=1999.06.11.03.08;|Web Access 1.2_x86: Misc. fixes
    108209|01|Dec/10/99| | | |  |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: root can't use setfacl -m
    108210|01|Dec/10/99| | | |  |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: root can't use setfacl -m
    108213|02|Feb/15/00| | | |  |Unbundled|sparc;|SUNWssl:1.0,REV=1999.04.16.00.00;|Solstice Internet Mail Server 4.0: SKI/SSL Services
    108214|02|Feb/16/00| | | |  |Unbundled|i386;|SUNWssl:1.0,REV=1999.04.16.00.00;|Sun Internet Mail Server 4.0_x86: SKI/SSL Services
    108215|01|Dec/06/99| | |O|  |Unbundled|sparc;|SUNWsc:2.2,REV=1999.02.09.23.00;|Obsoleted by: 109208-01 SunCluster 2.2: HA-NFS patch
    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|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|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
    108251|01|Sep/29/99| | | |  |2.6_x86|i386;|SUNWcsr:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: System panics w/ BAD TRAP=0x31 due to lofs bug
    108252|01|Sep/13/99| |S| |  |Unbundled|sparc;|SUNWdtdmn:1.0.1,REV=10.95.09.20;|CDE 1.0.1: dtspcd Patch
    108253|01|Sep/13/99| |S| |  |Unbundled|i386;|SUNWdtdmn:1.0.1,REV=10.95.09.20;|CDE 1.0.1_x86: dtspcd Patch
    108254|01|Nov/22/99| |S| |  |Unbundled|sparc;|SUNWdtbas:1.0.1,REV=10.95.09.20;|CDE 1.0.1: dtaction Patch
    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|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
    108277|01|Oct/22/99| | | |  |7_x86|i386;|SUNWxwpls:3.6.6,REV=0.98.08.19;|OpenWindows 3.6.1_x86: Updated Matrox video support (S7 FCS).
    108278|01|Oct/22/99| | | |  |7_x86|i386;|SUNWxwpls:3.6.6,REV=0.98.10.31;|OpenWindows 3.6.1_x86: Updated Matrox video support (S7 3/99).
    108279|01|Jan/24/00| | | |  |2.6|sparc;|SUNWnisu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: nisaddent patch
    108280|01|Jan/24/00| | | |  |2.6_x86|i386;|SUNWnisu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: nisaddent patch
    108281|01|Sep/30/99| | | |Y |Unbundled|sparc;|SUNWsspop:3.1.0,REV=97.11.17.17.04;|SSP 3.1: Change scotty file to be Y2K compliant
    108282|01|Sep/30/99| | | |Y |Unbundled|sparc;|SUNWsspop:3.1.1,REV=99.06.14.19.40;|SSP 3.1.1: Change scotty file to be Y2K compliant
    108285|01|Aug/23/00| | | |  |7|sparc;|SUNWcsr:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /etc/init.d/MOUNTFSYS patch
    108286|01|Aug/23/00| | | |  |7_x86|i386;|SUNWcsr:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: /etc/init.d/MOUNTFSYS patch
    108287|02|Mar/22/00| | |O|  |Unbundled|sparc;|SUNWsc:2.2,REV=1999.02.09.23.00;|Obsoleted by: 109208-01 SunCluster 2.2: rpc.pmfd patch
    108288|02|Mar/22/00| | |O|  |Unbundled|sparc;|SUNWsc:2.2,REV=1999.02.09.23.30;|Obsoleted by: 109209-06 SunCluster 2.2: rpc.pmfd patch
    108289|02|Oct/27/99| |S| |  |Unbundled|sparc;|SUNWdtbas:1.0.2,REV=10.96.04.12;|CDE 1.0.2: dtaction Patch
    108290|03|Nov/22/99| |S| |  |Unbundled|i386;|SUNWdtbas:1.0.2,REV=10.96.04.12;|CDE 1.0.2_x86: dtaction Patch
    108291|02|Mar/10/00| | |O|  |Unbundled|sparc;|SUNWcsnmp:2.2,REV=1999.02.09.23.00;|Obsoleted by: 109208-01 SunCluster 2.2: SNMP Agent Patch
    108292|02|Jun/02/00| | |O|  |Unbundled|sparc;|SUNWcsnmp:2.2,REV=1999.02.09.23.30;|Obsoleted by: 109209-06 SunCluster 2.2: SNMP Agent Patch
    108295|02|Oct/13/00| | | |  |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: patch usr/kernel/fs/pcfs
    108296|02|Oct/16/00| | | |  |2.6_x86|i386;|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/kernel/fs/pcfs
    108297|01|Oct/01/99| | |O|  |Unbundled|||OBSOLETED by 108303
    108299|01|Dec/16/99| | | |  |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: /usr/sbin/rmt patch
    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|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|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
    108312|01|Nov/15/99| | | |  |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: /usr/bin/head patch
    108313|01|Nov/08/99| | | |  |2.6|sparc;|SUNWpldte:1.1,REV=1997.06.26.18.08;|SunOS 5.6: Dthelpview non-ISO8859-1 font support
    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|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|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
    108325|01|Dec/14/99| | | |  |7|sparc;|SUNWfns:11.7.0,REV=1998.09.01.04.16;SUNWfnsx:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: libfnsp.so.1 patch
    108326|01|Dec/14/99| | | |  |7_x86|i386;|SUNWfns:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: libfnsp.so.1 patch
    108327|02|Apr/06/01|R|S| |  |7|sparc;|SUNWbnuu:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /usr/bin/cu patch
    108328|02|Apr/06/01|R|S| |  |7_x86|i386;|SUNWbnuu:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: /usr/bin/cu patch
    108331|01|Mar/30/00|R|S|O|  |7|sparc;|SUNWbnuu:11.7.0,REV=1998.09.01.04.16;|Obsoleted by: 106952-02 SunOS 5.7: /usr/bin/uustat patch
    108332|01|Mar/30/00|R|S|O|  |7_x86|i386;|SUNWbnuu:11.7.0,REV=1998.09.01.04.53;|Obsoleted by: 106953-02 SunOS 5.7_x86: /usr/bin/uustat patch
    108333|02|Aug/16/00|R|S| |  |2.6|sparc;|SUNWjwnsu:1.0,REV=1.0.78;|SunOS 5.6: jserver buffer overflow
    108334|02|Aug/17/00|R|S| |  |2.6_x86|i386;|SUNWjwnsu:1.0,REV=1.0.78;|SunOS 5.6_x86: jserver buffer overflow
    108336|02|Aug/29/00| | | |  |Unbundled|sparc;|SUNWnbsap:3.1.1;|Netbackup 3.1.1 Database extention Jumbo Patch
    108338|01|Oct/25/99| | |O|  |7|||OBSOLETED by 109409
    108339|01|Nov/05/99| | | |  |2.6|sparc;|SUNWesos:11.5.1,REV=97.07.14.14.33;SUNWfros:11.5.1,REV=97.07.14.14.34;SUNWitos:11.5.1,REV=97.07.12.13.45;|SunOS 5.6: vi in locale, set showmode, replace 1 char corrupts scr
    108343|04|Aug/29/00|R| | |Y |7|sparc;108374-01;|SUNWdtezt:1.3,REV=10.98.09.12;|CDE 1.3: sdtperfmeter patch
    108344|04|Aug/29/00|R| | |Y |7_x86|i386;108375-01;|SUNWdtezt:1.3,REV=10.98.09.12;|CDE 1.3_x86: sdtperfmeter patch
    108345|01|Jan/11/00| | | |  |Unbundled|sparc;|SUNWsspob:3.1.1,REV=99.06.14.19.40;|SSP 3.1.1: Need to remove checks for invalid configurations
    108346|03|Apr/14/00|R|S| |  |2.6|sparc;|SUNWnisu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: patch usr/sbin/rpc.nispasswdd
    108347|01|Oct/22/99| | |O|  |Unbundled|sparc;|SUNWdid:2.2,REV=1999.02.09.23.00;|Obsoleted by: 109208-01 SunCluster 2.2: did driver patch
    108348|01|Jun/06/00| | |O|  |Unbundled|sparc;|SUNWdid:2.2,REV=1999.02.09.23.30;|Obsoleted by: 109209-06 SunCluster 2.2: did driver patch
    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
    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: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|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|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
    108396|01|Dec/02/99| | | |  |2.6|sparc;|SUNWhodst:2.0,REV=1.0.38;|SunOS 5.6: imserver doesn't work on Corona due to visual problem
    108397|01|Jan/07/00| | |O|  |Unbundled|sparc;|SUNWsc:2.2,REV=1999.02.09.23.00;|Obsoleted by: 109208-01 SunCluster 2.2: quorumreconfig patch
    108398|01|Jan/07/00| | |O|  |Unbundled|sparc;|SUNWsc:2.2,REV=1999.02.09.23.30;|Obsoleted by: 109209-06 SunCluster 2.2: quorumreconfig patch
    108399|01|Jan/11/00| | |O|  |Unbundled|sparc;|SUNWccon:2.2,REV=1999.02.09.23.00;|Obsoleted by: 107388-05 SunCluster 2.2: cluster_help patch
    108400|01|Jan/11/00| | |O|  |Unbundled|sparc;|SUNWccon:2.2,REV=1999.02.09.23.30;|Obsoleted by: 107538-05 SunCluster 2.2: cluster_help patch
    108401|02|Jun/01/00| | | |  |Unbundled|i386;|SUNWlznb:1.1_fcs_14.22i,REV;|SunLink Server 1.1: Netbios fixes
    108402|01|Nov/17/99| | | |  |Unbundled|||Hardware,DDS-3 4mm Tape Drive: Firmware Download Program L910 firm
    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|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
    108421|01|Jan/10/00| | |O|  |Unbundled|sparc;|SUNWsc:2.2,REV=1999.02.09.23.00;|Obsoleted by: 109208-01 SunCluster 2.2: scadmin patch
    108422|01|Jan/10/00| | |O|  |Unbundled|sparc;|SUNWsc:2.2,REV=1999.02.09.23.30;|Obsoleted by: 109209-06 SunCluster 2.2: scadmin patch
    108423|04|Jul/13/01| |S| |  |Unbundled|sparc;|SUNWscds:2.2,REV=1999.02.09.23.00;SUNWscpro:2.2,REV=1999.02.09.23.00;|Sun Cluster 2.2: Data Service Common Patch
    108424|03|Aug/06/01| |S| |  |Unbundled|sparc;|SUNWscds:2.2,REV=1999.02.09.23.30;SUNWscpro:2.2,REV=1999.02.09.23.30;|Sun Cluster 2.2: Data Service Common Patch
    108425|01|Jan/10/00| | |O|  |Unbundled|sparc;|SUNWsma:2.2,REV=1999.02.09.23.00;|Obsoleted by: 109211-01 SunCluster 2.2: sm_config patch
    108426|01|Jan/11/00| | |O|  |Unbundled|sparc;|SUNWsma:2.2,REV=1999.02.09.23.30;|Obsoleted by: 109212-02 SunCluster 2.2: sm_config patch
    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
    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
    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
    108440|01|Jan/11/00| | |O|  |Unbundled|sparc;|SUNWsma:2.2,REV=1999.02.09.23.30;|Obsoleted by: 109212-02 SunCluster 2.2: sm_config patch
    108441|02|Feb/23/00| | |O|  |Unbundled|sparc;108399-01;107388-05;|SUNWccon:2.2,REV=1999.02.09.23.00;|Obsoleted by: 107388-05 SunCluster 2.2: cconsole patch
    108442|02|Mar/09/00| | |O|  |Unbundled|sparc;108400-01;107538-05;|SUNWccon:2.2,REV=1999.02.09.23.30;|Obsoleted by: 107538-05 SunCluster 2.2: cconsole patch
    108443|02|Feb/23/00| | |O|  |Unbundled|sparc;108399-01;107388-05;|SUNWccp:2.2,REV=1999.02.09.23.00;|Obsoleted by: 107388-05 SunCluster 2.2: ccp patch
    108444|02|May/08/00| | |O|  |Unbundled|sparc;108400-01;107538-05;|SUNWccp:2.2,REV=1999.02.09.23.30;|Obsoleted by: 107538-05 SunCluster 2.2: ccp patch
    108445|04|Feb/26/02| |S| |  |Unbundled|sparc;|SUNWscch:2.2,REV=1999.02.09.23.00;SUNWscman:2.2,REV=1999.02.09.23.00;|Sun Cluster 2.2: cluster_help/man pages patch
    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|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+
    108456|01|Nov/16/99| | | |Y |Unbundled|||Solstice Firewall-1 3.0b (Service Pack 9)Sparc: Upgrade patch (Non
    108457|01|Nov/16/99| | | |Y |Unbundled|||Solstice FireWall-1 3.0b (Service Pack 9) Sparc: upgrade patch (VP
    108458|01|Nov/23/99| | | |Y |Unbundled|||Solstice FireWall-1 3.0b (Service Pack 9) Sparc: upgrade patch (VP
    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|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;|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
    108478|01|Dec/23/99| | | |  |Unbundled|sparc;|SUNWspci:1.1.2;|SunPCi 1.1.2: for Solaris 2.5.1, 2.6, 7 and sparc architectures
    108479|01|Mar/14/00| | | |  |2.6|sparc;|SUNWcis:6.0,REV=1.0.40;SUNWcleu:6.0,REV=1.0.39;|Solaris 2.6: date(1) output has TAB characters only for zh locale
    108480|01|Feb/03/00| | | |  |Unbundled|sparc;|SUNW5dat:3.0.0,REV=1999.08.27;SUNWcdat:3.0.0,REV=1999.08.27;SUNWdat:3.0.0,REV=8.0.1999.09.19;SUNWhdat:3.0.0,REV=1999.08.27;SUNWjadat:3.0.0,REV=1999.09.19;SUNWjpdat:3.0.0,REV=1999.09.19;SUNWkodat:3.0.0,REV=1999.09.19;|SunForum 3.0: fixes and enhancements
    108481|01|Sep/11/00| | | |  |Unbundled|sparc;|SUNWnbsap:3.1.1;108336-02|Netbackup 3.1.1 Database extention Patch
    108482|02|Apr/26/00|R|S| |  |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: /usr/sbin/snoop patch
    108483|02|Apr/28/00|R|S| |  |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: /usr/sbin/snoop patch
    108484|01|Jan/24/00|R|S| |  |7|sparc;|SUNWast:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: aset patch
    108485|01|Jan/24/00|R|S| |  |7_x86|i386;|SUNWast:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: aset patch
    108487|01|Dec/01/99| | | |Y |Unbundled|sparc;|SUNWcstv:CST1.0.1;|CST 1.0.1: System panic time stamp for year is 2 digits, 100 for 2
    108488|01|Dec/01/99| | | |Y |Unbundled|sparc;|SUNWcst:CST1.0.1;|CST 1.0.1: System panic time stamp for year is 2 digits, 100 for 2
    108489|01|Dec/07/99|R|S| |  |2.3|sparc;|SUNWcsu:11.5.0,REV=2.0.18;|SunOS 5.3: Snoop may be exploited to gain root access
    108490|01|Dec/07/99|R|S| |  |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32;|SunOS 5.4: Snoop may be exploited to gain root access
    108491|01|Dec/07/99|R|S| |  |2.4_x86|i386;|SUNWcsu:11.5.1,REV=94.07.22.14.24;|SunOS 5.4_x86: Snoop may be exploited to gain root access
    108492|01|Dec/07/99|R|S| |  |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: Snoop may be exploited to gain root access
    108493|01|Dec/07/99|R|S| |  |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: Snoop may be exploited to gain root access
    108494|01|Feb/18/00|R|S| |  |2.3|sparc;|SUNWast:11.5.0,REV=2.0.18;|SunOS 5.3: ASET sets gid on /tmp,/var/tmp when med or high securit
    108495|01|Jan/24/00|R|S| |  |2.4|sparc;|SUNWast:11.5.1,REV=94.07.15.22.10;|SunOS 5.4: ASET sets the gid bit on /tmp,/var/tmp during med/high
    108496|01|Jan/24/00|R|S| |  |2.4_x86|i386;|SUNWast:11.5.1,REV=94.07.18.19.02;|SunOS 5.4_x86: ASET sets the gid bit on /tmp,/var/tmp during med/h
    108497|01|Jan/24/00|R|S| |  |2.5.1|sparc;|SUNWast:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: ASET sets gid on /tmp,/var/tmp when med/high security
    108498|01|Jan/24/00|R|S| |  |2.5.1_x86|i386;|SUNWast:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: ASET sets gid on /tmp,/var/tmp when med/high secu
    108499|01|Jan/24/00|R|S| |  |2.6|sparc;|SUNWast:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: ASET sets the gid on /tmp, /var/tmp when setting med hi
    108500|01|Jan/24/00|R|S| |  |2.6_x86|i386;|SUNWast:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: ASET sets the gid on /tmp,/var/tmp when set med or
    108501|01|Dec/07/99|R|S| |  |2.5|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: /usr/sbin/snoop patch
    108502|01|Dec/07/99|R|S| |  |2.5_x86|i386;|SUNWcsu:11.5.1,REV=95.10.30.17.24;|SunOS 5.5_x86: /usr/sbin/snoop patch
    108503|02|Jun/02/00| | |O|  |Unbundled|sparc;|SUNWsc:2.2,REV=1999.02.09.23.00;|Obsoleted by: 109208-01 SunCluster 2.2: scconf patch
    108504|02|Jun/02/00| | |O|  |Unbundled|sparc;|SUNWsc:2.2,REV=1999.02.09.23.30;|Obsoleted by: 109209-06 SunCluster 2.2: scconf patch
    108505|05|Jul/13/01| |S| |  |Unbundled|sparc;108450-01;108423-02;108423-04;|SUNWscdns:2.2,REV=1999.02.09.23.00;SUNWschtt:2.2,REV=1999.02.09.23.00;SUNWscnew:2.2,REV=1999.02.09.23.00;SUNWscnsl:2.2,REV=1999.02.09.23.00;SUNWscnsm:2.2,REV=1999.02.09.23.00;|SunCluster 2.2: Internet Pro Patch
    108506|02|Jun/02/00| | |O|  |Unbundled|sparc;|SUNWsc:2.2,REV=1999.02.09.23.00;|Obsoleted by: 109208-01 SunCluster 2.2: confccdssa patch
    108507|02|Jun/02/00| | |O|  |Unbundled|sparc;|SUNWsc:2.2,REV=1999.02.09.23.30;|Obsoleted by: 109209-06 SunCluster 2.2: confccdssa patch
    108508|04|Jul/13/00| | |O|  |Unbundled|sparc;|SUNWsc:2.2,REV=1999.02.09.23.00;|Obsoleted by: 109208-01 SunCluster 2.2: Layered Volume Patch VxVM3
    108509|04|Jul/13/00| | |O|  |Unbundled|sparc;|SUNWsc:2.2,REV=1999.02.09.23.30;|Obsoleted by: 109209-06 SunCluster 2.2: Layered Volume Patch VxVM3
    108510|01|Feb/09/00| | |O|  |Unbundled|sparc;|SUNWschtt:2.2,REV=1999.02.09.23.00;|Obsoleted by: 108505-05 SunCluster 2.2: Data Service Update: HA ne
    108511|04|Jan/25/02| |S| |  |Unbundled|sparc;109208-02;|SUNWscsyb:2.2,REV=1999.02.09.23.00;|Sun Cluster 2.2: HA-Sybase Patch
    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
    108521|01|Apr/28/00| | |O|  |Unbundled|sparc;|SUNWsccf:2.2,REV=1999.02.09.23.30;|Obsoleted by: 109209-06 SunCluster 2.2: cdb tunable parameter patc
    108524|01|Jun/02/00| | |O|  |Unbundled|sparc;|SUNWsc:2.2,REV=1999.02.09.23.00;|Obsoleted by: 109208-01 SunCluster 2.2: nfs_probe patch
    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|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
    108542|01|Dec/13/99| | | |  |Unbundled|sparc;|SUNWsspdf:3.1.1,REV=99.06.14.19.40;|SSP 3.1.1: The ICT test for PCI boards in SSP 3.1.1 is broken
    108543|05|Nov/06/00| | | |  |Unbundled|sparc;|SUNWsspdf:3.2.0,REV=99.09.20.15.58;SUNWsspop:3.2.0,REV=99.09.20.15.58;SUNWssppo:3.2.0,REV=99.09.20.15.58;|SSP 3.2: 4/8meg cache mix on one board fail new ecache POST SUPP S
    108544|01|Dec/21/99| | | |  |Unbundled|sparc;|SUNWsspop:3.2.0,REV=99.09.20.15.58;|SSP 3.2: 106190-07 causes booting to be aborted on large domains w
    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|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|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|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|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
    108597|01|Feb/11/00| | | |  |Trusted_Solaris_2.5.1|||Trusted Solaris 2.5.1: Drops print requests to print server.
    108598|03|Apr/21/00| | | |  |Unbundled|108437-02;||Hardware, Tape: L1800,  Libraries
    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|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
    108618|01|Feb/22/00| | | |  |2.6|sparc;|SUNWuiu8:1.2,REV=1.0.28;|SunOS 5.6: Patch for UTF-8/Unicode iconv code conversions
    108620|04|Feb/10/00| | | |  |Unbundled|||Hardware/PROM: Netra t1 Standalone User PROM Update
    108623|03|Feb/15/02| | | |  |8|sparc;|SUNWtleu:8.0,REV=1999.12.12.10.19;SUNWtleux:8.0,REV=1999.11.04.10.17;|SunOS 5.8: Thai Wordbreak Iterator module
    108624|03|Feb/15/02| | | |  |8_x86|i386;|SUNWtleu:8.0,REV=1999.12.12.10.20;|SunOS 5.8_x86: Thai Wordbreak Iterator module
    108625|02|Jul/23/01| | | |  |Unbundled|sparc;sparc.sun4u;|SUNWo1kpd:1.3,REV=2.3.1;SUNWo1kpd:5.7,REV=2.3.1;SUNWo1kpu:1.3,REV=1.3.1;SUNWopi1k:2.2,REV=2.2.0;|SunVideo Plus 1.3: bug fix
    108635|02|Jan/19/00| | | |  |Unbundled|sparc.sun4u;108145-10;|SUNWftcar:5.6,REV=1999.01.28.13.32;|Netra ft1800 7.6: Drivers patch
    108636|02|Jan/04/02|R|S| |  |Unbundled|sparc;101973-40;|SUNWtltk:3.5.0,REV=10.95.09.20,PATCH=02;SUNWtltkd:3.5.0,REV=10.95.09.20,PATCH=02;SUNWtltkm:3.5.0,REV=10.95.09.20,PATCH=02;|CDE 1.0.1/1.0.2: ToolTalk patch
    108637|02|Jan/04/02|R|S| |  |Unbundled|i386;101974-40;|SUNWtltk:3.5.0,REV=10.95.09.20,PATCH=02;SUNWtltkd:3.5.0,REV=10.95.09.20,PATCH=02;SUNWtltkm:3.5.0,REV=10.95.09.20,PATCH=02;|CDE 1.0.1_x86/1.0.2_x86: ToolTalk patch
    108638|01|Feb/01/00| | | |  |Unbundled|sparc;|SUNWsspdo:3.1.1,REV=99.06.14.19.40;|SSP 3.1.1: netcon logger doesn't log console output if netcon not
    108641|02|Nov/09/01|R|S| |  |2.4_x86|i386;101974-40;|SUNWtltk:3.4.16,REV=0.94.06.23,PATCH=02;SUNWtltkd:3.4.16,REV=0.94.06.23,PATCH=02;SUNWtltkm:3.4.16,REV=0.94.06.23,PATCH=02;|OpenWindows 3.4_x86: ToolTalk 1.1.2
    108642|03|Mar/08/00| | | |  |2.6_x86|i386;|SUNWplow:1.0,REV=97.03.12.18.01;|SunOS 5.6_x86: ssJDK1.2.1_03 fails; fatal error in ISO8859-01 loca
    108643|01|Jun/13/00| | | |  |7_x86|i386;|SUNWos86r:1.1.0,REV=1998.08.07.12.41;|SunOS 5.7_x86: dnet patch
    108647|01|Apr/23/01|R|S| |  |2.5|sparc;|SUNWcsu:11.5.1,REV=95.10.30.16.09;|SunOS 5.5: /usr/sbin/keyserv patch
    108648|01|Apr/24/01| |S| |  |2.5_x86|i386;|SUNWcsu:11.5.1,REV=95.10.30.17.24;|SunOS 5.5_x86: /usr/sbin/keyserv patch
    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|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
    108657|02|Mar/14/00|R|S| |  |2.5_x86|i386;|SUNWadmfw:6.5,REV=95.10.26.23.34;|SunOS 5.5_x86: Patch for sadmind
    108658|02|Feb/18/00|R|S| |  |2.5.1|sparc;|SUNWadmfw:6.5,REV=96.04.25.17.31;|SunOS 5.5.1: Patch for sadmind
    108659|02|Feb/18/00|R|S| |  |2.5.1_x86|i386;|SUNWadmfw:6.5,REV=96.04.25.18.04;|SunOS 5.5.1_x86: Patch for sadmind
    108660|01|Dec/24/99|R|S| |  |2.6|sparc;|SUNWadmfw:6.5,REV=1997.07.02.14.47;|SunOS 5.6: Patch for sadmind
    108661|01|Dec/24/99|R|S| |  |2.6_x86|i386;|SUNWadmfw:6.5,REV=1997.07.02.09.56;|SunOS 5.6_x86: Patch for sadmind
    108662|01|Dec/24/99|R|S| |  |7|sparc;|SUNWadmfw:11.7,REV=1998.09.10.19.57;|SunOS 5.7: Patch for sadmind
    108663|01|Dec/24/99|R|S| |  |7_x86|i386;|SUNWadmfw:11.7,REV=1998.09.10.20.02;|SunOS 5.7_x86: Patch for sadmind
    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|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
    108676|01|Feb/01/00| | | |  |Unbundled|sparc;|SUNWsspdo:3.2.0,REV=99.09.20.15.58;|SSP 3.2: netcon logger still doesn't log output if netcon not runn
    108677|01|Feb/16/00| | |O|  |Unbundled|sparc;|SUNWsspdf:3.2.0,REV=99.09.20.15.58;|Obsoleted by: 108543-05 SSP 3.2: New JTAG CID's required for CPU/B
    108679|04|Oct/23/01| | | |  |Unbundled|sparc;|SUNWsspop:3.2.0,REV=99.09.20.15.58;|SSP 3.2: system-board voltages reported in SSP MIB are inconsisten
    108680|09|Feb/07/01| | |O|  |8|sparc.sun4u;|SUNWsior:3.2,REV=1999.10.19.10.29;SUNWsiox:2.2,REV=1999.10.19.10.29;|Obsoleted by: 111041-01 SunOS 5.8: su, su_pnp, and eri driver patc
    108683|01|Mar/01/00| | | |  |7|sparc;|SUNWpppk:11.7.0,REV=1998.09.01.04.16;SUNWpppkx:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: /usr/kernel/strmod/ppp patch
    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|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|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|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|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|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
    108735|03|Mar/30/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: u.RU.KOI8-R: Cannot cut and paste cyrrilic between dtap
    108736|01|Mar/22/00| | |O|  |Unbundled|||OBSOLETED by 109258
    108737|01|Mar/22/00| | |O|  |Unbundled|||OBSOLETED by 109261
    108738|01|Mar/22/00| | |O|  |Unbundled|||OBSOLETED by 109258
    108739|01|Mar/22/00| | |O|  |Unbundled|||OBSOLETED by 109260
    108740|01|Mar/22/00| | |O|  |Unbundled|||OBSOLETED by 109259
    108741|01|Mar/22/00| | |O|  |Unbundled|||OBSOLETED by 109257
    108742|01|Mar/14/00| | |O|  |Unbundled|||OBSOLETED by 109261
    108743|01|Mar/22/00| | |O|  |Unbundled|||OBSOLETED by 109258
    108744|01|Mar/22/00| | |O|  |Unbundled|||OBSOLETED by 109260
    108745|01|Mar/22/00| | |O|  |Unbundled|||OBSOLETED by 109259
    108746|01|Mar/22/00| | |O|  |Unbundled|||OBSOLETED by 109257
    108747|01|Jun/01/00| | | |  |Unbundled|i386;|SUNWlzs:1.1,REV="1.114";|SunLink Server 1.1: bug fixes for issue 4293139, 4266797, 4224916
    108748|02|Oct/03/01|R|S| |  |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: /usr/lib/nfs/statd patch
    108749|02|Oct/03/01|R|S| |  |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: /usr/lib/nfs/statd patch
    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|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|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
    108765|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/rpc.bootparamd patch
    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|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|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| | |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|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|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|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|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| | |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|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|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|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|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|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|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|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
    108914|02|Nov/03/00| | | |  |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;SUNWdpdas:1.1,REV=1999.12.15.15.49;SUNWdscgu:1.4,REV=2000.01.11.12.36;SUNWepdas:1.1,REV=2000.01.04.17.04;SUNWescgu:1.4,REV=2000.01.11.12.37;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;SUNWfpdas:1.1,REV=1999.12.14.11.46;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;SUNWfscgu:1.4,REV=2000.01.11.12.37;SUNWipdas:1.1,REV=1999.12.15.15.49;SUNWiscgu:1.4,REV=1999.12.23.16.20;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;SUNWspdas:1.1,REV=1999.12.16.14.38;SUNWsscgu:1.4,REV=2000.01.11.12.37;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;|SunOS 5.8: l10n update: PDA Sync, SmartCard, DHCP mgr, Printer Adm
    108915|01|Jul/24/00| | | |  |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;SUNWdpdas:1.1,REV=2000.01.04.12.19;SUNWepdas:1.1,REV=2000.01.04.17.09;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;SUNWfpdas:1.1,REV=1999.12.13.19.51;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;SUNWipdas:1.1,REV=1999.12.15.15.58;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;SUNWspdas:1.1,REV=1999.12.16.14.45;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;|SunOS 5.8_x86: l10n updates to PDA Sync, DHCP mgr, Printer Admin.
    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|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|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|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
    108949|07|Dec/07/01|R|S| |  |8|sparc;|SUNWdtbas:1.4,REV=10.1999.12.02;SUNWdtbax:1.4,REV=10.1999.12.01;|CDE 1.4: libDtHelp/libDtSvc patch
    108950|07|Dec/07/01|R|S| |  |8_x86|i386;|SUNWdtbas:1.4,REV=10.1999.12.02;|CDE 1.4_x86: litDtHelp/libDtSvc patch
    108951|03|Oct/05/00| | | |  |7|sparc;108151-01;|SUNWpdas:1.3,REV=10.99.09.15;|CDE 1.3: PDASync patch
    108952|03|Oct/05/00| | | |  |7_x86|i386;108152-01;|SUNWpdas:1.3,REV=10.99.09.15;|CDE 1.3_x86: PDA Synchronization patch
    108953|01|Apr/11/00| | | |  |Unbundled|sparc;|SUNWestia:2.1_Build16,REV=2.6.1999.11.16;|Sun Management Center 2.1: status of alarm not consistent, display
    108954|02|Apr/06/00| | | |  |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;SUNWdpdas:1.1,REV=1999.12.15.15.49;SUNWepdas:1.1,REV=2000.01.04.17.04;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;SUNWfpdas:1.1,REV=1999.12.14.11.46;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;SUNWipdas:1.1,REV=1999.12.15.15.49;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;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;|SunOS 5.8: localization updates for different components
    108955|01|Apr/06/00| | | |  |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;SUNWdpdas:1.1,REV=2000.01.04.12.19;SUNWepdas:1.1,REV=2000.01.04.17.09;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;SUNWfpdas:1.1,REV=1999.12.13.19.51;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;SUNWipdas:1.1,REV=1999.12.15.15.58;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;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;|SunOS 5.8_x86: localization updates for different components
    108956|01|Apr/18/00| | | |  |8|sparc;|SUNWculeu:8.0,REV=1999.12.08.15.05;|SunOS 5.8: htt_server dumps core on SCH's cm.so in utf-8 locales
    108957|01|Apr/18/00| | | |  |8_x86|i386;|SUNWculeu:8.0,REV=1999.12.08.15.05;|SunOS 5.8_x86: htt_server dumps core on SCH's cm.so in utf-8 local
    108958|02|Jul/11/00| | |O|  |8|sparc;|SUNWadmc:11.8,REV=2000.01.21.04.37;SUNWinst:11.8,REV=1999.12.16.15.15;|Obsoleted by: 109318-05 SunOS 5.8: Patch for libspmisvc.so.1
    108959|02|Jul/11/00| | |O|  |8_x86|i386;|SUNWadmc:11.8,REV=2000.01.21.04.37;SUNWinst:11.8,REV=1999.12.16.15.36;|Obsoleted by: 109319-05 SunOS 5.8_x86: Patch for libspmisvc.so.1
    108960|01|Jul/11/00| | |O|  |8|sparc;|SUNWadmap:11.8,REV=2000.01.14.00.01;|Obsoleted by: 109221-05 SunOS 5.8: Patch for sysidnet
    108961|01|Jul/11/00| | |O|  |8_x86|i386;|SUNWadmap:11.8,REV=2000.01.14.00.14;|Obsoleted by: 109222-05 SunOS 5.8_x86: Patch for sysidnet
    108962|01|Apr/10/00| | | |  |8|sparc;|SUNWadmj:11.8,REV=1999.12.16.14.05;|SunOS 5.8: XmlReader fails on an HTTP stream
    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|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|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|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|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|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|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;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
    109043|02|Aug/03/00| | | |  |8|sparc;109041-01;108528-09;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;SUNWcsxu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: sonode adb macro patch
    109044|02|Aug/03/00| | | |  |8_x86|i386;109042-01;108529-09;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: sonode adb macro patch
    109045|03|Feb/11/02| | | |  |8|sparc;108528-13;|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/crash and /usr/sbin/sparcv9/crash pat
    109046|03|Feb/11/02| | | |  |8_x86|i386;108529-12;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/sbin/i86/crash patch
    109047|01|Mar/14/00| | | |  |Unbundled|sparc;|SUNWsspop:3.2.0,REV=99.09.20.15.58;|SSP 3.2: autoconfig sysboard n causes a global arbstop
    109066|03|Aug/14/00| | |O|  |8|sparc;|SUNWapchu: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;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;|Obsoleted by: 109234-02 SunOS 5.8: NCA Support for Apache Web Serv
    109067|03|Aug/14/00| | |O|  |8_x86|i386;|SUNWapchu:11.8.0,REV=2000.01.08.18.17;SUNWcstl: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;|Obsoleted by: 109235-03 SunOS 5.8_x86: NCA Support for Apache Web
    109068|01|Sep/13/00| | | |  |8|sparc;|SUNWjdbas:1.4,REV=1999.12.08.11.33;SUNWjdhev:1.4,REV=1999.12.28.13.45;SUNWjdhez:1.4,REV=1999.12.08.11.33;SUNWjebas:1.4,REV=1999.12.28.13.45;SUNWjehev:1.4,REV=1999.12.28.13.45;SUNWjehez:1.4,REV=1999.12.28.13.45;SUNWjpbas:1.4,REV=1999.12.28.13.45;SUNWjphev:1.4,REV=1999.12.28.13.45;SUNWjphez:1.4,REV=1999.12.28.13.45;SUNWjubas:1.4,REV=1999.12.28.13.45;SUNWjuhev:1.4,REV=1999.12.28.13.45;SUNWjuhez:1.4,REV=1999.12.28.13.45;|CDE 1.4: Update Japanese help files
    109069|01|Sep/13/00| | | |  |8_x86|i386;|SUNWjdbas:1.4,REV=1999.12.08.11.40;SUNWjdhev:1.4,REV=1999.12.28.13.58;SUNWjdhez:1.4,REV=1999.12.08.11.40;SUNWjebas:1.4,REV=1999.12.28.13.58;SUNWjehev:1.4,REV=1999.12.28.13.58;SUNWjehez:1.4,REV=1999.12.28.13.58;SUNWjpbas:1.4,REV=1999.12.28.13.58;SUNWjphev:1.4,REV=1999.12.28.13.58;SUNWjphez:1.4,REV=1999.12.28.13.58;SUNWjubas:1.4,REV=1999.12.28.13.58;SUNWjuhev:1.4,REV=1999.12.28.13.58;SUNWjuhez:1.4,REV=1999.12.28.13.58;|CDE 1.4_x86: Update Japanese help files
    109070|05|Dec/14/01| | | |  |8|sparc;|SUNWjwbc:2.0,REV=1999.12.28.16.10;|SunOS 5.8: fix WBEM improper Japanese messages and update
    109071|06|Dec/14/01| | | |  |8_x86|i386;|SUNWjwbc:2.0,REV=1999.12.28.16.20;|SunOS 5.8_x86: fix WBEM improper Japanese messages and update
    109072|08|Jul/30/01| | | |  |8|sparc;|SUNWjscag:1.4,REV=1999.12.28.13.28;|CDE 1.4: (Japanese) sdtsmartcardadmin update
    109073|06|Feb/15/02| | | |  |8_x86|i386;|SUNWjdbas:1.4,REV=1999.12.08.11.40;SUNWjddst:1.4,REV=1999.12.29.13.55;SUNWjdhev:1.4,REV=1999.12.28.13.58;SUNWjdhez:1.4,REV=1999.12.08.11.40;SUNWjdwm:1.4,REV=1999.12.28.13.58;SUNWjeezt:1.4,REV=1999.12.28.13.58;SUNWjehev:1.4,REV=1999.12.28.13.58;SUNWjehez:1.4,REV=1999.12.28.13.58;SUNWjpdst:1.4,REV=1999.12.28.13.58;SUNWjpezt:1.4,REV=1999.12.28.13.58;SUNWjphev:1.4,REV=1999.12.28.13.58;SUNWjphez:1.4,REV=1999.12.28.13.58;SUNWjpwm:1.4,REV=1999.12.28.13.58;SUNWjudst:1.4,REV=1999.12.28.13.58;SUNWjuezt:1.4,REV=1999.12.28.13.58;SUNWjuhev:1.4,REV=1999.12.28.13.58;SUNWjuhez:1.4,REV=1999.12.28.13.58;SUNWjuwm:1.4,REV=1999.12.28.13.58;|CDE 1.4_x86: (Japanese) New Feature patch
    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|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..."
    109086|01|Apr/17/00| | | |  |7_x86|i386;|JSat8xw:1.5,REV=1.0.45;|SunOS 5.7_x86: atok8 terminates "Shell widget modeShell has zero..
    109087|01|Apr/17/00| | | |  |8|sparc;|JSat8xw:1.7,REV=1999.12.08.11.52;|SunOS 5.8: atok8 terminates "Shell widget modeShell has zero..."
    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|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
    109096|11|Jun/19/02| | | |  |Unbundled|sparc;|SUNWmmgr:3.2patchJ0820326;SUNWnetbp:3.2patchJ0820326;|Netbackup 3.2 data corruption fix and jumbo patch
    109099|01|Mar/30/00| | | |  |Unbundled|sparc;|SUNWsspop:3.3.0,REV=2000.01.31.13.02;|SSP 3.3: 106190-07 causes booting abort on large domains w/ AP ena
    109100|02|Nov/13/01| |S| |  |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: patch usr/sbin/mkdevmaps
    109101|02|Nov/13/01| |S| |  |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: patch usr/sbin/mkdevmaps
    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: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: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|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|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|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
    109129|01|Apr/04/00| | | |  |8_x86|i386;|SUNWisolc:1.0,REV=1999.07.10.10.11;SUNWnafos:1.0,REV=1999.12.08.12.49;SUNWnafow:1.0,REV=1999.12.08.12.40;|SunOS 5.8_x86: Provide conversion between codepages 1256 and ISO88
    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|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|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|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|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|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|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|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
    109170|12|Apr/17/01| | | |  |8_x86|i386;108922-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_x86: Window Manager Enhancements Patch
    109175|10|Apr/09/02| | | |  |Unbundled|sparc;|SUNWsspop:3.3.0,REV=2000.01.31.13.02;|SSP 3.3: system-board voltages reported in SSP MIB are inconsisten
    109176|05|Feb/15/02| | | |  |8|sparc;|SUNWjdbas:1.4,REV=1999.12.08.11.33;SUNWjddst:1.4,REV=2000.01.08.17.26.06;SUNWjdhev:1.4,REV=1999.12.28.13.45;SUNWjdhez:1.4,REV=1999.12.08.11.33;SUNWjdwm:1.4,REV=1999.12.28.13.45;SUNWjeezt:1.4,REV=1999.12.28.13.45;SUNWjehev:1.4,REV=1999.12.28.13.45;SUNWjehez:1.4,REV=1999.12.28.13.45;SUNWjpdst:1.4,REV=1999.12.28.13.45;SUNWjpezt:1.4,REV=1999.12.28.13.45;SUNWjphev:1.4,REV=1999.12.28.13.45;SUNWjphez:1.4,REV=1999.12.28.13.45;SUNWjpwm:1.4,REV=1999.12.28.13.45;SUNWjudst:1.4,REV=1999.12.28.13.45;SUNWjuezt:1.4,REV=1999.12.28.13.45;SUNWjuhev:1.4,REV=1999.12.28.13.45;SUNWjuhez:1.4,REV=1999.12.28.13.45;SUNWjuwm:1.4,REV=1999.12.28.13.45;|CDE 1.4: Japanese patch to sync base CDE update
    109178|04|Jul/10/01| | | |  |Unbundled|||Jumbo Patch for ChorusOS r3.2.1 for PowerPC 60x (host Windows NT)
    109179|04|Nov/03/00| | | |  |8|sparc;|SUNWdedst:1.1,REV=2000.01.17.14.07;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;SUNWfrdst:1.1,REV=1999.12.23.15.27;SUNWfrdte:1.1,REV=1999.12.23.11.36;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;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;|SunOS 5.8: localization updates for SmartCard and Removable Media
    109180|03|Nov/03/00| | | |  |8_x86|i386;|SUNWdedst:1.1,REV=2000.01.17.14.29;SUNWesdst:1.1,REV=1999.12.20.15.30;SUNWesdte:1.1,REV=1999.12.20.15.31;SUNWfrdst:1.1,REV=1999.12.20.15.12;SUNWfrdte:1.1,REV=1999.12.20.15.13;SUNWitdst:1.1,REV=1999.12.20.15.19;SUNWitdte:1.1,REV=2000.01.06.16.50;SUNWsvdst:1.1,REV=2000.01.06.16.41;SUNWsvdte:1.1,REV=2000.01.06.16.38;|SunOS 5.8_x86: l10n updates for Removable Media
    109181|04|Jul/30/01|R| |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: 108528-13 SunOS 5.8: /kernel/fs/cachefs patch
    109182|04|Jul/30/01|R| |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-13 SunOS 5.8_x86: /kernel/fs/cachefs patch
    109183|01|Mar/27/00| |S| |  |Unbundled|||StarSchedule Server 5.1a: Security patch for Windows
    109184|01|Mar/27/00| |S| |  |Unbundled|||StarSchedule Server 5.1a: Security patch for OS/2
    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|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|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|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
    109214|01|Oct/24/00| | | |  |Unbundled|sparc;|SUNWsccf:2.2,REV=1999.02.09.23.00;|Sun Cluster 2.2: Dataservice Patch for Netbackup
    109215|01|Sep/28/00| | |O|  |Unbundled|sparc;|SUNWscds:2.2,REV=1999.02.09.23.00;|Obsoleted by: 108423-04 SunCluster 2.2: hadsconfig man page patch
    109216|01|Sep/28/00| | |O|  |Unbundled|sparc;|SUNWscds:2.2,REV=1999.02.09.23.30;|Obsoleted by: 108424-03 SunCluster 2.2: hadsconfig man page patch
    109217|01|May/01/00| | | |  |2.6|sparc;|SUNWbtool:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: patch /usr/ccs/bin/yacc and yaccpar
    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|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|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;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
    109248|01|Aug/14/00| | | |  |8_x86|i386;|SUNWdeis:8.0,REV=1999.12.23.13.12;|SunOS 5.8_x86: Bad translation causes core dump in German install
    109249|01|Aug/14/00| | | |  |8|sparc;108914-01;108954-02;|SUNWdedst:1.1,REV=2000.01.17.14.07;SUNWesdst:1.1,REV=1999.12.20.14.48;SUNWfrdst:1.1,REV=1999.12.23.15.27;SUNWitdst:1.1,REV=1999.12.20.14.32;SUNWsvdst:1.1,REV=2000.01.06.16.37;|SunOS 5.8: Help not localized for the dhcpmgr
    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|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 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
    109260|02|Jul/31/00| |S| |  |Unbundled|||StarOffice 5.1a (Solaris): Product patch
    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|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|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
    109286|02|Oct/05/01| | | |  |Unbundled|sparc;|SUNWmpi:3.1;|HPC 3.1: MPI library fixes
    109287|02|Oct/05/01| | | |  |Unbundled|sparc;|SUNWmpix:3.1;|HPC 3.1: MPI 64bit library fixes
    109290|01|Aug/29/00| | | |  |Unbundled|sparc;|SUNWnbinx:3.2GA;|Netbackup 3.2 Informix Database Extension Patch
    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|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|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|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|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|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| | |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|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
    109389|01|Jun/02/00|R|S| |  |2.6_x86|i386;|SUNWfac:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: patch /usr/vmsys/bin/chkperm
    109390|01|Jun/02/00|R|S| |  |2.5|sparc;|SUNWfac:11.5.1,REV=95.10.27.15.23;|SunOS 5.5: /usr/vmsys/bin/chkperm patch
    109391|01|Jun/02/00|R|S| |  |2.5_x86|i386;|SUNWfac:11.5.1,REV=95.10.27.15.21;|SunOS 5.5_x86: /usr/vmsys/bin/chkperm patch
    109392|01|Jun/02/00|R|S| |  |2.5.1|sparc;|SUNWfac:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/vmsys/bin/chkperm patch
    109393|01|Jun/02/00|R|S| |  |2.5.1_x86|i386;|SUNWfac:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: /usr/vmsys/bin/chkperm patch
    109397|02|Sep/28/01| | | |  |7|sparc;|SUNWjeezt:1.3,REV=1.0.47;SUNWjpezt:1.3,REV=1.0.47;SUNWjuezt:1.3,REV=1.0.47;|SunOS 5.7: sdtname.dt and sdtprocess.dt japanese patches for sparc
    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|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
    109407|01|May/24/00| | | |  |7_x86|i386;|SUNWesdte:1.1,REV=1998.09.17.22.11;SUNWeswm:1.1,REV=1998.09.11.22.05;|SunOS 5.7_x86: Invalid mnemonic specification in spanish locale
    109409|04|Oct/15/01|R|S| |  |7|sparc;106541-09;|SUNWntpu:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: xntpd and ntpdate Patch
    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|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
    109418|01|May/23/00| | | |  |2.6_x86|i386;105182-20;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: patch /usr/bin/netstat
    109422|01|Jan/31/01| | |O|  |Unbundled|sparc;|SUNWscman:2.2,REV=1999.02.09.23.30;|Obsoleted by: 108446-03 SunCluster 2.2: hareg Options Man Page for
    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;|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: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|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|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
    109464|01|Jul/21/00| | | |  |8_x86|i386;108969-01;|SUNWoldst:3.6.20,REV=1.2000.01.03;|OpenWindows 3.6.2_x86: filemgr fixes
    109465|02|Aug/25/00| |S| |  |Trusted_Solaris_7|||Trusted Solaris 7: Database Manager, Profile Manager and User Mana
    109466|01|Aug/07/00| | | |  |Unbundled|sparc;|SUNWsbus2:5.1.1;|Solstice Backup 5.1.1: lus driver patch
    109470|02|Aug/29/00|R| | |  |8|sparc;|SUNWdtezt:1.4,REV=10.1999.12.02;|CDE 1.4: Actions Patch
    109471|02|Aug/29/00|R| | |  |8_x86|i386;|SUNWdtezt:1.4,REV=10.1999.12.02;|CDE 1.4_x86: Actions Patch
    109472|07|Aug/08/01| | |O|  |8|sparc;sparc.sun4u;sparc.sun4us;108528-09;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;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-13 SunOS 5.8: /kernel/drv/tcp patch
    109473|08|Aug/08/01| | |O|  |8_x86|i386;108529-09;109280-10;|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;|Obsoleted by: 108529-13 SunOS 5.8_x86: /kernel/drv/tcp patch
    109474|01|Aug/22/00| | | |  |Unbundled|sparc;108274-05;|SUNWjlzs:1.1,REV="1.115";|1.1 bug fixes
    109475|06|May/22/01| | | |  |Unbundled|sparc;|SUNWhsmee:3.2GA;109295-01|Storage Migrator Jumbo patch
    109477|03|Apr/18/01| | | |  |Unbundled|i386;|SPROdbx:6.0;|Forte Developer/Sun WorkShop 6_x86: Patch for Debugger
    109478|03|Apr/18/01| | | |  |Unbundled|sparc;|SPROdbx:6.0;SPROdbxx:6.0;|Forte Developer/Sun WorkShop 6: Patch for Debugger
    109480|02|Dec/20/00| | | |  |Unbundled|sparc;|SPROf77:6.0;SPROl77:6.0;SPROl77s:6.0;SPROl77sx:6.0;SPROl77x:6.0;|F77 5.1: Patch for Forte Developer 6 F77 5.1 compiler
    109481|05|May/31/02| | | |  |Unbundled|sparc;|SPROlang:6.0;SPROlangx:6.0;|Compiler Common 6.0: Patch C 5.1, C++ 5.1, F77 5.1, F90 6.0
    109482|01|Oct/05/00| | | |  |Unbundled|i386;|SPROcpl:6.0;SPROgc:6.0;SPROlgc:6.0;SPROscl:6.0;SPROtlbn7:6.0;SPROtll7:6.0;|C++ 5.1_x86: Patch for C++ 5.1 compiler
    109485|03|Jan/23/01| | | |  |Unbundled|sparc;|SPROf90:6.0;SPROl90:6.0;SPROl90s:6.0;|F90 6.0: Patch for Forte Development 6 compiler
    109486|03|Jan/23/01| | | |  |Unbundled|sparc;109485-03;|SPROl90sx:6.0;SPROl90x:6.0;|F90 6.0: Patch for 64-bit Forte Development 6 compiler
    109487|01|Jul/28/00| | | |  |Unbundled|i386;|SPROlang:6.0;|Compiler Common 6.0_x86: Patch for C 5.1 compiler
    109488|02|Nov/10/00| | | |  |Unbundled|sparc;|SPROws:6.0;|Forte Developer/Sun Workshop 6: Patch for IPE
    109489|02|Nov/10/00| | | |  |Unbundled|i386;|SPROws:6.0;|Workshop 6_x86: Patch for IPE
    109490|01|Oct/05/00| | | |  |Unbundled|sparc;|SPROcpl:6.0;SPROcplx:6.0;SPROgc:6.0;SPROgcx:6.0;SPROlgc:6.0;SPROscl:6.0;SPROsclx:6.0;SPROtl7x:6.0;SPROtlbn7:6.0;SPROtll7:6.0;SPROtll7x:6.0;|C++ 5.1: Patch for Forte Development 6 C++ compiler
    109491|02|Jul/10/00| | | |  |Unbundled|sparc;|SPROcc:6.0;|Patch for Forte 6 C 5.1 compiler
    109492|01|Jul/10/00| | | |  |Unbundled|i386;|SPROcc:6.0;|Patch for Forte 6_x86 C 5.1 compiler_x86
    109494|01|Sep/21/00| | | |  |Unbundled|sparc;|SPROfrzpt:6.0;SPROvertl:6.0;|TW 6.0: Patch for Forte Development 6 TW
    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|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|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|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|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|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
    109530|02|Aug/30/00| |S| |  |Trusted_Solaris_7|||Trusted Solaris 7: No help volume: New_FP, location ID:ToOcuppyWor
    109531|04|Apr/09/01| |S| |  |Trusted_Solaris_7|||Trusted Solaris 7: Kernel fixes for memory leak, memory corruption
    109532|02|Aug/25/00| |S| |  |Trusted_Solaris_7|||Trusted Solaris 7: Roles fail to execute action "OpenCD-ROM"
    109533|02|Aug/25/00| |S| |  |Trusted_Solaris_7|||Trusted Solaris 7: TSOL messages do not exist in dtfile.msg
    109534|02|Aug/25/00| |S| |  |Trusted_Solaris_7|||Trusted Solaris 7: remote x-windows display from non TS7 hosts cau
    109535|02|Aug/25/00| |S| |  |Trusted_Solaris_7|||Trusted Solaris 7: netinstall, tcp panic, route patch
    109536|02|Aug/22/00| |S| |  |Trusted_Solaris_7|||Trusted Solaris 7: rlogin, telnet and ftp from an x86 do not work
    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: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
    109551|01|Mar/30/01| |S| |  |2.4_x86|i386;|SUNWcsu:11.5.1,REV=94.07.22.14.24,PATCH=370;|SunOS 5.4_x86: patch /usr/sbin/rpc.bootparamd
    109552|01|Jul/05/00| | | |  |8|sparc;|SUNWd8dst:1.1,REV=1999.12.20.17.04;SUNWd8wm:1.1,REV=2000.01.12.17.06;SUNWe8dst:1.1,REV=1999.12.20.17.08;SUNWe8dte:1.1,REV=2000.01.05.08.52;SUNWe8wm:1.1,REV=1999.12.23.15.17;SUNWf8dst:1.1,REV=1999.12.20.16.59;SUNWf8dte:1.1,REV=2000.01.04.17.56;SUNWf8wm:1.1,REV=1999.12.20.16.59;SUNWi8dst:1.1,REV=1999.12.20.17.02;SUNWi8dte:1.1,REV=2000.01.05.08.59;SUNWi8wm:1.1,REV=1999.12.23.15.18;SUNWs8dst:1.1,REV=1999.12.20.17.11;SUNWs8dte:1.1,REV=2000.01.05.09.03;SUNWs8wm:1.1,REV=1999.12.23.15.18;|SunOS 5.8: FIGSS-UTF.8, Removable media manager unlocalized
    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
    109568|03|Apr/05/01| | | |  |8|sparc;|SUNWpmowu:3.6.20,REV=1999.11.10.17.11;|OpenWindows 3.6.2: sys-suspend need to support low power mode
    109569|01|Jun/21/00| | | |  |8|sparc;|SUNWolimt:3.6.20,REV=1.1999.12.03;|OpenWindows 3.6.2: imagetool patch
    109570|01|Jun/21/00| | | |  |8_x86|i386;|SUNWolimt:3.6.20,REV=1.1999.12.03;|OpenWindows 3.6.2_x86: imagetool patch
    109571|02|Jul/31/00| | |O|  |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|Obsoleted by: 108528-05 SunOS 5.8: /usr/sbin/devfsadm patch
    109572|02|Jul/31/00| | |O|  |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|Obsoleted by: 108529-05 SunOS 5.8_x86: /usr/sbin/devfsadm patch
    109573|01|Jul/05/00| | | |  |8|sparc;|SUNWdedst:1.1,REV=2000.01.17.14.07;SUNWesdst:1.1,REV=1999.12.20.14.48;SUNWfrdst:1.1,REV=1999.12.23.15.27;SUNWitdst:1.1,REV=1999.12.20.14.32;SUNWsvdst:1.1,REV=2000.01.06.16.37;|SunOS 5.8: dhcpmgr help graphics not displayed correctly
    109574|01|Jul/05/00| | | |  |8_x86|i386;|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: dhcpmgr help graphics not displayed correctly
    109575|01|Jul/26/00| | | |  |Unbundled|sparc;|SUNWlsf:3.2.3;|HPC Clustertools 4.0:  Support for Loadable Protocol Modules
    109576|01|Oct/26/00| | | |  |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: mountall and fsckall patch
    109577|01|Oct/26/00| | | |  |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: mountall and fsckall patch
    109578|01|Jun/06/00| | | |  |Unbundled|sparc;|SUNWeswga:2.1_Build16,REV=2.6.1999.11.15;|SunMC 2.1: WGS agent dies with a A5X00 array connected to it
    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: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
    109590|01|Jun/06/00| | | |  |Unbundled|sparc;|SUNWeswga:2.1.1_Build05,REV=2.6.2000.01.10;|SunMC 2.1: WGS agent dies with a A5X00 array connected to it
    109591|01|Jun/06/00| | | |  |Unbundled|sparc;|SUNWeswga:2.1.1_Build05,REV=2.7.2000.01.10;|SunMC 2.1.1: WGS agent dies with a A5X00 array connected to it
    109592|01|Jun/06/00| | | |  |Unbundled|sparc;|SUNWeswga:2.1.1_Build05,REV=2.8.2000.01.10;|SunMC 2.1.1: WGS agent dies with a A5X00 array connected to it
    109593|02|Dec/15/00| |S| |  |Trusted_Solaris_7|sparc;|SUNWarc:11.7.0,REV=1999.11.06.18.49;SUNWcsl:11.7.0,REV=1999.11.06.18.49;SUNWcslx:11.7.0,REV=1999.11.06.18.49;|Trusted Solaris 7: Audit records, tnchkdb and NETPATH patch
    109594|02|Dec/15/00| |S| |  |Trusted_Solaris_7_x86|i386;|SUNWarc:11.7.0,REV=1999.11.11.00.28;SUNWcsl:11.7.0,REV=1999.11.11.00.28;|Trusted Solaris 7_x86: Audit records, tnchkdb and NETPATH patch
    109595|02|Aug/22/00| |S| |  |Trusted_Solaris_7_x86|||Trusted Solaris 7_x86:  rlogin, telnet and ftp from an x86 do not
    109596|01|Aug/25/00| |S| |  |Trusted_Solaris_7_x86|||Trusted Solaris 7_x86: remote x-windows display from non TS7 hosts
    109597|05|May/30/01| |S| |  |Trusted_Solaris_7_x86|||Trusted Solaris 7_x86: Kernel fixes for memory leak, memory corrup
    109598|02|Aug/25/00| |S| |  |Trusted_Solaris_7_x86|||Trusted Solaris 7_x86: Roles fail to execute action "OpenCD-ROM"
    109599|02|Aug/25/00| |S| |  |Trusted_Solaris_7_x86|||Trusted Solaris 7_x86: netinstall, tcp panic, route patch
    109600|02|Aug/25/00| |S| |  |Trusted_Solaris_7_x86|||Trusted Solaris 7_x86: Database Manager, Profile Manager and User
    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|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|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| | |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
    109637|01|Oct/31/00| | |O|  |7|sparc;|SUNWtleu:7.0,REV=1.0.21.1;SUNWtleux:7.0,REV=1.0.21.1;|Obsoleted by: 111190-02 SunOS 5.7: th locale has errors in / lacks
    109638|01|Jun/07/01| | |O|  |7_x86|i386;|SUNWtleu:7.0,REV=1.0.21;|Obsoleted by: 111191-02 SunOS 7_x86: th locale has errors in / lac
    109639|02|Apr/02/01| | |O|  |8|sparc;|SUNWtleu:8.0,REV=1999.12.12.10.19;SUNWtleux:8.0,REV=1999.11.04.10.17;|Obsoleted by: 111188-02 SunOS 5.8: th locale has errors in / lacks
    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;|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|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|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
    109672|01|Dec/15/00| |S| |  |Trusted_Solaris_7|sparc;|SUNWtsu:2.5.0,REV=1999.11.06.18.49;|Trusted Solaris 7: audit events on trusted 2.5.1 generate invalid
    109673|01|Jun/22/00| | | |  |Unbundled|||StarOffice 5.1: Product Registration patch for Windows
    109674|01|Jun/16/00| | | |  |Unbundled|||StarOffice 5.1: Product Registration patch for OS/2
    109675|01|Jun/16/00| | | |  |Unbundled|||StarOffice 5.1: Product Registration patch for Solaris
    109676|01|Jun/16/00| | | |  |Unbundled|||StarOffice 5.1_x86: Product Registration patch for Solaris
    109677|01|Jun/16/00| | | |  |Unbundled|||StarOffice 5.1: Product Registration patch for Linux
    109678|01|Jun/07/00| | | |  |Unbundled|sparc;|SUNWsspop:3.2.0,REV=99.09.20.15.58;|SSP 3.2: Centerplane support EEPROM reads fail using new centerpla
    109679|01|Jul/26/00| | | |  |8|sparc;|SUNWjib:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/share/lib/smartcard/ibutton.jar patch
    109680|01|Nov/07/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: 108991-12 SunOS 5.8: nss_nisplus.so.1 and libnss_nis
    109681|01|Nov/07/00| | |O|  |8_x86|i386;|SUNWcsl:11.8.0,REV=2000.01.08.18.17;|Obsoleted by: 108992-12 SunOS 5.8_x86: /usr/lib/nss_nisplus.so.1 p
    109684|02|Feb/09/01| | | |  |Unbundled|sparc;|SUNWsspop:3.3.0,REV=2000.01.31.13.02;|SSP 3.3: Memory consistency check of post2obp structure failed
    109685|02|Feb/09/01| | |O|  |Unbundled|sparc;|VRTSvxvm:3.0.4,REV=04.18.2000.10.00;|Obsoleted by 110256-01: VxVM 3.0.4: vxio and vxdmp driver patch
    109686|02|Feb/09/01| | |O|  |Unbundled|sparc;|VRTSvxvm:3.0.4,REV=04.18.2000.10.00;|OBSOLETED by 110257-01: VxVM 3.0.4: vxio and vxdmp driver patch
    109687|01|Aug/11/00| | |O|  |Unbundled|sparc;|VRTSvxvm:3.0.4,REV=04.18.2000.10.00;|Obsoleted by : 110258-01 VxVM 3.0.4: vxio and vxdmp driver patch
    109688|02|Feb/09/01| | |O|  |Unbundled|sparc;|VRTSvxvm:3.0.4,REV=04.18.2000.10.00;|Obsoleted by 110259-01: VxVM 3.0.4: vxio and vxdmp driver patch
    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|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|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
    109710|01|Jan/05/01|R|S| |  |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: /usr/sbin/arp patch
    109711|01|Jul/20/00| | | |  |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: /usr/bin/cat patch
    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|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
    109722|01|Jan/05/01|R|S| |  |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: arp should lose set-gid bit
    109723|02|Jan/05/01|R|S| |  |2.4|sparc;|SUNWcsu:11.5.1,REV=94.07.22.14.32,PATCH=399;|SunOS 5.4: arp should lose set-gid bit
    109724|02|Jan/05/01|R|S| |  |2.4_x86|i386;|SUNWcsu:11.5.1,REV=94.07.22.14.24,PATCH=376;|SunOS 5.4_x86: arp should lose set-gid bit
    109727|01|Jul/19/00| | | |  |8|sparc;|SUNWppm:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/sadm/admin/printmgr/classes/pmclient.jar patch
    109728|01|Jul/19/00| | | |  |8_x86|i386;|SUNWppm:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/sadm/admin/printmgr/classes/pmclient.jar patch
    109729|01|Aug/02/00| | | |  |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/cat patch
    109730|01|Aug/02/00| | | |  |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/cat patch
    109731|02|Nov/07/00| | |O|  |8|sparc;|SUNWpd:11.8.0,REV=2000.01.08.18.12;SUNWpdx:11.8.0,REV=2000.01.08.18.12;|Obsoleted by: 109815-03 SunOS 5.8: se driver patch
    109740|04|May/11/01| | |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/udp patch
    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|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| | |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
    109764|04|Oct/17/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/hsfs and /kernel/fs/sparcv9/hsfs patch
    109765|04|Oct/17/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/hsfs patch
    109766|02|Jun/22/01| | | |  |8|sparc;|SUNWjxcft:1.5,REV=1999.12.08.15.55;SUNWjxmft:1.1,REV=1999.12.13.17.34.1;|SunOS 5.8: SUNWjxmft and SUNWjxcft patch for 8/10 dot font.
    109767|02|Jun/22/01| | | |  |8_x86|i386;|SUNWjxcft:1.5,REV=1999.12.08.15.55;SUNWjxmft:1.1,REV=1999.12.13.17.39.1;|SunOS 5.8_x86: SUNWjxmft and SUNWjxcft patch for 8/10 dot font.
    109768|01|Jul/13/00| | | |  |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: Australia timezone patch
    109769|01|Jul/31/00| | | |  |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: Australia timezone patch
    109770|01|Aug/02/00| | | |  |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: /usr/sbin/dumpadm patch
    109772|01|Jul/20/00| | | |  |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: Require correction to timezone data for Australia
    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| | |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|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
    109788|01|Dec/15/00| |S| |  |Trusted_Solaris_7|sparc;|SUNWcsu:11.7.0,REV=1999.11.06.18.49;|Trusted Solaris 7: Audit record for pfsh in TS 7 displays admin_hi
    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|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|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
    109810|01|Jul/31/00| | | |  |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: timezone data patch for Australia
    109811|01|Dec/19/00| |S| |  |Trusted_Solaris_7|sparc;|SUNWcsl:11.7.0,REV=1999.11.06.18.49;SUNWcslx:11.7.0,REV=1999.11.06.18.49;SUNWcsu:11.7.0,REV=1999.11.06.18.49;|Trusted Solaris 7: Four vulnerabilities have been found in BIND, s
    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|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
    109819|04|Jan/29/02| | | |  |Unbundled|sparc;|SUNWewbp:4.0.1-GCC;SUNWewgp:4.0.1-GCC;SUNWewip:4.0.1-GCC;SUNWewjp:4.0.1-GCC;SUNWewkp:4.0.1-GCC;SUNWewop:4.0.1-GCC;SUNWewpp:4.0.1-GCC;SUNWewtp:4.0.1-GCC;SUNWewup:4.0.1-GCC;SUNWewxp:4.0.1-GCC;SUNWewzp:4.0.1-GCC;|Sun Embedded Workshop 4.0.1, ChorusOS for Solaris -> PowerPC 60x/7
    109820|04|Jan/29/02| | | |  |Unbundled|sparc;|SUNWewhp:4.0.1-GCC;SUNWewlp:4.0.1-GCC;|Sun Embedded Workshop 4.0.1, ChorusOS Source for Solaris -> PowerP
    109821|04|Jan/29/02| | | |  |Unbundled|sparc;|SUNWewfp:4.0.1-GCC;|Sun Embedded Workshop 4.0.1, Flite for ChorusOS, Solaris -> PowerP
    109822|04|Jan/29/02| | | |  |Unbundled|sparc;|SUNWewbm:4.0.1-GCC;SUNWewgm:4.0.1-GCC;SUNWewim:4.0.1-GCC;SUNWewjm:4.0.1-GCC;SUNWewkm:4.0.1-GCC;SUNWewom:4.0.1-GCC;SUNWewpm:4.0.1-GCC;SUNWewtm:4.0.1-GCC;SUNWewum:4.0.1-GCC;SUNWewxm:4.0.1-GCC;SUNWewzm:4.0.1-GCC;|Sun Embedded Workshop 4.0.1, ChorusOS for Solaris -> MPC8xx
    109823|04|Jan/29/02| | | |  |Unbundled|sparc;|SUNWewhm:4.0.1-GCC;SUNWewlm:4.0.1-GCC;|Sun Embedded Workshop 4.0.1, ChorusOS Source for Solaris -> MPC8xx
    109824|04|Jan/29/02| | | |  |Unbundled|sparc;|SUNWewfm:4.0.1-GCC;|Sun Embedded Workshop 4.0.1, Flite for ChorusOS, Solaris -> MPC8xx
    109825|04|Jan/29/02| | | |  |Unbundled|sparc;|SUNWewbq:4.0.1-GCC;SUNWewgq:4.0.1-GCC;SUNWewiq:4.0.1-GCC;SUNWewjq:4.0.1-GCC;SUNWewkq:4.0.1-GCC;SUNWewoq:4.0.1-GCC;SUNWewpq:4.0.1-GCC;SUNWewtq:4.0.1-GCC;SUNWewuq:4.0.1-GCC;SUNWewxq:4.0.1-GCC;SUNWewzq:4.0.1-GCC;|Sun Embedded Workshop 4.0.1, ChorusOS for Solaris -> MPC8260
    109826|04|Jan/29/02| | | |  |Unbundled|sparc;|SUNWewhq:4.0.1-GCC;SUNWewlq:4.0.1-GCC;|Sun Embedded Workshop 4.0.1, ChorusOS Source for Solaris -> MPC826
    109827|04|Jan/29/02| | | |  |Unbundled|sparc;|SUNWewfq:4.0.1-GCC;|Sun Embedded Workshop 4.0.1, Flite for ChorusOS, Solaris -> MPC826
    109828|04|Jan/30/02| | | |  |Unbundled|sparc;|SUNWewbu:4.0.1-GCC;SUNWewgu:4.0.1-GCC;SUNWewiu:4.0.1-GCC;SUNWewju:4.0.1-GCC;SUNWewku:4.0.1-GCC;SUNWewou:4.0.1-GCC;SUNWewpu:4.0.1-GCC;SUNWewtu:4.0.1-GCC;SUNWewuu:4.0.1-GCC;SUNWewxu:4.0.1-GCC;SUNWewzu:4.0.1-GCC;|Sun Embedded Workshop 4.0.1, ChorusOS for Solaris -> UltraSPARC II
    109829|04|Jan/30/02| | | |  |Unbundled|sparc;|SUNWewhu:4.0.1-GCC;SUNWewlu:4.0.1-GCC;|Sun Embedded Workshop 4.0.1, ChorusOS Source for Solaris -> UltraS
    109830|04|Jan/30/02| | | |  |Unbundled|sparc;|SUNWewfu:4.0.1-GCC;|Sun Embedded Workshop 4.0.1, Flite for ChorusOS, Solaris -> UltraS
    109831|04|Jan/30/02| | | |  |Unbundled|sparc;|SUNWewbs:4.0.1-GCC;SUNWewgs:4.0.1-GCC;SUNWewis:4.0.1-GCC;SUNWewks:4.0.1-GCC;SUNWewos:4.0.1-GCC;SUNWewps:4.0.1-GCC;SUNWewqs:4.0.1-GCC;SUNWewts:4.0.1-GCC;SUNWewus:4.0.1-GCC;SUNWewxs:4.0.1-GCC;SUNWewzs:4.0.1-GCC;|Sun Embedded Workshop 4.0.1, ChorusOS for Solaris -> Solaris/SPARC
    109832|04|Jan/30/02| | | |  |Unbundled|sparc;|SUNWewhs:4.0.1-GCC;SUNWewls:4.0.1-GCC;|Sun Embedded Workshop 4.0.1, ChorusOS Source for Solaris -> Solari
    109833|04|Jan/30/02| | | |  |Unbundled|sparc;|SUNWewbp:4.0.1-GCC;SUNWewgp:4.0.1-GCC;SUNWewip:4.0.1-GCC;SUNWewjp:4.0.1-GCC;SUNWewkp:4.0.1-GCC;SUNWewop:4.0.1-GCC;SUNWewpp:4.0.1-GCC;SUNWewtp:4.0.1-GCC;SUNWewup:4.0.1-GCC;SUNWewxp:4.0.1-GCC;SUNWewzp:4.0.1-GCC;|Sun Embedded Workshop 4.0.1, ChorusOS for NT -> PowerPC 60x/750
    109834|04|Jan/30/02| | | |  |Unbundled|sparc;|SUNWewhp:4.0.1-GCC;SUNWewlp:4.0.1-GCC;|Sun Embedded Workshop 4.0.1, ChorusOS Source for NT -> PowerPC 60x
    109835|04|Jan/30/02| | | |  |Unbundled|sparc;|SUNWewfp:4.0.1-GCC;|Sun Embedded Workshop 4.0.1, Flite for ChorusOS, NT -> PowerPC 60x
    109836|04|Jan/30/02| | | |  |Unbundled|sparc;|SUNWewbp:4.0.1-GHS;SUNWewgp:4.0.1-GHS;SUNWewip:4.0.1-GHS;SUNWewkp:4.0.1-GHS;SUNWewop:4.0.1-GHS;SUNWewpp:4.0.1-GHS;SUNWewtp:4.0.1-GHS;SUNWewxp:4.0.1-GHS;|Sun Embedded Workshop 4.0.1-GHS, ChorusOS for Solaris -> PowerPC 6
    109837|04|Jan/30/02| | | |  |Unbundled|sparc;|SUNWewhp:4.0.1-GHS;SUNWewlp:4.0.1-GHS;|Sun Embedded Workshop 4.0.1-GHS, ChorusOS Source for Solaris -> Po
    109838|04|Jan/30/02| | | |  |Unbundled|sparc;|SUNWewfp:4.0.1-GHS;|Sun Embedded Workshop 4.0.1-GHS, Flite for ChorusOS, Solaris -> Po
    109839|04|Jan/30/02| | | |  |Unbundled|sparc;|SUNWewbq:4.0.1-GHS-MPC8260;SUNWewgq:4.0.1-GHS-MPC8260;SUNWewiq:4.0.1-GHS-MPC8260;SUNWewkq:4.0.1-GHS-MPC8260;SUNWewoq:4.0.1-GHS-MPC8260;SUNWewpq:4.0.1-GHS-MPC8260;SUNWewrq:4.0.1-GHS-MPC8260;SUNWewtq:4.0.1-GHS-MPC8260;SUNWewxq:4.0.1-GHS-MPC8260;|Sun Embedded Workshop 4.0.1-GHS, ChorusOS for Solaris -> MPC8260
    109840|04|Jan/30/02| | | |  |Unbundled|sparc;|SUNWewhq:4.0.1-GHS-MPC8260;SUNWewlq:4.0.1-GHS-MPC8260;|Sun Embedded Workshop 4.0.1-GHS, ChorusOS Source for Solaris -> MP
    109841|04|Jan/30/02| | | |  |Unbundled|sparc;|SUNWewfq:4.0.1-GHS-MPC8260;|Sun Embedded Workshop 4.0.1-GHS, Flite for ChorusOS, Solaris -> MP
    109842|04|Jan/30/02| | | |  |Unbundled|sparc;|SUNWewyq:4.0.1-GHS-MPC8260;|Sun Embedded Workshop 4.0.1-GHS, pSOS personality for Solaris -> M
    109843|04|Jan/30/02| | | |  |Unbundled|sparc;|SUNWeweq:4.0.1-GHS-MPC8260;|Sun Embedded Workshop 4.0.1-GHS, pSOS personality Source for Solar
    109844|04|Jan/30/02| | | |  |Unbundled|sparc;|SUNWewbm:4.0.1-GHS-MPC8xx;SUNWewgm:4.0.1-GHS-MPC8xx;SUNWewim:4.0.1-GHS-MPC8xx;SUNWewkm:4.0.1-GHS-MPC8xx;SUNWewom:4.0.1-GHS-MPC8xx;SUNWewpm:4.0.1-GHS-MPC8xx;SUNWewrm:4.0.1-GHS-MPC8xx;SUNWewtm:4.0.1-GHS-MPC8xx;SUNWewxm:4.0.1-GHS-MPC8xx;|Sun Embedded Workshop 4.0.1-GHS, ChorusOS for Solaris -> MPC8xx
    109845|04|Jan/30/02| | | |  |Unbundled|sparc;|SUNWewhm:4.0.1-GHS-MPC8xx;SUNWewlm:4.0.1-GHS-MPC8xx;|Sun Embedded Workshop 4.0.1-GHS, ChorusOS Source for Solaris -> MP
    109846|04|Jan/30/02| | | |  |Unbundled|sparc;|SUNWewfm:4.0.1-GHS-MPC8xx;|Sun Embedded Workshop 4.0.1-GHS, Flite for ChorusOS, Solaris -> MP
    109847|04|Jan/30/02| | | |  |Unbundled|sparc;|SUNWewym:4.0.1-GHS-MPC8xx;|Sun Embedded Workshop 4.0.1-GHS, pSOS personality for Solaris -> M
    109848|04|Jan/30/02| | | |  |Unbundled|sparc;|SUNWewem:4.0.1-GHS-MPC8xx;|Sun Embedded Workshop 4.0.1-GHS, pSOS personality Source for Solar
    109849|04|Jan/30/02| | | |  |Unbundled|sparc;|SUNWewbs:4.0.1-GHS-up;SUNWewgs:4.0.1-GHS-up;SUNWewis:4.0.1-GHS-up;SUNWewks:4.0.1-GHS-up;SUNWewos:4.0.1-GHS-up;SUNWewps:4.0.1-GHS-up;SUNWewqs:4.0.1-GHS-up;SUNWewrs:4.0.1-GHS-up;SUNWewts:4.0.1-GHS-up;SUNWewxs:4.0.1-GHS-up;|Sun Embedded Workshop 4.0.1-GHS, ChorusOS for Solaris -> Solaris/S
    109850|04|Jan/30/02| | | |  |Unbundled|sparc;|SUNWewhs:4.0.1-GHS-up;SUNWewls:4.0.1-GHS-up;|Sun Embedded Workshop 4.0.1-GHS, ChorusOS Source for Solaris -> So
    109851|04|Jan/30/02| | | |  |Unbundled|sparc;|SUNWewys:4.0.1-GHS-up;|Sun Embedded Workshop 4.0.1-GHS, pSOS personality for Solaris -> S
    109852|04|Jan/30/02| | | |  |Unbundled|sparc;|SUNWewes:4.0.1-GHS-up;|Sun Embedded Workshop 4.0.1-GHS, pSOS personality Source for Solar
    109853|01|May/24/01| | | |  |Unbundled|sparc;|SUNWewbi:4.0.1-GPRO-MIPS;SUNWewgi:4.0.1-GPRO-MIPS;SUNWewii:4.0.1-GPRO-MIPS;SUNWewki:4.0.1-GPRO-MIPS;SUNWewoi:4.0.1-GPRO-MIPS;SUNWewpi:4.0.1-GPRO-MIPS;SUNWewti:4.0.1-GPRO-MIPS;SUNWewui:4.0.1-GPRO-MIPS;SUNWewxi:4.0.1-GPRO-MIPS;SUNWewzi:4.0.1-GPRO-MIPS;|Jumbo Patch for Sun Embedded Workshop 4.0.1-GPRO, ChorusOS for Sol
    109854|01|May/24/01| | | |  |Unbundled|sparc;|SUNWewhi:4.0.1-GPRO-MIPS;SUNWewli:4.0.1-GPRO-MIPS;|Jumbo Patch for Sun Embedded Workshop 4.0.1-GPRO, ChorusOS Source
    109855|01|May/24/01| | | |  |Unbundled|sparc;|SUNWewfi:4.0.1-GPRO-MIPS;|Jumbo Patch for Sun Embedded Workshop 4.0.1, Flite for ChorusOS, S
    109856|01|May/24/01| | | |  |Unbundled|sparc;|SUNWewbi:4.0.1-GPRO-MIPS;SUNWewgi:4.0.1-GPRO-MIPS;SUNWewii:4.0.1-GPRO-MIPS;SUNWewki:4.0.1-GPRO-MIPS;SUNWewoi:4.0.1-GPRO-MIPS;SUNWewpi:4.0.1-GPRO-MIPS;SUNWewti:4.0.1-GPRO-MIPS;SUNWewui:4.0.1-GPRO-MIPS;SUNWewxi:4.0.1-GPRO-MIPS;SUNWewzi:4.0.1-GPRO-MIPS;|Jumbo Patch for Sun Embedded Workshop 4.0.1-GPRO, ChorusOS for NT
    109857|01|May/24/01| | | |  |Unbundled|sparc;|SUNWewhi:1.0;SUNWewli:1.0;|Jumbo Patch for Sun Embedded Workshop 4.0.1-GPRO, ChorusOS Source
    109858|01|Jun/29/00| | | |  |Unbundled|sparc;|SUNWs3l:3.1;|svd codes breaks with ws6.0
    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|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|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
    109877|01|Oct/13/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/dma_i8237A.h patch
    109878|01|Oct/13/00| | | |  |8_x86|i386;|SUNWhea:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/include/sys/dma_i8237A.h patch
    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: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|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|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|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|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
    109901|02|Aug/21/01| | | |  |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /etc/init.d/network and /sbin/ifparse patch
    109902|03|Feb/21/01| | | |  |8|sparc;109279-07;108528-13;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/inet/in.ndpd patch
    109903|03|Feb/22/01| | | |  |8_x86|i386;109280-07;108529-13;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/inet/in.ndpd patch
    109904|05|Oct/23/01|R| |O|  |8|sparc;109279-16;108528-13;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;|Obsoleted by: 108528-13 SunOS 5.8: /etc/default/mpathd and /sbin/i
    109905|05|Oct/17/01|R| |O|  |8_x86|i386;109280-16;108529-13;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;|Obsoleted by: 108529-13 SunOS 5.8_x86: /etc/default/mpathd and /sb
    109906|06|Aug/21/01|R| |O|  |8|sparc;109904-02;109279-07;111310-01;109742-02;108528-13;108528-13;108528-13;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWcsu:11.8.0,REV=2000.01.08.18.12;|Obsoleted by: 108528-13 SunOS 5.8: dhcpagent, dhcpinfo, ifconfig a
    109907|06|Aug/21/01|R| |O|  |8_x86|i386;109280-07;109743-02;111311-01;109905-02;108529-13;108529-13;108529-13;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;SUNWcsu:11.8.0,REV=2000.01.08.18.17;|Obsoleted by: 108529-13 SunOS 5.8_x86: dhcpagent, dhcpinfo, ifconf
    109908|01|Nov/14/00| | |O|  |8|sparc.sun4u;|SUNWcti2x:11.8.0,REV=2000.04.20.22.44;|Obsoleted by: 109815-04 SunOS 5.8: pcf8574 and pcf8591 driver patc
    109909|01|Nov/10/00| | |O|  |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;|Obsoleted by: 108529-08 SunOS 5.8_x86: /kernel/misc/scsi patch
    109910|01|Sep/26/00| | | |  |7|sparc;|SUNWdehev:1.3,REV=1999.10.13.15.50;SUNWeshev:1.3,REV=1999.10.13.15.56;SUNWfrhev:1.3,REV=1999.10.13.15.48;SUNWithev:1.3,REV=1999.10.13.15.54;SUNWsvhev:1.3,REV=1999.10.13.16.15;|CDE 1.3: help for Winlst, Rem. Media Mgr. & Workspace Mgr.
    109911|01|Sep/26/00| | | |  |7_x86|i386;|SUNWdehev:1.3,REV=1999.10.13.15.21;SUNWeshev:1.3,REV=1999.10.13.15.27;SUNWfrhev:1.3,REV=1999.10.13.15.19;SUNWithev:1.3,REV=1999.10.13.15.25;SUNWsvhev:1.3,REV=1999.10.13.15.41;|CDE 1.3_x86: help for Winlst, Rem. Media Mgr. & Workspace Mgr.
    109912|01|Jul/12/00| | |O|  |Unbundled|||Obsoleted by: 109945-02 StarOffice 5.2: special character patch fo
    109913|02|Oct/17/00| | | |  |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: patch usr/bin/find
    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|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: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|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
    109939|03|Dec/11/01| |S| |  |Unbundled|||StarOffice 5.2 (Linux): Product patch
    109941|03|Dec/12/01| |S| |  |Unbundled|||StarOffice 5.2_x86 (Solaris): Product patch
    109943|03|Dec/12/01| |S| |  |Unbundled|||StarOffice 5.2 (Solaris): Product patch
    109945|03|Dec/11/01| |S| |  |Unbundled|||StarOffice 5.2 (Windows): Product patch
    109947|03|Mar/01/02| | | |  |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: /usr/bin/sed Patch
    109948|03|Mar/01/02| | | |  |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: /usr/bin/sed Patch
    109949|01|Aug/17/00|R|S| |  |7|sparc;|SUNWjwnsu:1.1,REV=1.0.45;|SunOS 5.7: jserver buffer overflow
    109950|01|Aug/17/00|R|S| |  |7_x86|i386;|SUNWjwnsu:1.1,REV=1.0.45;|SunOS 5.7_x86: jserver buffer overflow
    109951|01|Aug/17/00|R|S| |  |8|sparc;|SUNWjwnsu:1.2,REV=1999.12.08.11.18;|SunOS 5.8: jserver buffer overflow
    109952|01|Aug/17/00| |S| |  |8_x86|i386;|SUNWjwnsu:1.2,REV=1999.12.08.11.20;|SunOS 5.8_x86: jserver buffer overflow
    109954|01|Aug/14/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;|Obsoleted by: 108528-13 SunOS 5.8: /kernel/sys/pset and /kernel/sy
    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|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
    109974|07|Apr/12/01| | | |  |Unbundled|sparc;109970-07;|SUNWnvm:2.0.2,REV=5.8.0.2000.06.16;|FWC 2.0: nvmem driver on attach erroneous diagnostics Patch
    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|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|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
    110013|01|Aug/10/00| | | |  |Unbundled|sparc;|SUNWeswsa:2.1.1_Build04,REV=2.7.1999.12.24;|SunMC 2.1.1: Physical view not displayed for A5100 array
    110014|01|Aug/10/00| | | |  |Unbundled|sparc;|SUNWeswss:2.1.1_Build04,REV=2.7.1999.12.24;|SunMC 2.1.1: Physical view not displayed for A5100 array
    110015|01|Aug/10/00| | | |  |Unbundled|sparc;|SUNWeswsa:2.1.1_Build04,REV=2.8.1999.12.24;|SunMC 2.1.1: Physical view not displayed for A5100 array
    110016|01|Aug/10/00| | | |  |Unbundled|sparc;|SUNWeswss:2.1.1_Build04,REV=2.8.1999.12.24;|SunMC 2.1.1: Physical view not displayed for A5100 array
    110017|01|Aug/10/00| | | |  |Unbundled|sparc;|SUNWeswsa:2.1.1_Build04,REV=2.5.1999.12.24;|SunMC 2.1.1: Physical view not displayed for A5100 array
    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| | |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|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
    110039|01|Jul/26/00| | | |  |Unbundled|sparc;|SUNWvts:3.3,REV=08.99.06.22;SUNWvtsx:3.3,REV=08.99.06.22;|SunVTS 3.3: disktest of internal FC-AL disks in E3500 has wrong lo
    110040|01|Sep/06/00| | | |  |Unbundled|sparc;|SUNWvts:3.2,REV=08.99.04.05;SUNWvtsx:3.2,REV=08.99.04.05;|SunVTS 3.2: sunvts hangs or dies on large E10K configuration
    110041|01|Aug/15/00| | | |  |Unbundled|sparc;|SUNWvts:4.0,REV=38.99.12.09;SUNWvtsx:4.0,REV=38.99.12.09;|SunVTS 4.0: sunvts hangs or dies on large E10K configuration
    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|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|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|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
    110073|01|Oct/27/00|R| | |  |7_x86|i386;|SUNWudfr:11.7.0,REV=1999.06.18.20.39;|SunOS 5.7_x86: Sol7 11/99, can't mount udfs cdrom
    110075|01|Mar/13/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/devinfo and /kernel/drv/sparcv9/devinfo pat
    110076|01|Mar/13/01|R|S| |  |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /kernel/drv/devinfo patch
    110077|03|Jun/15/01| | |O|  |8|sparc;110383-01;108528-05;|SUNWsibi:11.8,REV=2000.01.13.17.52;|Obsoleted by: 109318-18 SunOS 5.8: sysevent framework patch
    110078|03|Jun/15/01| | |O|  |8_x86|i386;108529-05;110397-01;|SUNWsibi:11.8,REV=1999.12.16.15.36;|Obsoleted by: 109319-19 SunOS 5.8_x86: sysevent framework patch
    110085|01|Aug/10/00| | | |  |Unbundled|sparc;|SUNWeswsa:2.1.1_Build04,REV=2.6.1999.12.24;|SunMC 2.1.1: Physical view not displayed for A5100 array
    110086|01|Aug/10/00| | | |  |Unbundled|sparc;|SUNWeswss:2.1.1_Build04,REV=2.6.1999.12.24;|SunMC 2.1.1: Physical view not displayed for A5100 array
    110087|01|Aug/04/00| | | |  |Unbundled|sparc;|SUNWsasnm:1.3,REV=1998.07.16.17.43;|Solstice Enterprise Agent 1.0.3: SNMP.
    110088|02|Dec/21/00| | | |  |8|sparc;|SUNWdtdst:1.4,REV=10.1999.12.02;SUNWdthev:1.4,REV=10.1999.12.02;SUNWdtscm:1.4,REV=10.1999.12.02;|CDE 1.4: DtPower patch
    110089|02|Dec/21/00| | | |  |8_x86|i386;|SUNWdtdst:1.4,REV=10.1999.12.02;SUNWdthev:1.4,REV=10.1999.12.02;SUNWdtscm:1.4,REV=10.1999.12.02;|CDE 1.4_x86: DtPower patch
    110094|01|Aug/28/00| | |O|  |Unbundled|sparc;105181-23;|SUNWesagt:2.1.1_Build05,REV=2.6.2000.01.12;SUNWsycfd:2.1.1_Build05,REV=2.6.2000.01.10;|Obsoleted by: 109699-05 SunMC 2.1.1 FCS: SSRE patch for SunMC
    110108|02|Sep/21/00| |S| |  |Unbundled|sparc;|OMRONWnn6:2.10;|SunOS 5.5: jserver buffer overflow
    110109|02|Sep/21/00| |S| |  |Unbundled|sparc;|OMRONWnn6:2.11;|SunOS 5.5.1: jserver buffer overflow
    110110|02|Sep/21/00| |S| |  |Unbundled|sparc;|OMRONWnn6:2.12;|SunOS 5.5.1 HW 497: jserver buffer overflow
    110111|02|Sep/21/00| |S| |  |Unbundled|sparc;|OMRONWnn6:2.13;|SunOS 5.5.1 HW897,HW1197: jserver buffer overflow
    110124|02|Feb/16/01| | | |  |2.6|sparc;106842-09;|SUNWploc:2.0,REV=97.05.30.12.47;SUNWploc1:1.0,REV=1997.06.14.16.13;SUNWploc1:1.0,REV=1997.07.14.15.26;|SunOS 5.6: Incorrect decimal precision for euro currency
    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|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 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|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|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|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|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
    110214|01|Dec/19/00| | | |  |Unbundled|sparc;106541-14;|SUNWesagt:2.1_Build17_l3,REV=2.7.1999.12.06;SUNWsycfd:2.1_Build17_l3,REV=2.7.1999.12.06;|SunMC 2.1l10n FCS: SSRE patch for SunMC
    110215|01|Dec/19/00| | |O|  |Unbundled|sparc;106541-14;|SUNWesagt:2.1.1_Build05,REV=2.7.2000.01.12;SUNWsycfd:2.1.1_Build05,REV=2.7.2000.01.10;|Obsoleted by: 109696-05 SunMC 2.1.1 FCS: SSRE patch for SunMC
    110216|01|Dec/11/00| | | |  |Unbundled|sparc;108528-04;|SUNWesagt:2.1_Build17,REV=2.8.1999.11.19;SUNWsycfd:2.1_Build17,REV=2.8.1999.11.19;|SunMC 2.1 FCS: SSRE patch for SunMC
    110217|01|Dec/11/00| | | |  |Unbundled|sparc;108528-04;|SUNWesagt:2.1_Build17_l3,REV=2.8.1999.12.07;SUNWsycfd:2.1_Build17_l3,REV=2.8.1999.12.07;|SunMC 2.1l10n FCS: SSRE patch for SunMC
    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|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
    110250|01|Dec/19/00| |S| |  |Trusted_Solaris_7_x86|i386;|SUNWpcu:13.1,REV=1999.11.11.00.28;|Trusted Solaris 7: libprint has buffer overflows, other security p
    110251|01|Sep/26/00| | | |  |8|sparc;|SUNWceuos:1.0,REV=1999.12.13.13.25;SUNWceuox:1.0,REV=1999.11.24.13.29;|SunOS 5.8: Sort error in hu locale
    110253|04|Feb/07/01| | | |  |Unbundled|sparc;|VRTSvxvm:3.1,REV=07.21.2000.07.59;|Veritas Volume Manager 3.1: Volume Manager bug fixes
    110254|04|Feb/07/01| | | |  |Unbundled|sparc;|VRTSvxvm:3.1,REV=07.21.2000.07.59;|Veritas Volume Manager 3.1: Volume Manager bug fixes
    110255|04|Feb/07/01| | | |  |Unbundled|sparc;|VRTSvxvm:3.1,REV=07.21.2000.07.59;|Veritas Volume Manager 3.1: Volume Manager bug fixes
    110256|01|Nov/02/00| | |O|  |Unbundled|sparc;|VRTSvxvm:3.0.4,REV=04.18.2000.10.00;|Obsoleted by: 110260-03 Veritas Volume Manager 3.0.4: vxio and vxd
    110257|01|Nov/02/00| | |O|  |Unbundled|sparc;|VRTSvxvm:3.0.4,REV=04.18.2000.10.00;|Obsoleted by: 110261-03 Veritas Volume Manager 3.0.4: vxio and vxd
    110258|01|Nov/02/00| | |O|  |Unbundled|sparc;|VRTSvxvm:3.0.4,REV=04.18.2000.10.00;|Obsoleted by: 110262-03 Veritas Volume Manager 3.0.4: vxio and vxd
    110259|01|Nov/02/00| | |O|  |Unbundled|sparc;|VRTSvxvm:3.0.4,REV=04.18.2000.10.00;|Obsoleted by: 110263-03 Veritas Volume Manager 3.0.4: vxio and vxd
    110260|05|Jun/08/01| |S| |  |Unbundled|sparc;|VRTSvxvm:3.0.4,REV=04.18.2000.10.00;|Veritas Volume Manager 3.0.4: general patch for Solaris 2.5.1
    110261|05|Jun/08/01| |S| |  |Unbundled|sparc;|VRTSvxvm:3.0.4,REV=04.18.2000.10.00;|Veritas Volume Manager 3.0.4: general patch for Solaris 2.6
    110262|05|Jun/08/01| |S| |  |Unbundled|sparc;|VRTSvxvm:3.0.4,REV=04.18.2000.10.00;|Veritas Volume Manager 3.0.4: general patch for Solaris 7
    110263|05|Jun/08/01| |S| |  |Unbundled|sparc;|VRTSvxvm:3.0.4,REV=04.18.2000.10.00;|Veritas Volume Manager 3.0.4: general patch for Solaris 8
    110266|01|Sep/28/00| | | |  |Unbundled|sparc;|SUNWeswss:2.1.1_Build04,REV=2.6.1999.12.24;|SunMC 2.1.1 Need support for Sun-Blade-100, Sun-Blade-1000 systems
    110267|01|Sep/28/00| | | |  |Unbundled|sparc;|SUNWeswss:2.1.1_Build04,REV=2.7.1999.12.24;|SunMC 2.1.1 Need support for Sun-Blade-100, Sun-Blade-1000 systems
    110268|01|Sep/28/00| | | |  |Unbundled|sparc;|SUNWeswss:2.1.1_Build04,REV=2.8.1999.12.24;|SunMC 2.1.1 Need support for Sun-Blade-100, Sun-Blade-1000 systems
    110269|01|Mar/09/01| | | |  |8|sparc;|SUNWarc:11.8.0,REV=2000.01.08.18.12;SUNWnisu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/libnisdb.so.2 patch
    110270|01|Mar/28/01| | | |  |8_x86|i386;|SUNWarc:11.8.0,REV=2000.01.08.18.17;SUNWnisu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/libnisdb.so.2 patch
    110271|01|Sep/26/00| | | |  |2.6|sparc;|SUNWploc1:1.0,REV=1997.07.14.15.26;|SunOS 5.6: Sort Errors in hu
    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|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
    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|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|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|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: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
    110356|01|Mar/21/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: ifconfig aoto-revarp hangs in the presence of ARP or RA
    110357|01|Mar/21/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: ifconfig aoto-revarp hangs in presence of ARP or RA
    110360|01|Oct/31/00| | | |  |Unbundled|||SNC 3.2: x86: Login hangs with large NIS+ groups and scripting
    110364|02|Apr/02/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;SUNWe8dst:1.1,REV=1999.12.20.17.08;SUNWe8dte:1.1,REV=2000.01.05.08.52;SUNWesdst:1.1,REV=1999.12.20.14.48;SUNWesdte:1.1,REV=1999.12.20.14.49;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;SUNWi8dst:1.1,REV=1999.12.20.17.02;SUNWi8dte:1.1,REV=2000.01.05.08.59;SUNWitdst:1.1,REV=1999.12.20.14.32;SUNWitdte:1.1,REV=2000.01.06.16.50;SUNWs8dst:1.1,REV=1999.12.20.17.11;SUNWs8dte:1.1,REV=2000.01.05.09.03;SUNWsvdst:1.1,REV=2000.01.06.16.37;SUNWsvdte:1.1,REV=2000.01.06.16.40;|SunOS 5.8: Add L10N sdttypesbinder files
    110365|02|Apr/02/01| | | |  |8_x86|i386;|SUNWd8dst:1.1,REV=1999.12.20.17.17;SUNWd8dte:1.1,REV=2000.01.05.09.48;SUNWdedst:1.1,REV=2000.01.17.14.29;SUNWdedte:1.1,REV=2000.01.17.14.25;SUNWe8dst:1.1,REV=1999.12.20.17.21;SUNWe8dte:1.1,REV=2000.01.05.11.50;SUNWesdst:1.1,REV=1999.12.20.15.30;SUNWesdte:1.1,REV=1999.12.20.15.31;SUNWf8dst:1.1,REV=1999.12.20.17.12;SUNWf8dte:1.1,REV=2000.01.05.09.11;SUNWfrdst:1.1,REV=1999.12.20.15.12;SUNWfrdte:1.1,REV=1999.12.20.15.13;SUNWi8dst:1.1,REV=1999.12.20.17.15;SUNWi8dte:1.1,REV=2000.01.05.12.16;SUNWitdst:1.1,REV=1999.12.20.15.19;SUNWitdte:1.1,REV=2000.01.06.16.50;SUNWs8dst:1.1,REV=1999.12.20.17.24;SUNWs8dte:1.1,REV=2000.01.05.11.58;SUNWsvdst:1.1,REV=2000.01.06.16.41;SUNWsvdte:1.1,REV=2000.01.06.16.38;|SunOS 5.8_x86: Add L10N dttypesbinder files
    110366|01|Dec/07/00| | | |  |7_x86|||SunOS 5.7_x86: iprb ITU patch
    110368|02|May/15/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: pcf8574 driver patch for SUNW Sun-Fire-280R
    110369|05|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: sgcn patch
    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|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|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|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|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|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
    110394|01|Apr/12/01| | | |  |8|sparc;|SUNW1251f:1.0,REV=1999.10.13.15.03;SUNWi15rf:3.6,REV=1999.10.13.14.44;|SunOS 5.8:German Euro locale appears different than any other loca
    110395|01|Apr/12/01| | | |  |8_x86|i386;|SUNW1251f:1.0,REV=1999.10.13.15.11;SUNWi15rf:3.6,REV=1999.10.13.15.06;|SunOS 5.8_x86:German Euro locale appears different to any other lo
    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|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|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|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|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|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| | |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|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
    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|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|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|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|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
    110531|01|Jan/30/01| |S| |  |Unbundled|sparc;|SUNWab2u:3.0,REV=1999.1209;|AnswerBook 1.4.2: HTTP GET overflow allows code execution
    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|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|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|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|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|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|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|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
    110693|02|Oct/29/01| | | |  |Unbundled|sparc;|SUNWdmfex:11.8.0,REV=2001.01.19.13.26;|Netra X1 dmfe ethernet driver, Link light
    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| |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
    110711|01|Feb/22/02| | | |  |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: nscd patch
    110714|01|Jan/22/01| | |O|  |8|sparc;|SUNWadmc:11.8,REV=2000.01.21.04.37;|Obsoleted by: 109318-12 SunOS 5.8: libprinter patch
    110715|01|Jan/22/01| | |O|  |8_x86|i386;|SUNWadmc:11.8,REV=2000.01.21.04.37;|Obsoleted by: 109319-13 SunOS 5.8_x86: libprinter patch
    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|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
    110732|01|Dec/21/00| | | |  |Unbundled|sparc;|SUNWsspfp:3.1.1,REV=99.06.14.19.40;|SSP 3.1.1: Heartbeat Failures caused 5 domains to panic
    110733|01|Dec/21/00| | | |  |Unbundled|sparc;|SUNWsspfp:3.2.0,REV=99.09.20.15.58;|SSP 3.2: Heartbeat Failures caused 5 domains to panic
    110734|01|Dec/22/00| | | |  |Unbundled|sparc;|SUNWsspfp:3.3.0,REV=2000.01.31.13.02;|SSP 3.3: Heartbeat Failures caused 5 domains to panic
    110735|01|Dec/22/00| | | |  |Unbundled|sparc;|SUNWsspfp:3.4.0,REV=2000.08.20.19.44;|SSP 3.4: Heartbeat Failures caused 5 domains to panic
    110737|02|Oct/04/01| |S| |  |Trusted_Solaris_8|sparc;|SUNWmc:11.8,REV=2000.10.29.13.18;SUNWmcc:11.8,REV=2000.10.29.13.18;SUNWmga:1.0,REV=2000.10.29.13.18;SUNWmgts:1.0,REV=2000.10.29.13.18;SUNWwbcou:2.0,REV=2000.10.29.13.18;|Trusted Solaris 8: SMC NIS support
    110738|02|Oct/04/01| |S| |  |Trusted_Solaris_8_x86|i386;110763-01;|SUNWmc:11.8,REV=2000.10.29.03.09;SUNWmcc:11.8,REV=2000.10.29.03.09;SUNWmga:1.0,REV=2000.10.29.03.09;SUNWmgts:1.0,REV=2000.10.29.03.09;SUNWwbcou:2.0,REV=2000.10.29.03.09;|Trusted Solaris 8_x86: SMC NIS support
    110739|01|Dec/22/00| |S| |  |Trusted_Solaris_8|sparc;|SUNWxwplt:3.8.1800,REV=0.99.03.23;|Trusted Solaris 8: CDE exit sometimes fail
    110740|01|Dec/22/00| |S| |  |Trusted_Solaris_8_x86|i386;110763-01;|SUNWxwplt:3.8.1800,REV=0.99.03.23;|Trusted Solaris 8_x86: CDE exit sometimes fail
    110741|01|Dec/22/00| |S| |  |Trusted_Solaris_8|sparc;|SUNWtsu:2.5.0,REV=2000.10.30.04.48;|Trusted Solaris 8: labeld is not i18n compliant
    110742|01|Dec/22/00| |S| |  |Trusted_Solaris_8_x86|i386;110763-01;|SUNWtsu:2.5.0,REV=2000.10.28.19.07;|Trusted Solaris 8_x86: labeld is not i18n compliant
    110743|01|Dec/22/00| |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;|Trusted Solaris 8: NIS(YP) account can't see assigned profiles
    110744|01|Dec/22/00| |S| |  |Trusted_Solaris_8_x86|i386;110763-01;|SUNWcsl:11.8.0,REV=2000.10.28.19.07;|Trusted Solaris 8_x86: NIS(YP) account can't see assigned profiles
    110745|01|May/30/01| | | |  |8|sparc;|SUNWdesmc:1.0,REV=2000.11.3.10.00;SUNWessmc:1.0,REV=2000.11.3.10.00;SUNWfrsmc:1.0,REV=2000.11.3.10.00;SUNWitsmc:1.0,REV=2000.11.3.10.00;SUNWsvsmc:1.0,REV=2000.11.3.10.00;|SunOS 5.8: toolbox syntax correction
    110746|01|May/30/01| | | |  |8_x86|i386;|SUNWdesmc:1.0,REV=2000.11.3.10.00;SUNWessmc:1.0,REV=2000.11.3.10.00;SUNWfrsmc:1.0,REV=2000.11.3.10.00;SUNWitsmc:1.0,REV=2000.11.3.10.00;SUNWsvsmc:1.0,REV=2000.11.3.10.00;|SunOS 5.8_x86: toolbox syntax correction
    110750|01|Jan/26/01| | | |  |8|sparc;|SUNWtcxow:8.0.0,REV=1999.12.07;|SunOS 5.8: TCX Graphics Patch
    110752|01|May/30/01| | | |  |8|sparc;|SUNWcwsrv:8.0,REV=2000.10.11.13.44;SUNWhwsrv:8.0,REV=2000.10.11.13.44;|SunOS 5.8: Uninstaller doesn't come up with error messages
    110753|01|May/30/01| | | |  |8_x86|i386;|SUNWcwsrv:8.0,REV=2000.10.11.13.39;SUNWhwsrv:8.0,REV=2000.10.11.13.39;|SunOS 5.8_x86: Uninstaller doesn't come up with error messages
    110754|03|Oct/02/01| | | |  |8|sparc;|SUNWcwbc:8.0,REV=2000.11.07.11.14;SUNWhwbc:8.0,REV=2000.11.09.14.56;SUNWkwbc:8.0,REV=2000.11.07.11.13;|SunOS 5.8: WBEM messages updates for Asian ko/zh/zh_TW locales
    110755|03|Oct/02/01| | | |  |8_x86|i386;|SUNWcwbc:8.0,REV=2000.11.07.11.09;SUNWhwbc:8.0,REV=2000.11.09.14.51;SUNWkwbc:8.0,REV=2000.11.07.11.08;|SunOS 5.8_x86: WBEM messages updates for Asian ko/zh/zh_TW locales
    110756|02|Oct/02/01| | | |  |8|sparc;|SUNWcdcl:1.0,REV=2000.11.07.16.24;SUNWhdcl:1.0,REV=2000.11.07.16.24;SUNWkdcl:1.0,REV=2000.11.07.16.24;|SunOS 5.8: DCL messages updates for Asian ko/zh/zh_TW locales
    110757|02|Oct/02/01| | | |  |8_x86|i386;|SUNWcdcl:1.0,REV=2000.11.07.16.25;SUNWhdcl:1.0,REV=2000.11.07.16.25;SUNWkdcl:1.0,REV=2000.11.07.16.25;|SunOS 5.8_x86: DCL messages updates for Asian ko/zh/zh_TW locales
    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|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
    110766|03|Aug/13/01| | | |  |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: SUNW0mp update
    110767|03|Aug/13/01| | | |  |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: SUNW0mp update
    110769|01|Dec/22/00| |S| |  |Trusted_Solaris_8|sparc;|SUNWdtwm:1.4,REV=10.2000.10.29;|Trusted Solaris 8: lock screen can have a transparent screen
    110770|01|Dec/22/00| |S| |  |Trusted_Solaris_8_x86|i386;110763-01;|SUNWdtwm:1.4,REV=10.2000.10.29;|Trusted Solaris 8_x86: lock screen can have a transparent screen
    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|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
    110800|02|Dec/06/01| | | |  |Unbundled|sparc;|SUNWrsc:2.0,REV=2000.11.24;|RSC 2.0 bug fix for intermittent reset after installation.
    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|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
    110813|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;SUNWfns:11.8.0,REV=2000.01.08.18.12;SUNWfnsx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: libxfn patch
    110814|01|May/04/01| | | |  |8_x86|i386;|SUNWcstl:11.8.0,REV=2000.01.08.18.17;SUNWfns:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: libxfn patch
    110815|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;|SunOS 5.8:  libmp patch
    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|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|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
    110831|02|May/30/01| | | |  |8|sparc.sun4u;|SUNWcvcx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /platform/SUNW,Sun-Fire-15000/kernel/drv/sparcv9/cvc pa
    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|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|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|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|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|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)
    110868|01|Feb/13/01| | | |  |Unbundled|sparc;|SUNWhsis:3.0,REV=1998.11.09;|SUNWhsis 3.0: HSI/S 3.0 driver patch (with Software CRC support)
    110869|01|Mar/21/01|R|S| |Y |7|sparc;|SUNWaccr:11.7.0,REV=1998.09.01.04.16;SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: useradd, usermod do not handle some expiration dates
    110870|01|Mar/22/01|R|S| |Y |7_x86|i386;|SUNWaccr:11.7.0,REV=1998.09.01.04.53;SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: useradd, usermod do not handle some expiration date
    110871|04|Sep/07/01| | | |  |Unbundled|sparc;|SUNWscm:1.1.19,REV=5.8.0.2000.04.24;|Data Services Core: DS 2.0/SunCluster 2.2 Patch
    110875|02|Oct/12/01| | | |  |Unbundled|sparc;|SUNWsspop:3.4.0,REV=2000.08.20.19.44;|SSP 3.4: Bringup does not verify bootproc from HPOST is in domain.
    110877|01|Mar/30/01| | | |  |Unbundled|sparc;|SUNWapr:2.3.1,REV=2000.08.25.13.45;|AP 2.3.1: /etc/apdevicetab file updated to include the Cassini ("c
    110881|01|Apr/12/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: semop() hangs due to receipt of a signal
    110882|01|Apr/12/01|R| | |  |7_x86|i386;|SUNWcsr:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: semop() hangs due to receipt of a signal
    110883|01|Aug/03/01| |S| |Y |2.6|sparc;|SUNWaccr:11.6.0,REV=1997.07.15.21.46;SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: useradd date format fixes
    110884|01|Aug/03/01| |S| |  |2.6_x86|i386;|SUNWaccr:11.6.0,REV=1997.07.16.00.21;SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: useradd date format fixes
    110885|01|Jun/06/01| | | |  |8|sparc;|SUNWjwsv:1.0,REV=2000.10.10.10.35;|SunOS 5.8: JFP Solaris Product Registry 3.0 patch
    110886|01|Jun/06/01| | | |  |8_x86|i386;|SUNWjwsv:1.0,REV=2000.10.06.18.10;|SunOS 5.8_x86: JFP Solaris Product Registry 3.0 patch
    110887|01|Feb/01/01| | | |  |Unbundled|sparc.sun4u;|SUNWism:1.0FCS1;|Media Central Streaming Server 1.0: Product patch
    110888|01|Jun/22/01| | | |  |8|sparc;|SUNWdeis:8.0,REV=1999.12.13.19.04;SUNWesis:9.0,REV=1999.12.13.19.06;SUNWfris:8.0,REV=1999.12.13.18.54;SUNWitis:8.0,REV=1999.12.13.21.30;SUNWsvis:8.0,REV=1999.12.13.19.09;|SunOS 5.8 : figgs, New and updated message strings
    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|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|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|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|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|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|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|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|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|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: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
    111009|06|Feb/15/02| | | |  |8_x86|i386;|SUNWcreg:8.0,REV=1999.12.09.08.25;SUNWcureg:8.0,REV=1999.10.12.15.13;SUNWgreg:8.0,REV=1999.12.09.08.25;SUNWhreg:8.0,REV=1999.12.16.08.24;SUNWkleu:8.0,REV=1999.12.10.08.26;SUNWkreg:8.0,REV=1999.10.22.10.13;|SunOS 5.8_x86: solregis updates/fixes for zh/ko locales
    111010|01|Apr/03/02| | | |  |Trusted_Solaris_2.5.1|||Trusted Solaris 2.5.1: Praudit core dumps reading audit records wi
    111011|01|Mar/30/01| |S| |  |Trusted_Solaris_2.5.1|||Trusted Solaris 2.5.1: No patch to prevent recursive mutex enter p
    111012|01|Mar/14/02| |S| |  |Trusted_Solaris_8|sparc;|SUNWbnuu:11.8.0,REV=2000.10.30.04.48;|Trusted Solaris 8: Buffer overflow in cu allows uucp uid access
    111013|01|Apr/08/02| |S| |  |Trusted_Solaris_8_x86|i386;110763-01;|SUNWbnuu:11.8.0,REV=2000.10.28.19.07;|Trusted Solaris 8_x86: Buffer overflow in cu allows uucp uid acces
    111015|02|Oct/17/01| | | |  |8_x86|i386;109897-06;|SUNWpsdir:1.1.0,REV=2000.01.08.18.17;SUNWrmodr:1.1.0,REV=1999.12.22.16.52;|SunOS 5.8_x86: /platform/i86pc/kernel/drv/sbpro patch
    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|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
    111030|01|Apr/12/01|R| | |  |2.6_x86|i386;|SUNWcsr:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /kernel/sys/semsys patch
    111031|01|Mar/26/01|R| | |  |2.6_x86|i386;|SUNWos86r:1.1.0,REV=1997.06.13.11.51;|SunOS 5.6_x86: adp patch
    111035|01|Aug/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;|Obsoleted by: 108528-13 SunOS 5.8: /kernel/sys/doorfs and /kernel/
    111036|01|Aug/16/01| | |O|  |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;|Obsoleted by: 108529-13 SunOS 5.8_x86: /kernel/sys/doorfs patch
    111039|02|Oct/04/01|R|S| |  |2.6|sparc;|SUNWesu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/bin/bdiff and /usr/bin/sdiff patch
    111040|02|Oct/04/01|R|S| |  |2.6_x86|i386;|SUNWesu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: /usr/bin/bdiff and /usr/bin/sdiff patch
    111041|04|Nov/05/01| | | |  |8|sparc.sun4u;108528-07;|SUNWsior:3.2,REV=1999.10.19.10.29;SUNWsiox:2.2,REV=1999.10.19.10.29;|SunOS 5.8: su and su_pnp driver patch
    111042|01|May/31/01| | | |  |7|sparc;|SUNWcadis:7.0,REV=1.0.22.9;|SunOS 5.7: "Republic of China / Taiwan" isn't one legal country na
    111043|01|Jul/11/01| | | |  |7_x86|i386;|SUNWcadis:7.0,REV=1.0.22.9;|Solaris 7_x86: "Republic of China / Taiwan" not one legal country
    111044|01|Jun/07/01| | | |  |2.6|sparc;|SUNWcadis:6.0,REV=1.0.39;|SunOS 5.6: "Republic of China / Taiwan" isn't one legal country na
    111045|01|Jun/07/01| | | |  |2.6_x86|i386;|SUNWcadis:6.0,REV=1.0.39;|SunOS 5.6_x86: "Republic of China / Taiwan" isn't one legal countr
    111048|01|Feb/22/01| | | |  |Unbundled|sparc;|SUNWsspop:3.3.0,REV=2000.01.31.13.02;|SSP 3.3: platform name may run into OS field in domain_status outp
    111049|03|Aug/16/01| | | |  |8|sparc.sun4u;|SUNWcvcr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /platform/SUNW,Ultra-Enterprise-10000/lib/cvcd patch
    111062|01|Feb/22/01| | | |  |Unbundled|sparc;|SUNWsspop:3.4.0,REV=2000.08.20.19.44;|SSP 3.4: Long platform name may run into OS field in domain_status
    111069|01|Aug/02/01|R|S| |  |8|sparc;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: bsmunconv overwrites root cron tab if cu created /tmp/r
    111070|01|Aug/02/01|R|S| |  |8_x86|i386;|SUNWcsr:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: patch /etc/security/bsmunconv
    111071|01|Mar/30/01|R|S| |  |8|sparc;|SUNWbnuu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: cu patch
    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|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|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|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|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
    111109|02|Jan/18/02|R| | |  |2.6|sparc;|SUNWesu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: Patch to /usr/bin/nawk
    111110|02|Jan/18/02|R| | |  |2.6_x86|i386;|SUNWesu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: Patch to /usr/bin/nawk
    111111|03|Mar/28/02|R| | |  |8|sparc;|SUNWcsr:11.8.0,REV=2000.01.08.18.12;SUNWesu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/nawk patch
    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|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|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|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
    111189|02|Oct/30/01| | | |  |8_x86|i386;|SUNW5leu:8.0,REV=1999.11.04.10.18;SUNWcleu:8.0,REV=1999.12.07.14.28;SUNWkleu:8.0,REV=1999.12.10.08.26;SUNWtleu:8.0,REV=1999.12.12.10.20;|SunOS 5.8_x86: Fixes for Asian locale-related problems
    111190|02|Oct/30/01| | | |  |7|sparc;|SUNW5leu:7.0,REV=1.0.22.9;SUNW5leux:7.0,REV=1.0.21;SUNWcleu:7.0,REV=1.0.22.9;SUNWcleux:7.0,REV=1.0.22.9;SUNWkleu:7.0,REV=1.0.22.9;SUNWkleux:7.0,REV=1.0.22.9;SUNWtleu:7.0,REV=1.0.21.1;SUNWtleux:7.0,REV=1.0.21.1;|SunOS 5.7: Fixes for Asian locale-related problems
    111191|02|Oct/30/01| | | |  |7_x86|i386;|SUNW5leu:7.0,REV=1.0.22.9;SUNWcleu:7.0,REV=1.0.22.9;SUNWkleu:7.0,REV=1.0.22.9;SUNWtleu:7.0,REV=1.0.21;|SunOS 5.7_x86: Fixes for Asian locale-related problems
    111192|01|May/04/01| | | |  |7|sparc;107022-08;|SUNWplow1:1.0,REV=1998.09.11.21.32;|SunOS 5.7: dtcm cannot print extended chars in Partial locales
    111193|01|May/02/01| | | |  |7_x86|i386;107023-08;|SUNWplow1:1.0,REV=1998.09.11.21.40;|SunOS 5.7_x86: dtcm cannot print extended chars in Partial locales
    111194|04|Aug/31/01| | | |  |8_x86|i386;|SUNWsregu:1.1,REV=10.1999.12.13;|SunOS 5.8_x86: Solaris user registration patch
    111195|01|May/03/01| | | |  |7|sparc;|SUNWrsgk:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: rpcsec_gss patch
    111196|01|May/03/01| | | |  |7_x86|i386;|SUNWrsgk:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: rpcsec_gss patch
    111197|02|Dec/12/01| | | |  |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/lib/nfs/mountd patch
    111198|02|Dec/12/01| | | |  |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/nfs/mountd patch
    111225|02|Dec/06/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/tail and /usr/xpg4/bin/tail patch
    111226|02|Dec/06/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/tail and /usr/xpg4/bin/tail patch
    111228|01|Mar/21/01| | | |  |Unbundled|||Hardware, Sun Blade 1000 & Sun Fire 280R, FRU Update
    111229|02|Jul/17/01| | | |  |Unbundled|||Update 2 for FFJ Community Edition 2.0
    111230|02|Jul/18/01| | | |  |Unbundled|||Update 2 for FFJ Internet Edition 2.0
    111231|04|Aug/27/01| | | |  |8|sparc;|SUNWsregu:1.1,REV=10.1999.12.13;|SunOS 5.8: Solaris user registration patch
    111232|01|Apr/25/01|R|S| |  |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: patch in.fingerd
    111233|01|Apr/25/01|R|S| |  |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: patch in.fingerd
    111234|01|Apr/25/01|R|S| |  |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: patch finger
    111235|01|Apr/25/01|R|S| |  |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: patch finger
    111236|01|May/11/01|R|S| |  |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: Patch for /usr/sbin/in.fingerd
    111237|01|May/11/01|R|S| |  |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: Patch for /usr/sbin/in.fingerd
    111238|01|May/11/01|R|S| |  |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: Patch to /usr/sbin/in.fingerd
    111239|01|May/11/01|R|S| |  |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: Patch to /usr/sbin/in.fingerd
    111240|01|May/11/01|R|S| |  |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: Patch to /usr/bin/finger
    111241|01|May/11/01|R|S| |  |2.6_x86|i386;|SUNWcsu:11.6.0,REV=1997.07.16.00.21;|SunOS 5.6_x86: Patch to /usr/bin/finger
    111242|01|May/11/01|R|S| |  |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: Patch to /usr/bin/finger
    111243|01|May/11/01|R|S| |  |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: Patch to /usr/bin/finger
    111244|02|Jul/20/01| | | |  |Unbundled|||Update 2 for Japanese FFJ Community Edition 2.0
    111245|02|Jul/19/01| | | |  |Unbundled|||Update 2 for Japanese FFJ Internet Edition 2.0
    111248|01|Apr/19/01| | | |  |Unbundled|sparc;|SUNWhwrdf:2.0.0,REV=2000.07.12;SUNWhwrdg:2.0.0,REV=1999.12.21;|SunOS 5.6: SRC/P Maintenance Update Patch II
    111249|01|Apr/19/01| | | |  |Unbundled|sparc;|SUNWhwrdf:2.0.0,REV=2000.07.12;SUNWhwrdg:2.0.0,REV=1999.12.21;|SunOS 5.7: SRC/P Maintenance Update Patch II
    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|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| | |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| | |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
    111276|01|Aug/16/01| | | |  |8_x86|i386;|SUNWd8dst:1.1,REV=1999.12.20.17.17;SUNWd8dte:1.1,REV=2000.01.05.09.48;SUNWdedst:1.1,REV=2000.01.17.14.29;SUNWdedte:1.1,REV=2000.01.17.14.25;SUNWdeis:8.0,REV=1999.12.23.13.12;SUNWdeos:11.5.1,REV=1999.12.13.19.13;SUNWdereg:1.0.0,REV=2000.01.06.16.03;SUNWdwdev:11.9,REV=2001.01.24.16.12;SUNWe8dst:1.1,REV=1999.12.20.17.21;SUNWe8dte:1.1,REV=2000.01.05.11.50;SUNWesdst:1.1,REV=1999.12.20.15.30;SUNWesdte:1.1,REV=1999.12.20.15.31;SUNWesis:9.0,REV=1999.12.13.18.54;SUNWesos:11.5.1,REV=1999.12.13.19.14;SUNWesreg:1.0.0,REV=2000.01.07.13.03;SUNWewdev:11.9,REV=2001.01.23.16.44;SUNWf8dst:1.1,REV=1999.12.20.17.12;SUNWf8dte:1.1,REV=2000.01.05.09.11;SUNWfrdst:1.1,REV=1999.12.20.15.12;SUNWfrdte:1.1,REV=1999.12.20.15.13;SUNWfris:8.0,REV=1999.12.13.19.03;SUNWfros:11.5.1,REV=1999.12.13.19.16;SUNWfrreg:1.0.0,REV=2000.01.06.16.03;SUNWfwdev:11.9,REV=2001.01.23.16.45;SUNWi8dst:1.1,REV=1999.12.20.17.15;SUNWi8dte:1.1,REV=2000.01.05.12.16;SUNWitdst:1.1,REV=1999.12.20.15.19;SUNWitdte:1.1,REV=2000.01.06.16.50;SUNWitis:8.0,REV=1999.12.23.17.31;SUNWitos:11.5.1,REV=1999.12.13.19.15;SUNWitreg:1.0.0,REV=2000.01.06.16.04;SUNWiwdev:11.9,REV=2001.01.23.16.45;SUNWs8dst:1.1,REV=1999.12.20.17.24;SUNWs8dte:1.1,REV=2000.01.05.11.58;SUNWsvdst:1.1,REV=2000.01.06.16.41;SUNWsvdte:1.1,REV=2000.01.06.16.38;SUNWsvis:8.0,REV=1999.12.23.15.13;SUNWsvos:11.5.1,REV=1999.12.17.15.00;SUNWsvreg:1.0.0,REV=2000.01.06.16.04;SUNWswdev:11.9,REV=2001.01.23.16.46;|SunOS 5.8_x86: New features Solaris 8 Update 5 European
    111277|01|Apr/19/01| | | |  |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: panics with ufs_pageio:bn==UFS_HOLE running fs_stress
    111278|01|Apr/19/01| | | |  |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: panics with ufs_pageio:bn==UFS_HOLE running fs_st
    111279|01|Apr/25/01|R|S| |  |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: in.fingerd can store a NULL after end of an array
    111280|01|Apr/25/01|R|S| |  |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: in.fingerd can store a NULL after end of an array
    111281|01|Jun/15/01|R|S| |  |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: finger doesn't always correctly match NULL usernames
    111282|01|Jun/15/01|R|S| |  |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: finger doesn't always correctly match NULL userna
    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|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;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|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|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|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: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|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|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|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
    111362|01|Apr/15/02| | | |  |Unbundled|sparc;|SUNWsspst:3.3.0,REV=2000.01.31.13.02;|SSP 3.3: ICT test "interconnect_test_cp" fails sb_conn.1 tests
    111363|01|May/16/01|R| |O|  |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|Obsoleted by: 110934-04 SunOS 5.8: /usr/sbin/installf patch
    111364|01|Aug/20/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/sbin/installf patch
    111365|04|Mar/27/02| | | |  |Unbundled|sparc;|SUNWsbuc:6.0.1,REV=Build.174;SUNWsbum:6.0.1,REV=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: Product Patch
    111368|01|May/18/01| | | |  |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/groups patch
    111369|01|Jun/15/01| | | |  |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/groups patch
    111370|01|May/16/01| | | |  |7|sparc;|SUNWesu:11.7.0,REV=1998.09.01.04.16;|SunOS 5.7: Patch to /usr/bin/last command
    111371|01|Jan/03/02| | | |  |7_x86|i386;|SUNWesu:11.7.0,REV=1998.09.01.04.53;|SunOS 5.7_x86: Patch to /usr/bin/last command
    111375|02|Nov/13/01| | | |  |Unbundled|sparc;|SUNWrte:1.1;|HPC 3.1: RTE fixes
    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|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| | |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
    111400|01|Jun/20/01| |S| |  |8|sparc;|SUNWkcsrt:1.1.2,REV=1.7;SUNWkcsrx:1.1.2,REV=1.7;|SunOS 5.8: KCMS configure tool has a security vulnerability
    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|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
    111422|01|Jul/25/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: libnvpair Patch
    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
    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
    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|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|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
    111478|01|May/09/01| | |O|  |Unbundled|sparc;|SUNWescom:3.0_Build39,REV=2.6.2000.12.05;|Obsoleted by: 110971-03 Sun Management Center 3.0 Patch to remove
    111479|01|May/09/01| | |O|  |Unbundled|sparc;|SUNWescom:3.0_Build39,REV=2.7.2000.12.05;|Obsoleted by: 110972-03 Sun Management Center 3.0 Patch to remove
    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|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|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
    111504|01|Jun/15/01|R|S| |  |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/bin/tip patch
    111505|01|Jun/15/01|R|S| |  |8_x86|i386;|SUNWcsu:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/tip patch
    111513|01|May/31/01| | | |  |Unbundled|sparc;|SUNWhsmee:3.4,REV=2000.06.22.10.55;|Storage Migrator Patch UFS
    111514|01|May/31/01| | | |  |Unbundled|sparc;|SUNWhsmee:3.4,REV=2000.06.22.10.55;|Storage Migrator Patch VxFS
    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|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|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
    111562|02|Mar/22/02| | | |  |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: /usr/lib/librt.so.1 patch
    111563|01|Jun/19/01| | | |  |8_x86|i386;|SUNWcsl:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/lib/librt.so.1 patch
    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|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|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|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|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|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|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|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|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;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;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
    111666|01|Jun/29/01|R| | |  |7|sparc;|SUNWswmt:11.7,REV=1998.09.10.20.16;|SunOS 5.7: bzip patch
    111667|01|Jun/29/01|R| | |  |7_x86|i386;|SUNWswmt:11.7,REV=1998.09.10.20.17;|SunOS 5.7_x86: bzip patch
    111668|01|Jul/20/01| | | |  |Unbundled|sparc;111670-01;|SPROpls:6.1;|PerfLib 3.1: Patch for Performance Library 3.1 (libsunperf)
    111669|01|Jul/20/01| | | |  |Unbundled|sparc;111670-01;|SPROpl:6.1;|PerfLib 3.1: Patch for Performance Library 3.1 (libsunperf)
    111670|01|Jul/20/01| | | |  |Unbundled|sparc;|SPROplg:6.1;|PerfLib 3.1: Patch for Performance Library 3.1 (libsunperf)
    111671|01|Jul/20/01| | | |  |Unbundled|sparc;111670-01;|SPROplm:6.1;|PerfLib 3.1: Patch for Performance Library 3.1 (libsunperf)
    111672|01|Jul/20/01| | | |  |Unbundled|sparc;111670-01;|SPROplms:6.1;|PerfLib 3.1: Patch for Performance Library 3.1 (libsunperf)
    111673|01|Jul/20/01| | | |  |Unbundled|sparc;111670-01;|SPROplmsx:6.1;|PerfLib 3.1: Patch for Performance Library 3.1 (libsunperf)
    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|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|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|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|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
    111776|01|Aug/30/01| | | |  |8_x86|i386;|SUNWdclnt:1.0,REV=2000.10.25.13.03;|SunOS 5.8_x86: smdiskless patch
    111777|01|Aug/30/01| | | |  |8|sparc;|SUNWdclnt:1.0,REV=2000.10.25.13.07;|SunOS 5.8: smosservice patch
    111778|01|Aug/30/01| | | |  |8_x86|i386;|SUNWdclnt:1.0,REV=2000.10.25.13.03;|SunOS 5.8_x86: smosservice patch
    111780|01|Aug/08/01| | |O|  |8|sparc;|SUNWpppdu:11.8.0,REV=2001.02.21.14.02;|Obsoleted by: 111299-02 SunOS 5.8: /usr/bin/pppd patch
    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|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|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: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|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|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|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|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
    111841|01|Aug/15/01|R|S| |  |2.5.1_x86|i386;|SUNWcsu:11.5.1,REV=96.05.02.19.23;|SunOS 5.5.1_x86: Buffer overflow in whodo via $TZ
    111842|01|Aug/27/01|R| | |  |2.5.1|sparc;|SUNWesu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: nawk line length limit corrupts patch dependency
    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|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|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|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|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|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|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|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: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|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: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|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| | |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|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|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|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
    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
    112035|01|Jan/08/02| | | |  |Unbundled|108974-15;||Hardware: Seagate ST39120A firmware upgrade from 3.11 to 3.13
    112036|02|Jan/25/02| | | |  |8|sparc;|SUNWuxlcf:1.5,REV=1999.12.03.14.40;SUNWuxlcx:1.5,REV=1999.12.03.14.40;|SunOS 5.8: en_US.UTF-8 locale XI18N patch
    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
    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|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|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
    112071|01|Oct/15/01|R|S| |  |2.5_x86|i386;|SUNWesu:11.5.1,REV=95.10.27.15.21;|SunOS 5.5_x86: bdiff and sdiff Patches
    112073|03|Feb/01/02|R|S| |  |2.6|sparc;|SUNWcsu:11.6.0,REV=1997.07.15.21.46;|SunOS 5.6: /usr/bin/mailx patch
    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|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.
    112086|03|Jan/28/02|R|S| |  |2.5.1|sparc;|SUNWcsu:11.5.1,REV=96.05.02.21.09;|SunOS 5.5.1: /usr/bin/mailx security problem
    112087|03|Feb/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/mailx patch
    112090|01|Oct/17/01| | | |  |Unbundled|sparc;|SUNWSMSop:1.1.0,REV=2001.08.23.05.08;|SMS 1.1: DFRU does not format pre-existing FD segment
    112091|03|Nov/14/01| | | |  |Unbundled|sparc;|SUNWSMSop:1.1.0,REV=2001.08.23.05.08;|SMS 1.1: PCD allows SMS client mark board unassigned if marked act
    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|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|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|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|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: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;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
    112145|01|Feb/22/02| | | |  |8_x86|i386;|SUNWdews2:2.1.0,REV=2000.10.30.14.13;SUNWesws2:2.1.0,REV=2000.10.30.14.13;SUNWfrws2:2.1.0,REV=2000.10.30.14.11;SUNWitws2:2.1.0,REV=2000.10.30.14.13;SUNWsvws2:2.1.0,REV=2000.10.30.14.14;|SunOS 5.8_x86: Packaging error in European Solaris Product Registr
    112147|01|Oct/18/01| | | |  |Unbundled|sparc;|SUNWSMSop:1.1.0,REV=2001.08.23.05.08;|SMS 1.1: ssd occasionally fails to handle start/stop requests
    112148|01|Nov/20/01| | | |  |Unbundled|sparc;108261-08;|SUNWnetbp:3.2GA;|Netbackup 3.2 Java GUI re-release
    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|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|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|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|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|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|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|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|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|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|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| | |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|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|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|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|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|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|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
    112369|01|Feb/15/02| | | |  |8|sparc.sun4u;|SUNWcar:11.8.0,REV=2000.01.08.18.12;SUNWcarx:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: environ driver patch
    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|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|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|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|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|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| | |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|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|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|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|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|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|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: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
    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| | |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|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|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
    112582|01|Feb/26/02| |S|O|  |Unbundled|sparc;110862-04;|SUNWesagt:3.0_Build41,REV=2.5.2000.12.19;|Obsoleted by: 110862-05 Sun Management Center Patch for the snmpv1
    112583|01|Feb/26/02| |S|O|  |Unbundled|sparc;110936-05;|SUNWesagt:3.0_Build41,REV=2.6.2000.12.19;|Obsoleted by: 110936-06 Sun Management Center Patch for the snmpv1
    112584|01|Feb/26/02| |S|O|  |Unbundled|sparc;110937-05;|SUNWesagt:3.0_Build41,REV=2.7.2000.12.19;|Obsoleted by: 110937-06 Sun Management Center Patch for the snmpv1
    112585|01|Feb/26/02| |S|O|  |Unbundled|sparc;110938-05;|SUNWesagt:3.0_Build41,REV=2.8.2000.12.19;|Obsoleted by: 110938-06 Sun Management Center Patch for the snmpv1
    112586|01|Mar/07/02| |S|O|  |Unbundled|sparc;110861-04;|SUNWesagt:3.0_Build39,REV=2.5.2000.12.08;|Obsoleted by: 110861-05 Sun Management Center Patch for the snmpv1
    112587|01|Mar/07/02| |S|O|  |Unbundled|sparc;110971-05;|SUNWesagt:3.0_Build39,REV=2.6.2000.12.08;|Obsoleted by: 110971-06 Sun Management Center Patch for the snmpv1
    112588|01|Mar/07/02| |S|O|  |Unbundled|sparc;110972-05;|SUNWesagt:3.0_Build39,REV=2.7.2000.12.08;|Obsoleted by: 110972-06 Sun Management Center Patch for the snmpv1
    112589|01|Mar/07/02| |S|O|  |Unbundled|sparc;110973-05;|SUNWesagt:3.0_Build39,REV=2.8.2000.12.08;|Obsoleted by: 110973-06 Sun Management Center Patch for the snmpv1
    112590|01|Apr/01/02|R| | |  |7|sparc;|SUNWcsu:11.7.0,REV=1998.10.06.00.59;|SunOS 5.7: fgrep Patch
    112591|01|Apr/01/02|R| | |  |7_x86|i386;|SUNWcsu:11.7.0,REV=1998.10.06.01.22;|SunOS 5.7_x86: fgrep Patch
    112592|01|Mar/04/02| |S|O|  |Unbundled|sparc;109698-04;|SUNWesagt:2.1.1_Build05,REV=2.5.2000.01.12;|Obsoleted by: 109698-05 SunMC 2.1.1 Patch for the snmp security vu
    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|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|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|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
    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
    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
    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
    112669|01|May/14/02|R|S| |  |8_x86|i386;|SUNWgzip:11.8.0,REV=2000.01.08.18.17;|SunOS 5.8_x86: /usr/bin/gzip patch
    112670|01|May/10/02| | | |  |8|sparc;|SUNWcsu:11.8.0,REV=2000.01.08.18.12;|SunOS 5.8: /usr/sbin/clinfo patch
    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: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|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|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|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: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
    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|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|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: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
    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.3/systems/SunOS/5/5.8/signatures0000644000175000017500000000461307722712467016604 0ustar  pacopaco#
    # Signature file for SunOS 5.8 sun4u, generated Tue Aug 13 08:28:44 EDT 2002
    #
    #@DEST=SunOS/5/5.8
    #@CONFIG=SunOS/5
    Y .       /usr/bin/sh 14d01e2d2921eed7748196e9011f7294 SunOS 5.8
    Y .       /sbin/sh 839ff0dee1a727adf8cb5899db940fea SunOS 5.8
    Y .       /usr/bin/csh 00e416f3d48289c0e192a202450c9ada SunOS 5.8
    Y .       /usr/bin/ksh 32ad9d09e5eef66fadb61e35ef5a357a SunOS 5.8
    Y .       /usr/bin/login 722453384d08a4334c9899f1de5af13c SunOS 5.8
    Y .       /usr/bin/su 025b86eec6c2bf66bf1d86b23ecc5a2e SunOS 5.8
    Y .       /usr/bin/passwd 273655918cbf9d7c91446be42d139b9c SunOS 5.8
    Y .       /usr/sbin/in.fingerd 930df24cd21160b64f0a6f20d111633b SunOS 5.8
    # fingerd not found.
    Y .       /usr/sbin/in.ftpd 171644aaf4cc6434b1c9209f4b745748 SunOS 5.8
    # ftpd not found.
    Y .       /usr/sbin/in.rexecd a87cbac9afcc06de574f563fe628d2f1 SunOS 5.8
    # rexecd not found.
    Y .       /usr/sbin/in.rlogind 46c1c2ba01e36c8264a3d25c4097bc98 SunOS 5.8
    # rlogind not found.
    Y .       /usr/sbin/in.rshd c2d9bbc6eef5f52ad5422ba8c984ff9b SunOS 5.8
    # rshd not found.
    Y .       /usr/sbin/in.telnetd 3c808b3aef2b67d1f35839295e979f2a SunOS 5.8
    # telnetd not found.
    Y .       /usr/sbin/in.tftpd fb8cc175cce88896106b0c8ec6278899 SunOS 5.8
    # tftpd not found.
    Y .       /usr/sbin/in.uucpd af91cc0c61910ee45c3b524884eb514b SunOS 5.8
    # uucpd not found.
    Y .       /usr/lib/netsvc/yp//rpc.yppasswdd efe0b8098c2bf82a01ae3cf05b3268f0 SunOS 5.8
    # rpc.passwd not found.
    # portmap not found.
    Y .       /usr/lib/netsvc/yp//ypserv d2c56c310ad379b91f4a25dab26eeaa5 SunOS 5.8
    Y .       /usr/lib/netsvc/yp//ypxfrd 36ff533499effc666307ebc1869dfbad SunOS 5.8
    Y .       /usr/lib/netsvc/yp//ypbind 991795c1d7ea989ec62cae060f2b8b84 SunOS 5.8
    Y .       /usr/lib/sendmail cf109d5a217264d349b2019c0318d219 SunOS 5.8
    # sendmail.mx not found.
    Y .       /usr/bin/rdist 42c6acbbffa11e8ce76c9459675a7f4b SunOS 5.8
    Y .       /usr/bin/rlogin b76b06124a83abcab75707c55d4a3ec4 SunOS 5.8
    Y .       /usr/bin/rsh b6ee7579f76c5a1ed52d6f37b4295832 SunOS 5.8
    Y .       /usr/lib/rsh 14d01e2d2921eed7748196e9011f7294 SunOS 5.8
    Y .       /usr/bin/telnet ca14dbb0272fe11cd4db7074b25c7268 SunOS 5.8
    Y .       /usr/bin/lpstat 663b311477f802be785535e9c96a41dd SunOS 5.8
    Y .       /usr/ucb/lpc 5b7cb5222b07a4aa977a30e774436829 SunOS 5.8
    # lpd not found.
    # lpr not found.
    # lprm not found.
    # lpd not found.
    # in.lpd not found.
    # rpc.mountd not found.
    Y .       /usr/lib/expreserve f671f3ef321e5903019a1860ff18899a SunOS 5.8
    tiger-3.2.3/systems/SunOS/5/5.8/suid_list0000644000175000017500000000324307722712467016415 0ustar  pacopaco/etc/lp/alerts/printer
    /sbin/su
    /sbin/sulogin
    /usr/bin/admintool
    /usr/bin/at
    /usr/bin/atq
    /usr/bin/atrm
    /usr/bin/cancel
    /usr/bin/chkey
    /usr/bin/crontab
    /usr/bin/ct
    /usr/bin/cu
    /usr/bin/eject
    /usr/bin/fd_format
    /usr/bin/fdformat
    /usr/bin/keylogin
    /usr/bin/kgmon
    /usr/bin/login
    /usr/bin/lp
    /usr/bin/lpset
    /usr/bin/lpstat
    /usr/bin/newgrp
    /usr/bin/nispasswd
    /usr/bin/passwd
    /usr/bin/ps
    /usr/bin/rcp
    /usr/bin/rdist
    /usr/bin/rlogin
    /usr/bin/rsh
    /usr/bin/sparcv7/ps
    /usr/bin/sparcv7/uptime
    /usr/bin/sparcv7/w
    /usr/bin/su
    /usr/bin/tip
    /usr/bin/uptime
    /usr/bin/uucp
    /usr/bin/uuglist
    /usr/bin/uuname
    /usr/bin/uustat
    /usr/bin/uux
    /usr/bin/volcheck
    /usr/bin/volrmmount
    /usr/bin/w
    /usr/bin/yppasswd
    /usr/dt/bin/dtaction
    /usr/dt/bin/dtappgather
    /usr/dt/bin/dtprintinfo
    /usr/dt/bin/dtsession
    /usr/dt/bin/sdtcm_convert
    /usr/lib/acct/accton
    /usr/lib/expreserve
    /usr/lib/exrecover
    /usr/lib/fs/ufs/quota
    /usr/lib/fs/ufs/ufsdump
    /usr/lib/fs/ufs/ufsrestore
    /usr/lib/lp/bin/netpr
    /usr/lib/pt_chmod
    /usr/lib/sendmail
    /usr/lib/sendmail.mx
    /usr/lib/utmp_update
    /usr/lib/uucp/remote.unknown
    /usr/lib/uucp/uucico
    /usr/lib/uucp/uusched
    /usr/lib/uucp/uuxqt
    /usr/local/bin/ssh1
    /usr/net/servers/rfs/rfsetup
    /usr/openwin/bin/ff.core
    /usr/openwin/bin/kcms_calibrate
    /usr/openwin/bin/kcms_configure
    /usr/openwin/bin/loadmodule
    /usr/openwin/bin/sys-suspend
    /usr/openwin/bin/xlock
    /usr/openwin/lib/mkcookie
    /usr/sbin/allocate
    /usr/sbin/deallocate
    /usr/sbin/list_devices
    /usr/sbin/lpmove
    /usr/sbin/mkdevalloc
    /usr/sbin/mkdevmaps
    /usr/sbin/nsquery
    /usr/sbin/ping
    /usr/sbin/pmconfig
    /usr/sbin/sacadm
    /usr/sbin/sparcv7/whodo
    /usr/sbin/static/rcp
    /usr/sbin/traceroute
    /usr/sbin/whodo
    /usr/ucb/ps
    /usr/ucb/sparcv7/ps
    /usr/vmsys/bin/chkperm
    tiger-3.2.3/systems/SunOS/5/5.9/0000755000175000017500000000000011306441064014453 5ustar  pacopacotiger-3.2.3/systems/SunOS/5/5.9/services0000644000175000017500000000227607722712467016247 0ustar  pacopacoNeWS 144/tcp
    biff 512/udp
    bootpc 68/udp
    bootps 67/udp
    chargen 19/tcp
    chargen 19/udp
    courier 530/tcp
    csnet-ns 105/tcp
    cvc 1495/tcp
    cvc_hostd 442/tcp
    daytime 13/tcp
    daytime 13/udp
    discard 9/tcp
    discard 9/udp
    domain 53/tcp
    domain 53/udp
    dtspc 6112/tcp
    echo 7/tcp
    echo 7/udp
    eklogin 2105/tcp
    exec 512/tcp
    finger 79/tcp
    fs 7100/tcp
    ftp 21/tcp
    ftp-data 20/tcp
    hostnames 101/tcp
    imap 143/tcp
    ingreslock 1524/tcp
    iso-tsap 102/tcp
    kerberos 750/tcp
    kerberos 750/udp
    kerberos-adm 749/tcp
    kerberos-adm 749/udp
    klogin 543/tcp
    krb5_prop 754/tcp
    ldap 389/tcp
    ldap 389/udp
    ldaps 636/tcp
    ldaps 636/udp
    link 87/tcp
    listen 2766/tcp
    lockd 4045/tcp
    lockd 4045/udp
    login 513/tcp
    monitor 561/udp
    name 42/udp
    netstat 15/tcp
    new-rwho 550/udp
    nfsd 2049/tcp
    nfsd 2049/udp
    nntp 119/tcp
    ntp 123/tcp
    ntp 123/udp
    pcserver 600/tcp
    pop2 109/tcp
    pop3 110/tcp
    printer 515/tcp
    rje 77/tcp
    rmonitor 560/udp
    route 520/udp
    shell 514/tcp
    smtp 25/tcp
    sunrpc 111/tcp
    sunrpc 111/udp
    supdup 95/tcp
    syslog 514/udp
    systat 11/tcp
    talk 517/udp
    tcpmux 1/tcp
    telnet 23/tcp
    tftp 69/udp
    time 37/tcp
    time 37/udp
    ufsd 1008/tcp
    ufsd 1008/udp
    uucp 540/tcp
    uucp-path 117/tcp
    who 513/udp
    whois 43/tcp
    www-ldap-gw 1760/tcp
    www-ldap-gw 1760/udp
    x400 103/tcp
    x400-snd 104/tcp
    tiger-3.2.3/systems/SunOS/5/5.9/config0000644000175000017500000001147410223076307015653 0ustar  pacopaco# -*- 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.3/systems/SunOS/5/5.9/inetd0000644000175000017500000001607207722712467015526 0ustar  pacopaco#ident	"@(#)inetd.conf	1.50	02/02/10 SMI"
    #
    #
    #
    # Configuration file for inetd(1M).  See inetd.conf(4).
    #
    # To re-configure the running inetd process, edit this file, then
    # send the inetd process a SIGHUP.
    #
    # Syntax for socket-based Internet services:
    #        
    #
    # Syntax for TLI-based Internet services:
    #
    #   tli     
    #
    # IPv6 and inetd.conf
    # By specifying a  value of tcp6 or udp6 for a service, inetd will
    # pass the given daemon an AF_INET6 socket.  The following daemons have
    # been modified to be able to accept AF_INET6 sockets
    #
    #	ftp telnet shell login exec tftp finger printer
    #
    # and service connection requests coming from either IPv4 or IPv6-based
    # transports.  Such modified services do not normally require separate
    # configuration lines for tcp or udp.  For documentation on how to do this
    # for other services, see the Solaris System Administration Guide.
    #
    # You must verify that a service supports IPv6 before specifying  as
    # tcp6 or udp6.  Also, all inetd built-in commands (time, echo, discard,
    # daytime, chargen) require the specification of  as tcp6 or udp6
    #
    # The remote shell server (shell) and the remote execution server
    # (exec) must have an entry for both the "tcp" and "tcp6"  values.
    #
    # Ftp and telnet are standard Internet services.
    #
    pop3	stream	tcp	nowait root	/usr/sbin/tcpd		/usr/sbin/imapd
    imap	stream	tcp	nowait	root	/usr/sbin/tcpd		/usr/sbin/ipop3d
    ftp	stream	tcp	nowait	root	/usr/sbin/tcpd		/usr/sbin/in.ftpd
    ftp	stream	tcp6	nowait	root	/usr/sbin/in.ftpd	in.ftpd
    telnet	stream	tcp	nowait	root	/usr/sbin/tcpd		/usr/sbin/in.telnetd	
    telnet	stream	tcp6	nowait	root	/usr/sbin/in.telnetd	in.telnetd
    #
    
    # Tnamed serves the obsolete IEN-116 name server protocol.
    #
    name	dgram	udp	wait	root	/usr/sbin/in.tnamed	in.tnamed
    #
    # Shell, login, exec, comsat and talk are BSD protocols.
    #
    #shell	stream	tcp	nowait	root	/usr/sbin/in.rshd	in.rshd
    #login	stream	tcp6	nowait	root	/usr/sbin/in.rlogind	in.rlogind
    #exec	stream	tcp	nowait	root	/usr/sbin/in.rexecd	in.rexecd
    #comsat	dgram	udp	wait	root	/usr/sbin/in.comsat	in.comsat
    #talk	dgram	udp	wait	root	/usr/sbin/in.talkd	in.talkd
    #
    # Must run as root (to read /etc/shadow); "-n" turns off logging in utmp/wtmp.
    #
    #uucp	stream	tcp	nowait	root	/usr/sbin/in.uucpd	in.uucpd
    #
    # Tftp service is provided primarily for booting.  Most sites run this
    # only on machines acting as "boot servers." 
    #
    #tftp	dgram	udp6	wait	root	/usr/sbin/in.tftpd	in.tftpd -s /tftpboot
    #
    # Finger, systat and netstat give out user information which may be
    # valuable to potential "system crackers."  Many sites choose to disable 
    # some or all of these services to improve security.
    #
    #finger	stream	tcp6	nowait	nobody	/usr/sbin/in.fingerd	in.fingerd
    #systat	stream	tcp	nowait	root	/usr/bin/ps		ps -ef
    #netstat	stream	tcp	nowait	root	/usr/bin/netstat 	netstat -f inet
    #
    # Time service is used for clock synchronization.
    #
    #time	stream	tcp6	nowait	root	internal
    #time	dgram	udp6	wait	root	internal
    # 
    # Echo, discard, daytime, and chargen are used primarily for testing.
    #
    #echo	stream	tcp6	nowait	root	internal
    #echo	dgram	udp6	wait	root	internal
    #discard	stream	tcp6	nowait	root	internal
    #discard	dgram	udp6	wait	root	internal
    #daytime	stream	tcp6	nowait	root	internal
    #daytime	dgram	udp6	wait	root	internal
    #chargen	stream	tcp6	nowait	root	internal
    #chargen	dgram	udp6	wait	root	internal
    #
    #
    # RPC services syntax:
    #  /  rpc/   \
    #   
    #
    #  can be either "tli" or "stream" or "dgram".
    # For "stream" and "dgram" assume that the endpoint is a socket descriptor.
    #  can be either a nettype or a netid or a "*". The value is
    # first treated as a nettype. If it is not a valid nettype then it is
    # treated as a netid. The "*" is a short-hand way of saying all the
    # transports supported by this system, ie. it equates to the "visible"
    # nettype. The syntax for  is:
    #	*||{[,]}
    # For example: 
    # dummy/1	tli	rpc/circuit_v,udp	wait	root	/tmp/test_svc	test_svc
    #
    # Solstice system and network administration class agent server
    #100232/10	tli	rpc/udp	wait root /usr/sbin/sadmind	sadmind
    #
    # Rquotad supports UFS disk quotas for NFS clients
    #
    #rquotad/1	tli	rpc/datagram_v	wait root /usr/lib/nfs/rquotad	rquotad
    #
    # The rusers service gives out user information.  Sites concerned
    # with security may choose to disable it.
    #
    #rusersd/2-3	tli	rpc/datagram_v,circuit_v	wait root /usr/lib/netsvc/rusers/rpc.rusersd	rpc.rusersd
    #
    # The spray server is used primarily for testing.
    #
    #sprayd/1	tli	rpc/datagram_v	wait root /usr/lib/netsvc/spray/rpc.sprayd	rpc.sprayd
    #
    # The rwall server allows others to post messages to users on this machine.
    #
    #walld/1		tli	rpc/datagram_v	wait root /usr/lib/netsvc/rwall/rpc.rwalld	rpc.rwalld
    #
    # Rstatd is used by programs such as perfmeter.
    #
    # rstatd/2-4	tli   rpc/datagram_v wait root /usr/lib/netsvc/rstat/rpc.rstatd rpc.rstatd
    #
    # The rexd server provides only minimal authentication and is often not run
    #
    #rexd/1          tli  rpc/tcp wait root /usr/sbin/rpc.rexd     rpc.rexd
    #
    # rpc.cmsd is a data base daemon which manages calendar data backed
    # by files in /var/spool/calendar
    #
    #100068/2-4	dgram	rpc/udp	wait root /usr/openwin/bin/rpc.cmsd	rpc.cmsd
    #
    # Sun ToolTalk Database Server
    #
    #100083/1	tli  rpc/tcp wait root /usr/dt/bin/rpc.ttdbserverd rpc.ttdbserverd
    #
    #
    #
    # Sun KCMS Profile Server
    #
    #100221/1	tli	rpc/tcp	wait root /usr/openwin/bin/kcms_server	kcms_server
    #
    # Sun Font Server
    #
    #fs		stream	tcp	wait nobody /usr/openwin/lib/fs.auto	fs
    #bootps       dgram  udp wait   root /usr/sbin/bootpd   bootpd
    
    # Test RSync service
    # rsync   stream tcp      nowait  root    /usr/bin/rsync          rsyncd --daemon
    
    bpcd	stream	tcp	nowait	root	/usr/openv/netbackup/bin/bpcd bpcd
    vopied	stream	tcp	nowait	root	/usr/openv/bin/vopied vopied
    bpjava-msvc	stream	tcp	nowait	root	/usr/openv/netbackup/bin/bpjava-msvc bpjava-msvc -transient
    
    # Updated by secure-it on Tue Jun 11 22:44:11 EDT 2002
    #
    # CacheFS Daemon
    #
    100235/1 tli rpc/ticotsord wait root /usr/lib/fs/cachefs/cachefsd cachefsd
    # OCFSERV - OCF (Smart card) Daemon
    100150/1	tli	rpc/ticotsord	wait	root	/usr/sbin/ocfserv	ocfserv
    #dtspc stream tcp nowait root /usr/dt/bin/dtspcd /usr/dt/bin/dtspcd
    #100068/2-5 dgram rpc/udp wait root /usr/dt/bin/rpc.cmsd rpc.cmsd
    # METAD - SLVM metadb Daemon
    100229/1	tli	rpc/tcp	wait	root	/usr/sbin/rpc.metad	rpc.metad
    # METAMHD - SLVM HA Daemon
    100230/1	tli	rpc/tcp	wait	root	/usr/sbin/rpc.metamhd	rpc.metamhd
    # METAMEDD - SLVM Mediator Daemon
    100242/1	tli	rpc/tcp	wait	root	/usr/sbin/rpc.metamedd	rpc.metamedd
    # LPD - Print Protocol Adaptor (BSD listener)
    printer	stream	tcp6	nowait	root	/usr/lib/print/in.lpd	in.lpd
    # GSSD - GSS Daemon
    100234/1	tli	rpc/ticotsord	wait	root	/usr/lib/gss/gssd gssd
    # smserverd to support removable media devices
    100155/1	tli	rpc/ticotsord	wait	root	/usr/lib/smedia/rpc.smserverd rpc.smserverd
    # KTKT_WARND - Kerberos V5 Warning Messages Daemon
    100134/1	tli	rpc/ticotsord	wait	root	/usr/lib/krb5/ktkt_warnd ktkt_warnd
    tiger-3.2.3/systems/SunOS/5/5.9/signatures0000644000175000017500000000424507722712467016606 0ustar  pacopaco#
    # Signature file for SunOS 5.9 sun4u, generated Mon Aug 12 15:14:46 EDT 2002
    #
    #@DEST=SunOS/5/5.9
    #@CONFIG=SunOS/5
    Y .       /usr/bin/sh fccecdca8a2543f7b8f7b306a9365f9a SunOS 5.9
    Y .       /sbin/sh fedad4a9c613cb7e4d4a2822c2340582 SunOS 5.9
    Y .       /usr/bin/csh 311eca11e7b1db0268627154021253f9 SunOS 5.9
    Y .       /usr/bin/ksh add15bc85df32635a6ea2b3cc42b1249 SunOS 5.9
    Y .       /usr/bin/login 45311dbc72e3a021eb25c21cf5cbb83d SunOS 5.9
    Y .       /usr/bin/su 2304d7ee650512ed3c61f74a2ceb76f1 SunOS 5.9
    Y .       /usr/bin/passwd bfb18b94bbfa88896bcf8c4be28b29c5 SunOS 5.9
    Y .       /usr/sbin/in.fingerd 0eae4a06393bd0b956526596d4692012 SunOS 5.9
    # fingerd not found.
    Y .       /usr/sbin/in.ftpd 7ae8a3453c54ae3f85057a5159b5d0bd SunOS 5.9
    # ftpd not found.
    Y .       /usr/sbin/in.rexecd 7743c37464d29985c046cd5395873ba7 SunOS 5.9
    # rexecd not found.
    Y .       /usr/sbin/in.rlogind f0be4aedf97a24ef98b2706d05bbea5c SunOS 5.9
    # rlogind not found.
    Y .       /usr/sbin/in.rshd 31b66df6940c6be7f0ac1ac5dc05fc55 SunOS 5.9
    # rshd not found.
    Y .       /usr/sbin/in.telnetd a89438a4f923eec82eeb91665c9130da SunOS 5.9
    # telnetd not found.
    Y .       /usr/sbin/in.tftpd 1ceaad61029ebe3239f5be361bd6d87a SunOS 5.9
    # tftpd not found.
    # in.uucpd not found.
    # uucpd not found.
    # rpc.yppasswdd not found.
    # rpc.passwd not found.
    # portmap not found.
    # ypserv not found.
    # ypxfrd not found.
    Y .       /usr/lib/netsvc/yp//ypbind 60d2f050ca1dc22e32aea4a7fec238ac SunOS 5.9
    Y .       /usr/lib/sendmail 45cce3e903a22dade31dac3702d9e848 SunOS 5.9
    # sendmail.mx not found.
    Y .       /usr/bin/rdist ddbfd9daf32d57b41887de06c5f02159 SunOS 5.9
    Y .       /usr/bin/rlogin f2e3c265d896b226165a007023535b38 SunOS 5.9
    Y .       /usr/bin/rsh eee4155f2b21587a8b6313eabcbcf00d SunOS 5.9
    Y .       /usr/lib/rsh fccecdca8a2543f7b8f7b306a9365f9a SunOS 5.9
    Y .       /usr/bin/telnet 5d35373d9e923dc34c2dfb790bae1cf6 SunOS 5.9
    Y .       /usr/bin/lpstat cdc33e39beb3dac90fe34e1d12a64667 SunOS 5.9
    Y .       /usr/ucb/lpc 6d2f7117d0bd3686072981edc0e47a7a SunOS 5.9
    # lpd not found.
    # lpr not found.
    # lprm not found.
    # lpd not found.
    # in.lpd not found.
    # rpc.mountd not found.
    Y .       /usr/lib/expreserve 5dff562ee8ecfd6d63848b34ecadb9bd SunOS 5.9
    tiger-3.2.3/systems/SunOS/5/5.9/suid_list0000644000175000017500000000324307722712467016416 0ustar  pacopaco/etc/lp/alerts/printer
    /sbin/su
    /sbin/sulogin
    /usr/bin/admintool
    /usr/bin/at
    /usr/bin/atq
    /usr/bin/atrm
    /usr/bin/cancel
    /usr/bin/chkey
    /usr/bin/crontab
    /usr/bin/ct
    /usr/bin/cu
    /usr/bin/eject
    /usr/bin/fd_format
    /usr/bin/fdformat
    /usr/bin/keylogin
    /usr/bin/kgmon
    /usr/bin/login
    /usr/bin/lp
    /usr/bin/lpset
    /usr/bin/lpstat
    /usr/bin/newgrp
    /usr/bin/nispasswd
    /usr/bin/passwd
    /usr/bin/ps
    /usr/bin/rcp
    /usr/bin/rdist
    /usr/bin/rlogin
    /usr/bin/rsh
    /usr/bin/sparcv7/ps
    /usr/bin/sparcv7/uptime
    /usr/bin/sparcv7/w
    /usr/bin/su
    /usr/bin/tip
    /usr/bin/uptime
    /usr/bin/uucp
    /usr/bin/uuglist
    /usr/bin/uuname
    /usr/bin/uustat
    /usr/bin/uux
    /usr/bin/volcheck
    /usr/bin/volrmmount
    /usr/bin/w
    /usr/bin/yppasswd
    /usr/dt/bin/dtaction
    /usr/dt/bin/dtappgather
    /usr/dt/bin/dtprintinfo
    /usr/dt/bin/dtsession
    /usr/dt/bin/sdtcm_convert
    /usr/lib/acct/accton
    /usr/lib/expreserve
    /usr/lib/exrecover
    /usr/lib/fs/ufs/quota
    /usr/lib/fs/ufs/ufsdump
    /usr/lib/fs/ufs/ufsrestore
    /usr/lib/lp/bin/netpr
    /usr/lib/pt_chmod
    /usr/lib/sendmail
    /usr/lib/sendmail.mx
    /usr/lib/utmp_update
    /usr/lib/uucp/remote.unknown
    /usr/lib/uucp/uucico
    /usr/lib/uucp/uusched
    /usr/lib/uucp/uuxqt
    /usr/local/bin/ssh1
    /usr/net/servers/rfs/rfsetup
    /usr/openwin/bin/ff.core
    /usr/openwin/bin/kcms_calibrate
    /usr/openwin/bin/kcms_configure
    /usr/openwin/bin/loadmodule
    /usr/openwin/bin/sys-suspend
    /usr/openwin/bin/xlock
    /usr/openwin/lib/mkcookie
    /usr/sbin/allocate
    /usr/sbin/deallocate
    /usr/sbin/list_devices
    /usr/sbin/lpmove
    /usr/sbin/mkdevalloc
    /usr/sbin/mkdevmaps
    /usr/sbin/nsquery
    /usr/sbin/ping
    /usr/sbin/pmconfig
    /usr/sbin/sacadm
    /usr/sbin/sparcv7/whodo
    /usr/sbin/static/rcp
    /usr/sbin/traceroute
    /usr/sbin/whodo
    /usr/ucb/ps
    /usr/ucb/sparcv7/ps
    /usr/vmsys/bin/chkperm
    tiger-3.2.3/systems/SunOS/NOTES.txt0000644000175000017500000000210507650715541015436 0ustar  pacopaco
    Notes for SunOS / Solaris
    -------------------------
    
    Sun provides the following information that can be useful
    for local security testing:
    
    - The Solaris (tm) Fingerpint Database (sfpDB)
      http://sunsolve.sun.com/pub-cgi/fileFingerprints.pl
      which can be used to determine if system binaries have been
      compromised.
      Some tools have been released by Glenn Brunette and Brad Powell
      (sfpDB Companion and sfpDB Sidekick) and are availabe at
      http://www.sun.com/blueprint/tools
      (there is currently a Web inteface, but probably the full content
      will be published someday)
    
    - The Patchdiag Cross Reference tool. The file patchdiag.xref can be
      downloaded from 
      http://sunsolve.sun.com/pub-cgi/patchDownload.pl?target=patchdiag.xref&method=H
    
    The following scripts have not been tested fully yet and are 
    provided as sample:
    
    - check_listeningprocs: determine listening proccesses using
    	PFILES instead of NETSTAT or LSOF (in order to dermine
    	which processeses or users are runing the listeners)
    
    - check_patches: determine if the patches of the system needed
    	are properly installed.
    tiger-3.2.3/systems/SunOS/gen_cron0000755000175000017500000000337507531433121015524 0ustar  pacopaco#!/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 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/gen_cron - 06/14/93
    #
    # SunOS/gen_cron - 08/12/2002 - jfs - Fixed so that it works standalone
    #
    #-----------------------------------------------------------------------------
    #
    [ -z "$LS" ] && LS=`which ls`
    [ -z "$SED" ] && SED=`which sed`
    [ -z "$CRONSPOOL" ] && CRONSPOOL=/var/spool/cron/crontabs
    
    outfile=$1
    
    #if [ -z "$outfile" ] 
    #then
    #	echo "Usage: $0 file"
    #	exit 1
    #fi
    
    [ -n "$outfile" ] && > $outfile
    
    [ ! -n "$GETUSERHOME" ] && GETUSERHOME=echo
    
    (
      cd $CRONSPOOL
      $LS -l $LSGROUP *
    ) |
    while read perm y owner group size date1 date2 file
    do
      [ "$owner" != "root" ] && {
        echo "--WARN-- CRON file \`$file' is owned by $owner."
      }
      case $file in
        *[!a-zA-Z0-9]*)
          echo "--WARN-- Unusual cron file \`$file' found."
          ;;
        *)
          $GETUSERHOME "$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
    	echo "--WARN-- Found cron file for unknown user $file."
          fi
          ;;
        esac
    done
      
    tiger-3.2.3/systems/SunOS/getuserhome0000755000175000017500000000027707502327223016262 0ustar  pacopaco#!/bin/sh
    
    #
    # cd to / in case we are down in a directory we don't have read
    # access to.  /bin/csh will barf if that is the case.
    #
    cd /
    
    user="$1"
    
    /bin/csh -c "echo ~$user" 2> /dev/null
    
    
    tiger-3.2.3/systems/Tru64/0000755000175000017500000000000011306441064013711 5ustar  pacopacotiger-3.2.3/systems/Tru64/5/0000755000175000017500000000000011306441064014055 5ustar  pacopacotiger-3.2.3/systems/Tru64/5/check_cron0000755000175000017500000000160510034447270016105 0ustar  pacopaco#!/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.3/systems/Tru64/5/check0000755000175000017500000000427210033665424015071 0ustar  pacopaco#!/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.3/systems/Tru64/5/check_passwdspec0000755000175000017500000000465110033665424017326 0ustar  pacopaco#!/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.3/systems/Tru64/5/check_trusted0000755000175000017500000000402310033665424016635 0ustar  pacopaco#!/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.3/systems/Tru64/5/config0000644000175000017500000001222210223071247015243 0ustar  pacopaco# -*- 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.3/systems/Tru64/5/gen_cron0000755000175000017500000000346410033665424015610 0ustar  pacopaco#!/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.3/systems/Tru64/5/gen_group_sets0000755000175000017500000000331410147441726017036 0ustar  pacopaco#!/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.3/systems/Tru64/5/gen_inetd0000755000175000017500000000412710035205732015741 0ustar  pacopaco#!/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.3/systems/Tru64/5/gen_mounts0000755000175000017500000000342410033665424016170 0ustar  pacopaco#!/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.3/systems/Tru64/5/gen_passwd_sets0000755000175000017500000000366610033665424017212 0ustar  pacopaco#!/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.3/systems/Tru64/5/getdisks0000755000175000017500000000160010033665424015621 0ustar  pacopaco#!/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.3/systems/Tru64/5/inetd0000644000175000017500000000000010033665424015075 0ustar  pacopacotiger-3.2.3/systems/Tru64/5/sgid_list0000644000175000017500000000000010034447427015755 0ustar  pacopacotiger-3.2.3/systems/Tru64/5/suid_list0000644000175000017500000000000110034447427015774 0ustar  pacopaco
    tiger-3.2.3/systems/UNICOS/0000755000175000017500000000000011306441064013765 5ustar  pacopacotiger-3.2.3/systems/UNICOS/10/0000755000175000017500000000000011306441064014205 5ustar  pacopacotiger-3.2.3/systems/UNICOS/10/services0000644000175000017500000000410007502327223015751 0ustar  pacopacoNeWS		144/tcp
    VTVIN		5000/tcp
    applix		999/udp
    auth		113/tcp
    biff		512/udp
    bootpc		68/udp
    bootps		67/udp
    cde		608/tcp
    chargen		19/tcp
    chargen		19/udp
    client		2030/tcp
    conference	531/tcp
    courier		530/tcp
    craydiag	2003/tcp
    craydiag	2003/udp
    csnet-cs	105/tcp
    cwdata		5004/tcp
    cypress		2015/tcp
    cypress-stat	2017/tcp
    daytime		13/tcp
    daytime		13/udp
    discard		9/tcp
    discard		9/udp
    domain		53/tcp
    domain		53/udp
    echo		7/tcp
    echo		7/udp
    efs		520/tcp
    eklogin		2105/tcp
    elcsd		704/udp
    erlogin		888/tcp
    errdemon	4552/tcp
    eval		570/tcp
    exec		512/tcp
    fddismt		3000/udp
    fddismt		3001/udp
    finger		79/tcp
    fta		605/tcp
    ftp		21/tcp
    ftp-data	20/tcp
    hostname	101/tcp
    ingreslock	1524/tcp
    kadmind		755/tcp
    kerberos	750/tcp
    kerberos	750/udp
    kerberos5	88/udp
    kerberos_master	751/tcp
    kerberos_master	751/udp
    klogin		543/tcp
    knetd		2053/tcp
    kpop		1109/tcp
    krb_prop	754/tcp
    kshell		544/tcp
    lgc_pd		2001/tcp
    lgc_sdsrc	2002/tcp
    link		87/tcp
    login		513/tcp
    mkuserd		1234/tcp
    monitor		561/udp
    msql		603/tcp
    mtp		57/tcp
    nameserver	42/tcp
    nameserver	42/udp
    netnews		532/tcp
    netstat		15/tcp
    netwall		533/udp
    new-rwho	550/udp
    nfs		2049/udp
    nicname		43/tcp
    nlb		604/tcp
    nntp		119/tcp
    nqs		607/tcp
    ntalk		518/udp
    ntp		123/tcp
    ntp		123/udp
    orasrv		1525/tcp
    passwd_server	752/udp
    pcserver	600/tcp
    pop-2		109/tcp
    print-srv	170/tcp
    printer		515/tcp
    quantic		22375/tcp
    quote		17/tcp
    remotefb	5558/tcp
    remotefs	556/tcp
    rje		77/tcp
    rlp		39/udp
    rmonitor	560/udp
    route		520/udp
    rtape		260/tcp
    sample		906/tcp
    sfs-config	452/udp
    sfs-smp-net	451/udp
    sftp		115/tcp
    sgi-dgl		5232/tcp
    sgi-ex		1708/tcp
    sgmp		153/udp
    sgmp-netview	153/tcp
    sgmp-trap	160/tcp
    shell		514/tcp
    smtp		25/tcp
    snmp		161/udp
    snmp-trap	162/tcp
    snmp-trap	162/udp
    sunrpc		111/tcp
    sunrpc		111/udp
    supdup		95/tcp
    syslog		514/udp
    systat		11/tcp
    talk		517/udp
    tcpmux		1/tcp
    telnet		23/tcp
    tempo		526/tcp
    tftp		69/udp
    time		37/tcp
    time		37/udp
    timed		525/udp
    urm		606/tcp
    userreg_server	753/udp
    utcd		1506/udp
    uucp		540/tcp
    uucp-path	117/tcp
    venus.itc	2106/tcp
    vexec		712/tcp
    vlogin		713/tcp
    vmnet		175/tcp
    vshell		714/tcp
    who		513/udp
    x-server	6000/tcp
    xcwcs		5003/tcp
    xdmcp		177/tcp
    xdmcp		177/udp
    tiger-3.2.3/systems/UNICOS/10/config0000644000175000017500000000734107502327223015405 0ustar  pacopaco# -*- 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.
    #
    # UNICOS/config - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    [ "$UUID" = "" ] &&
      USERNAME=`/bin/id -nu`
    
    export USERNAME
    
    [ "$USERNAME" != "root" ] && {
      echo " " 1>&2
      echo "This script should be run from a super-user account." 1>&2
      echo " " 1>&2
    #  exit 1
    }
    
    CAT=/bin/cat
    # Try to use /usr/ucb/ls so that we can use -L option
    LS=/usr/ucb/ls
    LSGROUP=-g
    LSLINK=-L
    [ ! -x $LS ] && {
      LS=/bin/ls
      LSGROUP=
      LSLINK=
    }
    #
    RM=/bin/rm
    AWK=/usr/bin/awk
    GREP=/bin/grep
    EGREP=/bin/egrep
    SGREP="$GREP -s"
    SED=/bin/sed
    SORT=/bin/sort
    COMM=/usr/bin/comm
    TAIL=/bin/tail
    MV=/bin/mv
    TR=/usr/bin/tr
    JOIN=/usr/bin/join
    GROUPSS=/usr/ucb/groups
    FILECMD=/bin/file
    UNIQ=/bin/uniq
    BASENAME=/bin/basename
    CHMOD=/bin/chmod
    CHOWN=/bin/chown
    LN=/bin/ln
    PASTE=/usr/bin/paste
    DIFF=/bin/diff
    MAILER=/bin/mail
    SENDMAILS="/usr/lib/sendmail"
    SENDMAILCF="/usr/lib/sendmail.cf"
    export SENDMAILS SENDMAILCF
    #
    export CAT LS LSGROUP LSLINK RM AWK GREP EGREP SGREP SED
    export SORT COMM TAIL MV TR JOIN GROUPSS FILECMD UNIQ BASENAME
    export CHMOD CHOWN LN PASTE DIFF MAILER
    #
    UNAME=/bin/uname
    GETHOSTNAME=/bin/hostname
    EXPR=/bin/expr
    STRINGS=/usr/bin/strings
    FIND=/bin/find
    # XDEV is called -mount
    FINDXDEV=-mount
    # There is no fmt with UNICOS
    FMT=/bin/cat
    CC=/opt/ctl/bin/cc
    [ ! -x $CC ] && {
        CC=/bin/scc
        [ ! -x $CC ] && {
          CC=/bin/cc
        }
    }
    PS=/bin/ps
    DATE=/bin/date
    DATECMD="$DATE +%y%m%d"
    TIMECMD="$DATE +%H:%M"
    TESTLINK=-h
    TESTEXEC=-x
    #
    export UNAME GETHOSTNAME EXPR STRINGS FIND FINDXDEV
    export FMT CC PS DATE DATECMD TIMECMD TESTLINK TESTEXEC
    #
    WAIT=wait
    #
    #
    [ -x /usr/bin/ypcat ] && YPCAT=/usr/bin/ypcat
    #
    export WAIT YPCAT NISCAT
    #
    # List of non-/dev/ devices
    FS_DEVDIRS=/usr/spool/tape/tpddemreq
    export FS_DEVDIRS
    #
    #
    MAILSPOOL=/usr/mail
    ETCSHELLS=/etc/shells
    CRONSPOOL=/usr/spool/cron/crontabs
    #
    export MAILSPOOL ETCSHELLS CRONSPOOL
    #
    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"
        elif [ -f "$CDIR/default/$file" ]; then
          loc="$CDIR/default"
        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
    SGID_LIST sgid_list
    REL_FILE_EXCP rel_file_exp_list
    GEN_CRON_FILES gen_cron
    GETCLIENTDIRS gendlclients
    GEN_INETD_SETS gen_inetd
    GETDISKS getdisks
    GETEMBEDDEDLIST embedlist
    GETUSERHOME getuserhome
    EOL
    `
    tiger-3.2.3/systems/UNICOS/10/inetd0000644000175000017500000000127307502327223015241 0ustar  pacopacoftp	stream	tcp	nowait	root	/etc/ftpd	ftpd
    telnet	stream	tcp	nowait	root	/etc/telnetd	telnetd
    shell	stream	tcp	nowait	root	/etc/rshd	rshd
    login	stream	tcp	nowait	root	/etc/rlogind	rlogind
    exec	stream	tcp	nowait	root	/etc/rexecd	rexecd
    finger	stream	tcp	nowait	nobody	/etc/fingerd	fingerd
    echo	stream	tcp	nowait	root	internal
    discard	stream	tcp	nowait	root	internal
    chargen	stream	tcp	nowait	root	internal
    daytime	stream	tcp	nowait	root	internal
    tcpmux	stream	tcp	nowait	root	internal
    time	stream	tcp	nowait	root	internal
    echo	dgram	udp	wait	root	internal
    discard	dgram	udp	wait	root	internal
    chargen	dgram	udp	wait	root	internal
    daytime	dgram	udp	wait	root	internal
    time	dgram	udp	wait	root	internal
    tiger-3.2.3/systems/UNICOS/10/file_access_list0000644000175000017500000001231507502327223017430 0ustar  pacopaco#                           owner group s g r w x   r w x   r w xLVL MSGIDS
    #-----------------------------------------------------------------------------
    /                           root  root  . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /etc                        bin   bin   . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /bin                        bin   bin   . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /usr                        bin   bin   . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /lib                        bin   bin   . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /usr/adm                    adm   adm   . . 1 . 1   1 . 1   1 0 1 . 001 002 003
    /usr/bin                    bin   bin   . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /usr/gen                    bin   bin   . . 1 . 1   1 0 1   0 0 0 . 001 002 003
    /usr/lib                    bin   bin   . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /usr/mail                   bin   mail  . . 1 . 1   1 . 1   1 0 1 . 001 002 003
    /usr/spool                  bin   bin   . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /usr/ucb                    bin   bin   . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /etc/config                 bin   bin   . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /etc/nulib                  bin   bin   . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /etc/uidmaps                bin   bin   . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /dev                        bin   bin   . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    #
    /unicos                     root  .     0 0 1 . .   1 0 0   1 0 0 . 001 002 003
    /.cshrc                     root  .     0 0 1 . .   . 0 .   . 0 . . 001 002 003
    /.tcshrc                    root  .     0 0 1 . .   . 0 .   . 0 . . 001 002 003
    /.login                     root  .     0 0 1 . .   . 0 .   . 0 . . 001 002 003
    /.profile                   root  .     0 0 1 . .   . 0 .   . 0 . . 001 002 003
    /.forward                   root  .     0 0 1 . .   . 0 .   . 0 . . 001 002 003
    /.rhosts                    root  .     0 0 1 . 0   0 0 0   0 0 0 . 001 002 003
    #
    /etc/mail                   root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /etc/mail/aliases           root  .     . . 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/mail/aliases.dir       root  .     . . 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/mail/aliases.pag       root  .     . . 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/exports		    root  .     . . 1 . 0   . 0 0   . 0 0 . 001 002 003
    /etc/checklist              root  .     . . 1 . 0   . 0 0   . 0 0 . 001 002 003
    /etc/group                  root  .     . . 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/services               bin   bin   . . 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/syslog.conf            bin   bin   . . 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/suid_exec              root  .     1 . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /etc/hosts.allow            root  .     . . 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/hosts.deny		    root  .     . . 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/hosts.equiv            root  .     . . 1 . 0   0 0 0   0 0 0 . 001 002 003
    /etc/hosts.lpd              root  .     . . 1 . 0   . 0 0   . 0 0 . 001 002 003
    /etc/hosts                  root  .     . . 1 . 0   . 0 0   . 0 0 . 001 002 003
    /etc/hosts.bin              root  .     . . 1 . 0   . 0 0   . 0 0 . 001 002 003
    /etc/udb		    root  bin   . . 1 . 0   0 0 0   0 0 0 . 001 002 003
    /etc/udb.public             root  bin   . . 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/cshrc		    root  .     0 0 1 . .   1 0 0   1 0 0 . 001 002 003
    /etc/profile                root  .     0 0 1 . .   1 0 0   1 0 0 . 001 002 003
    /etc/inetd.conf             root  .     . . 1 . 0   . 0 0   . 0 0 . 001 002 003
    /etc/rc.mid		    root  .     0 0 1 . 1   . 0 0   . 0 0 . 001 002 003
    /etc/rc.pst                 root  .     0 0 1 . 1   . 0 0   . 0 0 . 001 002 003
    /etc/rc                     root  .     0 0 1 . 1   . 0 0   . 0 0 . 001 002 003
    /etc/brc                    root  .     0 0 1 . 1   . 0 0   . 0 0 . 001 002 003
    /etc/motd                   root  motd  0 0 1 . 0   1 1 0   1 0 0 . 001 002 003
    /etc/mnttab                 root  .     0 0 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/passwd                 root  .     0 0 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/remote                 root  .     0 0 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/resolv.conf            root  .     0 0 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/rpc                    bin   .     0 0 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/mail/sendmail.cf       root  .     0 0 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/syslog.pid             root  .     . . 1 . 0   . 0 0   . 0 0 . 001 002 003
    /etc/wtmp                   adm   adm   . . 1 . 0   1 . 0   . 0 0 . 001 002 003
    /etc/utmp                   root  .     . . 1 . 0   1 . 0   1 0 0 . 001 002 003
    /etc/acid		    root  .     . . 1 . 0   1 . 0   1 0 0 . 001 002 003
    #
    /bin/login                  bin   bin   . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /bin/su                     root  .     1 . 1 . 1   . 0 .   . 0 . . 001 002 003
    /usr/bin/uscpblock          uscp  .     . . 1 . 1   . 0 1   . 0 1 . 001 002 003
    /usr/bin/uscpping           uscp  .     1 1 . . 1   . . 1   . . 1 . 001 002 003
    # This should be owner root!!!
    /usr/bin/*                  .     .     . . 1 . 1   . 0 .   . 0 . . 001 002 003
    /bin/*                      .     .     . . 1 . 1   . 0 .   . 0 . . 001 002 003
    tiger-3.2.3/systems/UNICOS/10/sgid_list0000644000175000017500000000143007502327223016112 0ustar  pacopaco/usr/bin/mailx
    /usr/bin/msgi
    /usr/bin/msgr
    /usr/bin/newgrp
    /usr/bin/quota
    /usr/bin/ipcs
    /usr/lib/msg/msgdaemon
    /usr/lib/sa/sadc
    /usr/lib/tp/resfile
    /usr/lib/tp/scratch
    /usr/lib/tp/fesreq
    /usr/lib/tp/tpconf
    /usr/lib/tp/metrumnet
    /usr/lib/tp/tcpnet
    /usr/lib/tp/tpdsp
    /usr/lib/tp/tpdaemon
    /usr/lib/tp/stknet
    /usr/lib/tp/avrproc
    /usr/lib/tp/ibmnet
    /usr/ucb/chsh
    /usr/ucb/lpq
    /usr/ucb/lpr
    /usr/ucb/lprm
    /etc/tpapm
    /etc/tpbmx
    /etc/tpconfig
    /etc/tpset
    /etc/lpc
    /etc/fuser
    /etc/msgdstop
    /etc/nfsstat
    /etc/tpclr
    /etc/tpcore
    /etc/tpdev
    /etc/tpdstop
    /etc/tpformat
    /etc/tpfrls
    /etc/tpgstat
    /etc/tpinit
    /etc/tplabel
    /etc/tpmls
    /etc/tpmql
    /etc/tpu
    /etc/trpt
    /etc/xtpldr
    /bin/mail
    /bin/passwd
    /bin/tpmnt
    /bin/tpquery
    /bin/tpscr
    /bin/tpstat
    /bin/tpcatalog
    /bin/tplist
    /bin/tprst
    /bin/rsv
    /bin/rls
    /bin/jstat
    tiger-3.2.3/systems/UNICOS/10/suid_list0000644000175000017500000000406507502327223016137 0ustar  pacopaco/usr/bin/X11/xterm
    /usr/bin/at
    /usr/bin/crontab
    /usr/bin/newgrp
    /usr/bin/script
    /usr/bin/tmpdir
    /usr/bin/ustat
    /usr/bin/sdss
    /usr/bin/quota
    /usr/bin/dmcopy
    /usr/bin/dmlim
    /usr/bin/dmput
    /usr/bin/dmget
    /usr/lib/acct/accton
    /usr/lib/msg/infd
    /usr/lib/msg/msgd
    /usr/lib/msg/msgdaemon
    /usr/lib/msg/oper
    /usr/lib/msg/rep
    /usr/lib/tp/resfile
    /usr/lib/tp/scratch
    /usr/lib/tp/fesreq
    /usr/lib/tp/tpconf
    /usr/lib/tp/metrumnet
    /usr/lib/tp/tcpnet
    /usr/lib/tp/tpdsp
    /usr/lib/tp/tpdaemon
    /usr/lib/tp/stknet
    /usr/lib/tp/avrproc
    /usr/lib/tp/ibmnet
    /usr/lib/expreserve
    /usr/lib/exrecover
    /usr/lib/sendmail
    /usr/ucb/chsh
    /usr/ucb/lpq
    /usr/ucb/lpr
    /usr/ucb/lprm
    /usr/ucb/netstat
    /usr/ucb/rdist
    /usr/ucb/remsh
    /usr/ucb/rlogin
    /usr/ucb/rsh
    /etc/diag/ddoffload
    /etc/diag/oldt
    /etc/diag/syscfg
    /etc/diag/vst
    /etc/uidmaps/nfsckhash
    /etc/uidmaps/nfsgid
    /etc/uidmaps/nfsidmem
    /etc/uidmaps/nfslist
    /etc/uidmaps/nfsuid
    /etc/tpapm
    /etc/tpbmx
    /etc/tpconfig
    /etc/tpset
    /etc/guest
    /etc/keyenvoy
    /etc/fuser
    /etc/fck
    /etc/msgdstop
    /etc/netperf
    /etc/nu
    /etc/sdstat
    /etc/ping
    /etc/xdms
    /etc/shrdist
    /etc/snmpd
    /etc/tpclr
    /etc/tpcore
    /etc/tpdev
    /etc/tpdstop
    /etc/tpformat
    /etc/tpfrls
    /etc/tpgstat
    /etc/tpinit
    /etc/tplabel
    /etc/tpmls
    /etc/tpmql
    /etc/tpu
    /etc/udbgen
    /etc/xadmin
    /etc/ldcache
    /etc/rlog
    /etc/rlog_test
    /etc/rlog_exit
    /etc/RL
    /etc/RCOM
    /etc/rlconfig
    /etc/xtpldr
    /etc/ddms
    /etc/RLS
    /etc/RLrebuild
    /etc/RLdbvfy
    /etc/RLbackup
    /etc/RLexit
    /etc/RLtest
    /etc/reel
    /etc/RLV
    /etc/rlrmore
    /bin/chacid
    /bin/ps
    /bin/mail
    /bin/newacct
    /bin/passwd
    /bin/rcp
    /bin/rmgr
    /bin/su
    /bin/tpmnt
    /bin/tpquery
    /bin/tpscr
    /bin/tpstat
    /bin/udbsee
    /bin/tpcatalog
    /bin/tplist
    /bin/tprst
    /bin/rsv
    /bin/rls
    /bin/rlr
    /bin/rl
    /bin/df
    /bin/RCOM
    /bin/rlpcreate
    /bin/rlpedit
    /bin/rlpdelete
    /bin/rlvsubmit
    /bin/rlvedit
    /bin/rlfedit
    /bin/rlfsubmit
    /bin/rlvretrieve
    /bin/rlpsubmit
    /bin/rlpretrieve
    /bin/rledit
    /bin/rlvcreate
    /bin/rlvscratch
    /bin/rlvmove
    /bin/rlvtruncate
    /bin/rlvunlock
    /bin/rlrcreate
    /bin/rlrdelete
    /bin/rlrotate
    /bin/rlaccept
    /bin/rlreturn
    /bin/rlmoved
    /bin/rlcleaned
    /bin/rlerased
    /bin/rlremoved
    /bin/RLV
    /bin/rlrmore
    /bin/rltlm
    /ce/bin/shutdown
    tiger-3.2.3/systems/UNICOS/7/0000755000175000017500000000000011306441064014133 5ustar  pacopacotiger-3.2.3/systems/UNICOS/7/gen_mounts0000644000175000017500000000207710223075321016236 0ustar  pacopaco#!/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 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.
    #
    # UNICOS/gen_mounts - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    
    /etc/mount | 
    $GREP /dev/dsk | 
    $AWK '{ print $1, $4 }' |
    while read file_system mount_options
    do
      if [ "$CHECKROFS" != YES ]; then
        case $mount_options in
          *read/write*) echo $file_system ;;
        esac
      else
        echo $file_system
      fi
    done
    
    exit 0
    tiger-3.2.3/systems/UNICOS/7/config0000644000175000017500000000702607502327223015333 0ustar  pacopaco# -*- 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.
    #
    # UNICOS/config - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    [ "$UUID" = "" ] &&
      UNAME=`/bin/who am i | /usr/bin/awk '{ print $1 }'`
    
    export UNAME
    
    [ "$UNAME" != "root" ] && {
      echo " " 1>&2
      echo "This script should be run from a super-user account." 1>&2
      echo " " 1>&2
    #  exit 1
    }
    
    CAT=/bin/cat
    # Try to use /usr/ucb/ls so that we can use -L option
    LS=/usr/ucb/ls
    LSGROUP=-g
    LSLINK=-L
    [ ! -x $LS ] && {
      LS=/bin/ls
      LSGROUP=
      LSLINK=
    }
    #
    RM=/bin/rm
    AWK=/usr/bin/awk
    GREP=/bin/grep
    EGREP=/usr/bin/egrep
    SGREP="$GREP -s"
    SED=/bin/sed
    SORT=/bin/sort
    COMM=/usr/bin/comm
    TAIL=/bin/tail
    MV=/bin/mv
    TR=/usr/bin/tr
    JOIN=/usr/bin/join
    GROUPSS=/usr/ucb/groups
    FILECMD=/bin/file
    UNIQ=/bin/uniq
    BASENAME=/bin/basename
    CHMOD=/bin/chmod
    CHOWN=/bin/chown
    LN=/bin/ln
    PASTE=/usr/bin/paste
    DIFF=/bin/diff
    MAILER=/bin/mail
    SENDMAILS="/usr/lib/sendmail"
    SENDMAILCF="/usr/lib/sendmail.cf"
    export SENDMAILS SENDMAILCF
    #
    export CAT LS LSGROUP LSLINK RM AWK GREP EGREP SGREP SED
    export SORT COMM TAIL MV TR JOIN GROUPSS FILECMD UNIQ BASENAME
    export CHMOD CHOWN LN PASTE DIFF MAILER
    #
    UNAME=/bin/uname
    GETHOSTNAME=/bin/hostname
    EXPR=/bin/expr
    STRINGS=/usr/ucb/strings
    FIND=/bin/find
    # XDEV is called -mount
    FINDXDEV=-mount
    # There is no fmt with UNICOS
    FMT=/bin/cat
    CC=/bin/scc
    [ ! -x $CC ] && {
      CC=/bin/cc
    }
    PS=/bin/ps
    DATE=/bin/date
    DATECMD="$DATE +%y%m%d"
    TIMECMD="$DATE +%H:%M"
    TESTLINK=-h
    TESTEXEC=-x
    #
    export UNAME GETHOSTNAME EXPR STRINGS FIND FINDXDEV
    export FMT CC PS DATE DATECMD TIMECMD TESTLINK TESTEXEC
    #
    WAIT=wait
    #
    #
    [ -x /usr/bin/ypcat ] && YPCAT=/usr/bin/ypcat
    #
    export WAIT YPCAT NISCAT
    #
    #
    MAILSPOOL=/usr/mail
    ETCSHELLS=/etc/shells
    CRONSPOOL=/usr/spool/cron/crontabs
    #
    export MAILSPOOL ETCSHELLS CRONSPOOL
    #
    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
    GETEMBEDDEDLIST embedlist
    GETUSERHOME getuserhome
    EOL
    `
    tiger-3.2.3/systems/UNICOS/7/7.0.0/0000755000175000017500000000000011306441064014575 5ustar  pacopacotiger-3.2.3/systems/UNICOS/7/7.0.0/config0000644000175000017500000000702607502327223015775 0ustar  pacopaco# -*- 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.
    #
    # UNICOS/config - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    [ "$UUID" = "" ] &&
      UNAME=`/bin/who am i | /usr/bin/awk '{ print $1 }'`
    
    export UNAME
    
    [ "$UNAME" != "root" ] && {
      echo " " 1>&2
      echo "This script should be run from a super-user account." 1>&2
      echo " " 1>&2
    #  exit 1
    }
    
    CAT=/bin/cat
    # Try to use /usr/ucb/ls so that we can use -L option
    LS=/usr/ucb/ls
    LSGROUP=-g
    LSLINK=-L
    [ ! -x $LS ] && {
      LS=/bin/ls
      LSGROUP=
      LSLINK=
    }
    #
    RM=/bin/rm
    AWK=/usr/bin/awk
    GREP=/bin/grep
    EGREP=/usr/bin/egrep
    SGREP="$GREP -s"
    SED=/bin/sed
    SORT=/bin/sort
    COMM=/usr/bin/comm
    TAIL=/bin/tail
    MV=/bin/mv
    TR=/usr/bin/tr
    JOIN=/usr/bin/join
    GROUPSS=/usr/ucb/groups
    FILECMD=/bin/file
    UNIQ=/bin/uniq
    BASENAME=/bin/basename
    CHMOD=/bin/chmod
    CHOWN=/bin/chown
    LN=/bin/ln
    PASTE=/usr/bin/paste
    DIFF=/bin/diff
    MAILER=/bin/mail
    SENDMAILS="/usr/lib/sendmail"
    SENDMAILCF="/usr/lib/sendmail.cf"
    export SENDMAILS SENDMAILCF
    #
    export CAT LS LSGROUP LSLINK RM AWK GREP EGREP SGREP SED
    export SORT COMM TAIL MV TR JOIN GROUPSS FILECMD UNIQ BASENAME
    export CHMOD CHOWN LN PASTE DIFF MAILER
    #
    UNAME=/bin/uname
    GETHOSTNAME=/bin/hostname
    EXPR=/bin/expr
    STRINGS=/usr/ucb/strings
    FIND=/bin/find
    # XDEV is called -mount
    FINDXDEV=-mount
    # There is no fmt with UNICOS
    FMT=/bin/cat
    CC=/bin/scc
    [ ! -x $CC ] && {
      CC=/bin/cc
    }
    PS=/bin/ps
    DATE=/bin/date
    DATECMD="$DATE +%y%m%d"
    TIMECMD="$DATE +%H:%M"
    TESTLINK=-h
    TESTEXEC=-x
    #
    export UNAME GETHOSTNAME EXPR STRINGS FIND FINDXDEV
    export FMT CC PS DATE DATECMD TIMECMD TESTLINK TESTEXEC
    #
    WAIT=wait
    #
    #
    [ -x /usr/bin/ypcat ] && YPCAT=/usr/bin/ypcat
    #
    export WAIT YPCAT NISCAT
    #
    #
    MAILSPOOL=/usr/mail
    ETCSHELLS=/etc/shells
    CRONSPOOL=/usr/spool/cron/crontabs
    #
    export MAILSPOOL ETCSHELLS CRONSPOOL
    #
    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
    GETEMBEDDEDLIST embedlist
    GETUSERHOME getuserhome
    EOL
    `
    tiger-3.2.3/systems/UNICOS/7/suid_list0000644000175000017500000000520507502327223016062 0ustar  pacopaco/bin/chacid
    /bin/df
    /bin/du
    /bin/mail
    /bin/newacct
    /bin/passwd
    /bin/ps
    /bin/rcp
    /bin/rls
    /bin/rmail
    /bin/rsv
    /bin/su
    /bin/tpcatalog
    /bin/tplist
    /bin/tpmnt
    /bin/tprst
    /bin/tpscr
    /bin/tpstat
    /bin/udbsee
    /ce/bin/donut
    /ce/bin/shutdown
    /ce/bin/unitap
    /ce/bin/unitap.OLD
    /ce/smarte/syscfg
    /etc/OLDsuid_exec
    /etc/cll
    /etc/fck
    /etc/fuser
    /etc/keyenvoy
    /etc/ldcache
    /etc/msgdstop
    /etc/netperf
    /etc/nu
    /etc/ping
    /etc/snmpd
    /etc/spwcard
    /etc/suid_exec
    /etc/tape/avrproc
    /etc/tape/clsfile
    /etc/tape/fesreq
    /etc/tape/flush
    /etc/tape/msg/msgdaemon
    /etc/tape/openfile
    /etc/tape/opentdt
    /etc/tape/proceot
    /etc/tape/proceov
    /etc/tape/readerr
    /etc/tape/readvol
    /etc/tape/scratch
    /etc/tape/stknet
    /etc/tape/tpdaemon
    /etc/tape/tppos
    /etc/tape/writeerr
    /etc/tape/writevol
    /etc/tpapm
    /etc/tpbmx
    /etc/tpclr
    /etc/tpconfig
    /etc/tpdev
    /etc/tpdstop
    /etc/tpfrls
    /etc/tpgstat
    /etc/tplabel
    /etc/tpmls
    /etc/tpmql
    /etc/tpset
    /etc/tpu
    /etc/udbgen
    /etc/uidmaps/nfsckhash
    /etc/uidmaps/nfsgid
    /etc/uidmaps/nfsidmem
    /etc/uidmaps/nfslist
    /etc/uidmaps/nfsuid
    /usr/adm/bin/NQS
    /usr/bin/X11/xload
    /usr/bin/X11/xterm
    /usr/bin/acquire
    /usr/bin/at
    /usr/bin/cdbx
    /usr/bin/crontab
    /usr/bin/dispose
    /usr/bin/fetch
    /usr/bin/mailq
    /usr/bin/newaliases
    /usr/bin/qchkpnt
    /usr/bin/qdel
    /usr/bin/qlimit
    /usr/bin/qmgr
    /usr/bin/qmsg
    /usr/bin/qstat
    /usr/bin/qsub
    /usr/bin/quota
    /usr/bin/script
    /usr/bin/sdss
    /usr/bin/tmpdir
    /usr/bin/uscpmsg
    /usr/bin/uscpping
    /usr/bin/uscpqsub
    /usr/bin/uscproute
    /usr/bin/uscpssaf
    /usr/lib/acct/accton
    /usr/lib/expreserve
    /usr/lib/exrecover
    /usr/lib/fta
    /usr/lib/monitor/xdevmon
    /usr/lib/monitor/xdsa
    /usr/lib/monitor/xdsn130
    /usr/lib/monitor/xdst3
    /usr/lib/monitor/xdstrunk
    /usr/lib/monitor/xdtu
    /usr/lib/monitor/xdxmon
    /usr/lib/monitor/xlogmon
    /usr/lib/monitor/xns
    /usr/lib/monitor/xnx
    /usr/lib/monitor/xscc
    /usr/lib/monitor/xsnmpmon
    /usr/lib/msg/msgdaemon
    /usr/lib/mv_dir
    /usr/lib/nqs/shlexefai
    /usr/lib/sendmail
    /usr/lib/tools/dsa
    /usr/lib/tools/dsn130
    /usr/lib/tools/dstrunk
    /usr/lib/tools/dtn130
    /usr/lib/tools/dtu
    /usr/lib/tools/dxmon
    /usr/lib/tools/logn130
    /usr/lib/tools/nx
    /usr/lib/tools/v130
    /usr/lib/tp/avrproc
    /usr/lib/tp/clsfile
    /usr/lib/tp/fesreq
    /usr/lib/tp/flush
    /usr/lib/tp/openfile
    /usr/lib/tp/opentdt
    /usr/lib/tp/proceot
    /usr/lib/tp/proceov
    /usr/lib/tp/readerr
    /usr/lib/tp/readvol
    /usr/lib/tp/scratch
    /usr/lib/tp/stknet
    /usr/lib/tp/tpdaemon
    /usr/lib/tp/tppos
    /usr/lib/tp/writeerr
    /usr/lib/tp/writevol
    /usr/lib/uscpdevs
    /usr/lib/uscplink
    /usr/lib/uscpops
    /usr/lib/uscpques
    /usr/lib/uscpstat
    /usr/lib/uscpstrs
    /usr/lib/uscpxmon
    /usr/src/uts/get
    /usr/src/uts/interface
    /usr/ucb/chsh
    /usr/ucb/lpq
    /usr/ucb/lpr
    /usr/ucb/lprm
    /usr/ucb/netstat
    /usr/ucb/rdist
    /usr/ucb/remsh
    /usr/ucb/rlogin
    /usr/ucb/rsh
    tiger-3.2.3/systems/UNICOS/check_cron0000755000175000017500000000161107502327223016013 0ustar  pacopaco#!/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 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.
    #
    # UNICOS/check_cron - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    if [ -f /usr/spool/cron/crontabs/$1 ]; then
      echo "YES"
    else
      echo "NO"
    fi
    tiger-3.2.3/systems/UNICOS/config0000644000175000017500000000702607502327223015165 0ustar  pacopaco# -*- 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.
    #
    # UNICOS/config - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    [ "$UUID" = "" ] &&
      UNAME=`/bin/who am i | /usr/bin/awk '{ print $1 }'`
    
    export UNAME
    
    [ "$UNAME" != "root" ] && {
      echo " " 1>&2
      echo "This script should be run from a super-user account." 1>&2
      echo " " 1>&2
    #  exit 1
    }
    
    CAT=/bin/cat
    # Try to use /usr/ucb/ls so that we can use -L option
    LS=/usr/ucb/ls
    LSGROUP=-g
    LSLINK=-L
    [ ! -x $LS ] && {
      LS=/bin/ls
      LSGROUP=
      LSLINK=
    }
    #
    RM=/bin/rm
    AWK=/usr/bin/awk
    GREP=/bin/grep
    EGREP=/usr/bin/egrep
    SGREP="$GREP -s"
    SED=/bin/sed
    SORT=/bin/sort
    COMM=/usr/bin/comm
    TAIL=/bin/tail
    MV=/bin/mv
    TR=/usr/bin/tr
    JOIN=/usr/bin/join
    GROUPSS=/usr/ucb/groups
    FILECMD=/bin/file
    UNIQ=/bin/uniq
    BASENAME=/bin/basename
    CHMOD=/bin/chmod
    CHOWN=/bin/chown
    LN=/bin/ln
    PASTE=/usr/bin/paste
    DIFF=/bin/diff
    MAILER=/bin/mail
    SENDMAILS="/usr/lib/sendmail"
    SENDMAILCF="/usr/lib/sendmail.cf"
    export SENDMAILS SENDMAILCF
    #
    export CAT LS LSGROUP LSLINK RM AWK GREP EGREP SGREP SED
    export SORT COMM TAIL MV TR JOIN GROUPSS FILECMD UNIQ BASENAME
    export CHMOD CHOWN LN PASTE DIFF MAILER
    #
    UNAME=/bin/uname
    GETHOSTNAME=/bin/hostname
    EXPR=/bin/expr
    STRINGS=/usr/ucb/strings
    FIND=/bin/find
    # XDEV is called -mount
    FINDXDEV=-mount
    # There is no fmt with UNICOS
    FMT=/bin/cat
    CC=/bin/scc
    [ ! -x $CC ] && {
      CC=/bin/cc
    }
    PS=/bin/ps
    DATE=/bin/date
    DATECMD="$DATE +%y%m%d"
    TIMECMD="$DATE +%H:%M"
    TESTLINK=-h
    TESTEXEC=-x
    #
    export UNAME GETHOSTNAME EXPR STRINGS FIND FINDXDEV
    export FMT CC PS DATE DATECMD TIMECMD TESTLINK TESTEXEC
    #
    WAIT=wait
    #
    #
    [ -x /usr/bin/ypcat ] && YPCAT=/usr/bin/ypcat
    #
    export WAIT YPCAT NISCAT
    #
    #
    MAILSPOOL=/usr/mail
    ETCSHELLS=/etc/shells
    CRONSPOOL=/usr/spool/cron/crontabs
    #
    export MAILSPOOL ETCSHELLS CRONSPOOL
    #
    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
    GETEMBEDDEDLIST embedlist
    GETUSERHOME getuserhome
    EOL
    `
    tiger-3.2.3/systems/UNICOS/file_access_list0000644000175000017500000001255507502327223017216 0ustar  pacopaco#                           owner group s g r w x   r w x   r w xLVL MSGIDS
    #-----------------------------------------------------------------------------
    /                           root  root  . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /etc                        root  root  . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /bin                        root  root  . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /usr                        root  root  . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /lib                        root  root  . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /usr/adm                    adm   adm   . . 1 . 1   1 . 1   1 0 1 . 001 002 003
    /usr/bin                    root  .     . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /usr/gen                    root  .     . . 1 . 1   1 0 1   0 0 0 . 001 002 003
    /usr/lib                    root  root  . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /usr/mail                   bin   mail  . . 1 . 1   1 . 1   1 0 1 . 001 002 003
    /usr/spool                  root  root  . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /usr/ucb                    root  root  . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /etc/config                 root  root  . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /etc/nulib                  root  root  . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /etc/uidmaps                root  root  . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /dev                        root  root  . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    #
    /unicos                     root  .     0 0 1 . .   1 0 0   1 0 0 . 001 002 003
    /.cshrc                     root  .     0 0 1 . .   . 0 .   . 0 . . 001 002 003
    /.tcshrc                    root  .     0 0 1 . .   . 0 .   . 0 . . 001 002 003
    /.login                     root  .     0 0 1 . .   . 0 .   . 0 . . 001 002 003
    /.profile                   root  .     0 0 1 . .   . 0 .   . 0 . . 001 002 003
    /.forward                   root  .     0 0 1 . .   . 0 .   . 0 . . 001 002 003
    /.rhosts                    root  .     0 0 1 . 0   0 0 0   0 0 0 . 001 002 003
    #
    /etc/mail                   root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /etc/mail/aliases           root  .     . . 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/mail/aliases.dir       root  .     . . 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/mail/aliases.pag       root  .     . . 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/exports		    root  .     . . 1 . 0   . 0 0   . 0 0 . 001 002 003
    /etc/checklist              root  .     . . 1 . 0   . 0 0   . 0 0 . 001 002 003
    /etc/group                  root  .     . . 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/services               root  .     . . 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/syslog.conf            root  .     . . 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/suid_exec              root  .     1 . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /etc/hosts.allow            root  .     . . 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/hosts.deny		    root  .     . . 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/hosts.equiv            root  .     . . 1 . 0   0 0 0   0 0 0 . 001 002 003
    /etc/hosts.lpd              root  .     . . 1 . 0   . 0 0   . 0 0 . 001 002 003
    /etc/hosts                  root  .     . . 1 . 0   . 0 0   . 0 0 . 001 002 003
    /etc/hosts.bin              root  .     . . 1 . 0   . 0 0   . 0 0 . 001 002 003
    /etc/udb		    root  root  . . 1 . 0   0 0 0   0 0 0 . 001 002 003
    /etc/udb.public             root  root  . . 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/cshrc		    root  .     0 0 1 . .   1 0 0   1 0 0 . 001 002 003
    /etc/profile                root  .     0 0 1 . .   1 0 0   1 0 0 . 001 002 003
    /etc/inetd.conf             root  .     . . 1 . 0   . 0 0   . 0 0 . 001 002 003
    /etc/rc.mid		    root  .     0 0 1 . 1   . 0 0   . 0 0 . 001 002 003
    /etc/rc.pst                 root  .     0 0 1 . 1   . 0 0   . 0 0 . 001 002 003
    /etc/config                 root  .     . . 1 . 1   . 0 .   . 0 . . 001 002 003
    /etc/rc                     root  .     0 0 1 . 1   . 0 0   . 0 0 . 001 002 003
    /etc/brc                    root  .     0 0 1 . 1   . 0 0   . 0 0 . 001 002 003
    /etc/motd                   root  .     0 0 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/mnttab                 root  .     0 0 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/passwd                 root  .     0 0 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/remote                 root  .     0 0 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/resolv.conf            root  .     0 0 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/rpc                    root  .     0 0 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/mail/sendmail.cf       root  .     0 0 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/syslog.conf            root  .     . . 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/syslog.pid             root  .     . . 1 . 0   . 0 0   . 0 0 . 001 002 003
    /etc/wtmp                   root  .     . . 1 . 0   1 . 0   . 0 0 . 001 002 003
    /etc/utmp                   root  .     . . 1 . 0   1 . 0   1 0 0 . 001 002 003
    /etc/acid		    root  .     . . 1 . 0   1 . 0   1 0 0 . 001 002 003
    #
    /bin/login                  root  .     . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /bin/su                     root  .     1 . 1 . 1   . 0 .   . 0 . . 001 002 003
    /usr/bin/uscpblock          uscp  .     . . 1 . 1   . 0 1   . 0 1 . 001 002 003
    /usr/bin/uscpping           uscp  .     1 1 . . 1   . . 1   . . 1 . 001 002 003
    # This should be owner root!!!
    /usr/bin/*                  .     .     . . 1 . 1   . 0 .   . 0 . . 001 002 003
    /bin/*                      .     .     . . 1 . 1   . 0 .   . 0 . . 001 002 003
    tiger-3.2.3/systems/UNICOS/gen_bootparam_sets0000755000175000017500000000012010223075321017553 0ustar  pacopaco#!/bin/sh -- # -*- sh -*-
    
    # The Cray doesn't support diskless clients.
    
    exit 0
    tiger-3.2.3/systems/UNICOS/gen_cron0000755000175000017500000000265307502327223015516 0ustar  pacopaco#!/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 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.
    #
    # UNICOS/gen_cron - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    
    outfile=$1
    > $outfile
    
    (
      cd $CRONSPOOL
      $LS -l $LSGROUP *
    ) |
    while read x y owner a b c d e file
    do
      [ "$owner" != "root" ] && {
        echo "--WARN-- CRON file \`$file' is owned by $owner."
      }
      case $file in
        *[!a-zA-Z0-9]*)
          echo "--WARN-- 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
    	echo "--WARN-- Found cron file for unknown user $file."
          fi
          ;;
        esac
    done
      
    tiger-3.2.3/systems/UNICOS/gen_export_sets0000755000175000017500000000174707502327223017137 0ustar  pacopaco#!/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 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.
    #
    # UNICOS/gen_export_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    [ -r /etc/exports ] && {
      $GREP -v '^#' /etc/exports > $WORKDIR/etc_exports.$$
      echo "/etc/exports" > $WORKDIR/etc_exports.$$.src
      echo $WORKDIR/etc_exports.$$
    }
    tiger-3.2.3/systems/UNICOS/gen_group_sets0000755000175000017500000000217307756435012016753 0ustar  pacopaco#!/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 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.
    #
    # UNICOS/gen_group_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    $GREP -v '^[-+]' /etc/group |
    $SORT > $WORKDIR/etc_group.$$
    echo "/etc/group" > $WORKDIR/etc_group.$$.src
    echo $WORKDIR/etc_group.$$
    
    [ -n "$YPCAT" ] && {
      $YPCAT group |
      $SORT |
      $COMM -23 - $WORKDIR/etc_group.$$ > $WORKDIR/nis_group.$$
      echo "NIS" > $WORKDIR/nis_group.$$.src
      echo $WORKDIR/nis_group.$$
    }
    tiger-3.2.3/systems/UNICOS/gen_inetd0000755000175000017500000000171007502327223015651 0ustar  pacopaco#!/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 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.
    #
    # UNICOS/gen_inetd - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    $GREP -v '^#' /etc/inetd.conf |
    $SORT > $WORKDIR/etc_inetd.$$
    echo "/etc/inetd.conf" > $WORKDIR/etc_inetd.$$.src
    echo $WORKDIR/etc_inetd.$$
    tiger-3.2.3/systems/UNICOS/gen_mounts0000755000175000017500000000207710223075321016073 0ustar  pacopaco#!/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 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.
    #
    # UNICOS/gen_mounts - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    
    /etc/mount | 
    $GREP /dev/dsk | 
    $AWK '{ print $1, $4 }' |
    while read file_system mount_options
    do
      if [ "$CHECKROFS" != YES ]; then
        case $mount_options in
          *read/write*) echo $file_system ;;
        esac
      else
        echo $file_system
      fi
    done
    
    exit 0
    tiger-3.2.3/systems/UNICOS/gen_passwd_sets0000755000175000017500000000336307502327223017113 0ustar  pacopaco#!/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 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.
    #
    # UNICOS/gen_passwd_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    local=0
    for parm
    do
      case "$parm" in
        -p) passwdflag=Y;;
        -l) local=1;;
        *)	outfile="$parm";;
      esac
    done
    
    zappasswd()
    {
      IFS=:
      while read user1 passwd rest1
      do
        IFS=$SAVEIFS
        case $passwd in
          [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="xxxxxxxxxxxxx";;
          *)
          passwd="*";;
        esac
        echo "$user1:$passwd:$rest1"
        IFS=:
      done
    }
    
    catpasswd()
    {
      /bin/udbsee -a -f update,passwd,uid,gids,comment,dir,shell 2>/dev/null |
      $AWK -F: '{
         split($8, gids, ",");
         printf("%s:%s:%s:%s:%s:%s:%s\n", $2, $4, $6, gids[1], $10, $12, $14);
      }' |
      $SORT |
      {
        if [ "$passwordflag" = 'Y' ]; then
          $CAT
        else
          zappasswd
        fi
      }
    }
    
    catpasswd > $WORKDIR/etc_udb.$$
    echo "UDB" > $WORKDIR/etc_udb.$$.src
    echo $WORKDIR/etc_udb.$$ >> $outfile
    tiger-3.2.3/systems/UNICOS/gen_services0000755000175000017500000000213107756435012016376 0ustar  pacopaco#!/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 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.
    #
    # UNICOS/gen_services - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    $GREP -v '^#' /etc/services > $WORKDIR/etc_services.$$
    echo "/etc/services" > $WORKDIR/etc_services.$$.src
    echo $WORKDIR/etc_services.$$
    
    [ -n "$YPCAT" ] && {
      $YPCAT services > $WORKDIR/nis_services.$$
      echo "NIS" > $WORKDIR/nis_services.$$.src
      echo $WORKDIR/nis_services.$$
    }
    tiger-3.2.3/systems/UNICOS/gendlclients0000755000175000017500000000004307502327223016366 0ustar  pacopaco#!/bin/sh
    #
    # No diskless clients
    
    tiger-3.2.3/systems/UNICOS/getdisks0000644000175000017500000000231207502327223015526 0ustar  pacopaco#!/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 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.
    #
    # getdisks - 06/24/93
    #
    #-----------------------------------------------------------------------------
    #
    
    /etc/mount |
    $AWK '$5 == "NC1FS" {print}' |
    $SORT |
    $AWK '
      BEGIN {lastdisk=""; fslist="";}
      {
        disk=substr($1, 1, length($1)-1);
        if(disk == lastdisk){
           fslist=fslist " " $3;
        }
        else {
    	if(lastdisk != ""){
               printf("%s\n", fslist);
            }
            lastdisk=disk;
            fslist = $3;
        }
      }
      END { if(lastdisk != ""){
              printf("%s\n", fslist);
            } 
      }'
    
    tiger-3.2.3/systems/UNICOS/getuserhome0000755000175000017500000000027707502327223016253 0ustar  pacopaco#!/bin/sh
    
    #
    # cd to / in case we are down in a directory we don't have read
    # access to.  /bin/csh will barf if that is the case.
    #
    cd /
    
    user="$1"
    
    /bin/csh -c "echo ~$user" 2> /dev/null
    
    
    tiger-3.2.3/systems/UNICOS/inetd0000644000175000017500000000156207502327223015022 0ustar  pacopacochargen	dgram	udp	wait	root	internal
    chargen	stream	tcp	nowait	root	internal
    comsat	dgram	udp	wait	root	/etc/comsat	comsat
    daytime	dgram	udp	wait	root	internal
    daytime	stream	tcp	nowait	root	internal
    discard	dgram	udp	wait	root	internal
    discard	stream	tcp	nowait	root	internal
    echo	dgram	udp	wait	root	internal
    echo	stream	tcp	nowait	root	internal
    exec	stream	tcp	nowait	root	/etc/rexecd rexecd
    finger	stream	tcp	nowait	nobody	/etc/fingerd fingerd
    ftp	stream	tcp	nowait	root	/etc/ftpd ftpd
    login	stream	tcp	nowait	root	/etc/rlogind rlogind
    ntalk	dgram	udp	wait	root	/etc/ntalkd	ntalkd
    shell	stream	tcp	nowait	root	/etc/rshd rshd
    talk	dgram	udp	wait	root	/etc/talkd	talkd
    telnet	stream	tcp	nowait	root	/etc/telnetd telnetd
    tftp	dgram	udp	wait	nobody	/etc/tftpd	tftpd
    time	dgram	udp	wait	root	internal
    time	stream	tcp	nowait	root	internal
    uucp	stream	tcp	nowait	root	/etc/uucpd	uucpd
    tiger-3.2.3/systems/UNICOS/services0000644000175000017500000000340307502327223015536 0ustar  pacopacoNeWS 144/tcp
    VTVIN 5000/tcp
    applix 999/udp
    auth 113/tcp
    biff 512/udp
    bootpc 68/udp
    bootps 67/udp
    cde 608/tcp
    chargen 19/tcp
    chargen 19/udp
    client 2030/tcp
    conference 531/tcp
    courier 530/tcp
    craydiag 2003/tcp
    craydiag 2003/udp
    csnet-cs 105/tcp
    cwdata 5004/tcp
    cypress 2015/tcp
    cypress-stat 2017/tcp
    daytime 13/tcp
    daytime 13/udp
    discard 9/tcp
    discard 9/udp
    domain 53/tcp
    domain 53/udp
    echo 7/tcp
    echo 7/udp
    efs 520/tcp
    eklogin 2105/tcp
    elcsd 704/udp
    erlogin 888/tcp
    eval 570/tcp
    exec 512/tcp
    finger 79/tcp
    ftp 21/tcp
    ftp-data 20/tcp
    hostnames 101/tcp
    ingreslock 1524/tcp
    iso-tsap 102/tcp
    kadmind 755/tcp
    kerberos 750/tcp
    kerberos 750/udp
    kerberos_master 751/tcp
    kerberos_master 751/udp
    klogin 543/tcp
    knetd 2053/tcp
    kpop 1109/tcp
    krb_prop 754/tcp
    kshell 544/tcp
    lgc_pd 2001/tcp
    lgc_sdsrc 2002/tcp
    link 87/tcp
    login 513/tcp
    mkuserd 1234/tcp
    monitor 561/udp
    mtp 57/tcp
    nameserver 42/tcp
    netnews 532/tcp
    netstat 15/tcp
    netwall 533/udp
    new-rwho 550/udp
    nfs 2049/udp
    nntp 119/tcp
    nqs 607/tcp
    ntalk 518/udp
    ntp 123/tcp
    ntp 123/udp
    orasrv 1525/tcp
    passwd_server 752/udp
    pcserver 600/tcp
    pop 109/tcp
    print-srv 170/tcp
    printer 515/tcp
    qotd 17/tcp
    quantic 22375/tcp
    remotefb 5558/tcp
    remotefs 556/tcp
    rje 77/tcp
    rlp 39/udp
    rmonitor 560/udp
    route 520/udp
    rtape 260/tcp
    sample 906/tcp
    sftp 115/tcp
    sgmp 153/udp
    sgmp-netview 153/tcp
    sgmp-trap 160/tcp
    shell 514/tcp
    smtp 25/tcp
    snmp 161/udp
    snmp-trap 162/tcp
    snmp-trap 162/udp
    sunrpc 111/tcp
    sunrpc 111/udp
    supdup 95/tcp
    syslog 514/udp
    systat 11/tcp
    talk 517/udp
    telnet 23/tcp
    tempo 526/tcp
    tftp 69/udp
    time 37/tcp
    time 37/udp
    timed 525/udp
    userreg_server 753/udp
    uucp 540/tcp
    uucp-path 117/tcp
    venus.itc 2106/tcp
    vexec 712/tcp
    vlogin 713/tcp
    vmnet 175/tcp
    vshell 714/tcp
    who 513/udp
    whois 43/tcp
    x-server 6000/tcp
    x400 103/tcp
    x400-snd 104/tcp
    xcwcs 5003/tcp
    tiger-3.2.3/systems/UNICOSMK/0000755000175000017500000000000011306441064014215 5ustar  pacopacotiger-3.2.3/systems/UNICOSMK/2/0000755000175000017500000000000011306441064014356 5ustar  pacopacotiger-3.2.3/systems/UNICOSMK/2/services0000644000175000017500000000410007502327223016122 0ustar  pacopacoNeWS		144/tcp
    VTVIN		5000/tcp
    applix		999/udp
    auth		113/tcp
    biff		512/udp
    bootpc		68/udp
    bootps		67/udp
    cde		608/tcp
    chargen		19/tcp
    chargen		19/udp
    client		2030/tcp
    conference	531/tcp
    courier		530/tcp
    craydiag	2003/tcp
    craydiag	2003/udp
    csnet-cs	105/tcp
    cwdata		5004/tcp
    cypress		2015/tcp
    cypress-stat	2017/tcp
    daytime		13/tcp
    daytime		13/udp
    discard		9/tcp
    discard		9/udp
    domain		53/tcp
    domain		53/udp
    echo		7/tcp
    echo		7/udp
    efs		520/tcp
    eklogin		2105/tcp
    elcsd		704/udp
    erlogin		888/tcp
    errdemon	4552/tcp
    eval		570/tcp
    exec		512/tcp
    fddismt		3000/udp
    fddismt		3001/udp
    finger		79/tcp
    fta		605/tcp
    ftp		21/tcp
    ftp-data	20/tcp
    hostname	101/tcp
    ingreslock	1524/tcp
    kadmind		755/tcp
    kerberos	750/tcp
    kerberos	750/udp
    kerberos5	88/udp
    kerberos_master	751/tcp
    kerberos_master	751/udp
    klogin		543/tcp
    knetd		2053/tcp
    kpop		1109/tcp
    krb_prop	754/tcp
    kshell		544/tcp
    lgc_pd		2001/tcp
    lgc_sdsrc	2002/tcp
    link		87/tcp
    login		513/tcp
    mkuserd		1234/tcp
    monitor		561/udp
    msql		603/tcp
    mtp		57/tcp
    nameserver	42/tcp
    nameserver	42/udp
    netnews		532/tcp
    netstat		15/tcp
    netwall		533/udp
    new-rwho	550/udp
    nfs		2049/udp
    nicname		43/tcp
    nlb		604/tcp
    nntp		119/tcp
    nqs		607/tcp
    ntalk		518/udp
    ntp		123/tcp
    ntp		123/udp
    orasrv		1525/tcp
    passwd_server	752/udp
    pcserver	600/tcp
    pop-2		109/tcp
    print-srv	170/tcp
    printer		515/tcp
    quantic		22375/tcp
    quote		17/tcp
    remotefb	5558/tcp
    remotefs	556/tcp
    rje		77/tcp
    rlp		39/udp
    rmonitor	560/udp
    route		520/udp
    rtape		260/tcp
    sample		906/tcp
    sfs-config	452/udp
    sfs-smp-net	451/udp
    sftp		115/tcp
    sgi-dgl		5232/tcp
    sgi-ex		1708/tcp
    sgmp		153/udp
    sgmp-netview	153/tcp
    sgmp-trap	160/tcp
    shell		514/tcp
    smtp		25/tcp
    snmp		161/udp
    snmp-trap	162/tcp
    snmp-trap	162/udp
    sunrpc		111/tcp
    sunrpc		111/udp
    supdup		95/tcp
    syslog		514/udp
    systat		11/tcp
    talk		517/udp
    tcpmux		1/tcp
    telnet		23/tcp
    tempo		526/tcp
    tftp		69/udp
    time		37/tcp
    time		37/udp
    timed		525/udp
    urm		606/tcp
    userreg_server	753/udp
    utcd		1506/udp
    uucp		540/tcp
    uucp-path	117/tcp
    venus.itc	2106/tcp
    vexec		712/tcp
    vlogin		713/tcp
    vmnet		175/tcp
    vshell		714/tcp
    who		513/udp
    x-server	6000/tcp
    xcwcs		5003/tcp
    xdmcp		177/tcp
    xdmcp		177/udp
    tiger-3.2.3/systems/UNICOSMK/2/inetd0000644000175000017500000000127307502327223015412 0ustar  pacopacoftp	stream	tcp	nowait	root	/etc/ftpd	ftpd
    telnet	stream	tcp	nowait	root	/etc/telnetd	telnetd
    shell	stream	tcp	nowait	root	/etc/rshd	rshd
    login	stream	tcp	nowait	root	/etc/rlogind	rlogind
    exec	stream	tcp	nowait	root	/etc/rexecd	rexecd
    finger	stream	tcp	nowait	nobody	/etc/fingerd	fingerd
    echo	stream	tcp	nowait	root	internal
    discard	stream	tcp	nowait	root	internal
    chargen	stream	tcp	nowait	root	internal
    daytime	stream	tcp	nowait	root	internal
    tcpmux	stream	tcp	nowait	root	internal
    time	stream	tcp	nowait	root	internal
    echo	dgram	udp	wait	root	internal
    discard	dgram	udp	wait	root	internal
    chargen	dgram	udp	wait	root	internal
    daytime	dgram	udp	wait	root	internal
    time	dgram	udp	wait	root	internal
    tiger-3.2.3/systems/UNICOSMK/2/sgid_list0000644000175000017500000000143007502327223016263 0ustar  pacopaco/usr/bin/mailx
    /usr/bin/msgi
    /usr/bin/msgr
    /usr/bin/newgrp
    /usr/bin/quota
    /usr/bin/ipcs
    /usr/lib/msg/msgdaemon
    /usr/lib/sa/sadc
    /usr/lib/tp/resfile
    /usr/lib/tp/scratch
    /usr/lib/tp/fesreq
    /usr/lib/tp/tpconf
    /usr/lib/tp/metrumnet
    /usr/lib/tp/tcpnet
    /usr/lib/tp/tpdsp
    /usr/lib/tp/tpdaemon
    /usr/lib/tp/stknet
    /usr/lib/tp/avrproc
    /usr/lib/tp/ibmnet
    /usr/ucb/chsh
    /usr/ucb/lpq
    /usr/ucb/lpr
    /usr/ucb/lprm
    /etc/tpapm
    /etc/tpbmx
    /etc/tpconfig
    /etc/tpset
    /etc/lpc
    /etc/fuser
    /etc/msgdstop
    /etc/nfsstat
    /etc/tpclr
    /etc/tpcore
    /etc/tpdev
    /etc/tpdstop
    /etc/tpformat
    /etc/tpfrls
    /etc/tpgstat
    /etc/tpinit
    /etc/tplabel
    /etc/tpmls
    /etc/tpmql
    /etc/tpu
    /etc/trpt
    /etc/xtpldr
    /bin/mail
    /bin/passwd
    /bin/tpmnt
    /bin/tpquery
    /bin/tpscr
    /bin/tpstat
    /bin/tpcatalog
    /bin/tplist
    /bin/tprst
    /bin/rsv
    /bin/rls
    /bin/jstat
    tiger-3.2.3/systems/UNICOSMK/2/suid_list0000644000175000017500000000415507502327223016310 0ustar  pacopaco/usr/bin/X11/xterm
    /usr/bin/at
    /usr/bin/crontab
    /usr/bin/newgrp
    /usr/bin/script
    /usr/bin/tmpdir
    /usr/bin/ustat
    /usr/bin/sdss
    /usr/bin/quota
    /usr/bin/dmcopy
    /usr/bin/dmlim
    /usr/bin/dmput
    /usr/bin/dmget
    /usr/lib/acct/accton
    /usr/lib/msg/infd
    /usr/lib/msg/msgd
    /usr/lib/msg/msgdaemon
    /usr/lib/msg/oper
    /usr/lib/msg/rep
    /usr/lib/tp/resfile
    /usr/lib/tp/scratch
    /usr/lib/tp/fesreq
    /usr/lib/tp/tpconf
    /usr/lib/tp/metrumnet
    /usr/lib/tp/tcpnet
    /usr/lib/tp/tpdsp
    /usr/lib/tp/tpdaemon
    /usr/lib/tp/stknet
    /usr/lib/tp/avrproc
    /usr/lib/tp/ibmnet
    /usr/lib/expreserve
    /usr/lib/exrecover
    /usr/lib/sendmail
    /usr/ucb/chsh
    /usr/ucb/lpq
    /usr/ucb/lpr
    /usr/ucb/lprm
    /usr/ucb/netstat
    /usr/ucb/rdist
    /usr/ucb/remsh
    /usr/ucb/rlogin
    /usr/ucb/rsh
    /etc/diag/ddoffload
    /etc/diag/oldt
    /etc/diag/syscfg
    /etc/diag/vst
    /etc/uidmaps/nfsckhash
    /etc/uidmaps/nfsgid
    /etc/uidmaps/nfsidmem
    /etc/uidmaps/nfslist
    /etc/uidmaps/nfsuid
    /etc/tpapm
    /etc/tpbmx
    /etc/tpconfig
    /etc/tpset
    /etc/guest
    /etc/keyenvoy
    /etc/fuser
    /etc/fck
    /etc/msgdstop
    /etc/netperf
    /etc/nu
    /etc/sdstat
    /etc/ping
    /etc/xdms
    /etc/shrdist
    /etc/snmpd
    /etc/tpclr
    /etc/tpcore
    /etc/tpdev
    /etc/tpdstop
    /etc/tpformat
    /etc/tpfrls
    /etc/tpgstat
    /etc/tpinit
    /etc/tplabel
    /etc/tpmls
    /etc/tpmql
    /etc/tpu
    /etc/udbgen
    /etc/xadmin
    /etc/ldcache
    /etc/rlog
    /etc/rlog_test
    /etc/rlog_exit
    /etc/RL
    /etc/RCOM
    /etc/rlconfig
    /etc/xtpldr
    /etc/ddms
    /etc/RLS
    /etc/RLrebuild
    /etc/RLdbvfy
    /etc/RLbackup
    /etc/RLexit
    /etc/RLtest
    /etc/reel
    /etc/RLV
    /etc/rlrmore
    /bin/chacid
    /bin/ps
    /bin/mail
    /bin/newacct
    /bin/passwd
    /bin/rcp
    /bin/rmgr
    /bin/su
    /bin/tpmnt
    /bin/tpquery
    /bin/tpscr
    /bin/tpstat
    /bin/udbsee
    /bin/tpcatalog
    /bin/tplist
    /bin/tprst
    /bin/rsv
    /bin/rls
    /bin/rlr
    /bin/rl
    /bin/df
    /bin/RCOM
    /bin/rlpcreate
    /bin/rlpedit
    /bin/rlpdelete
    /bin/rlvsubmit
    /bin/rlvedit
    /bin/rlfedit
    /bin/rlfsubmit
    /bin/rlvretrieve
    /bin/rlpsubmit
    /bin/rlpretrieve
    /bin/rledit
    /bin/rlvcreate
    /bin/rlvscratch
    /bin/rlvmove
    /bin/rlvtruncate
    /bin/rlvunlock
    /bin/rlrcreate
    /bin/rlrdelete
    /bin/rlrotate
    /bin/rlaccept
    /bin/rlreturn
    /bin/rlmoved
    /bin/rlcleaned
    /bin/rlerased
    /bin/rlremoved
    /bin/RLV
    /bin/rlrmore
    /bin/rltlm
    /ce/bin/shutdown
    /usr/lib/tp/esinet
    /bin/jstat
    /bin/mpprun
    /etc/udbchain
    tiger-3.2.3/systems/UNICOSMK/check_cron0000644000175000017500000000161107502327223016240 0ustar  pacopaco#!/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 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.
    #
    # UNICOS/check_cron - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    if [ -f /usr/spool/cron/crontabs/$1 ]; then
      echo "YES"
    else
      echo "NO"
    fi
    tiger-3.2.3/systems/UNICOSMK/config0000644000175000017500000000734107502327223015415 0ustar  pacopaco# -*- 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.
    #
    # UNICOS/config - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    [ "$UUID" = "" ] &&
      USERNAME=`/bin/id -nu`
    
    export USERNAME
    
    [ "$USERNAME" != "root" ] && {
      echo " " 1>&2
      echo "This script should be run from a super-user account." 1>&2
      echo " " 1>&2
    #  exit 1
    }
    
    CAT=/bin/cat
    # Try to use /usr/ucb/ls so that we can use -L option
    LS=/usr/ucb/ls
    LSGROUP=-g
    LSLINK=-L
    [ ! -x $LS ] && {
      LS=/bin/ls
      LSGROUP=
      LSLINK=
    }
    #
    RM=/bin/rm
    AWK=/usr/bin/awk
    GREP=/bin/grep
    EGREP=/bin/egrep
    SGREP="$GREP -s"
    SED=/bin/sed
    SORT=/bin/sort
    COMM=/usr/bin/comm
    TAIL=/bin/tail
    MV=/bin/mv
    TR=/usr/bin/tr
    JOIN=/usr/bin/join
    GROUPSS=/usr/ucb/groups
    FILECMD=/bin/file
    UNIQ=/bin/uniq
    BASENAME=/bin/basename
    CHMOD=/bin/chmod
    CHOWN=/bin/chown
    LN=/bin/ln
    PASTE=/usr/bin/paste
    DIFF=/bin/diff
    MAILER=/bin/mail
    SENDMAILS="/usr/lib/sendmail"
    SENDMAILCF="/usr/lib/sendmail.cf"
    export SENDMAILS SENDMAILCF
    #
    export CAT LS LSGROUP LSLINK RM AWK GREP EGREP SGREP SED
    export SORT COMM TAIL MV TR JOIN GROUPSS FILECMD UNIQ BASENAME
    export CHMOD CHOWN LN PASTE DIFF MAILER
    #
    UNAME=/bin/uname
    GETHOSTNAME=/bin/hostname
    EXPR=/bin/expr
    STRINGS=/usr/bin/strings
    FIND=/bin/find
    # XDEV is called -mount
    FINDXDEV=-mount
    # There is no fmt with UNICOS
    FMT=/bin/cat
    CC=/opt/ctl/bin/cc
    [ ! -x $CC ] && {
        CC=/bin/scc
        [ ! -x $CC ] && {
          CC=/bin/cc
        }
    }
    PS=/bin/ps
    DATE=/bin/date
    DATECMD="$DATE +%y%m%d"
    TIMECMD="$DATE +%H:%M"
    TESTLINK=-h
    TESTEXEC=-x
    #
    export UNAME GETHOSTNAME EXPR STRINGS FIND FINDXDEV
    export FMT CC PS DATE DATECMD TIMECMD TESTLINK TESTEXEC
    #
    WAIT=wait
    #
    #
    [ -x /usr/bin/ypcat ] && YPCAT=/usr/bin/ypcat
    #
    export WAIT YPCAT NISCAT
    #
    # List of non-/dev/ devices
    FS_DEVDIRS=/usr/spool/tape/tpddemreq
    export FS_DEVDIRS
    #
    #
    MAILSPOOL=/usr/mail
    ETCSHELLS=/etc/shells
    CRONSPOOL=/usr/spool/cron/crontabs
    #
    export MAILSPOOL ETCSHELLS CRONSPOOL
    #
    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"
        elif [ -f "$CDIR/default/$file" ]; then
          loc="$CDIR/default"
        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
    SGID_LIST sgid_list
    REL_FILE_EXCP rel_file_exp_list
    GEN_CRON_FILES gen_cron
    GETCLIENTDIRS gendlclients
    GEN_INETD_SETS gen_inetd
    GETDISKS getdisks
    GETEMBEDDEDLIST embedlist
    GETUSERHOME getuserhome
    EOL
    `
    tiger-3.2.3/systems/UNICOSMK/file_access_list0000644000175000017500000001231507502327223017440 0ustar  pacopaco#                           owner group s g r w x   r w x   r w xLVL MSGIDS
    #-----------------------------------------------------------------------------
    /                           root  root  . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /etc                        bin   bin   . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /bin                        bin   bin   . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /usr                        bin   bin   . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /lib                        bin   bin   . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /usr/adm                    adm   adm   . . 1 . 1   1 . 1   1 0 1 . 001 002 003
    /usr/bin                    bin   bin   . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /usr/gen                    bin   bin   . . 1 . 1   1 0 1   0 0 0 . 001 002 003
    /usr/lib                    bin   bin   . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /usr/mail                   bin   mail  . . 1 . 1   1 . 1   1 0 1 . 001 002 003
    /usr/spool                  bin   bin   . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /usr/ucb                    bin   bin   . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /etc/config                 bin   bin   . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /etc/nulib                  bin   bin   . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /etc/uidmaps                bin   bin   . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /dev                        bin   bin   . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    #
    /unicos                     root  .     0 0 1 . .   1 0 0   1 0 0 . 001 002 003
    /.cshrc                     root  .     0 0 1 . .   . 0 .   . 0 . . 001 002 003
    /.tcshrc                    root  .     0 0 1 . .   . 0 .   . 0 . . 001 002 003
    /.login                     root  .     0 0 1 . .   . 0 .   . 0 . . 001 002 003
    /.profile                   root  .     0 0 1 . .   . 0 .   . 0 . . 001 002 003
    /.forward                   root  .     0 0 1 . .   . 0 .   . 0 . . 001 002 003
    /.rhosts                    root  .     0 0 1 . 0   0 0 0   0 0 0 . 001 002 003
    #
    /etc/mail                   root  .     . . . . .   . 0 .   . 0 . . 001 002 003
    /etc/mail/aliases           root  .     . . 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/mail/aliases.dir       root  .     . . 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/mail/aliases.pag       root  .     . . 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/exports		    root  .     . . 1 . 0   . 0 0   . 0 0 . 001 002 003
    /etc/checklist              root  .     . . 1 . 0   . 0 0   . 0 0 . 001 002 003
    /etc/group                  root  .     . . 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/services               bin   bin   . . 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/syslog.conf            bin   bin   . . 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/suid_exec              root  .     1 . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /etc/hosts.allow            root  .     . . 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/hosts.deny		    root  .     . . 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/hosts.equiv            root  .     . . 1 . 0   0 0 0   0 0 0 . 001 002 003
    /etc/hosts.lpd              root  .     . . 1 . 0   . 0 0   . 0 0 . 001 002 003
    /etc/hosts                  root  .     . . 1 . 0   . 0 0   . 0 0 . 001 002 003
    /etc/hosts.bin              root  .     . . 1 . 0   . 0 0   . 0 0 . 001 002 003
    /etc/udb		    root  bin   . . 1 . 0   0 0 0   0 0 0 . 001 002 003
    /etc/udb.public             root  bin   . . 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/cshrc		    root  .     0 0 1 . .   1 0 0   1 0 0 . 001 002 003
    /etc/profile                root  .     0 0 1 . .   1 0 0   1 0 0 . 001 002 003
    /etc/inetd.conf             root  .     . . 1 . 0   . 0 0   . 0 0 . 001 002 003
    /etc/rc.mid		    root  .     0 0 1 . 1   . 0 0   . 0 0 . 001 002 003
    /etc/rc.pst                 root  .     0 0 1 . 1   . 0 0   . 0 0 . 001 002 003
    /etc/rc                     root  .     0 0 1 . 1   . 0 0   . 0 0 . 001 002 003
    /etc/brc                    root  .     0 0 1 . 1   . 0 0   . 0 0 . 001 002 003
    /etc/motd                   root  motd  0 0 1 . 0   1 1 0   1 0 0 . 001 002 003
    /etc/mnttab                 root  .     0 0 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/passwd                 root  .     0 0 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/remote                 root  .     0 0 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/resolv.conf            root  .     0 0 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/rpc                    bin   .     0 0 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/mail/sendmail.cf       root  .     0 0 1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/syslog.pid             root  .     . . 1 . 0   . 0 0   . 0 0 . 001 002 003
    /etc/wtmp                   adm   adm   . . 1 . 0   1 . 0   . 0 0 . 001 002 003
    /etc/utmp                   root  .     . . 1 . 0   1 . 0   1 0 0 . 001 002 003
    /etc/acid		    root  .     . . 1 . 0   1 . 0   1 0 0 . 001 002 003
    #
    /bin/login                  bin   bin   . . 1 . 1   1 0 1   1 0 1 . 001 002 003
    /bin/su                     root  .     1 . 1 . 1   . 0 .   . 0 . . 001 002 003
    /usr/bin/uscpblock          uscp  .     . . 1 . 1   . 0 1   . 0 1 . 001 002 003
    /usr/bin/uscpping           uscp  .     1 1 . . 1   . . 1   . . 1 . 001 002 003
    # This should be owner root!!!
    /usr/bin/*                  .     .     . . 1 . 1   . 0 .   . 0 . . 001 002 003
    /bin/*                      .     .     . . 1 . 1   . 0 .   . 0 . . 001 002 003
    tiger-3.2.3/systems/UNICOSMK/gen_bootparam_sets0000644000175000017500000000012010223075321020000 0ustar  pacopaco#!/bin/sh -- # -*- sh -*-
    
    # The Cray doesn't support diskless clients.
    
    exit 0
    tiger-3.2.3/systems/UNICOSMK/gen_cron0000644000175000017500000000265307502327223015743 0ustar  pacopaco#!/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 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.
    #
    # UNICOS/gen_cron - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    
    outfile=$1
    > $outfile
    
    (
      cd $CRONSPOOL
      $LS -l $LSGROUP *
    ) |
    while read x y owner a b c d e file
    do
      [ "$owner" != "root" ] && {
        echo "--WARN-- CRON file \`$file' is owned by $owner."
      }
      case $file in
        *[!a-zA-Z0-9]*)
          echo "--WARN-- 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
    	echo "--WARN-- Found cron file for unknown user $file."
          fi
          ;;
        esac
    done
      
    tiger-3.2.3/systems/UNICOSMK/gen_export_sets0000644000175000017500000000220707502327223017354 0ustar  pacopaco#!/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 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.
    #
    # UNICOS/gen_export_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    [ -r /etc/exports ] && {
    
    # NOTE!: embedded tabs -- don't delete!
      $GREP -v '^#' /etc/exports | $SED 's/\\\n/:/' | $SED 's/[	 ]\([a-zA-Z]\)/\	 -access=\1/g' > $WORKDIR/etc_exports.$$
    #  $GREP -v '^#' /etc/exports > $WORKDIR/etc_exports.$$
      echo "/etc/exports" > $WORKDIR/etc_exports.$$.src
      echo $WORKDIR/etc_exports.$$
    }
    tiger-3.2.3/systems/UNICOSMK/gen_group_sets0000644000175000017500000000217307756435012017200 0ustar  pacopaco#!/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 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.
    #
    # UNICOS/gen_group_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    $GREP -v '^[-+]' /etc/group |
    $SORT > $WORKDIR/etc_group.$$
    echo "/etc/group" > $WORKDIR/etc_group.$$.src
    echo $WORKDIR/etc_group.$$
    
    [ -n "$YPCAT" ] && {
      $YPCAT group |
      $SORT |
      $COMM -23 - $WORKDIR/etc_group.$$ > $WORKDIR/nis_group.$$
      echo "NIS" > $WORKDIR/nis_group.$$.src
      echo $WORKDIR/nis_group.$$
    }
    tiger-3.2.3/systems/UNICOSMK/gen_inetd0000644000175000017500000000171007502327223016076 0ustar  pacopaco#!/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 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.
    #
    # UNICOS/gen_inetd - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    $GREP -v '^#' /etc/inetd.conf |
    $SORT > $WORKDIR/etc_inetd.$$
    echo "/etc/inetd.conf" > $WORKDIR/etc_inetd.$$.src
    echo $WORKDIR/etc_inetd.$$
    tiger-3.2.3/systems/UNICOSMK/gen_mounts0000644000175000017500000000235507502327223016326 0ustar  pacopaco#!/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 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.
    #
    # UNICOS/gen_mounts - 07/31/97
    #
    #-----------------------------------------------------------------------------
    #
    
    
    LOCAL_ONLY=$1
    CHKRO=$2
    
    ronly()
    {
      RO=1
      case "$1" in
        *[,\(]ro[,\)]*) RO=0
          ;;
      esac
      return $RO
    }
    
    localfs()
    {
      LOCAL=1
      [ "$1" = "NC1FS" ] && LOCAL=0
    
      return $LOCAL
    }
    
    /etc/mount |
    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" ] && echo "$mtpoint $fstype $fs"
    done
    
    tiger-3.2.3/systems/UNICOSMK/gen_passwd_sets0000644000175000017500000000336307502327223017340 0ustar  pacopaco#!/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 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.
    #
    # UNICOS/gen_passwd_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    local=0
    for parm
    do
      case "$parm" in
        -p) passwdflag=Y;;
        -l) local=1;;
        *)	outfile="$parm";;
      esac
    done
    
    zappasswd()
    {
      IFS=:
      while read user1 passwd rest1
      do
        IFS=$SAVEIFS
        case $passwd in
          [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="xxxxxxxxxxxxx";;
          *)
          passwd="*";;
        esac
        echo "$user1:$passwd:$rest1"
        IFS=:
      done
    }
    
    catpasswd()
    {
      /bin/udbsee -a -f update,passwd,uid,gids,comment,dir,shell 2>/dev/null |
      $AWK -F: '{
         split($8, gids, ",");
         printf("%s:%s:%s:%s:%s:%s:%s\n", $2, $4, $6, gids[1], $10, $12, $14);
      }' |
      $SORT |
      {
        if [ "$passwordflag" = 'Y' ]; then
          $CAT
        else
          zappasswd
        fi
      }
    }
    
    catpasswd > $WORKDIR/etc_udb.$$
    echo "UDB" > $WORKDIR/etc_udb.$$.src
    echo $WORKDIR/etc_udb.$$ >> $outfile
    tiger-3.2.3/systems/UNICOSMK/gen_services0000644000175000017500000000213107756435013016624 0ustar  pacopaco#!/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 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.
    #
    # UNICOS/gen_services - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    $GREP -v '^#' /etc/services > $WORKDIR/etc_services.$$
    echo "/etc/services" > $WORKDIR/etc_services.$$.src
    echo $WORKDIR/etc_services.$$
    
    [ -n "$YPCAT" ] && {
      $YPCAT services > $WORKDIR/nis_services.$$
      echo "NIS" > $WORKDIR/nis_services.$$.src
      echo $WORKDIR/nis_services.$$
    }
    tiger-3.2.3/systems/UNICOSMK/gendlclients0000644000175000017500000000004307502327223016613 0ustar  pacopaco#!/bin/sh
    #
    # No diskless clients
    
    tiger-3.2.3/systems/UNICOSMK/getdisks0000644000175000017500000000231207502327223015756 0ustar  pacopaco#!/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 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.
    #
    # getdisks - 06/24/93
    #
    #-----------------------------------------------------------------------------
    #
    
    /etc/mount |
    $AWK '$5 == "NC1FS" {print}' |
    $SORT |
    $AWK '
      BEGIN {lastdisk=""; fslist="";}
      {
        disk=substr($1, 1, length($1)-1);
        if(disk == lastdisk){
           fslist=fslist " " $3;
        }
        else {
    	if(lastdisk != ""){
               printf("%s\n", fslist);
            }
            lastdisk=disk;
            fslist = $3;
        }
      }
      END { if(lastdisk != ""){
              printf("%s\n", fslist);
            } 
      }'
    
    tiger-3.2.3/systems/UNICOSMK/getuserhome0000644000175000017500000000027707502327223016500 0ustar  pacopaco#!/bin/sh
    
    #
    # cd to / in case we are down in a directory we don't have read
    # access to.  /bin/csh will barf if that is the case.
    #
    cd /
    
    user="$1"
    
    /bin/csh -c "echo ~$user" 2> /dev/null
    
    
    tiger-3.2.3/systems/default/0000755000175000017500000000000011306441065014412 5ustar  pacopacotiger-3.2.3/systems/default/check.template0000755000175000017500000000366507502327223017243 0ustar  pacopaco#!/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 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/4/check - 06/14/93
    # This file can be used as a template file for creating system checks
    # In any case, it is used by scripts/check_system to run all the checks for a given
    # system
    #
    #-----------------------------------------------------------------------------
    #
    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 CAT CC GREP RM SGREP STRINGS || exit 1
      haveallfiles BASEDIR WORKDIR || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    # echo "Doing check....."
    
    haveallcmds CAT CC GREP RM SGREP STRINGS || exit 1
    haveallfiles BASEDIR WORKDIR || exit 1
    tiger-3.2.3/systems/default/check_cron0000755000175000017500000000161707502327223016445 0ustar  pacopaco#!/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 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.
    #
    # default/check_cron - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    if [ -f /usr/spool/cron/cron/crontabs/$1 ]; then
      echo "YES"
    else
      echo "NO"
    fi
    tiger-3.2.3/systems/default/check_ndd0000755000175000017500000000574610045247305016256 0ustar  pacopaco#!/bin/sh
    #
    #     tiger - A UN*X security checking system
    #     Copyright (C) 2003 Javier Fernandez-Sanguino
    #
    #    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_ndd: checks for security configuration parameters of the
    #            network environment (using ndd)
    #            This modules provides generic support routines for the ndd
    #            checks, allowing for better sharing of code between HP-UX,
    #            Solaris, and potentialy other Unixes.
    #
    # 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'
    #
    #-----------------------------------------------------------------------------
    # NOTES: 
    # Several of the help entries for these ndd commands were pulled
    # from: http://www.fish.com/titan/arch/sol2sun4/lib/nddconfig
    # Another good reference of the HP-UX ndd values is at:
    # http://www.carumba.com/talk/random/hp.annotated_ndd.txt
    #
    #-----------------------------------------------------------------------------
    #
    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 NDD_PARMS NDD_PARMS_LOCAL BASEDIR || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    #------------------------------------------------------------------------
    haveallfiles NDD_PARMS NDD_PARMS_LOCAL BASEDIR || exit 1
    
    echo
    echo "# Checking network (ndd) configuration"
    
    for file in $NDD_PARMS $NDD_PARMS_LOCAL
    do
      [ ! -r $file ] && continue
    
      while read dev parm good level mesgid mesg
      do
        ([ -z "$dev" ] || [[ $dev = \#* ]]) && continue
        val=`$NDD -get $dev $parm 2>/dev/null`
        eval "case \"$val\" in
            $good)
              ;;
            *)
              message $level $mesgid \"\" \"$mesg\"
              ;;
          esac"
      done < $file
    done
    
    exit 0
    tiger-3.2.3/systems/default/config0000644000175000017500000001625107732610214015611 0ustar  pacopaco# -*- 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.
    #
    # default/config - 06/14/93
    #
    # default/config - 04/15/2003 - jfs - Fixed typos and added necessary programs
    # default/config - 09/19/2003 - jfs - Added UUID and USERNAME
    #
    #-----------------------------------------------------------------------------
    #
    
    # Not needed, see below
    #UUID=`/usr/bin/id | /bin/sed -e 's/uid=\([0-9][0-9]*\).*$/\1/'`
    # This should work in most UN*X systems
    UUID=`id -u`
    USERNAME=`whoami`
    # This will work in most shells
    [ "$UUID" = "" ] && UUID=$UID
    [ "$USERNAME" = "" ] && USERNAME=$USER
    # Last resort
    [ "$UUID" = "" -a ! "$USERNAME" = "" ] && {
           # Try this and see it works
            UUID=`grep  ^$USERNAME: /etc/passwd  |awk -F : '{print $3}'`
    }
    export UUID USERNAME
    
    findcmd()
    {
      CMD=$1
    
      SRCH=/bin:/usr/bin:/etc:/usr/etc:/usr/ucb:/usr/sbin:/usr/bsd:/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 ] ) 2> $WORKDIR/te.$$
    [ -s $WORKDIR/te.$$ ] && TESTEXEC=-f
    export TESTEXEC
    
    RM=`findcmd rm`
    [ -n "$RM" ] && $RM $WORKDIR/te.$$
    
    AWK=`findcmd awk`
    CAT=`findcmd cat`
    LS=`findcmd ls`
    # -g to show group ownership
    # SysV systems don't need this... try to figure out whether we
    # need '-g' or not.
    LSGROUP="-lg"
    F1=`$LS $LSGROUP -d /etc | $AWK '{print NF}'`
    F2=`$LS -d /etc | $AWK '{print NF}'`
    [ $F1 -lt $F2 ] && LSGROUP="-l"
    # -L to show files
    LSLINK="-L"
    $LS $LSLINK 2>/dev/null >/dev/null || LSLINK=
    GREP=`findcmd grep`
    EGREP=`findcmd egrep`
    SED=`findcmd sed`
    SORT=`findcmd sort`
    COMM=`findcmd comm`
    TAIL=`findcmd tail`
    MV=`findcmd mv`
    TR=`findcmd tr`
    JOIN=`findcmd join`
    GROUPSS=`findcmd groups`
    FILECMD=`findcmd file`
    UNIQ=`findcmd uniq`
    BASENAME=`findcmd basename`
    CHMOD=`findcmd chmod`
    CHOWN=`findcmd chown`
    LN=`findcmd ln`
    PASTE=`findcmd paste`
    DIFF=`findcmd diff`
    ID=`findcmd id`
    CUT=`findcmd cut`
    HEAD=`findcmd head`
    WC=`findcmd wc`
    DIFF=`findcmd diff`
    EXPAND=`findcmd expand`
    LSOF=`findcmd lsof`
    MAILER=`findcmd mail`
    [ ! -n "$MAILER" ] && MAILER=`findcmd mailx`
    [ ! -n "$MAILER" ] && MAILER=`findcmd Mail`
    [ ! -n "$MAILER" ] && MAILER=`findcmd sendmail`
    
    SGREP="$EGREP -s"
    X=`$EGREP -s : /etc/passwd 2>&1 | $TAIL -1`
    [ "$X" != "" ] && {
      SGREP="$GREP -s"
      X=`$GREP -s : /etc/passwd 2>&1 | $TAIL -1`
      [ "$X" != "" ] && {
        SGREP="$BASEDIR/util/sgrep"
      }
    }
    #
    export CAT LS LSGROUP LSLINK RM AWK GREP EGREP SGREP SED
    export SORT COMM TAIL MV TR JOIN GROUPSS FILECMD UNIQ BASENAME
    export CHMOD CHOWN LN PASTE ID CUT HEAD WC DIFF EXPAND LSOF
    #
    UNAME=`findcmd uname`
    HOSTNAME=`findcmd hostname`
    EXPR=`findcmd expr`
    STRINGS=`findcmd strings`
    FIND=`findcmd find`
    GETHOSTNAME=`findcmd hostname`
    [ ! -n "$GETHOSTNAME" ] && {
      GETHOSTNAME=`findcmd uname`
      [ -n "$GETHOSTNAME" ] && GETHOSTNAME="$GETHOSTNAME -n"
    }
    #
    # Try to intuit whether -xdev option is recognized
    #
    FINDXDEV=-xdev
    $FIND /etc/passwd -xdev -name /etc/passwd 2>/dev/null > /dev/null || FINDXDEV=
    #
    FMT=`findcmd fmt || echo $CAT`
    #
    # Command to get list of mounted filesystems
    #
    GETFS=`findcmd mount`
    CC=`findcmd cc || findcmd gcc || findcmd acc || findcmd xlc`
    PS=`findcmd ps`
    DATE=`findcmd date`
    #
    # To get date (MMDDYY or some form suitable for use in a filename)
    # If nothing useful, then just echo ''
    #DATECMD="echo ''"
    DATECMD="$DATE +%y%m%d"
    #
    # To get HH:MM
    # If no +% stuff, then use
    #TIMECMD="$DATE | $AWK '{print substr($4,1,5);}'"
    TIMECMD="$DATE +%H:%M"
    #
    # Try to figure out whether diff -D needs a space or not...
    # (or whether -D is supported at all)
    #
    DIFFD=
    $DIFF -DABCDEFGH /etc/passwd /etc/group > /dev/null 2>&1 || {
      DIFFD=' '
      $DIFF -D ABCDEFGH /etc/passwd /etc/group > /dev/null 2>&1 || {
        DIFF=
      }
    }
    export DIFFD
    #
    # Jump through hoops to figure out how to test for a symbolic link
    #
    
    file=X.$$
    $LN -s . $file
    temp=$WORKDIR/F.$$
    > $temp
    ( [ -h X.$file ] ) 2> $temp
    if [ ! -s $temp ]; then
      TESTLINK=-h
    else
      > $temp
      ( [ -l X.$file ] ) 2> $temp
      if [ ! -s $temp ]; then
        TESTLINK=-l
      else
        > $temp
        ( [ -L X.$file ] ) 2> $temp
        if [ ! -s $temp ]; then
          TESTLINK=-L
        else
          TESTLINK=
        fi
      fi
    fi
    $RM -f $temp $file
    unset temp
    unset file
    export TESTLINK
    
    #
    #
    export UNAME HOSTNAME EXPR STRINGS FIND FINDXDEV
    export FMT GETFS CC PS DATE DATECMD TIMECMD
    WAIT=wait
    
    SENDMAILS=""
    for dir in /usr/lib /usr/sbin /etc /usr/etc
    do
      for prog in sendmail sendmail.mx smail
      do
        [ ! $TESTLINK "$dir/$prog" ] && {
          SENDMAILS="$SENDMAILS $dir/$prog"
        }
      done
    done
    export SENDMAILS
    
    SENDMAILCF=
    if [ -f /usr/lib/sendmail.cf ]; then
      SENDMAILCF=/usr/lib/sendmail.cf
    elif [ -f /etc/sendmail.cf ]; then
      SENDMAILCF=/etc/sendmail.cf
    elif [ -f /etc/mail/sendmail.cf ]; then
      SENDMAILCF=/etc/mail/sendmail.cf
    elif [ -f /etc/sendmail/sendmail.cf ]; then
      SENDMAILCF=/etc/sendmail/sendmail.cf
    elif [ -f /usr/lib/mail/sendmail.cf ]; then
      SENDMAILCF=/usr/lib/mail/sendmail.cf
    elif [ -f /usr/lib/sendmail/sendmail.cf ]; then
      SENDMAILCF=/usr/lib/sendmail/sendmail.cf
    fi
    export SENDMAILCF
    #
    YPCAT=`findcmd ypcat`
    #
    YPSERVER="NO"
    
    (($PS -ef || $PS -aux ) 2>/dev/null |
    $GREP ypserv | $GREP -v -s $GREP) && YPSERVER="YES"
    
    export WAIT YPCAT YPSERVER
    #
    if [ -d /usr/mail ]; then
      MAILSPOOL=/usr/mail
    elif [ -d /var/mail ]; then
      MAILSPOOL=/var/mail
    elif [ -d /usr/spool/mail ]; then
      MAILSPOOL=/usr/spool/mail
    elif [ -d /var/spool/mail ]; then
      MAILSPOOL=/var/spool/mail
    else
      MAILSPOOL=
    fi
    #
    if [ -d /var/spool/cron/crontabs ]; then
      CRONSPOOL=/var/spool/cron/crontabs
    elif [ -d /usr/spool/cron/crontabs ]; then
      CRONSPOOL=/usr/spool/cron/crontabs
    elif [ -d /etc/cron/crontabs ]; then
      CRONSPOOL=/etc/cron/crontabs
    elif [ -d /usr/lib/cron/crontabs ]; then
      CRONSPOOL=/usr/lib/cron/crontabs
    else
      CRONSPOOL=
    fi
    #
    ETCSHELLS=/etc/shells
    #
    export MAILSPOOL CRONSPOOL ETCSHELLS
    #
    LOCFS="4.2|4.3|ufs|jfs|4.4"
    export LOCFS
    #
    CDIR="$BASEDIR/systems"
    eval `
      while read var file
      do
        if [ -f "$CONFIG_DIR/$file" ]; then
          loc="$CONFIG_DIR"
        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
    GETUSERHOME getuserhome
    GETDISKS getdisks
    EMBEDDEDLIST embedlist
    EOL
    `
    tiger-3.2.3/systems/default/file_access_list0000644000175000017500000001107307502327223017634 0ustar  pacopaco#
    #     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.
    #
    # default/file_access_list - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    #                           owner group r w x   r w x   r w x LVL
    #--------------------------------------------------------------
    /                           root  .     1 . 1   1 0 1   1 0 1 W 018 018 018
    /etc                        root  .     1 . 1   1 0 1   1 0 1 W 019 019 019
    /bin                        root  .     1 . 1   1 0 1   1 0 1 W 001 002 003
    /usr                        root  .     1 . 1   1 0 1   1 0 1 W 001 002 003
    /usr/bin                    root  .     1 . 1   1 0 1   1 0 1 W 001 002 003
    /usr/lib                    root  .     1 . 1   1 0 1   1 0 1 . 001 002 003
    /usr/ucb                    root  .     1 . 1   1 0 1   1 0 1 . 001 002 003
    /etc/security               root  .     . . .   0 0 1   0 0 1 F 005 005 005
    /etc/security/*             root  .     . . .   0 0 0   0 0 0 F 005 005 005
    /var                        root  .     . . .   1 0 1   1 0 1 . 001 002 003
    /var/spool		    root  .     . . .   1 0 1   1 0 1 . 001 002 003
    /tftpboot                   root  .     . . .   . 0 .   . 0 . . 001 002 003
    /dev                        root  .     . . .   1 0 1   1 0 1 . 001 002 003
    #
    /.cshrc                     root  .     1 . .   . 0 .   . 0 . W 006 006 006
    /.login                     root  .     1 . .   . 0 .   . 0 . W 006 006 006
    /.profile                   root  .     1 . .   . 0 .   . 0 . W 006 006 006
    /.forward                   root  .     1 . .   . 0 .   . 0 . W 006 006 006
    /.rhosts                    root  .     1 . 0   0 0 0   0 0 0 W 006 006 006
    #
    /etc/aliases                root  .     1 . 0   1 0 0   1 0 0 F 007 007 007
    /etc/aliases.dir            root  .     1 . 0   1 0 0   1 0 0 F 007 007 007
    /etc/aliases.pag            root  .     1 . 0   1 0 0   1 0 0 F 007 007 007
    /etc/bootparams             root  .     1 . 0   . 0 0   . 0 0 W 001 002 003
    /etc/exports                root  .     1 . 0   . 0 0   . 0 0 W 008 008 008
    /etc/fstab                  root  .     1 . 0   . 0 0   . 0 0 W 001 002 003
    /etc/group                  root  .     1 . 0   1 0 0   1 0 0 F 009 009 009
    /etc/hosts.allow            root  .     1 . 0   1 0 0   1 0 0 W 010 010 010
    /etc/hosts.deny		    root  .     1 . 0   1 0 0   1 0 0 W 010 010 010
    /etc/hosts.equiv            root  .     1 . 0   0 0 0   0 0 0 W 011 011 011
    /etc/hosts.lpd              root  .     1 . 0   . 0 0   . 0 0 W 011 011 011
    /etc/inetd.conf             root  .     1 . 0   . 0 0   . 0 0 W 012 012 012
    /etc/motd                   root  .     1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/mtab                   root  .     1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/passwd                 root  .     1 . 0   1 0 0   1 0 0 A 014 014 014
    /etc/printcap               root  .     1 . 0   1 0 0   1 0 0 F 001 002 003
    /etc/rc                     root  .     1 . 0   . 0 0   . 0 0 F 015 015 015
    /etc/rc.boot                root  .     1 . 0   . 0 0   . 0 0 F 015 015 015 
    /etc/rc.local               root  .     1 . 0   . 0 0   . 0 0 F 015 015 015
    /etc/remote                 root  .     1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/resolv.conf            root  .     1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/rpc                    root  .     1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/sendmail.cf            root  .     1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/services               root  .     1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/syslog.conf            root  .     1 . 0   1 0 0   1 0 0 W 001 002 003
    /etc/syslog.pid             root  .     1 . 0   . 0 0   . 0 0 W 001 002 003
    /etc/ttys                   root  .     1 . 0   . 0 0   . 0 0 W 001 002 003
    /etc/ttytab                 root  .     1 . 0   1 0 0   1 0 0 . 001 002 003
    /etc/utmp                   root  .     1 . 0   1 0 0   1 0 0 W 001 002 003
    #
    /usr/bin/login              root  .     1 . 1   1 0 1   1 0 1 W 001 002 003
    /usr/bin/su                 root  .     1 . 1   . 0 .   . 0 . W 001 002 003
    tiger-3.2.3/systems/default/gen_alias_sets0000755000175000017500000000364107756435013017336 0ustar  pacopaco#!/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 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.
    #
    # default/gen_alias_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    # If run directly for testing purposes
    [ -z "$GREP" ] && GREP=`which grep`
    [ -z "$SORT" ] && SORT=`which grep`
    [ -z "$WORKDIR" ] && WORKDIR=/tmp
    
    
    [ -r /etc/aliases ] && {
      $GREP -v '^#' /etc/aliases |
      $SORT > $WORKDIR/etc_aliases.$$
      echo "/etc/aliases" > $WORKDIR/etc_aliases.$$.src
      echo $WORKDIR/etc_aliases.$$
    }
    
    [ -r /etc/mail/aliases ] && {
      $GREP -v '^#' /etc/mail/aliases |
      $SORT > $WORKDIR/etc_aliases.$$
      echo "/etc/mail/aliases" > $WORKDIR/etc_aliases.$$.src
      echo $WORKDIR/etc_aliases.$$
    }
    
    [ -r /etc/sendmail/aliases ] && {
      $GREP -v '^#' /etc/sendmail/aliases |
      $SORT > $WORKDIR/etc_aliases.$$
      echo "/etc/sendmail/aliases" > $WORKDIR/etc_aliases.$$.src
      echo $WORKDIR/etc_aliases.$$
    }
    
    [ -r /usr/lib/aliases ] && {
      $GREP -v '^#' /usr/lib/aliases |
      $SORT > $WORKDIR/etc_aliases.$$
      echo "/usr/lib/aliases" > $WORKDIR/etc_aliases.$$.src
      echo $WORKDIR/etc_aliases.$$
    }
    
    [ -n "$YPCAT" ] && {
      $YPCAT -k aliases |
      $SED -e 's/ /:/' | 
      $SORT |
      $COMM -23 - $WORKDIR/etc_aliases.$$ > $WORKDIR/nis_aliases.$$
      echo "NIS" > $WORKDIR/nis_aliases.$$.src
      echo $WORKDIR/nis_aliases.$$
    }
    tiger-3.2.3/systems/default/gen_bootparam_sets0000755000175000017500000000310407756435013020223 0ustar  pacopaco#!/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 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.
    #
    # default/gen_bootparam_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    # If run directly for testing purposes
    [ -z "$GREP" ] && GREP=`which grep`
    [ -z "$SORT" ] && SORT=`which grep`
    [ -z "$CAT" ] && CAT=`which cat`
    [ -z "$SED" ] && SED=`which sed`
    [ -z "$AWK" ] && AWK=`which sed`
    [ -z "$WORKDIR" ] && WORKDIR=/tmp
    
    
    [ -r /etc/bootparams ] && {
      $CAT /etc/bootparams |
      $SED -e 's/#.*$//' |
      $SED -e '/^[ \t]*$/d' |
      $AWK '
           BEGIN {LINE="";}
           /\\\\$/ {LINE=LINE " " substr($0, 1, length($0)-1);}
           !/\\\\$/ {print LINE $0; LINE="";}
      ' > $WORKDIR/etc_bootparams.$$
      echo "/etc/bootparams" > $WORKDIR/etc_bootparams.$$.src
      echo "$WORKDIR/etc_bootparams.$$"
    }
    
    [ -n "$YPCAT" ] && {
      $YPCAT bootparams > $WORKDIR/nis_bootparams.$$
      echo "NIS" > $WORKDIR/nis_bootparams.$$.src
      echo "$WORKDIR/nis_bootparams.$$"
    }
    tiger-3.2.3/systems/default/gen_cron0000755000175000017500000000266107502327223016141 0ustar  pacopaco#!/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 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.
    #
    # generic SYSV/gen_cron - 07/31/97
    #
    #-----------------------------------------------------------------------------
    #
    
    
    outfile=$1
    > $outfile
    
    (
      cd $CRONSPOOL
      $LS -l $LSGROUP *
    ) |
    while read x y owner a b c d e file
    do
      [ "$owner" != "root" ] && {
        echo "--WARN-- CRON file \`$file' is owned by $owner."
      }
      case $file in
        *[!a-zA-Z0-9]*)
          echo "--WARN-- 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
    	echo "--WARN-- Found cron file for unknown user $file."
          fi
          ;;
        esac
    done
      
    tiger-3.2.3/systems/default/gen_export_sets0000755000175000017500000000212707502327223017554 0ustar  pacopaco#!/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 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.
    #
    # default/gen_export_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    # If run directly for testing purposes
    [ -z "$GREP" ] && GREP=`which grep`
    [ -z "$WORKDIR" ] && WORKDIR=/tmp
    
    
    [ -r /etc/exports ] && {
      $GREP -v '^#' /etc/exports > $WORKDIR/etc_exports.$$
      echo "/etc/exports" > $WORKDIR/etc_exports.$$.src
      echo $WORKDIR/etc_exports.$$
    }
    tiger-3.2.3/systems/default/gen_group_sets0000755000175000017500000000242107756435013017374 0ustar  pacopaco#!/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 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.
    #
    # default/gen_group_sets - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    
    # If run directly for testing purposes
    [ -z "$GREP" ] && GREP=`which grep` 
    [ -z "$SORT" ] && SORT=`which grep`
    [ -z "$WORKDIR" ] && WORKDIR=/tmp
    
    
    $GREP -v '^[-+]' /etc/group |
    $SORT > $WORKDIR/etc_group.$$
    echo "/etc/group" > $WORKDIR/etc_group.$$.src
    echo $WORKDIR/etc_group.$$
    
    [ -n "$YPCAT" ] && {
      $YPCAT group |
      $SORT |
      $COMM -23 - $WORKDIR/etc_group.$$ > $WORKDIR/nis_group.$$
      echo "NIS" > $WORKDIR/nis_group.$$.src
      echo $WORKDIR/nis_group.$$
    }
    
    tiger-3.2.3/systems/default/gen_inetd0000755000175000017500000000213307502327223016275 0ustar  pacopaco#!/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 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.
    #
    # default/gen_inetd - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    # If run directly for testing purposes
    [ -z "$GREP" ] && GREP=`which grep`
    [ -z "$SORT" ] && SORT=`which grep`
    [ -z "$WORKDIR" ] && WORKDIR=/tmp
    
    
    $GREP -v '^#' /etc/inetd.conf |
    $SORT > $WORKDIR/etc_inetd.$$
    echo "/etc/inetd.conf" > $WORKDIR/etc_inetd.$$.src
    echo $WORKDIR/etc_inetd.$$
    tiger-3.2.3/systems/default/gen_passwd_sets0000755000175000017500000000325707756435013017551 0ustar  pacopaco#!/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 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.
    #
    # 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
      case "$parm" in
        -p) ;;
        -l) local=1;;
        *)	outfile="$parm";;
      esac
    done
    
    $CAT /etc/passwd > $WORKDIR/etc_passwd.$$
    echo "/etc/passwd" > $WORKDIR/etc_passwd.$$.src
    echo $WORKDIR/etc_passwd.$$ >> $outfile
    
    [ -n "$YPCAT" ] &&  {
      $YPCAT passwd > $WORKDIR/nis_passwd.$$
      echo "NIS" > $WORKDIR/nis_passwd.$$.src
      echo $WORKDIR/nis_passwd.$$ >> $outfile
    }
    tiger-3.2.3/systems/default/gen_services0000755000175000017500000000231107756435013017023 0ustar  pacopaco#!/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 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.
    #
    # default/gen_services - 06/14/93
    #
    #-----------------------------------------------------------------------------
    #
    # If run directly for testing purposes
    [ -z "$GREP" ] && GREP=`which grep`
    [ -z "$WORKDIR" ] && WORKDIR=/tmp
    
    
    $GREP -v '^#' /etc/services > $WORKDIR/etc_services.$$
    echo "/etc/services" > $WORKDIR/etc_services.$$.src
    echo $WORKDIR/etc_services.$$
    
    [ -n "$YPCAT" ] && {
      $YPCAT services > $WORKDIR/nis_services.$$
      echo "NIS" > $WORKDIR/nis_services.$$.src
      echo $WORKDIR/nis_services.$$
    }
    
    tiger-3.2.3/systems/default/gendlclients0000755000175000017500000000314710045247305017020 0ustar  pacopaco#!/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 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.
    #
    # default/gendlclients - MM/DD/YY
    # 05/02/2004 jfs  Try to avoid eval problems if handling variables with
    #                 special characters (such as space)
    #
    #-----------------------------------------------------------------------------
    #
    
    
    parse_bootparam()
    {
      $AWK '
           BEGIN {LINE="";}
           $0 ~ /\\$/ {printf("%s ", substr($0, 1, length($0)-1));}
           $0 !~ /\\$/ {printf("%s\n", $0);}
           END {printf("\n");}
       ' |
      $AWK '{
               for(i=2;i<=NF;i++)
                 if(substr($i, 1,5) == "root="){
    	       x=substr($i, 6, length($i));
                   split(x, ar, ":");
                   print $1, ar[1], ar[2];
       	     }
            }'
    }
    
    $GEN_BOOTPARAM_SETS | 
    while read bootparam_set
    do
      parse_bootparam < $bootparam_set
      
      $RM -f $bootparam_set $bootparam_set.src
    done |
    $SORT -u |
    while read client server filesys
    do
      eval "case \"$server\" in $HOSTNAMESLIST) echo \"$client $filesys\";; esac"
    done
    tiger-3.2.3/systems/default/getuserhome0000755000175000017500000000126407502327223016674 0ustar  pacopaco#!/bin/sh
    #    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.
    
    #
    # cd to / in case we are down in a directory we don't have read
    # access to.  /bin/csh will barf if that is the case.
    #
    cd /
    
    user="$1"
    
    /bin/csh -c "echo ~$user" 2> /dev/null
    
    
    tiger-3.2.3/systems/default/rel_file_exp_list0000644000175000017500000000000007502327223020015 0ustar  pacopacotiger-3.2.3/systems/default/services0000644000175000017500000000137107502327223016164 0ustar  pacopacoNeWS 144/tcp
    biff 512/udp
    chargen 19/tcp
    chargen 19/udp
    courier 530/tcp
    csnet-ns 105/tcp
    daytime 13/tcp
    daytime 13/udp
    discard 9/tcp
    discard 9/udp
    domain 53/tcp
    domain 53/udp
    echo 7/tcp
    echo 7/udp
    exec 512/tcp
    finger 79/tcp
    ftp 21/tcp
    ftp-data 20/tcp
    hostnames 101/tcp
    iso-tsap 102/tcp
    link 87/tcp
    login 513/tcp
    monitor 561/udp
    name 42/udp
    netstat 15/tcp
    new-rwho 550/udp
    nntp 119/tcp
    ntalk 518/udp
    ntp 123/tcp
    pcserver 600/tcp
    pop-2 109/tcp
    printer 515/tcp
    rje 77/tcp
    rmonitor 560/udp
    route 520/udp
    shell 514/tcp
    smtp 25/tcp
    sunrpc 111/tcp
    sunrpc 111/udp
    supdup 95/tcp
    syslog 514/udp
    systat 11/tcp
    talk 517/udp
    tcpmux 1/tcp
    telnet 23/tcp
    tftp 69/udp
    time 37/tcp
    time 37/udp
    uucp 540/tcp
    uucp-path 117/tcp
    who 513/udp
    whois 43/tcp
    x400 103/tcp
    x400-snd 104/tcp
    tiger-3.2.3/systems/default/suid_list0000644000175000017500000000000007502327223016324 0ustar  pacopacotiger-3.2.3/util/0000755000175000017500000000000011306441065012234 5ustar  pacopacotiger-3.2.3/util/buildbins0000755000175000017500000001064607720446512014153 0ustar  pacopaco#!/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.
    #
    # buildbins - 06/16/93
    # 
    # Build Tiger binaries: realpath, snefru, testsuid, md5, and getpermit
    # for the different operating systems.
    #
    #-----------------------------------------------------------------------------
    #
    TigerInstallDir='.'
    
    outfile=
    [ -n "$1" ] && {
      case "$1" in
        -*);;
        *) outfile="$1"; shift;;
      esac
    }
    
    #
    # 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
    }
    
    TigerNoBuild=Y
    
    . $basedir/config
    
    . $BASEDIR/initdefs
    
    #
    # If run in test mode (-t) this will verify that all required
    # elements are set.
    #
    [ "$Tiger_TESTMODE" = 'Y' ] && {
      haveallcmds RM CC CAT MV  || exit 1
      haveallfiles BASEDIR WORKDIR || exit 1
      
      echo "--CONFIG-- [init003c] $0: Configuration ok..."
      exit 0
    }
    
    #------------------------------------------------------------------------
    
    haveallcmds CAT || exit 1
    haveallfiles BASEDIR BINDIR WORKDIR || exit 1
    
    snefru="snefru.c"
    realpath="realpath.c"
    testsuid="testsuid.c"
    md5="md5.c"
    getpermit="getpermit.c"
    
    toplevel=$BASEDIR/systems/$OS
    
    setbintype=0
    if [ -f $BINDIR/.bintype ]; then
      read os rev arch < $BINDIR/.bintype
      [ "$os" != "$OS" -o "$rev" != "$REV" -o "$arch" != "$ARCH" ] && {
        for file in $cmds
        do
          $RM -f $BINDIR/$file
        done
        $RM -f $BINDIR/.bintype
        setbintype=1
      }
    else
      setbintype=1
    fi
    
    {
      while read cmd cmdvar
      do
        foundit=0
        for dir in $REL/$REV/$ARCH $REL/$REV $REL
        do
          if [ $TESTEXEC $toplevel/$dir/$cmd ]; then
    	echo "$cmdvar=$toplevel/$dir/$cmd; export $cmdvar"
    	foundit=1
    	break
          fi
        done
    
        [ $foundit -eq 0 ] &&
        if [ $setbintype -eq 1 -o ! $TESTEXEC $BINDIR/$cmd ]; then
          haveallcmds CC && {
    	eval sources="\$$cmd"
    	objlist=
    	for source in $sources
    	do
    	  foundit=0
    	  
    	  for dir in $REL/$REV/$ARCH $REL/$REV $REL
    	  do
    	    if [ -f $toplevel/$dir/$source ]; then
    	      $CAT $toplevel/$dir/$source > $WORKDIR/$source
    	      (cd $WORKDIR; $CC $CFLAGS -c $source)
    	      delete $WORKDIR/$source
    	      foundit=1
    	      break
    	    fi
    	  done
    	  
    	  [ $foundit -ne 1 -a -f $BASEDIR/c/$source ] && {
    	    $CAT $BASEDIR/c/$source > $WORKDIR/$source
    	    (cd $WORKDIR; $CC $CFLAGS -c $source)
    	    delete $WORKDIR/$source
    	    foundit=1
    	  }
    	
    	  [ $foundit -eq 1 ] && {
    	    objlist="$objlist `$BASENAME $source .c`.o"
    	  }
    	done
          
    	(
              umask 022
    	  cd $WORKDIR
    	  $CC $CFLAGS $objlist -o $cmd $CLIBS
    	)
    	if [ -f $WORKDIR/$cmd ]; then
    	  (
    	    umask 022
    	    if haveallcmds MV; then
    	      $MV $WORKDIR/$cmd $BINDIR 2>/dev/null &&
    	        echo "$cmdvar=$BINDIR/$cmd; export $cmdvar"
    	    else
    	      $CAT $WORKDIR/$cmd > $BINDIR/$cmd 2>/dev/null &&
    		echo "$cmdvar=$BINDIR/$cmd; export $cmdvar"
    	      delete $WORKDIR/$cmd
    	    fi
    	    if [ -f $WORKDIR/$cmd ]; then
    	      # For some reason it didn't move... use it where it sits
    	      # We won't be cleaning this up though... sorry...
    	      echo "$cmdvar=$WORKDIR/$cmd; export $cmdvar"
    	    fi
    	  )
    	fi
    	for obj in $objlist
    	do
    	  delete $WORKDIR/$obj
    	done
          }
        else
          echo "$cmdvar=$BINDIR/$cmd; export $cmdvar"
        fi
      done << EOF
    realpath REALPATH
    snefru SNEFRU
    testsuid TESTSUID
    md5 MD5
    getpermit GETPERMIT
    EOF
    } |
    {
      if [ -n "$outfile" ]; then
        $SED -e 's/^\(--[A-Z].*\)$/echo "\1"/' > $outfile
      else
        $SED -e 's/^\(--[A-Z].*\)$/echo "\1"/'
      fi
    }
    
    [ $setbintype -eq 1 ] && {
      echo "$OS $REV $ARCH" > $BINDIR/.bintype
      haveallcmds CHMOD && $CHMOD 644 $BINDIR/.bintype
    } 2>/dev/null
    tiger-3.2.3/util/buildconf0000755000175000017500000001427310664615315014145 0ustar  pacopaco#!/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.
    #
    # buildconf
    #
    # Creates a configuration file for any given operating system and
    # release with all the standard configuration files. Can be used
    # as a first step to any port.
    #
    # 07/26/2002 jfs Modified so it can work properly standalone
    # 04/15/2003 jfs Added necessary commands CUT WC EXPAND HEAD ID
    # 04/23/2003 jfs Bail out if no argument is given, sanity check on confile
    # 08/11/2003 jfs Alphabetically ordered commands and added some other.
    #
    # ------------------------------------------------------------------------
    
    
    [ -z "$WORKDIR" ] && WORKDIR=./run
    [ -z "$BASEDIR" ] && BASEDIR=.
    [ -z "$GREP" ] && GREP=`which grep`
    [ -z "$EGREP" ] && EGREP=`which egrep`
    [ -z "$TAIL" ] && TAIL=`which tail`
    [ -z "$AWK" ] && AWK=`which awk`
    [ -z "$LS" ] && LS=`which ls`
    [ -z "$CAT" ] && CAT=`which cat`
    [ -z "$SED" ] && CAT=`which sed`
    
    confile=
    [ -n "$1" ] && {
      case "$1" in
        -*);;
        *) confile="$1"; shift;;
      esac
    }
    
    [ -z "$confile" ] && {
    	echo "You must specify the name of the file to store the configuration"
    	exit 1;
    }
    
    # If given as a relative file add a complete location
    # (otherwise sourcing it might have unexpected consequences since
    # it depends on PATH having '.')
    [ -z "`echo $confile |$EGREP ^[/\.]`" ] && confile="./$confile"
    
    
    findcmd()
    {
      CMD=$1
    
      SRCH=/usr/ucb:/usr/bin:/bin:/etc:/usr/etc
      
      SAVEIFS=$IFS
      IFS=:
      set $SRCH
      IFS=$SAVEIFS
      for dir
      do
        [ $TESTEXEC $dir/$CMD ] && {
          echo $dir/$CMD
          return
        }
      done
    }
    
    TESTEXEC=-x
    ( [ $TESTEXEC /bin/sh ] ) 2> $WORKDIR/te.$$
    [ -s $WORKDIR/te.$$ ] && TESTEXEC=-f
    export TESTEXEC
    
    RM=`findcmd rm`
    [ -n "$RM" ] && $RM $WORKDIR/te.$$
    
    while read var cmds
    do
      gotit=0
      for cmd in $cmds
      do
        where=`findcmd $cmd`
        if [ "$where" != "" ]; then
          echo "$var=$where"
          echo "export $var"
          gotit=1
          break
        fi
      done
      [ $gotit = 0 ] && {
        echo '#'
        echo "# Could not locate $cmd"
        echo '#'
        echo "$var="
        echo "export $var"
        echo "Can not find $var as any of: $cmd" 1>&2
      }
    done << EOL > $confile
    AWK awk
    BASENAME basename
    CAT cat
    CC cc
    CHAGE chage
    CHMOD chmod
    CHOWN chown
    COLUMN column
    COMM comm
    CUT cut
    DATE date
    DIFF diff
    EGREP egrep
    EXPAND expand
    EXPR expr
    FILECMD file
    FIND find
    FMT fmt cat
    GETFS mount
    GETHOSTNAME hostname
    GREP grep
    GROUPSS groups
    HEAD head
    ID id
    IFCONFIG ifconfig
    JOIN join
    LASTLOG lastlog
    LN ln
    LS ls
    LSOF lsof
    MAIL mail mailx Mail sendmail
    MAILER mail mailx Mail sendmail
    MESG mesg
    MD5 md5
    MD5SUM md5sum
    MV mv
    NETSTAT netstat
    PASTE paste
    PS ps
    PWCK pwck
    PWD pwd
    REALPATH realpath
    RM rm
    SED sed
    SNEFRU snefru
    SORT sort
    STRINGS strings
    TAIL tail
    TCPD tcpd
    TEE tee
    TEST test
    TR tr
    UNAME uname
    UNIQ uniq
    YPCAT ypcat
    WC wc
    EOL
    
    echo "WAIT=wait" >> $confile
    echo "export WAIT" >> $confile
    
    . $confile
    
    echo "#" >> $confile
    echo "# How to get different effects" >> $confile
    echo "#" >> $confile
    
    datecmd='$DATE +%D'
    timecmd='$DATE +%H:%M:%S'
    eval $datecmd 2>/dev/null > /dev/null || {
      datecmd='echo'
      timecmd='echo'
    }
    echo "DATECMD=\"$datecmd\"" >> $confile
    echo "TIMECMD=\"$timecmd\"" >> $confile
    echo "export DATECMD TIMECMD" >> $confile
    
    sgrep='$EGREP -s'
    X=`$EGREP -s : /etc/passwd 2>&1 | $TAIL -n 1`
    [ "$X" != "" ] && {
      sgrep='$GREP -s'
      X=`$GREP -s : /etc/passwd 2>&1 | $TAIL -n 1`
      [ "$X" != "" ] && {
        sgrep='$BASEDIR/util/sgrep'
      }
    }
    
    echo "SGREP=\"$sgrep\"" >> $confile
    echo "export SGREP" >> $confile
    
    lsgroup="-g"
    F1=`$LS -l $lsgroup -d /etc | $AWK '{print NF}'`
    F2=`$LS -d /etc | $AWK '{print NF}'`
    [ $F1 -lt $F2 ] && lsgroup=
    
    echo "LSGROUP=$lsgroup" >> $confile
    echo "export LSGROUP" >> $confile
    
    lslink="-L"
    $LS $lslink 2>/dev/null >/dev/null || lslink=
    
    echo "LSLINK=$lslink" >> $confile
    echo "export LSLINK" >> $confile
    
    echo '#' >> $confile
    echo '# Where are system directories/files?' >> $confile
    echo '#' >> $confile
    
    if [ -d /usr/mail ]; then
      echo "MAILSPOOL=/usr/mail" >> $confile
    elif [ -d /usr/spool/mail ]; then
      echo "MAILSPOOL=/usr/spool/mail" >> $confile
    elif [ -d /var/spool/mail ]; then
      echo "MAILSPOOL=/var/spool/mail" >> $confile
    else
      echo "MAILSPOOL=" >> $confile
    fi
    
    echo "export MAILSPOOL" >> $confile
    
    if [ -d /usr/spool/cron/crontabs ]; then
      echo "CRONTAB=/usr/spool/cron/crontabs" >> $confile
    elif [ -d /var/spool/cron/crontabs ]; then
      echo "CRONTAB=/var/spool/cron/crontabs" >> $confile
    elif [ -d /etc/cron ]; then
      echo "CRONTAB=/etc/cron" >> $confile
    else
      echo "CRONTAB="
    fi
    
    echo "export CRONTAB" >> $confile
    
    echo "ETCSHELLS=/etc/shell" >> $confile
    echo "export ETCSHELLS" >> $confile
    echo >> $confile
    
    echo '#' >> $confile
    echo '# Segment of code to find system specific tiger parts' >> $confile
    echo '#' >> $confile
    
    $CAT <<'_END_OF_TEXT' >> $confile
    
    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 gen_mounts
    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
    EOL
    `
    _END_OF_TEXT
    tiger-3.2.3/util/consistency-check0000644000175000017500000000635407660507011015605 0ustar  pacopaco#!/bin/sh
    # Consistency check for Tiger
    #
    # This program can be used to determine if the Tiger sources are ok.
    # By looking for common mistakes 
    # - scripts not available but executed by the program
    # - scripts available but not executed
    # - configuration options which are not used
    #
    # (c) 2003 Javier Fernandez-Sanguino
    
    #    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.
    
    # 1.- Verify that all scripts called by tigerrc are available
    
    PROGRAM="tiger"
    CONFIG="tigerrc"
    SCRIPTDIR="./scripts"
    if [ ! -r "$PROGRAM" -o ! -r "$CONFIG" -o ! -d "$SCRIPTDIR" ] 
    then
    	echo "ERR: $0 cannot find $PROGRAM, $CONFIG or $SCRIPTDIR"
    	echo "żAre you running it from the distribution root dir?"
    	exit 1
    fi
    
    
    check_progcall () {
    echo "Checking $PROGRAM call to scripts"
    cat $PROGRAM |
    grep -v '^#' |
    grep SCRIPTDIR/ |
    while read line
    do
    	script=`echo $line | awk -F / '{print $2}' | sed -e 's/ .*$//'`
    	if [ ! -f "$SCRIPTDIR/$script" ] 
    	then
    		echo "ERR: $PROGRAM references nonexistant $script in $SCRIPTDIR "
    	fi
    done
    }
    
    check_scriptuse () {
    # 2.- Verify that all scripts in $SCRIPTDIR are used by tiger
    for script in $SCRIPTDIR/*
    do
    	if [ -f "$script" -a -x "$script" -a -s "$script" ] 
    	then
    		script=`basename $script`
    		found=`cat $PROGRAM | grep -v '^#' | grep SCRIPTDIR/$script`
    		[ -z "$found" ] &&
    		echo "WARN: Script $script will not be run by $PROGRAM"
    	fi
    
    done
    }
    
    # 3.- Verify that all check variables used by tiger are in tigerrc and
    #     viceversa
    
    check_configuse () {
    echo "Checking $PROGRAM use of config lines"
    cat $PROGRAM |
    grep -v '^#' |
    sed -ne 's/^.*Tiger_Check_\([a-z]*\)\" != '[YN]' !.*/Tiger_Check_\1/pg' |
    while read configcheck
    do
    	[ -n "$configcheck" ] && 
    	[ -z "`grep $configcheck $CONFIG | grep -v '^#'`" ] &&
    	echo "ERR: $PROGRAM uses $configcheck which is not in $CONFIG"
    done
    
    echo "Checking configuration lines of $CONFIG in $PROGRAM"
    cat $CONFIG |
    grep -v '^#' |
    grep ^Tiger_Check |
    awk -F = '{ print $1; }' |
    while read configcheck
    do
    	[ -n "$configcheck" ] && 
    	[ -z "`grep $configcheck $PROGRAM | grep -v '^#'`" ] &&
    	echo "ERR: $CONFIG defines $configcheck which is not used by $PROGRAM"
    done
    }
    
    # 4.- Check all the dependancies of scripts
    
    check_haveall () {
    # TODO: ugly hack, needs much improvement 
    	script=$1
    	type=$2
    	grep $type $script |
    	head -1 | 
    	sed -e "s/$type \(.*\) ||/\1/" |
    	awk '{ split ($0,list,/ /); for (value in list) {print list[value]} ; } ' |
    	while read cmd
    	do
    		if [ -n "$cmd" ] ; then
    		count=`grep $cmd $script | grep $type | wc -l`
    		[ "$count" -lt 2 ] &&
    		echo "ERR: $type not sincronised, missing $cmd in $script"
    		fi
    	done
    }
    
    check_scriptdepend () {
    for script in $SCRIPTDIR/*
    do
    	check_haveall "$script" haveallcmds
    	check_haveall "$script" haveallfiles
    #	check_haveall "$script" haveallvars
    done
    }
    
    # Checks to do
    check_progcall
    check_scriptuse
    check_configuse
    check_scriptdepend
    
    
    exit 0
    tiger-3.2.3/util/convert2html0000644000175000017500000000171507650722574014630 0ustar  pacopaco# A sub script to doc2html.  Not to be run independently.
    #
    #    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.
    
    cnt=0
    read line
    while [ TRUE ]; do
    if [ "`echo $line | grep "%"`" ]; then
      if [ "$cnt" -eq 1 ]; then
       echo "
    "
       echo;echo;echo;echo;echo;echo;echo;echo;echo;echo
       echo "

    " fi cnt=1 line1=$line line=`echo "

    Code [$line1]

    "|sed -e "s/%//g"` fi if [ -z "$line" ]; then echo "

    " else echo $line fi read line if [ `echo $?` -ne 0 ]; then exit; fi done tiger-3.2.3/util/difflogs0000755000175000017500000000615007733075556014002 0ustar pacopaco#!/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. # # difflogs - 06/16/93 # # 09/19/2003 - jfs - Fix from Nicholas François to work properly in Solaris. # 05/12/2003 - jfs - Sort input before diffing. For some reason some # checks might not always sort information properly # and people might get spurious reports. # 12/26/2001 jfs Modified intensively to work properly. Added # a new feature and associated variables in tigerrc so that cron jobs # can be compared against a "template" (policy-compliant?) runs. # This can reduce false positives even if they cannot be reduced # in a given module. # #----------------------------------------------------------------------------- # TODO: # - Consider including always ERR messages regardless of wether they were not # present since otherwise scripts that do not run (due to ERRs) might be # only reported once in cron. Maybe this could be an option? # (Always_Report_ERR?) #----------------------------------------------------------------------------- # [ -z "$DIFF" ] && DIFF=`which diff` [ -z "$CAT" ] && CAT=`which cat` [ -z "$RM" ] && RM=`which rm` [ -z "$SORT" ] && SORT=`which sort` [ -z "$SORT" ] && SORT=$CAT [ -z "$WORKDIR" ] && WORKDIR="/tmp" oldfile="$1" newfile="$2" SPC="$DIFFD" [ ! -n "$DIFF" ] && { $CAT $newfile exit 0 } if [ -s "$oldfile" ]; then $SORT $oldfile >$WORKDIR/oldfile.sort.$$ $SORT $newfile >$WORKDIR/newfile.sort.$$ $DIFF -D${SPC}TIGERCHANGES $WORKDIR/oldfile.sort.$$ $WORKDIR/newfile.sort.$$ | { lastcontext= flag=0 listing=0 while read line do case "$line" in '#ifdef TIGERCHANGES') flag=1;; \#endif*) flag=0;; '#ifndef TIGERCHANGES') flag=2;; \#else*) { [ $flag -eq 1 ] && flag=2 [ $flag -eq 2 ] && flag=1 } ;; \#*) { listing=0 [ $flag -eq 2 -o $flag -eq 1 ] && echo "$line" [ $flag -eq 0 ] && lastcontext=$line } ;; --[A-Z]*) { listing=1 [ -n "$lastcontext" ] && echo "$lastcontext" [ $flag -eq 1 ] && echo "NEW: $line" [ $flag -eq 2 ] && echo "OLD: $line" lastcontext= } ;; *) { [ -n "$line" -a $listing -eq 1 ] && { [ $flag -eq 1 ] && echo "NEW: $line" [ $flag -eq 2 ] && echo "OLD: $line" } } ;; esac done } > $WORKDIR/tc.msg.$$ $CAT $WORKDIR/tc.msg.$$ $RM -f "$WORKDIR/tc.msg.$$" [ -f "$WORKDIR/newfile.sort.$$" ] && $RM -f "$WORKDIR/newfile.sort.$$" [ -f "$WORKDIR/oldfile.sort.$$" ] && $RM -f "$WORKDIR/oldfile.sort.$$" else $CAT $newfile fi tiger-3.2.3/util/doc2html0000644000175000017500000000257211061355347013706 0ustar pacopaco#!/bin/sh # # Script to convert doc/*.txt to html/*.html for -H option. # Must re re-run after any change to any of the *.txt files # # 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. # # CNT=0 # Where are we? DIR=`dirname $0` if [ -z "$1" ]; then # If called without arguments we run over all the text files under doc set ../doc/*.txt fi while [ "$1" ]; do OUTF=`echo $1 | sed -e "s/\.txt/.html/"` TITLE=`echo $1 | sed -e "s/\.\.\/doc\///" | sed -e "s/\.txt//"` if [ $CNT -eq 1 ]; then echo "


    " > $OUTF
       echo >> $OUTF
       echo >> $OUTF
       echo >> $OUTF
       echo >> $OUTF
       echo >> $OUTF
       echo >> $OUTF
       echo >> $OUTF
       echo >> $OUTF
       echo "

    " >> $OUTF else echo "
    " > $OUTF fi echo "

    Documents for $TITLE

    " >> $OUTF echo "Doing $1" cat $1 | sh $DIR/convert2html >> $OUTF shift CNT=1 done tiger-3.2.3/util/facl.lst0000644000175000017500000001556707720447257013721 0ustar pacopaco/ W 018 018 018 /.bashrc W 006 006 006 /bin . 001 002 003 /bin/* . 001 002 003 /bin/bash W 001 002 003 /bin/login F 001 002 003 /bin/passwd F 001 002 003 /bin/sh W 001 002 003 /bin/su F 001 002 003 /bin W 001 002 003 /bin/wall . 001 002 003 /bin/write . 001 002 003 /boot . 001 002 003 /boot/vmlinuz . 001 002 003 /.cshrc W 006 006 006 /dev . 001 002 003 /dev/audio . 001 002 003 /dev/audioctl . 001 002 003 /dev/console . 001 002 003 /dev/eeprom . 001 002 003 /dev/kmem . 001 002 003 /dev/mbio . 001 002 003 /dev/mbmem . 001 002 003 /dev/mem . 001 002 003 /dev/nit . 001 002 003 /dev/null . 001 002 003 /dev/openprom . 001 002 003 /dev/sbus* . 001 002 003 /dev/tty . 001 002 003 /dev/vme* . 001 002 003 /dev/zero . 001 002 003 /etc W 019 019 019 /etc/* . 001 002 003 /etc/acid . 001 002 003 /etc/aliases F 007 007 007 /etc/aliases.db F 007 007 007 /etc/aliases.dir F 007 007 007 /etc/aliases F 007 007 007 /etc/aliases.pag F 007 007 007 /etc/bootparams W 001 002 003 /etc/brc . 001 002 003 /etc/checklist . 001 002 003 /etc/config . 001 002 003 /etc/config/* W 001 002 003 /etc/cshrc . 001 002 003 /etc/exports W 008 008 008 /etc/fstab W 001 002 003 /etc/fstyp.d/* W 001 002 003 /etc/gettytab W 001 002 003 /etc/group . 001 002 003 /etc/group F 009 009 009 /etc/hosts F 001 002 003 /etc/hosts.allow W 010 010 010 /etc/hosts.bin . 001 002 003 /etc/hosts.conf W 012 012 012 /etc/hosts.deny W 010 010 010 /etc/hosts.equiv W 011 011 011 /etc/hosts.lpd W 011 011 011 /etc/inetd.conf W 012 012 012 /etc/login.access F 026 026 026 /etc/login.conf F 027 027 027 /etc/init.d F 015 015 015 /etc/init.d/* F 015 015 015 /etc/inittab W 001 002 003 /etc/ld.so.cache W 001 002 003 /etc/mail . 001 002 003 /etc/mail/aliases . 001 002 003 /etc/mail/aliases.dir . 001 002 003 /etc/mail/aliases.pag . 001 002 003 /etc/mail/sendmail.cf . 001 002 003 /etc/mnttab . 001 002 003 /etc/modules . 001 002 003 /etc/motd W 001 002 003 /etc/mtab W 001 002 003 /etc/netgroup F 013 013 013 /etc/netinfo . 001 002 003 /etc/nulib . 001 002 003 /etc/pam.d/* W 029 029 029 /etc/passwd A 014 014 014 /etc/printcap W 001 002 003 /etc/profile . 001 002 003 /etc/rc . 001 002 003 /etc/rc 015 015 /etc/rc.boot F 015 015 015 /etc/rc.cdrom F 015 015 015 /etc/rc?.d F 015 015 015 /etc/rc?.d/* F 015 015 015 /etc/rc.d F 015 015 015 /etc/rc F 015 015 015 /etc/rc? F 015 015 015 /etc/rc.local 015 015 /etc/rc.local F 015 015 015 /etc/rc.mid . 001 002 003 /etc/rc.pst . 001 002 003 /etc/rc.swap F 015 015 015 /etc/rc.uucp F 015 015 015 /etc/remote W 001 002 003 /etc/resolv.conf W 016 016 016 /etc/rpc W 001 002 003 /etc/security/* A 005 005 005 /etc/security A 005 005 005 /etc/security/passwd.adjunct A 005 005 005 /etc/sendmail . 001 002 003 /etc/sendmail/aliases.dir F 007 007 007 /etc/sendmail/aliases F 007 007 007 /etc/sendmail/aliases.pag F 007 007 007 /etc/sendmail.cf W 001 002 003 /etc/sendmail/sendmail.mailhost.cf W 001 002 003 /etc/sendmail/sendmail.sharedsubsidiary.cf W 001 002 003 /etc/sendmail/sendmail.subsidiary.cf W 001 002 003 /etc/services W 001 002 003 /etc/sudoers W 017 017 017 /etc/suid_exec . 001 002 003 /etc/syslog.conf W 001 002 003 /etc/syslog.pid W 001 002 003 /etc/transferDevice/* W 001 002 003 /etc/ttys W 030 030 030 /etc/default/login W 030 030 030 /etc/security W 030 030 030 /etc/securetty W 030 030 030 /etc/ttytab W 030 030 030 /etc/udb . 001 002 003 /etc/udb.public . 001 002 003 /etc/uidmaps . 001 002 003 /etc/utmp W 017 017 017 /etc/uucp . 001 002 003 /etc/uucp/L.aliases . 001 002 003 /etc/uucp/L.cmds . 001 002 003 /etc/uucp/L-devices . 001 002 003 /etc/uucp/L-dialcodes . 001 002 003 /etc/uucp/L.sys . 001 002 003 /etc/uucp/Permissions . 001 002 003 /etc/uucp/Systems . 001 002 003 /etc/wtmp . 001 002 003 /etc/yp . 001 002 003 /etc/zoneinfo . 001 002 003 /.forward W 006 006 006 /hw . 001 002 003 /.kshrc W 006 006 006 /lib . 001 002 003 /.login W 006 006 006 /private/adm . 001 002 003 /private/dev . 001 002 003 /private/etc . 001 002 003 /private/Net . 001 002 003 /private/preserve . 001 002 003 /private/spool . 001 002 003 /private/tftpboot . 001 002 003 /private/vm . 001 002 003 /private W 001 002 003 /.profile W 006 006 006 /.rhosts W 006 006 006 /root/.bashrc W 006 006 006 /root/.cshrc W 006 006 006 /root/.forward W 006 006 006 /root/.kshrc W 006 006 006 /root/.login W 006 006 006 /root/.profile W 006 006 006 /root/.rhosts W 006 006 006 /sbin W 001 002 003 /sdmach . 001 002 003 /.tcshrc . 001 002 003 /tftpboot . 001 002 003 /unicos . 001 002 003 /unix . 001 002 003 /usr . 001 002 003 /usr/* . 001 002 003 /usr/5include . 001 002 003 /usr/5lib . 001 002 003 /usr/adm . 001 002 003 /usr/bin A 001 002 003 /usr/bin/* . 001 002 003 /usr/bin/at . 001 002 003 /usr/bin/atq . 001 002 003 /usr/bin/atrm . 001 002 003 /usr/bin/cu . 001 002 003 /usr/bin/login F 001 002 003 /usr/bin/passwd F 001 002 003 /usr/bin/ruusend . 001 002 003 /usr/bin/sh W 001 002 003 /usr/bin/su F 001 002 003 /usr/bin/su.nowheel F 001 002 003 /usr/bin/su.wheel F 001 002 003 /usr/bin/tip . 001 002 003 /usr/bin/uscpblock . 001 002 003 /usr/bin/uscpping . 001 002 003 /usr/bin/uucp . 001 002 003 /usr/bin/uudecode . 001 002 003 /usr/bin/uuencode . 001 002 003 /usr/bin/uulog . 001 002 003 /usr/bin/uuname . 001 002 003 /usr/bin/uupick . 001 002 003 /usr/bin/uupoll . 001 002 003 /usr/bin/uuq . 001 002 003 /usr/bin/uusend . 001 002 003 /usr/bin/uusnap . 001 002 003 /usr/bin/uustat . 001 002 003 /usr/bin/uuto . 001 002 003 /usr/bin/uux . 001 002 003 /usr/bin/wall . 001 002 003 /usr/bin/write . 001 002 003 /usr/demo . 001 002 003 /usr/diag . 001 002 003 /usr/dict . 001 002 003 /usr/etc . 001 002 003 /usr/export . 001 002 003 /usr/filesystems . 001 002 003 /usr/games . 001 002 003 /usr/gen . 001 002 003 /usr/hosts . 001 002 003 /usr/lang . 001 002 003 /usr/lib . 001 002 003 /usr/lib/aliases.dir F 007 007 007 /usr/lib/aliases F 007 007 007 /usr/lib/aliases.pag F 007 007 007 /usr/lib/sendmail.cf W 001 002 003 /usr/mail . 001 002 003 /usr/netware . 001 002 003 /usr/openwin . 001 002 003 /usr/prman . 001 002 003 /usr/pub . 001 002 003 /usr/sccs . 001 002 003 /usr/share . 001 002 003 /usr/shlib . 001 002 003 /usr/spool . 001 002 003 /usr/standalone . 001 002 003 /usr/template . 001 002 003 /usr/ucb . 001 002 003 /usr/ucb A 001 002 003 /usr W 001 002 003 /usr/xpg2bin . 001 002 003 /usr/xpg2include . 001 002 003 /usr/xpg2lib . 001 002 003 /var . 001 002 003 /var/* . 001 002 003 /var/adm/messages* . 001 002 003 /var/adm/pacct* . 001 002 003 /var/log/* . 001 002 003 /var/log/btmp . 001 002 003 /var/log/wtmp . 001 002 003 /var/log/xferlog . 001 002 003 /var/run/syslog.pid W 001 002 003 /var/run/utmp W 017 017 017 /var/spool . 001 002 003 /var/tmp . 001 002 003 /var/yp . 001 002 003 /var/yp/* . 001 002 003 /var/yp/*/* . 001 002 003 /vmlinuz . 001 002 003 /vmunix . 001 002 003 tiger-3.2.3/util/facl.tmpl0000644000175000017500000000145307720447257014060 0ustar pacopaco# # 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. # # file_access_list - DATE # #----------------------------------------------------------------------------- tiger-3.2.3/util/flogit0000755000175000017500000000470007720447312013455 0ustar pacopaco#!/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. # # util/flogit - 06/14/93 # # Locate files based on Tigerrc configuration, this program is used by # the 'find_files' script. # #----------------------------------------------------------------------------- suidfile="$1" devfile="$2" linkfile="$3" wdirfile="$4" nouserfile="$5" nogroupfile="$6" [ -z "$suidfile" ] && suidfile= getpermit() { $LS $LSLINK $LSGROUP -ld "$1" | $AWK '{ printf("%s %s ", $3, $4); for(i=2;i<11;i++) if(substr($1, i, 1) == "-") printf("0 "); else printf("1 "); printf("\n"); }' } while read file do if [ "x$Tiger_FSScan_Devs" != 'xN' -a \( -b "$file" -o -c "$file" \) ]; then echo "$file" >> $devfile elif [ "x$Tiger_FSScan_Links" != 'xN' -a -h "$file" ]; then echo "$file" >> $linkfile elif [ "x$Tiger_FSScan_Setuid" != 'xN' -a \( -u "$file" -a -f "$file" \) ]; then echo "$file" >> $suidfile fi if [ "x$Tiger_FSScan_WDIR" != 'xN' ]; then if [ "x$Tiger_FSScan_Unowned" != 'xN' ]; then getpermit "$file" | { read owner group ur uw ux gr gw gx or ow ox [ ! -h "$file" -a -d "$file" -a "$ow" = '1' ] && { echo "$file" >> $wdirfile } case "$owner" in [0-9]*) echo "$file" >> $nouserfile esac case "$group" in [0-9]*) echo "$file" >> $nogroupfile esac } elif [ -d "$file" ]; then getpermit "$file" | { read owner group ur uw ux gr gw gx or ow ox [ ! -h "$file" -a -d "$file" -a "$ow" = '1' ] && { echo "$file" >> $wdirfile } } fi elif [ "x$Tiger_FSScan_Unowned" != 'xN' ]; then getpermit "$file" | { read owner group ur uw ux gr gw gx or ow ox case "$owner" in [0-9]*) echo "$file" >> $nouserfile esac case "$group" in [0-9]*) echo "$file" >> $nogroupfile esac } fi done tiger-3.2.3/util/genmsgidx0000755000175000017500000000537211113620155014151 0ustar pacopaco#!/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. # # genmsgidx - 06/14/93 # # 09/19/2003 - jfs - Applied fixes contributed by Nicolas François # 08/13/2003 - jfs - Avoided bashism # 08/26/2008 - jfs - Fix temporary race condition by using tempfile # in those systems that have it # 11/27/2008 - jfs - Detect if we cannot write to the file and abort # #----------------------------------------------------------------------------- basedir=${TIGERHOMEDIR:=.} for parm do case $parm in -B) basedir=$2; break;; esac done BASEDIR=${BASEDIR:=$basedir} export BASEDIR findcmd() { CMD=$1 SRCH=/usr/ucb:/usr/bin:/bin:/etc:/usr/etc SAVEIFS=$IFS IFS=: set $SRCH IFS=$SAVEIFS for dir do [ $TESTEXEC $dir/$CMD ] && { echo $dir/$CMD return } done } haveallof() { retval=0 what=$1 shift for file do eval cmd=\$$file [ ! -n "$cmd" ] && { echo "--CONFIG-- Don't have all required $what (missing $file)" retval=1 } done return $retval } TESTEXEC=-x # Setup a tempfile [ -n "$TMPDIR" ] && TMPDIR=/tmp/ tempfile=`tempfile` [ -z "$tempfile" ] && tempfile=$TMPDIR/te.$$ [ ! -e $tempfile ] && >$tempfile # This test is only needed for some old systems that do not support -x ( [ $TESTEXEC /bin/sh ] ) 2> $tempfile [ -s $tempfile ] && TESTEXEC=-f export TESTEXEC RM=`findcmd rm` [ -n "$RM" ] && $RM $tempfile AWK=`findcmd awk` BASENAME=`findcmd basename` CHMOD=`findcmd chmod` LS=`findcmd ls` haveallof commands AWK LS BASENAME || exit 1 haveallof variables BASEDIR || exit 1 # Clear idx file and detect error > $BASEDIR/doc/explain.idx && { echo "Error: Cannot write over the index file $BASEDIR/doc/explain.idx. Aborting" exit 1 } $LS $BASEDIR/doc/*.txt | while read infile do file=`$BASENAME $infile` $AWK ' BEGIN {start=0} /^%.*/ { if(start) printf("%s %s %d %d\n", key, "'$file'", start+1, NR-1); start=NR; key=substr($0, 2, length($0)-1); } END { printf("%s %s %d $\n", key, "'$file'", start+1); } ' $infile done > $BASEDIR/doc/explain.idx status=$? $CHMOD 644 $BASEDIR/doc/explain.idx exit $status tiger-3.2.3/util/getfs-amd0000755000175000017500000000373210223075321014031 0ustar pacopaco#!/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. # # util/getfs-amd - 04/27/93 # # 04/27/93 dls Support map files in files or in NIS. # #----------------------------------------------------------------------------- # haveallof() { retval=0 what=$1 shift for file do eval cmd=\$$file [ ! -n "$cmd" ] && { echo "--CONFIG-- Don't have all required $what (missing $file)" retval=1 } done return $retval } $AWK '{ if($2 == "/") print $2, $0; else { n=split($2, path, "/"); print path[n], $0; } }' | $SORT > $WORKDIR/gfsa1.$$ { if [ -f "$AUTOHOMEMAP" ]; then $AWK 'BEGIN {LINE=""; } /\\$/ {LINE=LINE " " substr($0, 1, length($0)-1); } !/\\$/ {print LINE $0; LINE=""; } END { if(LINE != "") print LINE; } ' $AUTOHOMEMAP else $YPCAT -k $AUTOHOMEMAP 2>/dev/null fi } | $SED -e 's/^\([^ ]*\).*rhost:=\([^;]*\).*$/\1 \2/' | $SORT > $WORKDIR/gfsa2.$$ if [ -s $WORKDIR/gfsa2.$$ ]; then $JOIN -a1 -j 1 -o 1.2 1.3 2.2 $WORKDIR/gfsa1.$$ $WORKDIR/gfsa2.$$ | while read user dir location do echo $user $dir ${location:=$HOSTNAME} done | $SORT else # # Something went wrong... nothing in the map, so # we'll just use the standard method. $BASEDIR/util/getfs-std fi $RM -f $WORKDIR/gfsa1.$$ $WORKDIR/gfsa2.$$ # exit 0 tiger-3.2.3/util/getfs-automount0000755000175000017500000000367410223075321015330 0ustar pacopaco#!/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. # # util/getfs-automount - 04/27/93 # # 04/27/93 dls Added support for file or NIS maps # #----------------------------------------------------------------------------- # haveallof() { retval=0 what=$1 shift for file do eval cmd=\$$file [ ! -n "$cmd" ] && { echo "--CONFIG-- Don't have all required $what (missing $file)" retval=1 } done return $retval } saveifs="$IFS" $AWK '{ if($2 == "/") print $2, $0; else { n = split($2, path, "/"); print path[n], $0; } }' | $SORT > $WORKDIR/gfsa1.$$ { if [ -f $AUTOHOMEMAP ]; then $CAT $AUTOHOMEMAP else $YPCAT -k $AUTOHOMEMAP 2>/dev/null fi } | $AWK '{print $1, $3}' | $SORT > $WORKDIR/gfsa2.$$ if [ -s $WORKDIR/gfsa2.$$ ]; then $JOIN -a1 -j 1 -o 1.2 1.3 2.2 $WORKDIR/gfsa1.$$ $WORKDIR/gfsa2.$$ | while read user dir location do if [ ! -n "$location" ]; then echo $user $dir $HOSTNAME else IFS=: set $location IFS="$saveifs" echo "$user $dir $1" fi done | $SORT else # # We didn't get anything from the map, so something went wrong, # so we'll just fall back to ol' reliable. # $BASEDIR/util/getfs-std fi $RM -f $WORKDIR/gfsa1.$$ $WORKDIR/gfsa2.$$ # exit 0 tiger-3.2.3/util/getfs-nfs0000755000175000017500000000307610223075321014057 0ustar pacopaco#!/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. # # util/getfs-nfs - 04/22/93 # #----------------------------------------------------------------------------- # haveallof() { retval=0 what=$1 shift for file do eval cmd=\$$file [ ! -n "$cmd" ] && { echo "--CONFIG-- Don't have all required $what (missing $file)" retval=1 } done return $retval } fscase="`$GET_MOUNTS | $TR ':' ' ' | $SORT -r | $AWK '{ if(substr($1, length($1), 1) == "/") printf(\"%s*)\", $1); else printf(\"%s/*)\", $1); printf(\"fs=%s; type=%s;\", $1, $2); if($4 != \"\") printf(\"host=%s;;\", $3); else printf(\"host=$HOSTNAME;;\"); }'` *) fs=unknown; type=unknown; host=unknown;;" while read user dir do eval "case $dir/ in $fscase esac" echo "$user $dir $host" done # exit 0 tiger-3.2.3/util/getfs-std0000755000175000017500000000225310223075321014057 0ustar pacopaco#!/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. # # util/getfs-std - 04/22/93 # #----------------------------------------------------------------------------- # [ -z "$SED" ] && SED=`which sed` haveallof() { retval=0 what=$1 shift for file do eval cmd=\$$file [ ! -n "$cmd" ] && { echo "--CONFIG-- Don't have all required $what (missing $file)" retval=1 } done return $retval } haveallof commands SED || exit 1 haveallof variables HOSTNAME || exit 1 $SED -e 's/$/ '$HOSTNAME'/' # exit 0 tiger-3.2.3/util/gethostinfo0000755000175000017500000001004610030715105014504 0ustar pacopaco#!/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. # # 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. # 07/26/2002 jfs Modified so it can work if called directly. Removed # unnecesary exit's # #----------------------------------------------------------------------------- # TODO: # - It might be better to not use $OS/$REV for Linux in the same sense # that it is used for other operating systems. For Linux distributions # (RedHat, Debian, Mandrake, SuSE...) that's just the Kernel thus, # the $OS/$REV variables should be substituted with # $OS=distribution # $REV=distribution release # The code used by Bastille for OS identification might come in handy # here (basicly you just need to parse some /etc/ file which varies # from distribution and determines which release you are using) # # - Investigate if it's better to use uname -rms, which probably is # better to parse (and less error-prone) as suggested by Nicolas François #----------------------------------------------------------------------------- # [ -z "$WORKDIR" ] && WORKDIR=./run findcmd() { CMD=$1 SRCH=/bin:/usr/bin:/etc:/usr/etc:/usr/ucb SAVEIFS=$IFS IFS=: set $SRCH IFS=$SAVEIFS for dir do [ $TESTEXEC $dir/$CMD ] && { echo $dir/$CMD return } done } TESTEXEC=-x ( [ $TESTEXEC /bin/sh ] ) 2> $WORKDIR/te.$$ [ -s $WORKDIR/te.$$ ] && TESTEXEC=-f export TESTEXEC RM=`findcmd rm` [ -n "$RM" ] && $RM $WORKDIR/te.$$ AWK=`findcmd awk` #------------------------------------------------------------------------ # This should get: # # Sun, Cray, AIX, HP-UX, IRIX, Linux and MacOSX # UNAME=`findcmd uname` [ -n "$UNAME" ] && { $UNAME -a | $AWK ' { if($5 == "CRAY"){ if($6 == "T3E") { printf("UNICOSMK %s %s.%s\n", $3, $5, $6); } else { printf("UNICOS %s %s.%s\n", $3, $5, $6); } } if($1 == "SunOS"){ printf("%s %s %s\n", $1, $3, $5); } else if($1 == "AIX"){ printf("%s %s.%s RS6000\n", $1, $4, $3); } else if($1 == "HP-UX"){ printf("HPUX %s %s\n", substr($3,3), $5); } else if($1 == "IRIX"){ printf("IRIX %s %s\n", $3, $5); } else if($1 == "IRIX64"){ printf("IRIX %s %s\n", $3, $5); } else if($1 == "Linux"){ printf("Linux %s %s\n",$3, $12); } else if($1 == "Darwin"){ printf("MacOSX %s %s\n",$3, $11); } 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 ... # printf("Linux %s %s\n",$3, $11); # TODO: check if the format has changed from # version 2.0.11 exit } #------------------------------------------------------------------------ # This should get: # # NeXT # HOSTINFO=`findcmd hostinfo` [ -n "$HOSTINFO" ] && { $HOSTINFO | $AWK ' BEGIN { OS=""; REV=""; ARCH=""; } NR == 2 { OS=$1 REV=substr($3,1,length($3)-1); } NR == 6 && NF == 4 { ARCH=substr($4,2,length($4)-2); } NR == 6 && NF == 3 { ARCH=$3 } END { printf("%s %s %s\n", OS, REV, ARCH); } ' exit } # exit 0 tiger-3.2.3/util/getnetgroup0000755000175000017500000000356207756435013014545 0ustar pacopaco#!/bin/sh # # Extract all host entries from a netgroup(s), recursively expanding # any sub-netgroups... if multiple netgroups are given, everything # gets mixed together... # # 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. targets="$*" expandgrp() { for sub do eval "for host in \$grphosts$sub; do echo \$host; done" eval expandgrp \$grpsubs$sub done } [ "$YPCAT" = "" ] && { echo "$targets" exit 0 } $YPCAT -k netgroup | $AWK '{ grpname=$1; hosts=""; grps=""; sep=""; for(i=2;i<=NF;i++){ if($i ~ /^\(/){ split($i, entry, ","); if(entry[1] != ""){ s = substr(entry[1], 2, length(entry[1])-1); hosts=hosts sep s; sep=" "; } else if(entry[2] = "" && entry[3] == ""){ hosts=hosts sep "*"; sep=" "; } } else { grps=grps " " $i; } } if(hosts != "" || grps != ""){ printf("%s %s\n%s\n", grpname, grps, hosts); } }' | { while read netgroup subgroups do read hosts match=0 for target in $targets do [ "$netgroup" = "$target" ] && match=1 done if [ $match -eq 1 ]; then targhosts="$targhosts $hosts" targgroups="$targgroups $subgroups" else eval grphosts$netgroup=\"$hosts\" eval grpsubs$netgroup=\"$subgroups\" fi done for host in $targhosts do echo $host done expandgrp $targgroups } | $SORT -u tiger-3.2.3/util/getpermit0000755000175000017500000000337107720450032014165 0ustar pacopaco#!/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. # # util/getpermit - 04/22/93 # # 04/28/93 dls Added '-L' to 'ls' to get permissions from file instead of # symbolic link. # 10/28/2002 jfs LS and AWK are no longer hardcoded # 08/11/2003 jfs getpermit now interates through more than one name and # aborts with error if the file or directory does not exist. # #----------------------------------------------------------------------------- # LS=`which ls` AWK=`which awk` LSLINK=-L lgetpermit() { file="$1" saveifs=$IFS IFS=/ set $file IFS=$saveifs path= for comp do [ -n "$comp" ] && { path="$path/$comp" $LS $LSLINK -ld "$path" } done | $AWK ' BEGIN { split("0 0 0 0 0 0 0 0 0", perm, " "); } { for(i=2;i<11;i++){ c = substr($1, i, 1); if(c != "-" && c != "S" && c != "T"){ perm[i-2] = "1"; } } } END { for(i=0;i<9;i++) printf("%s ", perm[i]); printf("\n"); } ' } for __file do if [ -e $__file ] ; then lgetpermit $__file else exit 1 fi done # exit 0 tiger-3.2.3/util/installsig0000755000175000017500000001046607650721444014353 0ustar pacopaco#!/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. # # installsig - 10/22/93 # # 10/12/2002 - jfs - changed to use proper defaults if not available. # changed the way DESC and CONFIG are retrieved to # avoid attacks through the signature files (those # 'eval' ARE nasty things) # #----------------------------------------------------------------------------- # # Usage: util/installsig sigfile [sigfile [sigfile...]] # # This script must be run from the top level of the tiger directory. # sigfiles must use names of the form: # os:major_release:release:[optional_arch][--optional_identifyinginfo] # # Example: # # SunOS:5:5.2:sun4 # # For SunOS 5.2 running on a sun4 # # Note, however, that the destination directory is extracted from the # signature file (#@DEST) regardless of the name given to the file # itself. # Default to current dir [ -z "$WORKDIR" ] && WORKDIR=run/ [ -z "$CONFIG" ] && CONFIG=. [ ! -d $WORKDIR ] && { echo "ERROR: Cannot find $WORKDIR. Exiting" exit 1 } findcmd() { CMD=$1 SRCH=/usr/ucb:/usr/bin:/bin:/etc:/usr/etc:/usr/sbin SAVEIFS=$IFS IFS=: set $SRCH IFS=$SAVEIFS for dir do [ $TESTEXEC $dir/$CMD ] && { echo $dir/$CMD return } done } getreldiff() { $AWK 'BEGIN { start="'"$1"'"; dest="'"$2"'"; m=split(start, src, "/"); n=split(dest, dst, "/"); for(i=n;i $2 } TESTEXEC=-x ( [ $TESTEXEC /bin/sh ] ) 2> $WORKDIR/te.$$ [ -s $WORKDIR/te.$$ ] && TESTEXEC=-f export TESTEXEC RM=`findcmd rm` [ -n "$RM" ] && $RM $WORKDIR/te.$$ CAT="`findcmd cat`" SED="`findcmd sed`" MV="`findcmd mv`" CP="`findcmd cp`" CHMOD="`findcmd chmod`" GREP="`findcmd grep`" MKDIR="`findcmd mkdir`" LN="`findcmd ln`" AWK="`findcmd awk`" [ ! -n "$SED" ] && { echo "Can't find 'sed' anywhere... sorry." exit 1 } [ ! -n "$GREP" ] && { echo "Can't find 'grep' anywhere... sorry." exit 1 } [ ! -n "$AWK" ] && { echo "Can't find 'awk' anywhere... sorry." exit 1 } [ ! -n "$CAT" ] && CAT=shcat [ ! -n "$CP" ] && CP="catcp" [ ! -n "$MV" ] && MV="$CP" [ ! -n "$LN" ] && LN="$CP" for sigfile do # Just in case, prevent @ to be used to run commands # as the user that installs signatures # We just need DEST and CONFIG DEST=`$GREP '^#@DEST' $sigfile | $SED -e 's/^#@DEST=//'` CONFIG=`$GREP '^#@CONFIG' $sigfile | $SED -e 's/^#@CONFIG=//'` # Some sanity checks to prevent attacks outside the # current dir DEST=`echo $DEST | $SED -e 's/^\\\//' | $SED -e 's/\.\.//g'` CONFIG=`echo $CONFIG | $SED -e 's/^\\\//' | $SED -e 's/\.\.//g'` echo "Target directory: $DEST" echo "Configuration: $CONFIG" dir="systems/$DEST" if [ -f "systems/$CONFIG/config" ]; then dir="systems/$DEST" target="`getreldiff $DEST $CONFIG`" if [ ! -d "$dir" ]; then echo "Creating directory $dir..." if [ -n "$MKDIR" ]; then if $MKDIR -p $dir; then echo "Configuring directory $dir..." [ -d $dir ] && $LN -s "${target}config" "$dir/config" else echo "mkdir -p $dir failed... sorry." fi else echo "Don't have 'mkdir' command... sorry." fi fi if [ -d "$dir" ]; then [ -f $dir/signatures ] && $MV "$dir/signatures" "$dir/signatures.orig" $CP $sigfile "$dir/signatures" [ -n "$CHMOD" ] && $CHMOD 644 "$dir/signatures" echo "Installed $sigfile in $dir." else echo "Can't locate directory $dir for $sigfile... something went wrong." fi else echo "Don't have required config files ($CONFIG/config) for this" echo "platform. You might need a TIGER upgrade." fi done tiger-3.2.3/util/logit0000755000175000017500000000203207650722575013314 0ustar pacopaco#!/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. # # util/logit - 04/22/93 # #----------------------------------------------------------------------------- # Lovely eh? # Unduly complicated so that we can get rid of any nasty newlines # (they are converted to ~'s). { echo "$2" | $AWK ' BEGIN {lc="";} { printf("%s%s", lc, $0); lc="~"; } ' echo } >> $1 tiger-3.2.3/util/mkfilelst0000755000175000017500000001125107720447257014172 0ustar pacopaco#!/bin/sh # # tiger - A UN*X security checking system # Copyright (C) 2003 Javier Fernandez-Sanguino # # 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. # # mkfilelst - 08/12/2003 - jfs # # Takes a list of files from standard input and generates a list # of owner group suid sgid ur uw ux gr gw gx or ow ox lvl ownmid grpmid prmmid # Creates a configuration file for any given operating system and # release with all the standard configuration files. Can be used # as a second step to any port. # # ------------------------------------------------------------------------ # TODO # - FILE_ACL does not yet use the sticky bit but it should also be checked # for # ------------------------------------------------------------------------ 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 -q . $BASEDIR/initdefs # If run in test mode (-t) this will verify that all required # elements are set. # [ "$Tiger_TESTMODE" = 'Y' ] && { haveallcmds CAT LS COLUMN || exit 1 haveallfiles BASEDIR WORKDIR || exit 1 echo "--CONFIG-- [init003c] $0: Configuration ok..." exit 0 } #------------------------------------------------------------------------ haveallcmds CAT LS COLUMN || exit 1 haveallfiles BASEDIR WORKDIR || exit 1 echo "Working..." outfile="file_access_list.$OS-$REV-$ARCH" safe_temp $WORKDIR/facl.lst.$$ $CAT $BASEDIR/util/facl.tmpl >>$WORKDIR/facl.lst.$$ { echo "#" echo "# File access list file for $OS $REV $ARCH" echo "# generated `date`" echo "#" echo "#@DEST=$OS/$REV/$ARCH" echo "#@CONFIG=$OS/$REV" } >>$WORKDIR/facl.lst.$$ check_glob () # This function checks filenames which are really globs printing their # minimum common denominator regarding permissions, it is useful # to abstract information related to directories. # Note: This process takes quite some time, it could be improved somewhat. { __globbed=$1 { $LS -d $__globbed | while read __file do getpermit $__file done } | { while read fn rowner rgroup rur ruw rux rgr rgw rgx ror row rox rsuid rsgid rstk do [ -z "$_owner" ] && _owner=$rowner; [ -z "$_group" ] && _group=$rgroup [ -z "$_ur" ] && _ur=$rur; [ -z "$_uw" ] && _uw=$ruw; [ -z "$_ux" ] && _ux=$rux [ -z "$_gr" ] && _gr=$rgr; [ -z "$_gw" ] && _gw=$rgw; [ -z "$_gx" ] && _gx=$rgx [ -z "$_or" ] && _or=$ror; [ -z "$_ow" ] && _ow=$row; [ -z "$_ox" ] && _ox=$rox [ -z "$_suid" ] && _suid=$rsuid; [ -z "$_sgid" ] && _sgid=$rsgid [ -z "$_stk" ] && _stk=$rstk; [ "$_owner" != "$rowner" ] && _owner="." [ "$_group" != "$rgroup" ] && _group="." [ "$_suid" != "$rsuid" ] && _suid="." [ "$_sgid" != "$rsgid" ] && _sgid="." [ "$_stk" != "$rstk" ] && _stk="." [ "$_ur" != "$rur" ] && _ur="." [ "$_uw" != "$ruw" ] && _uw="." [ "$_ux" != "$rux" ] && _ux="." [ "$_gr" != "$rgr" ] && _gr="." [ "$_gw" != "$rgw" ] && _gw="." [ "$_gx" != "$rgx" ] && _gx="." [ "$_or" != "$ror" ] && _or="." [ "$_ow" != "$row" ] && _ow="." [ "$_ox" != "$rox" ] && _ox="." done printf "$__globbed $_owner $_group $_suid $_sgid $_ur $_uw $_ux $_gr $_gw $_gx $_or $_ow $_ox " } } { echo "file owner group s g r w x r w x r w x LVL OwnID GrpID PermID" { while read file lvl ownmid grpmid prmmid do glob=`$LS -d $file 2>/dev/null | wc -l` if [ $glob -lt 2 ] ; then [ -f "$file" -o -d "$file" ] && \ getpermit $file | while read _file owner group ur uw ux gr gw gx or ow ox stk suid sgid stk do echo "$file $owner $group $suid $sgid $ur $uw $ux $gr $gw $gx $or $ow $ox $lvl $ownmid $grpmid $prmmid" done else check_glob "$file" printf " $lvl $ownmid $grpmid $prmmid\n" fi done } < $BASEDIR/util/facl.lst } | $COLUMN -t >>$WORKDIR/facl.lst.$$ $CAT $WORKDIR/facl.lst.$$ >$outfile delete $WORKDIR/facl.lst.$$ echo "File access list stored in $outfile." echo "These can be rather strict so consider reviewing them before deployment." exit 0 tiger-3.2.3/util/mksig0000755000175000017500000000744407722720464013317 0ustar pacopaco#!/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. # # util/mksig - 04/22/93 # # Script to make signatures for a supported operating system. # # 08/28/2003 - jfs - Added ARSC change to use MAJOR instead of REV # 04/23/2003 - jfs - added missing MD5 definition and check # merged with original (2.2.3) mksig and removed games # added @DEST and @CONFIG definitions # added SunOS dirs # removed CC from needed commands (it is not) # #----------------------------------------------------------------------------- # basedir=${TIGERHOMEDIR:=.} for parm do case $parm in -B) basedir=$2; break;; esac done [ ! -r $basedir/config ] && { echo "--ERROR-- [init002e] No 'config' file in \`$basedir'." exit 1 } . $basedir/config # MD5 by default is in BINDIR but could be defined on configuration # too (i.e. not use Tiger's) [ -z "$MD5" ] && MD5="$BINDIR/md5" haveallof() { retval=0 what=$1 shift for file do eval cmd=\$$file [ ! -n "$cmd" ] && { echo "--ERROR-- [init001e] Don't have all required $what (missing $file)" retval=1 } done return $retval } haveallof commands CAT MD5 || exit 1 haveallof variables BASEDIR TESTLINK WORKDIR [ ! $TESTEXEC $MD5 ] && { echo "Don't see MD5 (have you compiled Tiger binaries?)... exiting..." exit 1 } comment="$OS $REV" DIRLIST="/usr/bin /bin /usr/local/bin /usr/sbin /etc /usr/lib /sbin /lib /usr/libexec /usr/local/sbin /usr/X11/bin /usr/games /usr/lib/news/bin /var/lib/games" # For SunOS DIRLIST="$DIRLIST /usr/etc /usr/ucb /usr/mbin /usr/bsd /usr/5bin /usr/sysv" outfile="signatures.$OS-$REV-$ARCH" MAJOR=`echo $REV | awk -F\. '{print $1}'` echo "Working..." { echo "#" echo "# Signature file for $OS $REV $ARCH, generated `date`" echo "#" echo "#@DEST=$OS/$MAJOR/$ARCH" echo "#@CONFIG=$OS/$MAJOR" while read file do indir= for dir in $DIRLIST do [ ! $TESTLINK $dir ] && { [ -f $dir/$file -a ! $TESTLINK $dir/$file -a $TESTEXEC $dir/$file ] && { indir=$dir if [ -r $indir/$file ]; then sig=`$MD5 < $indir/$file` echo "Y . $indir/${file} ${sig} $comment" else echo "# $indir/$file not readable." fi } } done if [ ! -n "$indir" ]; then echo "# $file not found." fi done < $outfile echo "Signatures stored in $outfile." tiger-3.2.3/util/read_services.sh0000644000175000017500000000133407660507011015411 0ustar pacopaco#!/bin/sh # Read a service file for a given system and generate a service # file for use in Tiger # # 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. /bin/cat /etc/services | grep -v '^#' | while read service type other other2 do [ ! -z "$service" ] && echo $service $type done tiger-3.2.3/util/setsh0000755000175000017500000000275107650722575013334 0ustar pacopaco#!/bin/sh # # Convert everything over to another shell. # # This of course only useful for converting to Bourne Shell-line # shells such as Korn Shell or Bourne Again SHell. Can also # be used to add options to the scripts. # # Usage: setsh path_to_shell shell_arguments # # 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. shell=$1 shellx="$*" [ ! -n "$shell" ] && { echo "--ERROR-- Usage: $0 shellname" exit 1 } [ ! -x $shell ] && { echo "--ERROR-- $shell does not exist or not executable" exit 1 } case $shell in *csh) echo "--ERROR-- C-shell style shells are not acceptable" exit 1 ;; *zsh) echo "--ERROR-- zsh is not acceptable" exit 1 ;; esac findcmd() { CMD=$1 SRCH=/usr/ucb:/usr/bin:/bin:/etc:/usr/etc SAVEIFS=$IFS IFS=: set $SRCH IFS=$SAVEIFS for dir do [ -x $dir/$CMD ] && { echo $dir/$CMD return } done } FIND=`findcmd find` ED=`findcmd ed` $FIND . ! -type d -print | while read filename do $ED -s $filename <