Skip to content

Commit 16af8b8

Browse files
author
HD Moore
committed
Use MDM 0.17.0 stock as master branch is broken.
This resolves all issues I know of with the recog branch on Metasploit Framework, but obviously most of the benefits of this branch come from having a recog-aware MDM, something that can't happen until MDM 0.17.6+ is supported by the framework. In short, this should be good to merge, but will not solve the intended problems until MDM 0.17.6+ is fixed for MSF
1 parent b6b5435 commit 16af8b8

File tree

2 files changed

+22
-22
lines changed

2 files changed

+22
-22
lines changed

Gemfile

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,13 @@ gem 'sqlite3'
2626
group :db do
2727
# Needed for Msf::DbManager
2828
gem 'activerecord', '>= 3.0.0', '< 4.0.0'
29-
# Database models shared between framework and Pro
30-
gem 'metasploit_data_models', '>= 0.17.2'
29+
30+
# Database models shared between framework and Pro (depends on hmoore-r7 branch until merged)
31+
# Unfortunately, MDM is broken after 0.17.0 in master right now, so waiting on that merge...
32+
33+
gem 'metasploit_data_models', '= 0.17.0'
34+
# gem 'metasploit_data_models', :git => '[email protected]:hmoore-r7/metasploit_data_models.git'
35+
3136
# Needed for module caching in Mdm::ModuleDetails
3237
gem 'pg', '>= 0.11'
3338
end

Gemfile.lock

Lines changed: 15 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,22 @@
1-
GIT
2-
remote: [email protected]:hmoore-r7/metasploit_data_models.git
3-
revision: 369398260def99448ff26371d304bb03b2176b4c
4-
specs:
5-
metasploit_data_models (0.17.0)
6-
activerecord (>= 3.2.13)
7-
activesupport
8-
pg
9-
101
GIT
112
remote: [email protected]:rapid7/recog.git
12-
revision: 915799d493f96ea8c6981fc8b4bc3fc06acde06c
3+
revision: 9c2983de2e2ebbeb98c2211b5be95ab4099479bc
134
specs:
145
recog (0.01)
156
nokogiri
167

178
GEM
189
remote: https://rubygems.org/
1910
specs:
20-
activemodel (3.2.17)
21-
activesupport (= 3.2.17)
11+
activemodel (3.2.19)
12+
activesupport (= 3.2.19)
2213
builder (~> 3.0.0)
23-
activerecord (3.2.17)
24-
activemodel (= 3.2.17)
25-
activesupport (= 3.2.17)
14+
activerecord (3.2.19)
15+
activemodel (= 3.2.19)
16+
activesupport (= 3.2.19)
2617
arel (~> 3.0.2)
2718
tzinfo (~> 0.3.29)
28-
activesupport (3.2.17)
19+
activesupport (3.2.19)
2920
i18n (~> 0.6, >= 0.6.4)
3021
multi_json (~> 1.0)
3122
arel (3.0.3)
@@ -38,12 +29,16 @@ GEM
3829
fivemat (1.2.1)
3930
i18n (0.6.9)
4031
json (1.8.0)
41-
mini_portile (0.5.2)
32+
metasploit_data_models (0.17.0)
33+
activerecord (>= 3.2.13)
34+
activesupport
35+
pg
36+
mini_portile (0.6.0)
4237
msgpack (0.5.5)
4338
multi_json (1.0.4)
4439
network_interface (0.0.1)
45-
nokogiri (1.6.1)
46-
mini_portile (~> 0.5.0)
40+
nokogiri (1.6.2.1)
41+
mini_portile (= 0.6.0)
4742
packetfu (1.1.9)
4843
pcaprub (0.11.3)
4944
pg (0.17.1)
@@ -81,7 +76,7 @@ DEPENDENCIES
8176
factory_girl (>= 4.1.0)
8277
fivemat (= 1.2.1)
8378
json
84-
metasploit_data_models!
79+
metasploit_data_models (= 0.17.0)
8580
msgpack
8681
network_interface (~> 0.0.1)
8782
nokogiri

0 commit comments

Comments
 (0)