diff --git a/Gemfile.lock b/Gemfile.lock index 25b215ddd3..9f0392b993 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - metasploit-framework (5.0.10) + metasploit-framework (5.0.11) actionpack (~> 4.2.6) activerecord (~> 4.2.6) activesupport (~> 4.2.6) @@ -178,7 +178,7 @@ GEM activesupport (~> 4.2.6) railties (~> 4.2.6) metasploit-payloads (1.3.62) - metasploit_data_models (3.0.5) + metasploit_data_models (3.0.6) activerecord (~> 4.2.6) activesupport (~> 4.2.6) arel-helpers @@ -193,7 +193,7 @@ GEM mini_portile2 (2.4.0) minitest (5.11.3) mqtt (0.5.0) - msgpack (1.2.6) + msgpack (1.2.7) multipart-post (2.0.0) nessus_rest (0.1.6) net-ssh (5.1.0) @@ -245,7 +245,7 @@ GEM thor (>= 0.18.1, < 2.0) rake (12.3.2) rb-readline (0.5.5) - recog (2.2.0) + recog (2.2.1) nokogiri redcarpet (3.4.0) rex-arch (0.1.13) diff --git a/LICENSE_GEMS b/LICENSE_GEMS index 2c3fa21400..34380c6149 100644 --- a/LICENSE_GEMS +++ b/LICENSE_GEMS @@ -44,16 +44,16 @@ loofah, 2.2.3, MIT metasm, 1.0.3, LGPL metasploit-concern, 2.0.5, "New BSD" metasploit-credential, 3.0.3, "New BSD" -metasploit-framework, 5.0.10, "New BSD" +metasploit-framework, 5.0.11, "New BSD" metasploit-model, 2.0.4, "New BSD" metasploit-payloads, 1.3.62, "3-clause (or ""modified"") BSD" -metasploit_data_models, 3.0.5, "New BSD" +metasploit_data_models, 3.0.6, "New BSD" metasploit_payloads-mettle, 0.5.7, "3-clause (or ""modified"") BSD" method_source, 0.9.2, MIT mini_portile2, 2.4.0, MIT minitest, 5.11.3, MIT mqtt, 0.5.0, MIT -msgpack, 1.2.6, "Apache 2.0" +msgpack, 1.2.7, "Apache 2.0" multipart-post, 2.0.0, MIT nessus_rest, 0.1.6, MIT net-ssh, 5.1.0, MIT @@ -81,7 +81,7 @@ rails-html-sanitizer, 1.0.4, MIT railties, 4.2.11, MIT rake, 12.3.2, MIT rb-readline, 0.5.5, BSD -recog, 2.2.0, unknown +recog, 2.2.1, unknown redcarpet, 3.4.0, MIT rex-arch, 0.1.13, "New BSD" rex-bin_tools, 0.1.6, "New BSD" diff --git a/db/schema.rb b/db/schema.rb index 408dae1b15..ae3bd8ec44 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -11,7 +11,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 20161227212223) do +ActiveRecord::Schema.define(version: 20180904120211) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" @@ -475,6 +475,24 @@ ActiveRecord::Schema.define(version: 20161227212223) do 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 "payloads", force: :cascade do |t| + t.string "name" + t.string "uuid" + t.integer "uuid_mask" + t.integer "timestamp" + t.string "arch" + t.string "platform" + t.string "urls" + t.string "description" + t.integer "workspace_id" + t.string "raw_payload" + t.string "raw_payload_hash" + t.string "build_status" + t.string "build_opts" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + end + create_table "profiles", force: :cascade do |t| t.datetime "created_at", null: false t.datetime "updated_at", null: false diff --git a/lib/metasploit/framework/version.rb b/lib/metasploit/framework/version.rb index 43133faebb..c3c1ef45e7 100644 --- a/lib/metasploit/framework/version.rb +++ b/lib/metasploit/framework/version.rb @@ -30,7 +30,7 @@ module Metasploit end end - VERSION = "5.0.10" + VERSION = "5.0.11" MAJOR, MINOR, PATCH = VERSION.split('.').map { |x| x.to_i } PRERELEASE = 'dev' HASH = get_hash