1
mirror of https://github.com/rapid7/metasploit-framework synced 2024-09-11 17:08:02 +02:00

Update metasploit gem deps

This commit is contained in:
Matt Buck 2015-03-16 15:47:11 -05:00
parent e397ecec9d
commit 861fd3174a
No known key found for this signature in database
GPG Key ID: 42134E0C9C4E94BB
2 changed files with 11 additions and 8 deletions

View File

@ -10,10 +10,10 @@ GIT
GIT
remote: git://github.com/rapid7/metasploit-credential.git
revision: 33551619d0f0504d4640e7b5dd9135fdeda71670
revision: 0468528ebc25dbd9cc0b2d52495f8f7c0778ed61
branch: staging/rails-4.0
specs:
metasploit-credential (1.0.11.pre.rails.pre.4.0)
metasploit-credential (1.14.1.pre.rails.pre.4.0)
metasploit-concern
metasploit-model
metasploit_data_models
@ -34,10 +34,10 @@ GIT
GIT
remote: git://github.com/rapid7/metasploit_data_models.git
revision: ae47cb9bd891b13051fb2fdc084bcce58202e18d
revision: 242d7469d51e37161096c7ab9d3f0a9904ad658c
branch: staging/rails-4.0
specs:
metasploit_data_models (1.0.0.pre.rails.pre.4.0)
metasploit_data_models (0.23.1.pre.rails.pre.4.0)
activerecord (>= 4.0.9, < 4.1.0)
activesupport (>= 4.0.9, < 4.1.0)
arel-helpers
@ -105,7 +105,7 @@ GEM
thread_safe (~> 0.1)
tzinfo (~> 0.3.37)
arel (4.0.2)
arel-helpers (2.0.1)
arel-helpers (2.1.0)
activerecord (>= 3.1.0, < 5)
aruba (0.6.1)
childprocess (>= 0.3.6)
@ -168,7 +168,7 @@ GEM
pcaprub (0.12.0)
pg (0.17.1)
pg_array_parser (0.0.9)
postgres_ext (2.3.0)
postgres_ext (2.4.1)
activerecord (>= 4.0.0)
arel (>= 4.0.1)
pg_array_parser (~> 0.0.9)
@ -220,7 +220,7 @@ GEM
rspec-core (~> 2.99.0)
rspec-expectations (~> 2.99.0)
rspec-mocks (~> 2.99.0)
rubyntlm (0.4.0)
rubyntlm (0.5.0)
rubyzip (1.1.6)
shoulda-matchers (2.6.2)
simplecov (0.9.1)

View File

@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 20150205192745) do
ActiveRecord::Schema.define(version: 20150212214222) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@ -396,9 +396,11 @@ ActiveRecord::Schema.define(version: 20150205192745) do
t.boolean "critical"
t.boolean "seen"
t.text "data"
t.integer "vuln_id"
end
add_index "notes", ["ntype"], name: "index_notes_on_ntype", using: :btree
add_index "notes", ["vuln_id"], name: "index_notes_on_vuln_id", using: :btree
create_table "profiles", force: true do |t|
t.datetime "created_at", null: false
@ -457,6 +459,7 @@ ActiveRecord::Schema.define(version: 20150205192745) do
t.text "info"
end
add_index "services", ["host_id", "port", "proto"], name: "index_services_on_host_id_and_port_and_proto", unique: true, using: :btree
add_index "services", ["name"], name: "index_services_on_name", using: :btree
add_index "services", ["port"], name: "index_services_on_port", using: :btree
add_index "services", ["proto"], name: "index_services_on_proto", using: :btree