Skip to content

Commit 37ef462

Browse files
committed
Pulling in latest MDM and credential versions
* Fully removing service uniqueness validation for now, more work to be done on that to avoid regressions.
1 parent 3b28b23 commit 37ef462

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines changed

Gemfile.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ PATH
2222
tzinfo
2323
metasploit-framework-db (4.11.0.pre.dev)
2424
activerecord (>= 3.2.21, < 4.0.0)
25-
metasploit-credential (~> 0.13.16)
25+
metasploit-credential (~> 0.13.17)
2626
metasploit-framework (= 4.11.0.pre.dev)
27-
metasploit_data_models (~> 0.22.5)
27+
metasploit_data_models (~> 0.22.6)
2828
pg (>= 0.11)
2929
metasploit-framework-pcap (4.11.0.pre.dev)
3030
metasploit-framework (= 4.11.0.pre.dev)
@@ -112,18 +112,18 @@ GEM
112112
metasploit-concern (0.3.0)
113113
activesupport (~> 3.0, >= 3.0.0)
114114
railties (< 4.0.0)
115-
metasploit-credential (0.13.16)
115+
metasploit-credential (0.13.17)
116116
metasploit-concern (~> 0.3.0)
117117
metasploit-model (~> 0.28.0)
118-
metasploit_data_models (~> 0.22.5)
118+
metasploit_data_models (~> 0.22.6)
119119
pg
120120
railties (< 4.0.0)
121121
rubyntlm
122122
rubyzip (~> 1.1)
123123
metasploit-model (0.28.0)
124124
activesupport
125125
railties (< 4.0.0)
126-
metasploit_data_models (0.22.5)
126+
metasploit_data_models (0.22.6)
127127
activerecord (>= 3.2.13, < 4.0.0)
128128
activesupport
129129
arel-helpers

db/schema.rb

Lines changed: 1 addition & 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 => 20150112203945) do
14+
ActiveRecord::Schema.define(:version => 20150205192745) do
1515

1616
create_table "api_keys", :force => true do |t|
1717
t.text "token"
@@ -454,7 +454,6 @@
454454
t.text "info"
455455
end
456456

457-
add_index "services", ["host_id", "port", "proto"], :name => "index_services_on_host_id_and_port_and_proto", :unique => true
458457
add_index "services", ["name"], :name => "index_services_on_name"
459458
add_index "services", ["port"], :name => "index_services_on_port"
460459
add_index "services", ["proto"], :name => "index_services_on_proto"

metasploit-framework-db.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ Gem::Specification.new do |spec|
2929

3030
spec.add_runtime_dependency 'activerecord', *Metasploit::Framework::RailsVersionConstraint::RAILS_VERSION
3131
# Metasploit::Credential database models
32-
spec.add_runtime_dependency 'metasploit-credential', '~> 0.13.16'
32+
spec.add_runtime_dependency 'metasploit-credential', '~> 0.13.17'
3333
# Database models shared between framework and Pro.
34-
spec.add_runtime_dependency 'metasploit_data_models', '~> 0.22.5'
34+
spec.add_runtime_dependency 'metasploit_data_models', '~> 0.22.6'
3535
# depend on metasploit-framewrok as the optional gems are useless with the actual code
3636
spec.add_runtime_dependency 'metasploit-framework', "= #{spec.version}"
3737
# Needed for module caching in Mdm::ModuleDetails

0 commit comments

Comments
 (0)