Coverage for /private/tmp/im/impacket/impacket/examples/ntlmrelayx/attacks/mssqlattack.py : 35%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
# SECUREAUTH LABS. Copyright 2018 SecureAuth Corporation. All rights reserved. # # This software is provided under under a slightly modified version # of the Apache Software License. See the accompanying LICENSE file # for more information. # # MSSQL Attack Class # # Authors: # Alberto Solino (@agsolino) # Dirk-jan Mollema (@_dirkjan) / Fox-IT (https://www.fox-it.com) # # Description: # MSSQL protocol relay attack # # ToDo: #
if self.config.queries is None: LOG.error('No SQL queries specified for MSSQL relay!') else: for query in self.config.queries: LOG.info('Executing SQL: %s' % query) self.client.sql_query(query) self.client.printReplies() self.client.printRows() |