Class: Risu::Models::Item
- Inherits:
-
ActiveRecord::Base
- Object
- ActiveRecord::Base
- Risu::Models::Item
- Defined in:
- lib/risu/models/item.rb
Overview
Item Model
Class Method Summary collapse
- .adjective_for_risk_text(risk_percent) ⇒ String deprecated Deprecated.
-
.all_risks_unique_sorted ⇒ ActiveRecord::Relation
Queries for all unique risks and sorts them by count.
- .calculate_missing_common_patch_host_percent ⇒ Object
- .calculate_overall_host_percent ⇒ Object
- .calculate_vulnerable_host_percent ⇒ FixNum deprecated Deprecated.
- .calculate_vulnerable_host_percent_with_patches_applied ⇒ Object deprecated Deprecated.
- .common_patch_percent_rounded_text ⇒ Object
- .common_patch_percent_text ⇒ Object
- .common_patch_risks ⇒ Object
- .common_patches_order_by_cvss_raw ⇒ Object
- .common_patches_sorted ⇒ Object
- .common_patches_sorted_raw ⇒ Object
- .common_patches_table(output) ⇒ Object
- .critical_high_common_risks ⇒ Object
- .critical_high_common_risks_count ⇒ Object
-
.critical_risks ⇒ ActiveRecord::Relation
Queries for all the critical risks in the database.
-
.critical_risks_by_host(limit = 10) ⇒ ActiveRecord::Relation
Queries for all the Critical risks by host.
-
.critical_risks_unique ⇒ ActiveRecord::Relation
Queries for all the unique Critical risks in the database.
-
.critical_risks_unique_sorted ⇒ ActiveRecord::Relation
Queries for all the unique Critical findings and sorts them by count.
-
.exploitablity_matrix(findings) ⇒ Array
Builds a array of findings with their exploitablity values.
-
.high_risks ⇒ ActiveRecord::Relation
Queries for all the high risks in the database.
-
.high_risks_by_host(limit = 10) ⇒ ActiveRecord::Relation
Queries for all the High risks by host.
-
.high_risks_unique ⇒ ActiveRecord::Relation
Queries for all the unique high risks in the database.
-
.high_risks_unique_sorted ⇒ ActiveRecord::Relation
Queries for all the unique high findings and sorts them by count.
-
.info_risks ⇒ ActiveRecord::Relation
Queries for all the info risks in the database.
-
.info_risks_unique ⇒ ActiveRecord::Relation
Queries for all the unique info risks in the database.
-
.info_risks_unique_sorted ⇒ ActiveRecord::Relation
Queries for all the unique info findings and sorts them by count.
-
.low_risks ⇒ ActiveRecord::Relation
Queries for all the low risks in the database.
-
.low_risks_by_host(limit = 10) ⇒ ActiveRecord::Relation
Queries for all the Low risks by host.
-
.low_risks_unique ⇒ ActiveRecord::Relation
Queries for all the unique low risks in the database.
-
.low_risks_unique_sorted ⇒ ActiveRecord::Relation
Queries for all the unique low findings and sorts them by count.
-
.medium_risks ⇒ ActiveRecord::Relation
Queries for all the medium risks in the database.
-
.medium_risks_by_host(limit = 10) ⇒ ActiveRecord::Relation
Queries for all the Medium risks by host.
-
.medium_risks_unique ⇒ ActiveRecord::Relation
Queries for all the unique medium risks in the database.
-
.medium_risks_unique_sorted ⇒ ActiveRecord::Relation
Queries for all the unique medium findings and sorts them by count.
-
.ms_patches ⇒ ActiveRecord::Relation
Queries for all the hosts with the Microsoft patch summary plugin (38153).
-
.ms_update ⇒ ActiveRecord::Relation
Queries for all host with the Microsoft Update Summary plugin(12028).
- .notable_order_by_cvss_raw ⇒ Object
- .overall_risk_percent_rounded_text ⇒ Object
- .overall_risk_percent_text ⇒ Object
-
.plugin ⇒ Plugin
Returns the plugin that this [Item] belongs to.
-
.raw_critical_risks ⇒ ActiveRecord::Relation
Queries for all the real critical risks in the database.
-
.raw_high_risks ⇒ ActiveRecord::Relation
Queries for all the real high risks in the database.
- .raw_info_risks ⇒ Object
- .raw_low_risks ⇒ Object
- .raw_medium_risks ⇒ Object
- .risk_percent_patched_rounded_text ⇒ Object deprecated Deprecated.
- .risk_percent_patched_text ⇒ Object deprecated Deprecated.
- .risk_percent_rounded_text ⇒ Object deprecated Deprecated.
- .risk_percent_text ⇒ Object deprecated Deprecated.
- .risk_text(risk_percent) ⇒ String deprecated Deprecated.
-
.risks ⇒ ActiveRecord::Relation
Queries for all risks in the database.
-
.risks_by_host(limit = 10) ⇒ ActiveRecord::Relation
With the query results.
-
.risks_by_plugin(limit = 10) ⇒ ActiveRecord::Relation
Queries for all the Critical risks by plugin.
-
.risks_by_service(limit = 10) ⇒ ActiveRecord::Relation
Queries for all the risks grouped by service type, used for the Vulnerabilities by Service graph.
- .risks_by_service_graph(limit = 10) ⇒ StringIO deprecated Deprecated.
- .risks_by_service_graph_text ⇒ String deprecated Deprecated.
- .risks_by_severity_graph ⇒ StringIO deprecated Deprecated.
- .risks_by_severity_graph_text ⇒ Object deprecated Deprecated.
-
.scrub_plugin_name(name) ⇒ String
Scrubs a plugin_name to remove all pointless data.
-
.stig_findings(category = "I") ⇒ ActiveRecord::Relation
Queries for all DISA Stig findings by category.
- .stigs_severity_graph ⇒ StringIO deprecated Deprecated.
-
.top_10_sorted ⇒ Array
Returns an array of plugin_id and plugin_name for the top 10 findings sorted by CVSS score.
-
.top_10_sorted_raw ⇒ Array
Returns an array of plugin_id and plugin_name for the top 10 findings unsorted.
-
.top_10_table(output) ⇒ Object
Returns a prawn pdf table for the top 10 notable findings.
Class Method Details
.adjective_for_risk_text(risk_percent) ⇒ String
Based on the risk_percent returns a adjective representative
429 430 431 432 433 434 435 436 437 438 439 440 441 442 |
# File 'lib/risu/models/item.rb', line 429 def adjective_for_risk_text risk_percent adjective = case risk_percent when 0..5 "excellent" when 6..10 "great" when 11..15 "good" when 16..20 "fair" else "poor" end end |
.all_risks_unique_sorted ⇒ ActiveRecord::Relation
Queries for all unique risks and sorts them by count
768 769 770 |
# File 'lib/risu/models/item.rb', line 768 def all_risks_unique_sorted select("items.*").select("count(*) as count_all").group(:plugin_id).order("count_all DESC") end |
.calculate_missing_common_patch_host_percent ⇒ Object
388 389 390 391 |
# File 'lib/risu/models/item.rb', line 388 def calculate_missing_common_patch_host_percent hosts = Host.unique_hosts_with_common_missing_patches_count host_percent = (hosts.to_f / Host.count.to_f) * 100 end |
.calculate_overall_host_percent ⇒ Object
393 394 395 396 |
# File 'lib/risu/models/item.rb', line 393 def calculate_overall_host_percent hosts = Host.uniquie_hosts_with_critical_high_common_count host_percent = (hosts.to_f / Host.count.to_f) * 100 end |
.calculate_vulnerable_host_percent ⇒ FixNum
Calculates a vulnerable host percent based on Critical and High findings (unique_vuln_crit_high_count / host_count) * 100
380 381 382 383 384 385 386 |
# File 'lib/risu/models/item.rb', line 380 def calculate_vulnerable_host_percent #patch to fix double counting #unique_hosts_with_critical_and_high = Host.unique_hosts_with_critical.count + Host.unique_hosts_with_high.count #unique_hosts_with_critical_and_high = Host.unique_hosts_with_critical_and_high_count unique_hosts_with_critical_and_high = Host.unique_hosts_with_critical_and_high_count host_percent = (unique_hosts_with_critical_and_high.to_f / Host.count.to_f) * 100 end |
.calculate_vulnerable_host_percent_with_patches_applied ⇒ Object
400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 |
# File 'lib/risu/models/item.rb', line 400 def calculate_vulnerable_host_percent_with_patches_applied exclude_list = [] hosts = [] risks = Item.top_10_sorted_raw[0..9] risks.each do |risk| exclude_list << risk[0] end Item.critical_risks.where.not(:plugin_id => exclude_list).each do |item| hosts << item.host_id end Item.high_risks.where.not(:plugin_id => exclude_list).each do |item| hosts << item.host_id end hosts.uniq! (hosts.count.to_f / Host.count.to_f) * 100 end |
.common_patch_percent_rounded_text ⇒ Object
515 516 517 |
# File 'lib/risu/models/item.rb', line 515 def common_patch_percent_rounded_text "#{calculate_missing_common_patch_host_percent().round}%" end |
.common_patch_percent_text ⇒ Object
528 529 530 |
# File 'lib/risu/models/item.rb', line 528 def common_patch_percent_text "%.2f%%" % calculate_missing_common_patch_host_percent() end |
.common_patch_risks ⇒ Object
805 806 807 808 809 810 811 812 813 814 815 816 817 818 |
# File 'lib/risu/models/item.rb', line 805 def common_patch_risks results = Array.new common_patches = Plugin.where(:family_name => "Risu Rollup Plugins").group(:id) common_patches.each do |plugin| items = Item.where(:plugin_id => plugin.id).to_a items.each do |item| results.push(item.id) end end results end |
.common_patches_order_by_cvss_raw ⇒ Object
542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 |
# File 'lib/risu/models/item.rb', line 542 def common_patches_order_by_cvss_raw #items = Item.joins(:plugin).where(:severity => [4, 3, 2, 1]).order("plugins.cvss_base_score").group(:plugin_id).distinct.count #items = Item.joins(:plugin).where(:severity => 4).order("plugins.cvss_base_score").group(:plugin_id).distinct.count #items = items.merge Item.joins(:plugin).where(:severity => 3).order("plugins.cvss_base_score").group(:plugin_id).distinct.count #items = items.merge Item.joins(:plugin).where(:severity => 2).order("plugins.cvss_base_score").group(:plugin_id).distinct.count #items = items.merge Item.joins(:plugin).where(:severity => 1).order("plugins.cvss_base_score").group(:plugin_id).distinct.count # items = items.sort_by{|k,v| v}.reverse.to_h # results = {} # # items.each do |id, count| # if Item.where(:plugin_id => id).plugin.first.family_name != "Risu Rollup Plugins" # next # end # # results[id] = count; # end # # return results results = {} final_results = {} common_patches = Plugin.where(:family_name => "Risu Rollup Plugins").group(:id) common_patches.each do |plugin| count = Item.where(:plugin_id => plugin.id).count results[plugin.id] = count end results.each do |k,v| if v > 0 final_results[k] = v end end results = final_results.sort_by{|k,v| v}.reverse.to_h return results end |
.common_patches_sorted ⇒ Object
712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 |
# File 'lib/risu/models/item.rb', line 712 def common_patches_sorted raw = common_patches_order_by_cvss_raw data = Array.new raw.each do |vuln| row = Array.new plugin_id = vuln[0] count = vuln[1] name = scrub_plugin_name(Plugin.find_by_id(plugin_id).plugin_name) row.push(name) row.push(count) data.push(row) end data = data.sort do |a, b| b[1] <=> a[1] end return data end |
.common_patches_sorted_raw ⇒ Object
663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 |
# File 'lib/risu/models/item.rb', line 663 def common_patches_sorted_raw raw = common_patches_order_by_cvss_raw data = Array.new raw.each do |vuln| row = Array.new plugin_id = vuln[0] count = vuln[1] row.push(plugin_id) row.push(count) data.push(row) if count > 0 end data = data.sort do |a, b| b[1] <=> a[1] end return data end |
.common_patches_table(output) ⇒ Object
753 754 755 756 757 758 759 760 761 762 763 |
# File 'lib/risu/models/item.rb', line 753 def common_patches_table(output) headers = ["Description", "Count"] header_widths = {0 => (output.bounds.width - 50), 1 => 50} data = common_patches_sorted output.table([headers] + data[0..9], :header => true, :column_widths => header_widths, :width => output.bounds.width) do row(0).style(:font_style => :bold, :background_color => 'cccccc') cells.borders = [:top, :bottom, :left, :right] end end |
.critical_high_common_risks ⇒ Object
820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 |
# File 'lib/risu/models/item.rb', line 820 def critical_high_common_risks results = Array.new common_patches = Plugin.where(:family_name => "Risu Rollup Plugins").group(:id) common_patches.each do |plugin| items = Item.where(:plugin_id => plugin.id).to_a items.each do |item| results.push(item.id) end end items = Item.critical_risks.to_a items.each do |item| results.push(item.id) end items = Item.high_risks.to_a items.each do |item| results.push(item.id) end results end |
.critical_high_common_risks_count ⇒ Object
845 846 847 |
# File 'lib/risu/models/item.rb', line 845 def critical_high_common_risks_count critical_high_common_risks().size end |
.critical_risks ⇒ ActiveRecord::Relation
Queries for all the critical risks in the database
44 45 46 |
# File 'lib/risu/models/item.rb', line 44 def critical_risks where(:severity => 4).where(:rollup_finding => false) end |
.critical_risks_by_host(limit = 10) ⇒ ActiveRecord::Relation
Queries for all the Critical risks by host
220 221 222 223 |
# File 'lib/risu/models/item.rb', line 220 def critical_risks_by_host(limit=10) #select("items.*").select("count(*) as count_all").joins(:host).where("plugin_id != 1").where(:severity => 4).group(:host_id).order("count_all DESC").limit(limit) Item.joins(:host).where.not(plugin_id: 1).where(:severity => 4).where(:rollup_finding => false).group(:host_id).order(Arel.sql('COUNT(*) DESC')).limit(limit) end |
.critical_risks_unique ⇒ ActiveRecord::Relation
Queries for all the unique Critical risks in the database
105 106 107 |
# File 'lib/risu/models/item.rb', line 105 def critical_risks_unique where(:severity => 4).joins(:plugin).order("plugins.cvss_base_score").group(:plugin_id) end |
.critical_risks_unique_sorted ⇒ ActiveRecord::Relation
Queries for all the unique Critical findings and sorts them by count
119 120 121 122 |
# File 'lib/risu/models/item.rb', line 119 def critical_risks_unique_sorted #Item.select("items.*").select("count(*) as count_all").where(:severity => 4).group(:plugin_id).order("count_all DESC") Item.where(:severity => 4).group(:plugin_id).order(Arel.sql('COUNT(*) DESC')) end |
.exploitablity_matrix(findings) ⇒ Array
Builds a array of findings with their exploitablity values
784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 |
# File 'lib/risu/models/item.rb', line 784 def exploitablity_matrix findings results = Array.new findings.each do |item| plugin = Plugin.where(:id => item.plugin_id).first name = scrub_plugin_name(plugin.plugin_name) total = Item.where(:plugin_id => item.plugin_id).count core = plugin.exploit_framework_core? ? "Yes" : nil = plugin. ? "Yes" : nil canvas = plugin.exploit_framework_canvas? ? "Yes" : nil exploithub = plugin.exploit_framework_exploithub? ? "Yes" : nil d2elliot = plugin.exploit_framework_d2_elliot? ? "Yes" : nil results.push [name, total, core, , canvas, exploithub, d2elliot] end return results end |
.high_risks ⇒ ActiveRecord::Relation
Queries for all the high risks in the database
58 59 60 |
# File 'lib/risu/models/item.rb', line 58 def high_risks where(:severity => 3).where(:rollup_finding => false) end |
.high_risks_by_host(limit = 10) ⇒ ActiveRecord::Relation
Queries for all the High risks by host
230 231 232 233 234 |
# File 'lib/risu/models/item.rb', line 230 def high_risks_by_host(limit=10) #select("items.*").select("count(*) as count_all").joins(:host).where("plugin_id != 1").where(:severity => 3).group(:host_id).order("count_all DESC").limit(limit) Item.joins(:host).where.not(plugin_id: 1).where(:severity => 3).where(:rollup_finding => false).group(:host_id).order(Arel.sql('COUNT(*) DESC')).limit(limit) end |
.high_risks_unique ⇒ ActiveRecord::Relation
Queries for all the unique high risks in the database
112 113 114 |
# File 'lib/risu/models/item.rb', line 112 def high_risks_unique where(:severity => 3).joins(:plugin).order("plugins.cvss_base_score").group(:plugin_id) end |
.high_risks_unique_sorted ⇒ ActiveRecord::Relation
Queries for all the unique high findings and sorts them by count
127 128 129 130 |
# File 'lib/risu/models/item.rb', line 127 def high_risks_unique_sorted Item.where(:severity => 3).group(:plugin_id).order(Arel.sql('COUNT(*) DESC')) #select("items.*").select("count(*) as count_all").where(:severity => 3).group(:plugin_id).order("count_all DESC") end |
.info_risks ⇒ ActiveRecord::Relation
Queries for all the info risks in the database
94 95 96 |
# File 'lib/risu/models/item.rb', line 94 def info_risks where(:severity => 0).where(:rollup_finding => false) end |
.info_risks_unique ⇒ ActiveRecord::Relation
Queries for all the unique info risks in the database
165 166 167 168 |
# File 'lib/risu/models/item.rb', line 165 def info_risks_unique #where(:severity => 0).joins(:plugin).order(:cvss_base_score).group(:plugin_id) where(:severity => 0).joins(:plugin).order("plugins.cvss_base_score").group(:plugin_id) end |
.info_risks_unique_sorted ⇒ ActiveRecord::Relation
Queries for all the unique info findings and sorts them by count
173 174 175 |
# File 'lib/risu/models/item.rb', line 173 def info_risks_unique_sorted select("items.*").select("count(*) as count_all").where(:severity => 0).group(:plugin_id).order("count_all DESC") end |
.low_risks ⇒ ActiveRecord::Relation
Queries for all the low risks in the database
83 84 85 |
# File 'lib/risu/models/item.rb', line 83 def low_risks where(:severity => 1).where(:rollup_finding => false) end |
.low_risks_by_host(limit = 10) ⇒ ActiveRecord::Relation
Queries for all the Low risks by host
251 252 253 254 |
# File 'lib/risu/models/item.rb', line 251 def low_risks_by_host(limit=10) #select("items.*").select("count(*) as count_all").joins(:host).where("plugin_id != 1").where(:severity => 1).group(:host_id).order("count_all DESC").limit(limit) Item.joins(:host).where.not(plugin_id: 1).where(:severity => 1).where(:rollup_finding => false).group(:host_id).order(Arel.sql('COUNT(*) DESC')).limit(limit) end |
.low_risks_unique ⇒ ActiveRecord::Relation
Queries for all the unique low risks in the database
151 152 153 |
# File 'lib/risu/models/item.rb', line 151 def low_risks_unique where(:severity => 1).joins(:plugin).order("plugins.cvss_base_score").group(:plugin_id) end |
.low_risks_unique_sorted ⇒ ActiveRecord::Relation
Queries for all the unique low findings and sorts them by count
158 159 160 |
# File 'lib/risu/models/item.rb', line 158 def low_risks_unique_sorted select("items.*").select("count(*) as count_all").where(:severity => 1).group(:plugin_id).order("count_all DESC") end |
.medium_risks ⇒ ActiveRecord::Relation
Queries for all the medium risks in the database
72 73 74 |
# File 'lib/risu/models/item.rb', line 72 def medium_risks where(:severity => 2).where(:rollup_finding => false) end |
.medium_risks_by_host(limit = 10) ⇒ ActiveRecord::Relation
Queries for all the Medium risks by host
241 242 243 244 |
# File 'lib/risu/models/item.rb', line 241 def medium_risks_by_host(limit=10) #select("items.*").select("count(*) as count_all").joins(:host).where("plugin_id != 1").where(:severity => 2).group(:host_id).order("count_all DESC").limit(limit) Item.joins(:host).where.not(plugin_id: 1).where(:severity => 2).where(:rollup_finding => false).group(:host_id).order(Arel.sql('COUNT(*) DESC')).limit(limit) end |
.medium_risks_unique ⇒ ActiveRecord::Relation
Queries for all the unique medium risks in the database
135 136 137 138 |
# File 'lib/risu/models/item.rb', line 135 def medium_risks_unique where(:severity => 2).joins(:plugin).order("plugins.cvss_base_score").group(:plugin_id) end |
.medium_risks_unique_sorted ⇒ ActiveRecord::Relation
Queries for all the unique medium findings and sorts them by count
143 144 145 146 |
# File 'lib/risu/models/item.rb', line 143 def medium_risks_unique_sorted Item.where(:severity => 2).group(:plugin_id).order(Arel.sql('COUNT(*) DESC')) #select("items.*").select("count(*) as count_all").where(:severity => 2).group(:plugin_id).order("count_all DESC") end |
.ms_patches ⇒ ActiveRecord::Relation
Queries for all the hosts with the Microsoft patch summary plugin (38153)
259 260 261 |
# File 'lib/risu/models/item.rb', line 259 def ms_patches where(:plugin_id => 38153).joins(:host) end |
.ms_update ⇒ ActiveRecord::Relation
Queries for all host with the Microsoft Update Summary plugin(12028)
266 267 268 |
# File 'lib/risu/models/item.rb', line 266 def ms_update where(:plugin_id => 12028).joins(:host) end |
.notable_order_by_cvss_raw ⇒ Object
585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 |
# File 'lib/risu/models/item.rb', line 585 def notable_order_by_cvss_raw #MIGHT NOT BE CORRECT @TODO #return Item.joins(:plugin).where(:severity => 4).order("plugins.cvss_base_score").count(:all, :group => :plugin_id) #return Item.joins(:plugin).where(:severity => 4).order("plugins.cvss_base_score").group(:plugin_id).distinct.count #critical = Item.joins(:plugin).where(:severity => 4).group(:plugin_id).distinct.count #critical = Item.joins(:plugin).where(:severity => 4).order("plugins.cvss_base_score").group(:plugin_id).distinct.count #if critical.size < 10 # high = Item.joins(:plugin).where(:severity => 3).order("plugins.cvss_base_score").group(:plugin_id).distinct.count # critical = critical.merge high #end #critical =Item.joins(:plugin).where(:severity => 4).order("plugins.cvss_base_score").group(:plugin_id).distinct.count #high = Item.joins(:plugin).where(:severity => 3).order("plugins.cvss_base_score").group(:plugin_id).distinct.count #critical = critical.merge high items = Item.joins(:plugin).where(:severity => [4, 3]).order("plugins.cvss_base_score").group(:plugin_id).distinct.count items = items.sort_by{|k,v| v}.reverse.to_h results = {} items.each do |id, count| if Item.where(:plugin_id => id).plugin.first.family_name == "Risu Rollup Plugins" next end results[id] = count; end return results #items = Item.joins(:plugin).where(:severity => [4, 3]) #items = items.where.not("plugin.family_name" => 'Risu Rollup Plugins') #items.where.not(:plugin.family_name = Risu Rollup Plugins').order("plugins.cvss_base_score").group(:plugin_id).distinct.count #items.sort_by{|k,v| v}.to_h end |
.overall_risk_percent_rounded_text ⇒ Object
519 520 521 |
# File 'lib/risu/models/item.rb', line 519 def overall_risk_percent_rounded_text "#{calculate_overall_host_percent().round}%" end |
.overall_risk_percent_text ⇒ Object
532 533 534 |
# File 'lib/risu/models/item.rb', line 532 def overall_risk_percent_text "%.2f%%" % calculate_overall_host_percent() end |
.plugin ⇒ Plugin
Returns the plugin that this [Item] belongs to
775 776 777 |
# File 'lib/risu/models/item.rb', line 775 def plugin Plugin.where(:id => Item.first.attributes["plugin_id"]) end |
.raw_critical_risks ⇒ ActiveRecord::Relation
Queries for all the real critical risks in the database
51 52 53 |
# File 'lib/risu/models/item.rb', line 51 def raw_critical_risks where(:severity => 4) end |
.raw_high_risks ⇒ ActiveRecord::Relation
Queries for all the real high risks in the database
65 66 67 |
# File 'lib/risu/models/item.rb', line 65 def raw_high_risks where(:severity => 3) end |
.raw_info_risks ⇒ Object
98 99 100 |
# File 'lib/risu/models/item.rb', line 98 def raw_info_risks where(:severity => 0) end |
.raw_low_risks ⇒ Object
87 88 89 |
# File 'lib/risu/models/item.rb', line 87 def raw_low_risks where(:severity => 1) end |
.raw_medium_risks ⇒ Object
76 77 78 |
# File 'lib/risu/models/item.rb', line 76 def raw_medium_risks where(:severity => 2) end |
.risk_percent_patched_rounded_text ⇒ Object
511 512 513 |
# File 'lib/risu/models/item.rb', line 511 def risk_percent_patched_rounded_text "#{calculate_vulnerable_host_percent_with_patches_applied().round}%" end |
.risk_percent_patched_text ⇒ Object
537 538 539 |
# File 'lib/risu/models/item.rb', line 537 def risk_percent_patched_text "%.2f%%" % calculate_vulnerable_host_percent_with_patches_applied() end |
.risk_percent_rounded_text ⇒ Object
506 507 508 |
# File 'lib/risu/models/item.rb', line 506 def risk_percent_rounded_text "#{calculate_vulnerable_host_percent().round}%" end |
.risk_percent_text ⇒ Object
524 525 526 |
# File 'lib/risu/models/item.rb', line 524 def risk_percent_text "%.2f%%" % calculate_vulnerable_host_percent() end |
.risk_text(risk_percent) ⇒ String
Builds a sentence based on the risk_percent to describe the risk
450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 |
# File 'lib/risu/models/item.rb', line 450 def risk_text risk_percent percent_text = case risk_percent when 0..5.99 "This implies that only a handful of computers are missing patches, and the current patch management is working well." when 6..10.99 "This implies that there is a minor patch management issue. If there is a patch management system, it should be checked for problems. " + "Each host should also be inspected to be certain it can receive patches." when 11..15.99 "This implies that there is a substantial patch management issue. If there is a patch management system, it should be checked for problems. " + "Each host should also be inspected to be certain it can receive patches." when 16..20 "This implies that there is a significant patch management issue. If there is a patch management system, it should be checked for problems. " + "Each host should also be inspected to be certain it can receive patches." else "This implies that there is a critical patch management problem on the network. Any patch management solutions should " + "be inspected for issues and they should be corrected as soon as possible. Each host should also be inspected to be certain it can receive patches." end end |
.risks ⇒ ActiveRecord::Relation
Queries for all risks in the database
37 38 39 |
# File 'lib/risu/models/item.rb', line 37 def risks where(:severity => [0,1,2,3,4]).where(:rollup_finding => false) end |
.risks_by_host(limit = 10) ⇒ ActiveRecord::Relation
Returns with the query results.
209 210 211 212 213 |
# File 'lib/risu/models/item.rb', line 209 def risks_by_host(limit=10) #select("items.*").select("count(*) as count_all").joins(:host).where("plugin_id != 1").where(:severity => 4).group(:host_id).order("count_all DESC").limit(limit) #Item.joins(:host).where.not(plugin_id: 1).where(:severity => 4).group(:host_id).order(Arel.sql('COUNT(*) DESC')).limit(limit) Item.joins(:host).where.not(plugin_id: 1).where(:severity => 4).group(:host_id).order(Arel.sql('COUNT(*) DESC')).limit(limit) end |
.risks_by_plugin(limit = 10) ⇒ ActiveRecord::Relation
Queries for all the Critical risks by plugin
191 192 193 |
# File 'lib/risu/models/item.rb', line 191 def risks_by_plugin(limit=10) select("items.*").select("count(*) as count_all").joins(:plugin).where("plugin_id != 1").where(:severity => 4).group(:plugin_id).order("count_all DESC").limit(limit) end |
.risks_by_service(limit = 10) ⇒ ActiveRecord::Relation
Queries for all the risks grouped by service type, used for the Vulnerabilities by Service graph
181 182 183 |
# File 'lib/risu/models/item.rb', line 181 def risks_by_service(limit=10) select("items.*").select("count(*) as count_all").where("svc_name != 'unknown' and svc_name != 'general'").group(:svc_name).order("count_all DESC").limit(limit) end |
.risks_by_service_graph(limit = 10) ⇒ StringIO
Generates a Graph of all the risks by service
276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 |
# File 'lib/risu/models/item.rb', line 276 def risks_by_service_graph(limit=10) g = Gruff::Pie.new(GRAPH_WIDTH) g.title = sprintf "Top %d Services By Vulnerability", Item.risks_by_service(limit).to_a.count g.sort = false g.marker_count = 1 g.theme = { :colors => Risu::GRAPH_COLORS, :background_colors => %w(white white) } Item.risks_by_service(limit).to_a.each do |service| g.data(service.svc_name, Item.all.where(:svc_name => service.svc_name).count) end StringIO.new(g.to_blob) end |
.risks_by_service_graph_text ⇒ String
Generates text for the Risks by Service graph
297 298 299 300 301 |
# File 'lib/risu/models/item.rb', line 297 def risks_by_service_graph_text "This graph is a representation of the findings found by service. This graph can help " + "understand what services are running on the network and if they are vulnerable, where " + "the risks are and how they should be protected.\n\n" end |
.risks_by_severity_graph ⇒ StringIO
Generates a Graph of all the risks by severity
307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 |
# File 'lib/risu/models/item.rb', line 307 def risks_by_severity_graph g = Gruff::Bar.new(GRAPH_WIDTH) g.title = "Risks By Severity" g.sort = false g.marker_count = 1 g.theme = { :colors => Risu::GRAPH_COLORS, :background_colors => %w(white white) } crit = Item.critical_risks.count high = Item.high_risks.count medium = Item.medium_risks.count low = Item.low_risks.count #info = Item.info_risks.count if crit == nil then crit = 0 end if high == nil then high = 0 end if medium == nil then medium = 0 end if low == nil then low = 0 end #if info == nil then info = 0 end g.data("Critical", crit) g.data("High", high) g.data("Medium", medium) g.data("Low", low) StringIO.new(g.to_blob) end |
.risks_by_severity_graph_text ⇒ Object
472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 |
# File 'lib/risu/models/item.rb', line 472 def risks_by_severity_graph_text host_percent = calculate_vulnerable_host_percent() adjective = adjective_for_risk_text(host_percent) risk_text = risk_text(host_percent) graph_text = "This bar graph is a representation of the findings by severity; the " + "graph shows that, overall, #{Report.title} has a #{adjective} handle on the patch " + "management of the network. " #graph_text = "This bar graph is a representation of the findings by severity; the " + #{}"graph shows that, Overall #{Report.title} needs to implement patch management and configuration management as a priority." #if adjective == "good" or adjective == "fair" # graph_text << "But improvements in patch management could be made to ensure an excellent rating." #end graph_text << "\n\n" graph_text << "The majority of the critical findings were found on #{host_percent.round}% of the total assessed computers. #{risk_text}\n\n" graph_text << "The systems with critical vulnerabilities represent the largest threat to the network, " + "so patching this group is paramount to the overall network security. It only takes one vulnerability " + "to create a security incident.\n\n" graph_text << "It should be noted that low findings and open ports represent the discovery " graph_text << "of network services and open ports. Typically, these are not an indication of " graph_text << "a serious problem and pose little to no threat. However, the correlation of " graph_text << "data between the different severity levels could be used to determine degree " graph_text << "of vulnerability for a given system.\n" return graph_text end |
.scrub_plugin_name(name) ⇒ String
Scrubs a plugin_name to remove all pointless data
633 634 635 |
# File 'lib/risu/models/item.rb', line 633 def scrub_plugin_name name return name.gsub("(remote check)", "").gsub("(uncredentialed check)", "").gsub(/(\(\d.*\))/, "") end |
.stig_findings(category = "I") ⇒ ActiveRecord::Relation
Queries for all DISA Stig findings by category
342 343 344 |
# File 'lib/risu/models/item.rb', line 342 def stig_findings(category="I") where('plugin_id IN (:plugins)', :plugins => Plugin.where(:stig_severity => category).select(:id)).order("severity DESC") end |
.stigs_severity_graph ⇒ StringIO
Generates a Graph of all the risks by severity
350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 |
# File 'lib/risu/models/item.rb', line 350 def stigs_severity_graph g = Gruff::Bar.new(GRAPH_WIDTH) g.title = "Stigs By Severity" g.sort = false g.marker_count = 1 g.theme = { :colors => Risu::GRAPH_COLORS, :background_colors => %w(white white) } i = Item.stig_findings("I").count ii = Item.stig_findings("II").count iii = Item.stig_findings("III").count if i == nil then i = 0 end if ii == nil then ii = 0 end if iii == nil then iii = 0 end g.data("Cat I", i) g.data("Cat II", ii) g.data("Cat III", iii) StringIO.new(g.to_blob) end |
.top_10_sorted ⇒ Array
Returns an array of plugin_id and plugin_name for the top 10 findings sorted by CVSS score
689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 |
# File 'lib/risu/models/item.rb', line 689 def top_10_sorted raw = notable_order_by_cvss_raw data = Array.new raw.each do |vuln| row = Array.new plugin_id = vuln[0] count = vuln[1] name = scrub_plugin_name(Plugin.find_by_id(plugin_id).plugin_name) row.push(name) row.push(count) data.push(row) end data = data.sort do |a, b| b[1] <=> a[1] end return data end |
.top_10_sorted_raw ⇒ Array
Returns an array of plugin_id and plugin_name for the top 10 findings unsorted
641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 |
# File 'lib/risu/models/item.rb', line 641 def top_10_sorted_raw raw = notable_order_by_cvss_raw data = Array.new raw.each do |vuln| row = Array.new plugin_id = vuln[0] count = vuln[1] row.push(plugin_id) row.push(count) data.push(row) end data = data.sort do |a, b| b[1] <=> a[1] end return data end |
.top_10_table(output) ⇒ Object
Returns a prawn pdf table for the top 10 notable findings
741 742 743 744 745 746 747 748 749 750 751 |
# File 'lib/risu/models/item.rb', line 741 def top_10_table(output) headers = ["Description", "Count"] header_widths = {0 => (output.bounds.width - 50), 1 => 50} data = top_10_sorted output.table([headers] + data[0..9], :header => true, :column_widths => header_widths, :width => output.bounds.width) do row(0).style(:font_style => :bold, :background_color => 'cccccc') cells.borders = [:top, :bottom, :left, :right] end end |