Skip to content

Commit 5527f03

Browse files
committed
Update to metasploit_data_models 0.14.0
[#49617323] 0.14.0 adds validation for Mdm::WebVuln#params to prevent incorrect values that can't be exported.
1 parent 724f934 commit 5527f03

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ group :db do
1515
# Needed for Msf::DbManager
1616
gem 'activerecord'
1717
# Database models shared between framework and Pro.
18-
gem 'metasploit_data_models', '~> 0.13.0'
18+
gem 'metasploit_data_models', '~> 0.14.0'
1919
# Needed for module caching in Mdm::ModuleDetails
2020
gem 'pg', '>= 0.11'
2121
end

Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ GEM
2323
i18n (0.6.1)
2424
json (1.7.7)
2525
metaclass (0.0.1)
26-
metasploit_data_models (0.13.0)
26+
metasploit_data_models (0.14.0)
2727
activerecord (>= 3.2.13)
2828
activesupport
2929
pg
@@ -65,7 +65,7 @@ DEPENDENCIES
6565
database_cleaner
6666
factory_girl (>= 4.1.0)
6767
json
68-
metasploit_data_models (~> 0.13.0)
68+
metasploit_data_models (~> 0.14.0)
6969
msgpack
7070
nokogiri
7171
pcaprub

db/schema.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#
1212
# It's strongly recommended to check this file into your version control system.
1313

14-
ActiveRecord::Schema.define(:version => 20130430162145) do
14+
ActiveRecord::Schema.define(:version => 20130515172727) do
1515

1616
create_table "api_keys", :force => true do |t|
1717
t.text "token"
@@ -581,7 +581,7 @@
581581
t.string "name", :limit => 1024, :null => false
582582
t.text "query"
583583
t.text "category", :null => false
584-
t.text "confidence", :null => false
584+
t.integer "confidence", :null => false
585585
t.text "description"
586586
t.text "blame"
587587
t.binary "request"

0 commit comments

Comments
 (0)