sqlmap/extra/shutils/regressiontest.py

167 lines
5.4 KiB
Python
Raw Normal View History

2019-03-21 16:00:09 +03:00
#!/usr/bin/env python2
2019-01-05 23:38:52 +03:00
# Copyright (c) 2006-2019 sqlmap developers (http://sqlmap.org/)
2017-10-11 15:50:46 +03:00
# See the file 'LICENSE' for copying permission
2019-01-22 03:20:27 +03:00
from __future__ import print_function
import codecs
2013-01-26 20:11:09 +04:00
import inspect
import os
import re
import smtplib
import subprocess
2013-01-18 19:29:21 +04:00
import sys
import time
2013-01-26 20:11:27 +04:00
import traceback
2013-01-18 17:20:19 +04:00
from email.mime.multipart import MIMEMultipart
2013-01-18 19:29:21 +04:00
from email.mime.text import MIMEText
2013-01-26 20:11:09 +04:00
sys.path.append(os.path.normpath("%s/../../" % os.path.dirname(inspect.getfile(inspect.currentframe()))))
2013-01-18 19:29:21 +04:00
from lib.core.revision import getRevisionNumber
START_TIME = time.strftime("%H:%M:%S %d-%m-%Y", time.gmtime())
2013-01-18 17:36:50 +04:00
SQLMAP_HOME = "/opt/sqlmap"
2013-01-18 15:04:00 +04:00
SMTP_SERVER = "127.0.0.1"
SMTP_PORT = 25
SMTP_TIMEOUT = 30
FROM = "regressiontest@sqlmap.org"
2018-06-10 00:38:00 +03:00
# TO = "dev@sqlmap.org"
TO = ["bernardo.damele@gmail.com", "miroslav.stampar@gmail.com"]
SUBJECT = "regression test started on %s using revision %s" % (START_TIME, getRevisionNumber())
2014-01-13 21:38:04 +04:00
TARGET = "debian"
2013-01-18 19:29:21 +04:00
def prepare_email(content):
2013-01-18 19:36:22 +04:00
global FROM
global TO
global SUBJECT
2013-01-18 19:29:21 +04:00
msg = MIMEMultipart()
msg["Subject"] = SUBJECT
msg["From"] = FROM
2017-04-18 16:56:24 +03:00
msg["To"] = TO if isinstance(TO, basestring) else ','.join(TO)
2013-01-18 17:35:27 +04:00
2013-01-18 19:29:21 +04:00
msg.attach(MIMEText(content))
2013-01-18 17:35:27 +04:00
2013-01-18 19:29:21 +04:00
return msg
2013-01-18 19:29:21 +04:00
def send_email(msg):
2013-01-18 19:36:22 +04:00
global SMTP_SERVER
global SMTP_PORT
global SMTP_TIMEOUT
2013-01-18 19:29:21 +04:00
try:
s = smtplib.SMTP(host=SMTP_SERVER, port=SMTP_PORT, timeout=SMTP_TIMEOUT)
s.sendmail(FROM, TO, msg.as_string())
s.quit()
# Catch all for SMTP exceptions
2019-01-22 03:20:27 +03:00
except smtplib.SMTPException as ex:
print("Failure to send email: '%s" % ex)
2013-01-18 15:04:00 +04:00
2013-02-03 15:29:57 +04:00
def failure_email(msg):
2013-02-03 15:32:07 +04:00
msg = prepare_email(msg)
2013-02-03 15:29:57 +04:00
send_email(msg)
sys.exit(1)
2013-01-18 19:29:21 +04:00
def main():
2013-01-18 19:36:22 +04:00
global SUBJECT
2013-01-18 19:34:14 +04:00
content = ""
test_counts = []
attachments = {}
updateproc = subprocess.Popen("cd /opt/sqlmap/ ; python /opt/sqlmap/sqlmap.py --update", shell=True, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
stdout, stderr = updateproc.communicate()
2013-02-03 15:29:57 +04:00
if stderr:
failure_email("Update of sqlmap failed with error:\n\n%s" % stderr)
2014-01-13 21:41:33 +04:00
regressionproc = subprocess.Popen("python /opt/sqlmap/sqlmap.py --live-test", shell=True, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE, close_fds=False)
stdout, stderr = regressionproc.communicate()
2013-01-18 19:29:21 +04:00
if stderr:
2013-02-03 15:29:57 +04:00
failure_email("Execution of regression test failed with error:\n\n%s" % stderr)
2013-01-18 17:02:23 +04:00
2018-06-10 00:38:00 +03:00
failed_tests = re.findall(r"running live test case: (.+?) \((\d+)\/\d+\)[\r]*\n.+test failed (at parsing items: (.+))?\s*\- scan folder: (\/.+) \- traceback: (.*?)( - SQL injection not detected)?[\r]*\n", stdout)
2013-01-18 19:29:21 +04:00
for failed_test in failed_tests:
title = failed_test[0]
test_count = int(failed_test[1])
parse = failed_test[3] if failed_test[3] else None
output_folder = failed_test[4]
traceback = False if failed_test[5] == "False" else bool(failed_test[5])
detected = False if failed_test[6] else True
2013-01-18 19:34:14 +04:00
test_counts.append(test_count)
2013-01-18 15:04:00 +04:00
console_output_file = os.path.join(output_folder, "console_output")
2014-01-13 21:38:04 +04:00
log_file = os.path.join(output_folder, TARGET, "log")
traceback_file = os.path.join(output_folder, "traceback")
if os.path.exists(console_output_file):
console_output_fd = codecs.open(console_output_file, "rb", "utf8")
console_output = console_output_fd.read()
console_output_fd.close()
attachments[test_count] = str(console_output)
if os.path.exists(log_file):
log_fd = codecs.open(log_file, "rb", "utf8")
log = log_fd.read()
log_fd.close()
if os.path.exists(traceback_file):
traceback_fd = codecs.open(traceback_file, "rb", "utf8")
2013-01-18 19:29:21 +04:00
traceback = traceback_fd.read()
traceback_fd.close()
2013-01-18 17:33:05 +04:00
2013-01-20 15:43:00 +04:00
content += "Failed test case '%s' (#%d)" % (title, test_count)
2013-01-18 19:29:21 +04:00
if parse:
2013-01-18 19:34:14 +04:00
content += " at parsing: %s:\n\n" % parse
content += "### Log file:\n\n"
2013-01-22 00:05:25 +04:00
content += "%s\n\n" % log
2013-01-18 19:29:21 +04:00
elif not detected:
2013-01-18 19:34:14 +04:00
content += " - SQL injection not detected\n\n"
2013-01-22 00:05:25 +04:00
else:
content += "\n\n"
2013-01-18 17:20:19 +04:00
2013-01-18 19:29:21 +04:00
if traceback:
2013-01-22 00:05:25 +04:00
content += "### Traceback:\n\n"
content += "%s\n\n" % str(traceback)
2013-01-18 19:29:21 +04:00
2013-01-18 19:34:14 +04:00
content += "#######################################################################\n\n"
2013-01-18 19:29:21 +04:00
end_string = "Regression test finished at %s" % time.strftime("%H:%M:%S %d-%m-%Y", time.gmtime())
2013-01-18 19:34:14 +04:00
if content:
content += end_string
SUBJECT = "Failed %s (%s)" % (SUBJECT, ", ".join("#%d" % count for count in test_counts))
2013-01-18 19:29:21 +04:00
2013-01-18 19:34:14 +04:00
msg = prepare_email(content)
2013-01-18 19:29:21 +04:00
2013-01-18 19:34:14 +04:00
for test_count, attachment in attachments.items():
2013-01-18 19:29:21 +04:00
attachment = MIMEText(attachment)
attachment.add_header("Content-Disposition", "attachment", filename="test_case_%d_console_output.txt" % test_count)
msg.attach(attachment)
send_email(msg)
else:
2013-02-12 18:41:04 +04:00
SUBJECT = "Successful %s" % SUBJECT
msg = prepare_email("All test cases were successful\n\n%s" % end_string)
send_email(msg)
2013-01-18 19:29:21 +04:00
if __name__ == "__main__":
2013-01-27 16:01:50 +04:00
log_fd = open("/tmp/sqlmapregressiontest.log", "wb")
log_fd.write("Regression test started at %s\n" % START_TIME)
2013-01-26 20:11:09 +04:00
try:
main()
2019-01-22 03:20:27 +03:00
except Exception:
2013-01-26 20:11:09 +04:00
log_fd.write("An exception has occurred:\n%s" % str(traceback.format_exc()))
2013-02-07 18:28:39 +04:00
log_fd.write("Regression test finished at %s\n\n" % time.strftime("%H:%M:%S %d-%m-%Y", time.gmtime()))
2013-01-26 20:11:09 +04:00
log_fd.close()