2013-01-18 14:44:38 +04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
# Copyright (c) 2006-2012 sqlmap developers (http://sqlmap.org/)
|
|
|
|
# See the file 'doc/COPYING' for copying permission
|
|
|
|
|
|
|
|
# Removes duplicate entries in wordlist like files
|
|
|
|
import codecs
|
|
|
|
import os
|
|
|
|
import re
|
|
|
|
import smtplib
|
|
|
|
import subprocess
|
|
|
|
import time
|
|
|
|
|
|
|
|
from email.mime.text import MIMEText
|
|
|
|
|
2013-01-18 15:04:00 +04:00
|
|
|
TIME = time.strftime("%H:%M:%S %d-%m-%Y", time.gmtime())
|
2013-01-18 14:44:38 +04:00
|
|
|
|
2013-01-18 15:04:00 +04:00
|
|
|
SMTP_SERVER = "127.0.0.1"
|
2013-01-18 14:44:38 +04:00
|
|
|
SMTP_PORT = 25
|
|
|
|
SMTP_TIMEOUT = 30
|
|
|
|
FROM = "regressiontest@sqlmap.org"
|
2013-01-18 15:04:00 +04:00
|
|
|
TO = "dev@sqlmap.org"
|
|
|
|
SUBJECT = "Regression test results on on %s" % TIME
|
2013-01-18 14:44:38 +04:00
|
|
|
CONTENT = ""
|
2013-01-18 15:04:00 +04:00
|
|
|
TEST_COUNTS = []
|
2013-01-18 14:44:38 +04:00
|
|
|
|
|
|
|
command_line = "cd ../../ ; rm -f $REGRESSION_FILE ; python sqlmap.py --live-test --run-case 'Invalid logic'"
|
|
|
|
proc = subprocess.Popen(command_line, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
|
|
|
proc.wait()
|
|
|
|
stdout, stderr = proc.communicate()
|
2013-01-18 15:04:00 +04:00
|
|
|
failed_tests = re.findall("running live test case: (.+?) \((\d+)\/\d+\)[\r]*\n(.+?)test failed (.*?)at parsing item: (.+) \- scan folder is (\/.+)[\r]*\n", stdout, re.I | re.M)
|
2013-01-18 14:44:38 +04:00
|
|
|
|
|
|
|
for failed_test in failed_tests:
|
|
|
|
title = failed_test[0]
|
2013-01-18 15:04:00 +04:00
|
|
|
test_count = failed_test[1]
|
|
|
|
error = True if "the test did not identify the SQL injection" in failed_test[2] else False
|
|
|
|
traceback = failed_test[2] or None
|
|
|
|
parse = failed_test[3]
|
|
|
|
output_folder = failed_test[4]
|
|
|
|
|
|
|
|
TEST_COUNTS.append(test_count)
|
2013-01-18 14:44:38 +04:00
|
|
|
|
|
|
|
console_output_fd = codecs.open(os.path.join(output_folder, "console_output"), "rb", "utf8")
|
|
|
|
console_output = console_output_fd.read()
|
|
|
|
console_output_fd.close()
|
|
|
|
|
2013-01-18 15:04:00 +04:00
|
|
|
if error is False:
|
|
|
|
log_fd = codecs.open(os.path.join(output_folder, "debiandev", "log"), "rb", "utf8")
|
|
|
|
log = log_fd.read()
|
|
|
|
log_fd.close()
|
2013-01-18 14:44:38 +04:00
|
|
|
|
|
|
|
if traceback:
|
|
|
|
traceback_fd = codecs.open(os.path.join(output_folder, "traceback"), "rb", "utf8")
|
|
|
|
traceback = traceback_fd.read()
|
|
|
|
traceback_fd.close()
|
|
|
|
|
|
|
|
CONTENT += "Failed test case '%s' at parsing: %s:\n\n" % (title, parse)
|
2013-01-18 15:04:00 +04:00
|
|
|
|
|
|
|
if error is False:
|
|
|
|
CONTENT += "### LOG FILE:\n\n"
|
|
|
|
CONTENT += "%s\n" % log
|
|
|
|
else:
|
|
|
|
CONTENT += "### CONSOLE OUTPUT\n\n"
|
|
|
|
CONTENT += "%s\n" % str(console_output)
|
2013-01-18 14:44:38 +04:00
|
|
|
|
|
|
|
if traceback:
|
|
|
|
CONTENT += "### TRACEBACK:\n"
|
|
|
|
CONTENT += "%s\n" % str(traceback)
|
|
|
|
|
|
|
|
CONTENT += "\n#######################################\n\n"
|
|
|
|
|
|
|
|
if CONTENT:
|
2013-01-18 15:04:00 +04:00
|
|
|
SUBJECT += " (%s)" % ", ".join("#%d" % count for count in TEST_COUNTS)
|
2013-01-18 14:44:38 +04:00
|
|
|
msg = MIMEText(CONTENT)
|
|
|
|
msg["Subject"] = SUBJECT
|
|
|
|
msg["From"] = FROM
|
|
|
|
msg["To"] = TO
|
|
|
|
|
|
|
|
s = smtplib.SMTP(host=SMTP_SERVER, port=SMTP_PORT, timeout=SMTP_TIMEOUT)
|
|
|
|
#s.set_debuglevel(1)
|
2013-01-18 15:04:00 +04:00
|
|
|
s.sendmail(FROM, TO, msg.as_string())
|
2013-01-18 14:44:38 +04:00
|
|
|
s.quit()
|