Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Posting-Version: version B 2.10.1 6/24/83; site allegra.UUCP Path: utzoo!linus!decvax!harpo!eagle!allegra!root From: root@allegra.UUCP Newsgroups: net.motss Subject: forwarded message Message-ID: <1973@allegra.UUCP> Date: Thu, 10-Nov-83 23:10:06 EST Article-I.D.: allegra.1973 Posted: Thu Nov 10 23:10:06 1983 Date-Received: Sat, 12-Nov-83 12:17:39 EST Organization: AT&T Bell Laboratories, Murray Hill Lines: 26 To: people with accounts on allegra Information on how to use the motss anonymous access server is stored in /usr/local/lib/anon/README To: everyone else Providing anonymous access to net.motss is quite easy. cron can run a small shell script every hour that looks in a [publically unreadable] spool directory. Any files there are passed to inews and then deleted. In a public directory, we planted a setuid program that copies input to a unique file in /usr/spool/motss. There are a number of links to this program with names like "a.out", "cat", "ls", "more" so that shell accounting cannot be used to trace access. The shell script referenced in crontab is something like: set -e cd /usr/spool/motss for i in * do /usr/bin/inews -t forwarded message -n net.motss < $i rm $i done