parent
21d6e4afb3
commit
03cc69d902
4
Gemfile
4
Gemfile
|
@ -8,9 +8,9 @@ group :db do
|
|||
gem 'activerecord', '>= 3.0.0', '< 4.0.0'
|
||||
|
||||
# Metasploit::Credential database models
|
||||
gem 'metasploit-credential', '>= 0.9.0'
|
||||
gem 'metasploit-credential', '>= 0.10.1.pre.dep.pre.railties', '< 0.11'
|
||||
# Database models shared between framework and Pro.
|
||||
gem 'metasploit_data_models', '~> 0.19'
|
||||
gem 'metasploit_data_models', '~> 0.20.0'
|
||||
# Needed for module caching in Mdm::ModuleDetails
|
||||
gem 'pg', '>= 0.11'
|
||||
end
|
||||
|
|
30
Gemfile.lock
30
Gemfile.lock
|
@ -6,7 +6,8 @@ PATH
|
|||
activesupport (>= 3.0.0, < 4.0.0)
|
||||
bcrypt
|
||||
json
|
||||
metasploit-model (~> 0.26.1)
|
||||
metasploit-concern (~> 0.2.1)
|
||||
metasploit-model (~> 0.27.0)
|
||||
meterpreter_bins (= 0.0.7)
|
||||
msgpack
|
||||
nokogiri
|
||||
|
@ -94,24 +95,28 @@ GEM
|
|||
mail (2.5.4)
|
||||
mime-types (~> 1.16)
|
||||
treetop (~> 1.4.8)
|
||||
metasploit-concern (0.1.1)
|
||||
metasploit-concern (0.2.1)
|
||||
activesupport (~> 3.0, >= 3.0.0)
|
||||
metasploit-credential (0.9.0)
|
||||
metasploit-concern (~> 0.1.0)
|
||||
metasploit-model (~> 0.26.1)
|
||||
metasploit_data_models (~> 0.19.4)
|
||||
railties (< 4.0.0)
|
||||
metasploit-credential (0.10.1.pre.dep.pre.railties)
|
||||
metasploit-concern (~> 0.2.1)
|
||||
metasploit-model (~> 0.27.0)
|
||||
metasploit_data_models (~> 0.20.0)
|
||||
pg
|
||||
railties (< 4.0.0)
|
||||
rubyntlm
|
||||
rubyzip (~> 1.1)
|
||||
metasploit-model (0.26.1)
|
||||
metasploit-model (0.27.0)
|
||||
activesupport
|
||||
metasploit_data_models (0.19.4)
|
||||
railties (< 4.0.0)
|
||||
metasploit_data_models (0.20.0)
|
||||
activerecord (>= 3.2.13, < 4.0.0)
|
||||
activesupport
|
||||
arel-helpers
|
||||
metasploit-concern (~> 0.1.0)
|
||||
metasploit-model (~> 0.26.1)
|
||||
metasploit-concern (~> 0.2.1)
|
||||
metasploit-model (~> 0.27.0)
|
||||
pg
|
||||
railties (< 4.0.0)
|
||||
meterpreter_bins (0.0.7)
|
||||
method_source (0.8.2)
|
||||
mime-types (1.25.1)
|
||||
|
@ -211,10 +216,9 @@ DEPENDENCIES
|
|||
factory_girl (>= 4.1.0)
|
||||
factory_girl_rails
|
||||
fivemat (= 1.2.1)
|
||||
metasploit-concern (~> 0.1.1)
|
||||
metasploit-credential (>= 0.9.0)
|
||||
metasploit-credential (>= 0.10.1.pre.dep.pre.railties, < 0.11)
|
||||
metasploit-framework!
|
||||
metasploit_data_models (~> 0.19)
|
||||
metasploit_data_models (~> 0.20.0)
|
||||
network_interface (~> 0.0.1)
|
||||
pcaprub
|
||||
pg (>= 0.11)
|
||||
|
|
|
@ -58,10 +58,10 @@ Gem::Specification.new do |spec|
|
|||
# Needed for some admin modules (scrutinizer_add_user.rb)
|
||||
spec.add_runtime_dependency 'json'
|
||||
# Metasploit::Concern hooks
|
||||
spec.add_runtime_dependency 'metasploit-concern', '~> 0.1.1'
|
||||
spec.add_runtime_dependency 'metasploit-concern', '~> 0.2.1'
|
||||
# Things that would normally be part of the database model, but which
|
||||
# are needed when there's no database
|
||||
spec.add_runtime_dependency 'metasploit-model', '~> 0.26.1'
|
||||
spec.add_runtime_dependency 'metasploit-model', '~> 0.27.0'
|
||||
# Needed for Meterpreter on Windows, soon others.
|
||||
spec.add_runtime_dependency 'meterpreter_bins', '0.0.7'
|
||||
# Needed by msfgui and other rpc components
|
||||
|
|
Loading…
Reference in New Issue