Store results as json to prevent keeping references around

This commit is contained in:
dwelch-r7 2020-03-11 12:56:22 +00:00 committed by Alan Foster
parent 54928c0e7b
commit e6aa840e64
No known key found for this signature in database
GPG Key ID: 3BD4FA3818818F04
3 changed files with 22 additions and 14 deletions

View File

@ -172,9 +172,9 @@ protected
mod.setup
mod.framework.events.on_module_run(mod)
result = block.call(mod)
job_status_tracker.completed(run_uuid, result)
job_status_tracker.completed(run_uuid, result, mod)
rescue ::Exception => e
job_status_tracker.failed(run_uuid, e)
job_status_tracker.failed(run_uuid, e, mod)
raise
end
rescue Msf::Auxiliary::Complete

View File

@ -223,9 +223,9 @@ module Exploit
job_status_tracker.start run_uuid
mod.setup
result = mod.has_check? ? mod.check : Msf::Exploit::CheckCode::Unsupported
job_status_tracker.completed(run_uuid, result)
job_status_tracker.completed(run_uuid, result, mod)
rescue => e
job_status_tracker.failed(run_uuid, e)
job_status_tracker.failed(run_uuid, e, mod)
mod.handle_exception e
end

View File

@ -20,12 +20,12 @@ class RpcJobStatusTracker
ready.delete(id)
end
def completed(id, result, ttl=nil)
add_result(id, {result: result}, ttl)
def completed(id, result, mod, ttl=nil)
add_result(id, {result: result}, mod, ttl)
end
def failed(id, error, ttl=nil)
add_result( id,{error: error.to_s}, ttl)
def failed(id, error, mod, ttl=nil)
add_result( id,{error: error.to_s}, mod, ttl)
end
def running?(id)
@ -41,7 +41,10 @@ class RpcJobStatusTracker
end
def result(id)
results.fetch(id)
result = results.fetch(id)
return unless result
JSON.parse(result).with_indifferent_access
end
def delete(id)
@ -60,26 +63,31 @@ class RpcJobStatusTracker
running.to_a
end
def data
results.data
end
alias :ack :delete
private
def add_result(id, result, ttl=nil)
def add_result(id, result, mod, ttl=nil)
begin
# ttl of nil means it will take the default expiry time
results.write(id, result, ttl)
string = result.to_json
results.write(id, string, ttl)
rescue Exception => e
wlog("Job with id: #{id} finished but the result could not be stored")
wlog("#{e.class}, #{e.message}")
add_fallback_result(id, ttl)
add_fallback_result(id, mod, ttl)
ensure
running.delete(id)
end
end
def add_fallback_result(id, ttl)
def add_fallback_result(id, mod, ttl)
begin
results.write(id, {unexpected_error: 'Job finished but the result could not be stored'}, ttl)
results.write(id, {error: { message: 'Job finished but the result could not be stored'}, data: { mod: mod.fullname }}, ttl)
rescue Exception => e
wlog("Job with id: #{id} fallback result failed to be stored")
wlog("#{e.class}, #{e.message}")