mirror of
				https://github.com/sqlmapproject/sqlmap.git
				synced 2025-11-04 18:07:46 +03:00 
			
		
		
		
	minor fix - issue #311
This commit is contained in:
		
							parent
							
								
									13b776fb9f
								
							
						
					
					
						commit
						c8b1013c42
					
				| 
						 | 
				
			
			@ -12,6 +12,7 @@ import subprocess
 | 
			
		|||
import time
 | 
			
		||||
 | 
			
		||||
from email.mime.text import MIMEText
 | 
			
		||||
from email.mime.multipart import MIMEMultipart
 | 
			
		||||
 | 
			
		||||
TIME = time.strftime("%H:%M:%S %d-%m-%Y", time.gmtime())
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -38,7 +39,7 @@ for failed_test in failed_tests:
 | 
			
		|||
    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])
 | 
			
		||||
    detection = True if failed_test[6] else False
 | 
			
		||||
    detection = False if failed_test[6] == "False" else bool(failed_test[5])
 | 
			
		||||
 | 
			
		||||
    TEST_COUNTS.append(test_count)
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -74,11 +75,13 @@ for failed_test in failed_tests:
 | 
			
		|||
 | 
			
		||||
if CONTENT:
 | 
			
		||||
    SUBJECT += " (%s)" % ", ".join("#%d" % count for count in TEST_COUNTS)
 | 
			
		||||
    msg = MIMEText(CONTENT)
 | 
			
		||||
    msg = MIMEMultipart()
 | 
			
		||||
    msg["Subject"] = SUBJECT
 | 
			
		||||
    msg["From"] = FROM
 | 
			
		||||
    msg["To"] = TO
 | 
			
		||||
 | 
			
		||||
    msg.attach(MIMEText(CONTENT))
 | 
			
		||||
 | 
			
		||||
    for test_count, attachment in ATTACHMENTS.items():
 | 
			
		||||
        attachment = MIMEText(attachment)
 | 
			
		||||
        attachment.add_header('Content-Disposition', 'attachment', filename="test_case_%d_console_output.txt" % test_count)
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue
	
	Block a user