Delete sendmail.py

pull/16/head
TheDragonkeeper 2017-11-07 22:47:45 +00:00 committed by GitHub
parent 67615c5b59
commit 06636402fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 23 deletions

View File

@ -1,23 +0,0 @@
# Title: Email-Sender
# Description: Allows sending emails to a mail server, with file support
# this is used coupled with the extension
# Author: TheDragonkeeper
# Version: 1.0
# Category: exfiltration
# Target: Any
import sys
sys.path.append("/root/extensions")
from sendemail import send_mail
if len(sys.argv) > 8:
send_mail(sys.argv[1], sys.argv[2],
sys.argv[3],
sys.argv[4],
server=sys.argv[5], username=sys.argv[6], password=sys.argv[7], files=[sys.argv[8]])
else:
send_mail(sys.argv[1], sys.argv[2],
sys.argv[3],
sys.argv[4],
server=sys.argv[5], username=sys.argv[6], password=sys.argv[7])