WIP remote vuln read, update, delete
parent
7ad7188824
commit
22752518ea
|
@ -1,12 +1,41 @@
|
||||||
module VulnDataProxy
|
module VulnDataProxy
|
||||||
|
|
||||||
|
def vulns(opts)
|
||||||
|
begin
|
||||||
|
data_service = self.get_data_service()
|
||||||
|
data_service.vulns(opts)
|
||||||
|
rescue Exception => e
|
||||||
|
self.log_error(e, "Problem retrieving vulns")
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
def report_vuln(opts)
|
def report_vuln(opts)
|
||||||
begin
|
begin
|
||||||
data_service = self.get_data_service()
|
data_service = self.get_data_service()
|
||||||
data_service.report_vuln(opts)
|
data_service.report_vuln(opts)
|
||||||
rescue Exception => e
|
rescue Exception => e
|
||||||
self.log_error(e, "Problem reporting vuln")
|
self.log_error(e, "Problem reporting vuln")
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def update_vuln(opts)
|
||||||
|
begin
|
||||||
|
data_service = self.get_data_service()
|
||||||
|
data_service.update_vuln(opts)
|
||||||
|
rescue Exception => e
|
||||||
|
self.log_error(e, "Problem updating vuln")
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def delete_vuln(opts)
|
||||||
|
begin
|
||||||
|
data_service = self.get_data_service()
|
||||||
|
data_service.delete_vuln(opts)
|
||||||
|
rescue Exception => e
|
||||||
|
self.log_error(e, "Problem deleting vuln")
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
end
|
end
|
|
@ -1,7 +1,29 @@
|
||||||
|
require 'metasploit/framework/data_service/remote/http/response_data_helper'
|
||||||
|
|
||||||
module RemoteVulnDataService
|
module RemoteVulnDataService
|
||||||
|
include ResponseDataHelper
|
||||||
|
|
||||||
VULN_API_PATH = '/api/v1/vulns'
|
VULN_API_PATH = '/api/v1/vulns'
|
||||||
|
VULN_MDM_CLASS = 'Mdm::Vuln'
|
||||||
|
|
||||||
|
def vulns(opts)
|
||||||
|
json_to_mdm_object(self.get_data(VULN_API_PATH, nil, opts), VULN_MDM_CLASS, [])
|
||||||
|
end
|
||||||
|
|
||||||
def report_vuln(opts)
|
def report_vuln(opts)
|
||||||
self.post_data_async(VULN_API_PATH, opts)
|
json_to_mdm_object(self.post_data(VULN_API_PATH, opts), VULN_MDM_CLASS, []).first
|
||||||
|
end
|
||||||
|
|
||||||
|
def update_vuln(opts)
|
||||||
|
path = VULN_API_PATH
|
||||||
|
if opts && opts[:id]
|
||||||
|
id = opts.delete(:id)
|
||||||
|
path = "#{VULN_API_PATH}/#{id}"
|
||||||
|
end
|
||||||
|
json_to_mdm_object(self.put_data(path, opts), VULN_MDM_CLASS, [])
|
||||||
|
end
|
||||||
|
|
||||||
|
def delete_vuln(opts)
|
||||||
|
json_to_mdm_object(self.delete_data(VULN_API_PATH, opts), VULN_MDM_CLASS, [])
|
||||||
end
|
end
|
||||||
end
|
end
|
|
@ -4,20 +4,70 @@ module VulnServlet
|
||||||
'/api/v1/vulns'
|
'/api/v1/vulns'
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def self.api_path_with_id
|
||||||
|
"#{VulnServlet.api_path}/?:id?"
|
||||||
|
end
|
||||||
|
|
||||||
def self.registered(app)
|
def self.registered(app)
|
||||||
|
app.get VulnServlet.api_path_with_id, &get_vuln
|
||||||
app.post VulnServlet.api_path, &report_vuln
|
app.post VulnServlet.api_path, &report_vuln
|
||||||
|
app.put VulnServlet.api_path_with_id, &update_vuln
|
||||||
|
app.delete VulnServlet.api_path, &delete_vuln
|
||||||
end
|
end
|
||||||
|
|
||||||
#######
|
#######
|
||||||
private
|
private
|
||||||
#######
|
#######
|
||||||
|
|
||||||
|
def self.get_vuln
|
||||||
|
lambda {
|
||||||
|
begin
|
||||||
|
opts = parse_json_request(request, false)
|
||||||
|
data = get_db().vulns(params.symbolize_keys)
|
||||||
|
includes = [:host]
|
||||||
|
set_json_response(data, includes)
|
||||||
|
rescue Exception => e
|
||||||
|
set_error_on_response(e)
|
||||||
|
end
|
||||||
|
}
|
||||||
|
end
|
||||||
|
|
||||||
def self.report_vuln
|
def self.report_vuln
|
||||||
lambda {
|
lambda {
|
||||||
job = lambda { |opts|
|
begin
|
||||||
get_db().report_vuln(opts)
|
job = lambda { |opts|
|
||||||
}
|
get_db().report_vuln(opts)
|
||||||
exec_report_job(request, &job)
|
}
|
||||||
|
exec_report_job(request, &job)
|
||||||
|
rescue Exception => e
|
||||||
|
set_error_on_response(e)
|
||||||
|
end
|
||||||
|
}
|
||||||
|
end
|
||||||
|
|
||||||
|
def self.update_vuln
|
||||||
|
lambda {
|
||||||
|
begin
|
||||||
|
opts = parse_json_request(request, false)
|
||||||
|
tmp_params = params.symbolize_keys
|
||||||
|
opts[:id] = tmp_params[:id] if tmp_params[:id]
|
||||||
|
data = get_db().update_vuln(opts)
|
||||||
|
set_json_response(data)
|
||||||
|
rescue Exception => e
|
||||||
|
set_error_on_response(e)
|
||||||
|
end
|
||||||
|
}
|
||||||
|
end
|
||||||
|
|
||||||
|
def self.delete_vuln
|
||||||
|
lambda {
|
||||||
|
begin
|
||||||
|
opts = parse_json_request(request, false)
|
||||||
|
data = get_db().delete_vuln(opts)
|
||||||
|
set_json_response(data)
|
||||||
|
rescue Exception => e
|
||||||
|
set_error_on_response(e)
|
||||||
|
end
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -235,9 +235,58 @@ module Msf::DBManager::Vuln
|
||||||
#
|
#
|
||||||
# This methods returns a list of all vulnerabilities in the database
|
# This methods returns a list of all vulnerabilities in the database
|
||||||
#
|
#
|
||||||
def vulns(wspace=workspace)
|
def vulns(opts)
|
||||||
::ActiveRecord::Base.connection_pool.with_connection {
|
wspace = opts.delete(:workspace) || opts.delete(:wspace) || workspace
|
||||||
wspace.vulns
|
if wspace.kind_of? String
|
||||||
}
|
wspace = find_workspace(wspace)
|
||||||
|
end
|
||||||
|
|
||||||
|
::ActiveRecord::Base.connection_pool.with_connection {
|
||||||
|
search_term = opts.delete(:search_term)
|
||||||
|
column_search_conditions = Msf::Util::DBManager.create_all_column_search_conditions(Mdm::Vuln, search_term)
|
||||||
|
wspace.vulns.includes(:host).where(opts).where(column_search_conditions)
|
||||||
|
}
|
||||||
|
end
|
||||||
|
|
||||||
|
# Update the attributes of a Vuln entry with the values in opts.
|
||||||
|
# The values in opts should match the attributes to update.
|
||||||
|
#
|
||||||
|
# @param opts [Hash] Hash containing the updated values. Key should match the attribute to update. Must contain :id of record to update.
|
||||||
|
# @return [Mdm::Vuln] The updated Mdm::Vuln object.
|
||||||
|
def update_vuln(opts)
|
||||||
|
# process workspace string for update if included in opts
|
||||||
|
wspace = opts.delete(:workspace)
|
||||||
|
if wspace.kind_of? String
|
||||||
|
wspace = find_workspace(wspace)
|
||||||
|
opts[:workspace] = wspace
|
||||||
|
end
|
||||||
|
|
||||||
|
::ActiveRecord::Base.connection_pool.with_connection {
|
||||||
|
id = opts.delete(:id)
|
||||||
|
Mdm::Vuln.update(id, opts)
|
||||||
|
}
|
||||||
|
end
|
||||||
|
|
||||||
|
# Deletes Vuln entries based on the IDs passed in.
|
||||||
|
#
|
||||||
|
# @param opts[:ids] [Array] Array containing Integers corresponding to the IDs of the Vuln entries to delete.
|
||||||
|
# @return [Array] Array containing the Mdm::Vuln objects that were successfully deleted.
|
||||||
|
def delete_vuln(opts)
|
||||||
|
raise ArgumentError.new("The following options are required: :ids") if opts[:ids].nil?
|
||||||
|
|
||||||
|
::ActiveRecord::Base.connection_pool.with_connection {
|
||||||
|
deleted = []
|
||||||
|
opts[:ids].each do |vuln_id|
|
||||||
|
vuln = Mdm::Vuln.find(vuln_id)
|
||||||
|
begin
|
||||||
|
deleted << vuln.destroy
|
||||||
|
rescue # refs suck
|
||||||
|
elog("Forcibly deleting #{vuln}")
|
||||||
|
deleted << vuln.delete
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
return deleted
|
||||||
|
}
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue