class Risu::Templates::TechnicalFindingsTemplate
Public Class Methods
new()
click to toggle source
# File lib/risu/templates/technical_findings.rb, line 27 def initialize @template_info = { :name => "technical_findings", :author => "hammackj", :version => "0.0.9", :renderer => "PDF", :description => "Generates a Technical Findings Report" } end
Public Instance Methods
print_technical_findings(risks, text, color, last=false)
click to toggle source
# File lib/risu/templates/technical_findings.rb, line 38 def print_technical_findings(risks, text, color, last=false) if risks.length > 0 title text, 18, color risks.each do |f| hosts = Item.where(:plugin_id => f.plugin_id).group(:host_id) plugin = Plugin.find_by_id(f.plugin_id) #references = Reference.where(:plugin_id => plugin.id).group(:value).order(:reference_name) output.font_size(16) do text "#{plugin.plugin_name}\n" end if hosts.length > 1 text "Hosts (#{hosts.length})", :style => :bold else text "Host", :style => :bold end hostlist = Array.new hosts.each do |host| ho = Host.find_by_id(host.host_id) host_string = "#{ho.name}" host_string << " (#{ho.fqdn})" if ho.fqdn != nil hostlist << host_string end text hostlist.join(', ') definition "Plugin output", f.plugin_output definition "Description", plugin.description.gsub(/[ ]{2,}/, " ") if plugin.description != nil definition "Synopsis", plugin.synopsis definition "CVSS Base Score", plugin.cvss_base_score definition "Exploit Available", plugin.exploit_available? ? "Yes" : "No" definition "Solution", plugin.solution definition "References", plugin.references.reference_string, :inline_format => true plugin_url = "http://www.tenablesecurity.com/plugins/index.php?view=single&id=#{plugin.id}" definition "Nessus Plugin", plugin_url, :inline_format => true, :link => plugin_url text "\n" end @output.start_new_page if last == false end end
render(output)
click to toggle source
# File lib/risu/templates/technical_findings.rb, line 86 def render output text Report.classification.upcase, :align => :center text "\n" report_title Report.title report_subtitle "Technical Findings" report_author "This report was prepared by\n#{Report.author}" text "\n\n\n" # If you uncomment the med/low change the true in high to false for a new page after it print_technical_findings(Item.critical_risks_unique, "Critical Findings", Risu::GRAPH_COLORS[0]) if Item.critical_risks_unique.to_a.size != 0 print_technical_findings(Item.high_risks_unique, "High Findings", Risu::GRAPH_COLORS[1], true) if Item.high_risks_unique.to_a.size != 0 #print_technical_findings(Item.medium_risks_unique, "Medium Findings", Risu::GRAPH_COLORS[2]) if Item.medium_risks_unique.to_a.size != 0 #print_technical_findings(Item.low_risks_unique, "Low Findings", Risu::GRAPH_COLORS[3], true) if Item.low_risks_unique.to_a.size != 0 output.number_pages "<page> of <total>", :at => [output.bounds.right - 75, 0], :width => 150, :page_filter => :all end