[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
OSF1 :tcpdump
Tcpdump may have a security problem, and ethereal is probably a much
better alternative.
We have executed the command below on all Dec's.
chmod 0 /usr/sbin/tcpdump
> The script:
> -----------
> #!/bin/sh
> #tcpdump setuid bit
> #
> # 11/13/2000
> #
> case "`uname -s`-`uname -r`" in
> OSF1*)
> if [ -f /usr/sbin/tcpdump ]; then
> chmod 0 /usr/sbin/tcpdump
> echo "DONE OSF1"
> else
> echo "NO FILE NO CHANGE OSF1"
> fi
> ;;
> *)
> echo inappropriate arch
> ;;
> esac