Skip to content

Commit

Permalink
Added support for OSVDB checks when creating KnowledgeBase.md file
Browse files Browse the repository at this point in the history
  • Loading branch information
thesp0nge committed Jul 8, 2014
1 parent 7fde5c4 commit 97f2297
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@ task :create do
file.puts "---"
checks.each do |c|
file.puts "* [#{c.name}](#{c.cve_link}): #{c.message}" if c.name.start_with?('CVE')
file.puts "* [#{c.name}](#{c.osvdb_link}): #{c.message}" if c.name.start_with?('OSVDB')
file.puts "* #{c.name}: #{c.message}" unless c.name.start_with?('CVE')
end

Expand Down

0 comments on commit 97f2297

Please sign in to comment.