home *** CD-ROM | disk | FTP | other *** search
/ The Hacker's Encyclopedia 1998 / hackers_encyclopedia.iso / hacking / internet / fakemail.txt < prev    next >
Encoding:
Text File  |  2003-06-11  |  3.0 KB  |  74 lines

  1.  
  2. I wrote this phile after about 10 minutes of server hacking. If I can do
  3. it, so can you, so don't bother me with e-mail about it. If you can't
  4. follow the directions, you shouldn't be on the 'net.
  5.  
  6. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  7. If this file does not end with the letters "EOF" alone on a line, you do
  8. not have the full file.
  9.  
  10. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  11.  
  12. How to Send Fakemail
  13. --------------------
  14. By Doc Rain
  15.  
  16. NOTE: The methods contained herein are for educational purposes only, and
  17. are not to be used for any purposes.  Yeah.  Right.
  18.  
  19.  
  20. What is FAKEMAIL?
  21. =================
  22. Fakemail is a great little hack that's been overlooked in the SMTP (Simple
  23. Mail Transport Protocol) mailing protocol. By telnetting to a mail server
  24. on port 25, you can manually send mail information to a server. By these
  25. methods, you can pretend to be anyone else, "sending" from any address,
  26. real or not.
  27.  
  28.  
  29. Can I Get Caught Sending FAKEMAIL?
  30. ==================================
  31. Yes and no. When you send fakemail, although your faked address will show
  32. in the "To:" field of a message, in the header, amidst all the
  33. gobbledygook is the address of the server you used to send the fakemail.
  34. But even if the person sees this (which they probably won't, since most
  35. mail programs hide the mail header unless requested), it only shows the
  36. host. So chances are you won't get caught. But if you use these tecniques
  37. to send a death threat to the president of the United States, you will get
  38. caught, since your provider will check it's records, and check the host in
  39. the header, and see that you were on that server then. The Secret Service
  40. has a lot of time on its hands to catch swarthy criminals like you.
  41.  
  42.  
  43. How do I send FAKEMAIL?
  44. =======================
  45. NOTE: All commands typed here should be in ALL CAPS. At least that's the
  46. only way my server will accept it.
  47.  
  48. 1.) Telnet to your mailserver, on port 25.
  49. 2.) Type "HELO <hostname>" where "hostname" is filled in. DON'T BE AN IDIOT!!!
  50.     DO NOT PUT IN YOUR REAL HOST!!!!
  51. 3.) Enter "MAIL FROM:<sender>" where sender is your faked address.
  52. 4.) Type in "RCPT TO:<recipient>" where recipient is your addressee.
  53. 5.) Enter "DATA"
  54.  
  55. You will then be prompted to enter your message text. Put a period on a
  56. line by itself to end the message. You may now quit the server by sending
  57. "QUIT" (duh?).
  58.  
  59. You have now sent your first fakemail!
  60.  
  61.  
  62. Some Other SMTP Commands:
  63. =========================
  64. EHLO <hostname>     - logs in with hostname into extended SMTP if supported
  65. RSET        - resets the system (you should do this between consecutive
  66.               fakemails to clear the previous data)
  67. NOOP        - Does nothing (Don't ask why)
  68. VRFY <address> - Verifies the address in <address>
  69. EXPN <address> - Expand <address>. If address is mailing list, shows the
  70.               contents of that list.
  71. VERB        - Puts server into verbose mode, if availible.
  72.  
  73.  
  74.