Sha256: 43bd59f252f9c763d2a11b0f3ab236c4f444242d40ac70cef6b8c867a3264cbf

Contents?: true

Size: 660 Bytes

Versions: 11

Compression:

Stored size: 660 Bytes

Contents

require 'spec_helper'
describe "The OSVDB-108569 vulnerability" do
	before(:all) do
		@check = Dawn::Kb::OSVDB_108569.new
		# @check.debug = true
	end
  it "is reported when a vulnerable backup_checksum gem version it has been found (3.0.23)" do
    @check.dependencies = [{:name=>"backup_checksum", :version=>"3.0.23"}]
    @check.vuln?.should   == true
  end
  it "is not reported when a safe backup_checksum gem version it has been found (3.0.24)" do
    @check.dependencies = [{:name=>"backup_checksum", :version=>"3.0.24"}]
    @check.vuln?.should   == false
  end
  it "must be filled with CVE identifier"
  it "must be filled with CVSS information"
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
dawnscanner-1.6.1 spec/lib/kb/osvdb_108569_spec.rb
dawnscanner-1.6.0 spec/lib/kb/osvdb_108569_spec.rb
dawnscanner-1.5.2 spec/lib/kb/osvdb_108569_spec.rb
dawnscanner-1.5.1 spec/lib/kb/osvdb_108569_spec.rb
dawnscanner-1.5.0 spec/lib/kb/osvdb_108569_spec.rb
dawnscanner-1.4.2 spec/lib/kb/osvdb_108569_spec.rb
dawnscanner-1.4.1 spec/lib/kb/osvdb_108569_spec.rb
dawnscanner-1.4.0 spec/lib/kb/osvdb_108569_spec.rb
dawnscanner-1.3.5 spec/lib/kb/osvdb_108569_spec.rb
dawnscanner-1.3.1 spec/lib/kb/osvdb_108569_spec.rb
dawnscanner-1.3.0 spec/lib/kb/osvdb_108569_spec.rb