Sha256: 76324a2ee7472abe3ac134d8878a7d3db174691420128634441cd14f8e4b279a
Contents?: true
Size: 1.28 KB
Versions: 136
Compression:
Stored size: 1.28 KB
Contents
class Brakeman::Report::JSON < Brakeman::Report::Base def generate_report errors = tracker.errors.map{|e| { :error => e[:error], :location => e[:backtrace][0] }} obsolete = tracker.unused_fingerprints warnings = convert_to_hashes all_warnings ignored = convert_to_hashes ignored_warnings scan_info = { :app_path => tracker.app_path, :rails_version => rails_version, :security_warnings => all_warnings.length, :start_time => tracker.start_time.to_s, :end_time => tracker.end_time.to_s, :duration => tracker.duration, :checks_performed => checks.checks_run.sort, :number_of_controllers => tracker.controllers.length, # ignore the "fake" model :number_of_models => tracker.models.length - 1, :number_of_templates => number_of_templates(@tracker), :ruby_version => RUBY_VERSION, :brakeman_version => Brakeman::Version } report_info = { :scan_info => scan_info, :warnings => warnings, :ignored_warnings => ignored, :errors => errors, :obsolete => obsolete } JSON.pretty_generate report_info end def convert_to_hashes warnings warnings.map do |w| w.to_hash(absolute_paths: false) end.sort_by { |w| "#{w[:fingerprint]}#{w[:line]}" } end end
Version data entries
136 entries across 122 versions & 4 rubygems