metasploit-credential 5.0.0 → 5.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '08bb903e882eb19be8b2d846fcd9b82111cce0db770ad70cb6083d034c6a9680'
4
- data.tar.gz: e0c2de705137d9405fdc5471c9ece711fa788851634cd00643f3001346ce35a0
3
+ metadata.gz: e8c662ab01206eb5505e4547ea2d0d092ef9a5dcd53b3e3d7a3f0e24080bc080
4
+ data.tar.gz: 412d0c389cd2157da7e1594b4ed4f71cd97cd212673b52027a07fbb5dabbe266
5
5
  SHA512:
6
- metadata.gz: fc93687882560a205bfd88c3c2c00c0b22298d2ee55aa72b5cc2d3ef1d69c10e86ec96e4d8eebd16ae6de14cb44ab477e09eff6b89ab9052cd2de3001651415e
7
- data.tar.gz: 46c22f1eefe7f6939d8566d72c48b179956430b13b55270f2751e5a44e22728114e292c5844500e947aa09f0575b9f6a22a0f7942fc6ffc8d493894e567392e3
6
+ metadata.gz: cf857bc495a3084d6d092bcd47bcefc77774e40a681d299ab6e9f63249f1095dfb8c8c5938663bbf060720ad0fac7716bd30536581b821801e8278c3c618c7ba
7
+ data.tar.gz: b1296d879cfec2c95064f0fc38f46ab513cc7de077bfaeebd1c63a4b16383ec6b26a04a384eb95f180a4b419523e19a6864345c78cbd605f2901942fd68be97c
checksums.yaml.gz.sig CHANGED
Binary file
@@ -52,6 +52,7 @@ class Metasploit::Credential::Core < ApplicationRecord
52
52
  # @return [Metasploit::Credential::Private, nil]
53
53
  belongs_to :private,
54
54
  class_name: 'Metasploit::Credential::Private',
55
+ optional: true,
55
56
  inverse_of: :cores
56
57
 
57
58
  # @!attribute public
@@ -60,6 +61,7 @@ class Metasploit::Credential::Core < ApplicationRecord
60
61
  # @return [Metasploit::Credential::Public, nil]
61
62
  belongs_to :public,
62
63
  class_name: 'Metasploit::Credential::Public',
64
+ optional: true,
63
65
  inverse_of: :cores
64
66
 
65
67
  # @!attribute realm
@@ -69,6 +71,7 @@ class Metasploit::Credential::Core < ApplicationRecord
69
71
  # @return [Metasploit::Credential::Realm, nil]
70
72
  belongs_to :realm,
71
73
  class_name: 'Metasploit::Credential::Realm',
74
+ optional: true,
72
75
  inverse_of: :cores
73
76
 
74
77
  # @!attribute workspace
@@ -205,7 +208,7 @@ class Metasploit::Credential::Core < ApplicationRecord
205
208
  scope :originating_host_id, ->(host_id) {
206
209
  where(
207
210
  Metasploit::Credential::Core[:id].in(
208
- Metasploit::Credential::Core.cores_from_host(host_id)
211
+ self.cores_from_host(host_id)
209
212
  )
210
213
  )
211
214
  }
@@ -19,6 +19,7 @@ class Metasploit::Credential::Origin::Import < ApplicationRecord
19
19
  # @return [Mdm::Task]
20
20
  belongs_to :task,
21
21
  class_name: 'Mdm::Task',
22
+ optional: true,
22
23
  inverse_of: :import_credential_origins
23
24
 
24
25
  #
@@ -110,7 +110,7 @@ class Metasploit::Credential::SSHKey < Metasploit::Credential::Private
110
110
  begin
111
111
  openssl_pkey_pkey
112
112
  rescue ArgumentError, OpenSSL::PKey::PKeyError => error
113
- errors[:data] << "#{error.class} #{error}"
113
+ errors.add(:data, "#{error.class} #{error}")
114
114
  end
115
115
  end
116
116
  end
@@ -3,7 +3,7 @@
3
3
  module Metasploit
4
4
  module Credential
5
5
  # VERSION is managed by GemRelease
6
- VERSION = '5.0.0'
6
+ VERSION = '5.0.4'
7
7
 
8
8
  # @return [String]
9
9
  #
@@ -1,6 +1,6 @@
1
1
  development: &pgsql
2
2
  adapter: postgresql
3
- database: metasploit-credential_development2
3
+ database: metasploit-credential_development0
4
4
  username: msf
5
5
  password: pass123
6
6
  host: localhost
@@ -10,4 +10,4 @@ development: &pgsql
10
10
  min_messages: warning
11
11
  test:
12
12
  <<: *pgsql
13
- database: metasploit-credential_test2
13
+ database: metasploit-credential_test0
@@ -72,9 +72,9 @@ RSpec.describe Metasploit::Credential::Core, type: :model do
72
72
  it { is_expected.to have_and_belong_to_many(:tasks).class_name('Mdm::Task') }
73
73
  it { is_expected.to have_many(:logins).class_name('Metasploit::Credential::Login').dependent(:destroy) }
74
74
  it { is_expected.to belong_to(:origin) }
75
- it { is_expected.to belong_to(:private).class_name('Metasploit::Credential::Private') }
76
- it { is_expected.to belong_to(:public).class_name('Metasploit::Credential::Public') }
77
- it { is_expected.to belong_to(:realm).class_name('Metasploit::Credential::Realm') }
75
+ it { is_expected.to belong_to(:private).optional.class_name('Metasploit::Credential::Private') }
76
+ it { is_expected.to belong_to(:public).optional.class_name('Metasploit::Credential::Public') }
77
+ it { is_expected.to belong_to(:realm).optional.class_name('Metasploit::Credential::Realm') }
78
78
  it { is_expected.to belong_to(:workspace).class_name('Mdm::Workspace') }
79
79
  end
80
80
 
@@ -3,7 +3,7 @@ RSpec.describe Metasploit::Credential::Origin::Import, type: :model do
3
3
 
4
4
  context 'associations' do
5
5
  it { is_expected.to have_many(:cores).class_name('Metasploit::Credential::Core').dependent(:destroy) }
6
- it { is_expected.to belong_to(:task).class_name('Mdm::Task') }
6
+ it { is_expected.to belong_to(:task).optional.class_name('Mdm::Task') }
7
7
  end
8
8
 
9
9
  context 'database' do
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: metasploit-credential
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.0.0
4
+ version: 5.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Metasploit Hackers
@@ -93,7 +93,7 @@ cert_chain:
93
93
  EknWpNgVhohbot1lfVAMmIhdtOVaRVcQQixWPwprDj/ydB8ryDMDosIMcw+fkoXU
94
94
  9GJsSaSRRYQ9UUkVL27b64okU8D48m8=
95
95
  -----END CERTIFICATE-----
96
- date: 2021-04-29 00:00:00.000000000 Z
96
+ date: 2021-09-03 00:00:00.000000000 Z
97
97
  dependencies:
98
98
  - !ruby/object:Gem::Dependency
99
99
  name: metasploit-concern
metadata.gz.sig CHANGED
Binary file