Class: Risu::Templates::AuthenticationSummary

Inherits:
Base::TemplateBase show all
Includes:
TemplateHelper
Defined in:
lib/risu/templates/authentication_summary.rb

Instance Attribute Summary

Attributes inherited from Base::TemplateBase

#output, #template_info

Instance Method Summary collapse

Methods included from TemplateHelper

#default_credential_plugins, #default_credentials_appendix_section, #default_credentials_section, #definition, #has_default_credentials?, #heading1, #heading2, #heading3, #heading4, #heading5, #heading6, #item_count_by_plugin_id, #item_count_by_plugin_name, #new_page, #report_author, #report_classification, #report_subtitle, #report_title, #table, #text, #title

Methods included from ScanHelper

#authenticated_count, #scan_info_to_hash

Methods included from SharesTemplateHelper

#anon_ftp_count, #anon_ftp_section, #anon_smb_count, #anon_smb_query, #anon_smb_section, #shares_appendix_section, #shares_section, #shares_section_has_findings?

Methods included from GraphTemplateHelper

#other_os_graph_page, #risks_by_service_graph_page, #risks_by_severity_graph_page, #root_cause_graph_page, #windows_os_graph_page

Methods included from MalwareTemplateHelper

#conficker_appendix_section, #conficker_count, #conficker_section, #known_malicious_process_appendix_section, #known_malicious_process_count, #known_malicious_process_section, #malware_appendix_section, #malware_section

Methods included from HostTemplateHelper

#unsupported_os, #unsupported_os_appendix_section

Methods inherited from Base::TemplateBase

inherited

Constructor Details

#initializeAuthenticationSummary

Returns a new instance of AuthenticationSummary.



28
29
30
31
32
33
34
35
36
37
# File 'lib/risu/templates/authentication_summary.rb', line 28

def initialize
	@template_info =
	{
		:name => "authentication_summary",
		:author => "hammackj",
		:version => "0.0.2",
		:renderer => "PDF",
		:description => "Generates a Authentication Summary Report"
	}
end

Instance Method Details

#render(output) ⇒ Object



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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
# File 'lib/risu/templates/authentication_summary.rb', line 41

def render output
	@output.text Report.classification.upcase, :align => :center
	@output.text "\n"

	report_title Report.title
	report_subtitle "Authentication Summary Report"
	report_author "This report was prepared by\n#{Report.author}"

	@output.text "\n\n\n"

	@output.text "Scan Date:", :style => :bold
	@output.text "#{Report.scan_date}"
	@output.text "\n"


	credentialied_scans = HostProperty.where(:name => "Credentialed_Scan")
	auth = []
	unauth = []

	credentialied_scans.each do |s|
		if s.value == "true"
			auth.push(s.host_id)
		else
			unauth.push(s.host_id)
		end
	end

	auth_hosts = []

	auth.each do |h|
		auth_hosts.push Host.find(h).ip
	end

	@output.text "Authenticated Count:", :style => :bold
	@output.text "#{auth.size}"
	@output.text "\n"
	@output.text "#{auth_hosts.join(", ")}"
	@output.text "\n"

	@output.text "UnAuthenticated Count:", :style => :bold
	@output.text "#{unauth.size}"
	@output.text "\n"

	results = Array.new

	headers = ["Hostname", "OS", "Authenticated"]
	header_widths = {0 => 230, 1 => 138, 2 => 138}

	Host.sorted.each do |host|
		row = Array.new

		authenticated = nil

		if host.host_properties.where(:name => "Credentialed_Scan").first != nil
			authenticated = host.host_properties.where(:name => "Credentialed_Scan").first.value
		end

		os = host.os

		host_name = host.name
		host_name = "#{host.name} (#{host.netbios})" if host.netbios != nil

		row.push(host_name)
		row.push(os)
		row.push(authenticated)

		results.push(row)
	end

	output.table([headers] + results, :header => true, :column_widths => header_widths, :row_colors => ['ffffff', 'E5E5E5']) do
		row(0).style(:font_style => :bold, :background_color => 'D0D0D0')
		cells.borders = [:top, :bottom, :left, :right]
	end

	output.number_pages "<page> of <total>", :at => [output.bounds.right - 75, 0], :width => 150, :page_filter => :all
end