forked from iSECPartners/sslyze
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sslyze.py
254 lines (193 loc) · 9.28 KB
/
sslyze.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
#!/usr/bin/env python
#-------------------------------------------------------------------------------
# Name: sslyze.py
# Purpose: Main module of SSLyze.
#
# Author: aaron, alban
#
# Copyright: 2012 SSLyze developers
#
# SSLyze is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# SSLyze is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with SSLyze. If not, see <http://www.gnu.org/licenses/>.
#-------------------------------------------------------------------------------
from time import time
from multiprocessing import Process, JoinableQueue
from xml.etree.ElementTree import ElementTree, Element, tostring
from xml.dom import minidom
from utils.discover_targets import discover_targets
from utils.discover_plugins import discover_plugins
from utils.parse_command_line import create_command_line_parser, \
parse_command_line, process_parsing_results, PARSING_ERROR_FORMAT
SSLYZE_VERSION = 'SSLyze v0.5'
DEFAULT_NB_PROCESSES = 5 # 10 was too aggressive, lowering it to 5
PLUGIN_PATH = "plugins"
DEFAULT_TIMEOUT = 5
PROJECT_URL = "https://github.com/isecPartners/sslyze"
# Todo: Move formatting stuff to another file
SCAN_FORMAT = 'Scan Results For {0}:{1} - {2}:{1}'
class WorkerProcess(Process):
def __init__(self, queue_in, queue_out, available_commands, shared_settings):
Process.__init__(self)
self.queue_in = queue_in
self.queue_out = queue_out
self.available_commands = available_commands
self.shared_settings = shared_settings
def run(self):
"""
The process will first complete tasks it gets from self.queue_in.
Once it gets notified that all the tasks have been completed,
it terminates.
"""
from plugins.PluginBase import PluginResult
# Plugin classes are unpickled by the multiprocessing module
# without state info. Need to assign shared_settings here
for plugin_class in self.available_commands.itervalues():
plugin_class._shared_settings = self.shared_settings
while True:
task = self.queue_in.get() # Grab a task from queue_in
if task == None: # All the tasks have been completed
self.queue_out.put(None) # Pass on the sentinel to result_queue
self.queue_in.task_done()
break
(target, command, args) = task
# Instatiate the proper plugin
plugin_instance = self.available_commands[command]()
try: # Process the task
result = plugin_instance.process_task(target, command, args)
except Exception as e: # Generate txt and xml results
txt_result = ['Unhandled exception when processing --' +
command + ': ', str(e.__class__.__module__) +
'.' + str(e.__class__.__name__) + ' - ' + str(e)]
xml_result = Element(command, exception=txt_result[1])
result = PluginResult(txt_result, xml_result)
# Send the result to queue_out
self.queue_out.put((target, command, result))
self.queue_in.task_done()
return
def _format_title(title):
return ' ' + title.upper()+ '\n' + ' ' + ('-' * len(title))
def _format_xml_target_result(target, result_list):
(host, ip, port) = target
target_xml = Element('target', host=host, ip=ip, port=str(port))
result_list.sort(key=lambda result: result[0]) # Sort results
for (command, plugin_result) in result_list:
target_xml.append(plugin_result.get_xml_result())
return target_xml
def _format_txt_target_result(target, result_list):
(host, ip, port) = target
target_result_str = ''
for (command, plugin_result) in result_list:
# Print the result of each separate command
target_result_str += '\n'
for line in plugin_result.get_txt_result():
target_result_str += line + '\n'
scan_txt = SCAN_FORMAT.format(host, str(port), ip)
return _format_title(scan_txt) + '\n' + target_result_str + '\n\n'
def main():
nb_processes = DEFAULT_NB_PROCESSES
#--PLUGINS INITIALIZATION--
start_time = time()
print '\n\n\n' + _format_title('Registering available plugins')
available_plugins = discover_plugins(PLUGIN_PATH)
# Create the command line parser and the list of available options
(parser, available_commands) = create_command_line_parser(
available_plugins,
SSLYZE_VERSION,
DEFAULT_TIMEOUT)
# Parse the command line
print '\n\n'
parse_result = parse_command_line(parser)
if parse_result == None:
print PARSING_ERROR_FORMAT.format('No hosts to scan.')
return
else:
(args_command_list, args_target_list) = parse_result
# Fill the shared settings dictionnary, shared between all the plugins
shared_settings = process_parsing_results(args_command_list)
if not shared_settings:
return
#--PROCESSES INITIALIZATION--
task_queue = JoinableQueue() # Processes get tasks from task_queue and
result_queue = JoinableQueue() # put the result of each task in result_queue
# Spawn a pool of processes, and pass them the queues
process_list = []
for i in xrange(nb_processes):
p = WorkerProcess(task_queue, result_queue, available_commands, \
shared_settings)
p.start()
process_list.append(p) # Keep track of the processes that were started
#--TESTING SECTION--
# Figure out which hosts are up and fill the task queue with work to do
print _format_title('Checking host(s) availability')
alive_target_list = discover_targets(args_target_list, args_command_list,\
available_commands, task_queue)
print '\n\n'
# Put a 'None' sentinel in the queue to let the each process know when every
# task has been completed
[task_queue.put(None) for process in process_list]
# Keep track of how many tasks have to be performed for each target
task_num=0
for command in available_commands:
if getattr(args_command_list, command):
task_num+=1
# --REPORTING SECTION--
processes_running = nb_processes
# XML output
if shared_settings['xml_file']:
xml_output_list = []
# Each host has a list of results
result_dict = {}
for target in alive_target_list:
result_dict[target] = []
# If all processes have stopped, all the work is done
while processes_running:
result = result_queue.get()
if result == None: # Getting None means that one process was done
processes_running -= 1
else: # Getting an actual result
(target, command, plugin_result) = result
result_dict[target].append((command, plugin_result))
if len(result_dict[target]) == task_num: # Done with this target
# Print the results and update the xml doc
print _format_txt_target_result(target, result_dict[target])
if shared_settings['xml_file']:
xml_output_list.append(_format_xml_target_result(target, result_dict[target]))
result_queue.task_done()
# --TERMINATE--
# Make sure all the processes had time to terminate
task_queue.join()
result_queue.join()
#[process.join() for process in process_list] # Causes interpreter shutdown errors
exec_time = time()-start_time
# Output XML doc to a file if needed
if shared_settings['xml_file']:
result_xml_attr = {'httpsTunnel':str(shared_settings['https_tunnel_host']),
'totalScanTime' : str(exec_time),
'defaultTimeout' : str(shared_settings['timeout']),
'startTLS' : str(shared_settings['starttls'])}
result_xml = Element('results', attrib = result_xml_attr)
# Sort results in alphabetical order to make the XML files (somewhat) diff-able
xml_output_list.sort(key=lambda xml_elem: xml_elem.attrib['host'])
for xml_element in xml_output_list:
result_xml.append(xml_element)
xml_final_doc = Element('document', title = "SSLyze Scan Results",
SSLyzeVersion = SSLYZE_VERSION,
SSLyzeWeb = PROJECT_URL)
xml_final_doc.append(result_xml)
# Hack: Prettify the XML file so it's (somewhat) diff-able
xml_final_pretty = minidom.parseString(tostring(xml_final_doc, encoding='UTF-8'))
with open(shared_settings['xml_file'],'w') as xml_file:
xml_file.write(xml_final_pretty.toprettyxml(indent=" ", encoding="utf-8" ))
print _format_title('Scan Completed in {0:.2f} s'.format(exec_time))
if __name__ == "__main__":
main()