64 lines
1.9 KiB
Ruby
64 lines
1.9 KiB
Ruby
##
|
|
# This module requires Metasploit: https://metasploit.com/download
|
|
# Current source: https://github.com/rapid7/metasploit-framework
|
|
##
|
|
|
|
require 'English'
|
|
class MetasploitModule < Msf::Auxiliary
|
|
include Msf::Exploit::Remote::MSSQL
|
|
include Msf::OptionalSession::MSSQL
|
|
|
|
def initialize(info = {})
|
|
super(
|
|
update_info(
|
|
info,
|
|
'Name' => 'Microsoft SQL Server Generic Query from File',
|
|
'Description' => %q{
|
|
This module will allow for multiple SQL queries contained within a specified
|
|
file to be executed against a Microsoft SQL (MSSQL) Server instance, given
|
|
the appropriate credentials.
|
|
},
|
|
'Author' => [ 'j0hn__f : <jf[at]tinternet.org.uk>' ],
|
|
'License' => MSF_LICENSE,
|
|
'Notes' => {
|
|
'Stability' => [CRASH_SAFE],
|
|
'SideEffects' => [IOC_IN_LOGS],
|
|
'Reliability' => []
|
|
}
|
|
)
|
|
)
|
|
|
|
register_options(
|
|
[
|
|
OptPath.new('SQL_FILE', [ true, 'File containing multiple SQL queries execute (one per line)']),
|
|
OptString.new('QUERY_PREFIX', [ false, 'string to append each line of the file', '']),
|
|
OptString.new('QUERY_SUFFIX', [ false, 'string to prepend each line of the file', ''])
|
|
]
|
|
)
|
|
end
|
|
|
|
def run
|
|
queries = File.readlines(datastore['SQL_FILE'])
|
|
|
|
prefix = datastore['QUERY_PREFIX']
|
|
suffix = datastore['QUERY_SUFFIX']
|
|
|
|
if session
|
|
set_mssql_session(session.client)
|
|
else
|
|
unless mssql_login_datastore
|
|
print_error("#{datastore['RHOST']}:#{datastore['RPORT']} - Invalid SQL Server credentials")
|
|
return
|
|
end
|
|
end
|
|
queries.each do |sql_query|
|
|
vprint_status("Executing: #{sql_query}")
|
|
mssql_query(prefix + sql_query.chomp + suffix, true)
|
|
end
|
|
rescue Rex::ConnectionRefused, Rex::ConnectionTimeout
|
|
print_error "Error connecting to server: #{$ERROR_INFO}"
|
|
ensure
|
|
disconnect unless session
|
|
end
|
|
end
|