diff options
| author | tv <tv@also> | 2011-05-29 15:47:21 +0200 | 
|---|---|---|
| committer | tv <tv@also> | 2011-05-29 15:47:21 +0200 | 
| commit | e0ec5d2e8560ae433ee677622b24ba82dbe7630b (patch) | |
| tree | a1fcb14eeafc3df41427896d9b413087d24d71f1 /noise/modules/sendmail | |
| parent | edaa1d7f7a0ed33c019fce185b8aff7563498b6e (diff) | |
lowered filesystem hierarchy--everything are modules
Diffstat (limited to 'noise/modules/sendmail')
| -rwxr-xr-x | noise/modules/sendmail | 55 | 
1 files changed, 55 insertions, 0 deletions
diff --git a/noise/modules/sendmail b/noise/modules/sendmail new file mode 100755 index 00000000..182d96e3 --- /dev/null +++ b/noise/modules/sendmail @@ -0,0 +1,55 @@ +#!/usr/bin/python +import os,sys,smtplib,string +''' +  Mail Plugin for the noise telnet suite +  See: http://docs.python.org/library/smtplib.html +  Author: Felix +''' + +# help +if len(sys.argv) == 2: +    if sys.argv[1] == "--help": +      print "send an e-mail ( \"TO(s)\" \"SUBJECT\" [string instead of EOF])" +      sys.exit(0) + +# sanity  +if len(sys.argv) <= 2: +  print "wrong number of parameters, see help" +  sys.exit(1) + +# write variables  +# check of EOF +if len(sys.argv) == 4 :  +  EOFstring="%s\n"% sys.argv[3] +else: +  EOFstring="EOF\n" + +fromaddr=u"Karl Koch<shockspasm@googlemail.com>" +toaddrs=sys.argv[1] +subject=sys.argv[2] + + +#write header: +msg = u"From: %s\r\nTo: %s\r\nSubject: %s\r\n\r\n" % (fromaddr, toaddrs,subject) +print "Write your text now, finish with %s" % EOFstring +sys.stdout.flush() # flushing is important to make sure the line is written + +while 1: +  try: +    line = sys.stdin.readline() +    if line == EOFstring: +      break +    msg = msg + line +  except EOFError: +    break + +msg = msg + "[!] Written with NOISE telnet" + +print "Thank you for your message! Delivering it now..." +sys.stdout.flush() +server = smtplib.SMTP('localhost') +#server.set_debuglevel(1) +server.sendmail(fromaddr,toaddrs.split(','),msg) +server.quit() +print "mail send successfully" +sys.exit(0)  | 
