Module: Msf::DBManager::Import::Nessus
- Included in:
- Msf::DBManager::Import
- Defined in:
- lib/msf/core/db_manager/import/nessus.rb
Defined Under Namespace
Instance Method Summary collapse
-
#handle_nessus(wspace, hobj, port, nasl, plugin_name, severity, data, task = nil) ⇒ Object
protected
This holds all of the shared parsing/handling used by the Nessus NBE and NESSUS v1 methods.
Methods included from XML
Methods included from XML::V2
#handle_nessus_v2, #import_nessus_xml_v2
Methods included from XML::V1
Methods included from NBE
#import_nessus_nbe, #import_nessus_nbe_file
Instance Method Details
#handle_nessus(wspace, hobj, port, nasl, plugin_name, severity, data, task = nil) ⇒ Object (protected)
This holds all of the shared parsing/handling used by the Nessus NBE and NESSUS v1 methods
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 |
# File 'lib/msf/core/db_manager/import/nessus.rb', line 14 def handle_nessus(wspace, hobj, port, nasl, plugin_name, severity, data,task=nil) addr = hobj.address # The port section looks like: # http (80/tcp) p = port.match(/^([^\(]+)\((\d+)\/([^\)]+)\)/) if p name = p[1].strip port = p[2].to_i proto = p[3].downcase else port = nil end info = { :workspace => wspace, :host => hobj, :port => port, :proto => proto, :task => task } if name and name != "unknown" and name[-1,1] != "?" info[:name] = name end msf_import_service(info) if nasl.nil? || nasl.empty? || nasl == 0 || nasl == "0" return end data.gsub!("\\n", "\n") refs = [] if (data =~ /^CVE : (.*)$/) $1.gsub(/C(VE|AN)\-/, '').split(',').map { |r| r.strip }.each do |r| refs.push('CVE-' + r) end end if (data =~ /^BID : (.*)$/) $1.split(',').map { |r| r.strip }.each do |r| refs.push('BID-' + r) end end if (data =~ /^Other references : (.*)$/) $1.split(',').map { |r| r.strip }.each do |r| ref_id, ref_val = r.split(':') ref_val ? refs.push(ref_id + '-' + ref_val) : refs.push(ref_id) end end nss = 'NSS-' + nasl.to_s.strip refs << nss unless plugin_name.to_s.strip.empty? vuln_name = plugin_name else vuln_name = nss end vuln_info = { :workspace => wspace, :host => hobj, :port => port, :proto => proto, :name => vuln_name, :info => data, :refs => refs, :task => task, } msf_import_vuln(vuln_info) end |