metasploit-credential 4.0.3 → 4.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 +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/README.md +2 -2
- data/lib/metasploit/credential/version.rb +1 -1
- data/spec/dummy/config/{database.yml.travis → database.yml.github_actions} +4 -5
- data/spec/spec_helper.rb +1 -7
- metadata +4 -4
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0d4080e5da11b26f677a0d65ca483889673a59882e6be864a8a74a51134d2680
|
|
4
|
+
data.tar.gz: 3f6c968807a54a0d393c58f61be6e330763c39b21a1744b9bf82844761a48d7d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c44e6959b9863e7a165a5935a8ee97351966d26ef511b1aaa83c7f268d0887bef43a3319a272461383e6c6f816ca67bd9a472d55cb996b5d8cffe82f3d46ffff
|
|
7
|
+
data.tar.gz: 7b72b4e1e7924bc771eba24c31eb4c260882ea255ec371355f7359484697d01e86ca719033cfb3554ad30b6a135f53b6954ccd627ffb30befc6b27e87bbf7fac
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data.tar.gz.sig
CHANGED
|
Binary file
|
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Metasploit::Credential [](https://github.com/rapid7/metasploit-credential/actions/workflows/verify.yml)[](https://codeclimate.com/github/rapid7/metasploit-credential)[](https://gemnasium.com/rapid7/metasploit-credential)[](http://badge.fury.io/rb/metasploit-credential)[](http://inch-ci.org/github/rapid7/metasploit-credential)[](https://www.pullreview.com/github/rapid7/metasploit-credential/reviews/master)
|
|
2
2
|
|
|
3
3
|
## Versioning
|
|
4
4
|
|
|
@@ -98,7 +98,7 @@ See [CONTRIBUTING.md](CONTRIBUTING.md)
|
|
|
98
98
|
### Dependencies
|
|
99
99
|
|
|
100
100
|
Remove your `Gemfile.lock` so you test with the latest compatible dependencies as will be done on
|
|
101
|
-
[
|
|
101
|
+
[github actions](https://github.com/rapid7/metasploit-credential/actions/workflows/verify.yml)
|
|
102
102
|
|
|
103
103
|
rm Gemfile.lock
|
|
104
104
|
bundle install
|
|
@@ -1,17 +1,16 @@
|
|
|
1
|
-
# @note This file is only for use in
|
|
1
|
+
# @note This file is only for use in github actions. If you need to make a `spec/dummy/config/database.yml` for running
|
|
2
2
|
# rake, rake spec, or rspec locally, please customize `spec/dummy/config/database.yml.example`.
|
|
3
3
|
#
|
|
4
4
|
# @example Customizing config/database.yml.example
|
|
5
5
|
# cp spec/dummy/config/database.yml.example spec/dummy/config/database.yml
|
|
6
6
|
# # update password fields for each environment's user
|
|
7
7
|
|
|
8
|
-
# Using the postgres user locally without a host and port is the supported configuration from Travis-CI
|
|
9
|
-
#
|
|
10
|
-
# @see http://about.travis-ci.org/docs/user/database-setup/#PostgreSQL
|
|
11
8
|
development: &pgsql
|
|
12
9
|
adapter: postgresql
|
|
13
10
|
database: metasploit_credential_development
|
|
11
|
+
host: localhost
|
|
14
12
|
username: postgres
|
|
13
|
+
password: postgres
|
|
15
14
|
pool: 5
|
|
16
15
|
timeout: 5
|
|
17
16
|
|
|
@@ -19,4 +18,4 @@ development: &pgsql
|
|
|
19
18
|
# `rake`. Do not set this db to the same as development or production.
|
|
20
19
|
test:
|
|
21
20
|
<<: *pgsql
|
|
22
|
-
database: metasploit_credential_test
|
|
21
|
+
database: metasploit_credential_test
|
data/spec/spec_helper.rb
CHANGED
|
@@ -9,14 +9,8 @@ Bundler.setup(:default, :test)
|
|
|
9
9
|
# Require simplecov before loading ..dummy/config/environment.rb because it will cause metasploit-credential/lib to
|
|
10
10
|
# be loaded, which would result in Coverage not recording hits for any of the files.
|
|
11
11
|
require 'simplecov'
|
|
12
|
-
require 'coveralls'
|
|
13
12
|
|
|
14
|
-
|
|
15
|
-
# don't generate local report as it is inaccessible on travis-ci, which is why coveralls is being used.
|
|
16
|
-
SimpleCov.formatter = Coveralls::SimpleCov::Formatter
|
|
17
|
-
else
|
|
18
|
-
SimpleCov.formatter = SimpleCov::Formatter::HTMLFormatter
|
|
19
|
-
end
|
|
13
|
+
SimpleCov.formatter = SimpleCov::Formatter::HTMLFormatter
|
|
20
14
|
|
|
21
15
|
require File.expand_path("../dummy/config/environment", __FILE__)
|
|
22
16
|
require 'rspec/rails'
|
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: 4.0.
|
|
4
|
+
version: 4.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:
|
|
96
|
+
date: 2021-04-28 00:00:00.000000000 Z
|
|
97
97
|
dependencies:
|
|
98
98
|
- !ruby/object:Gem::Dependency
|
|
99
99
|
name: metasploit-concern
|
|
@@ -328,7 +328,7 @@ files:
|
|
|
328
328
|
- spec/dummy/config/boot.rb
|
|
329
329
|
- spec/dummy/config/database.yml
|
|
330
330
|
- spec/dummy/config/database.yml.example
|
|
331
|
-
- spec/dummy/config/database.yml.
|
|
331
|
+
- spec/dummy/config/database.yml.github_actions
|
|
332
332
|
- spec/dummy/config/environment.rb
|
|
333
333
|
- spec/dummy/config/environments/development.rb
|
|
334
334
|
- spec/dummy/config/environments/production.rb
|
|
@@ -456,7 +456,7 @@ test_files:
|
|
|
456
456
|
- spec/dummy/config/boot.rb
|
|
457
457
|
- spec/dummy/config/database.yml
|
|
458
458
|
- spec/dummy/config/database.yml.example
|
|
459
|
-
- spec/dummy/config/database.yml.
|
|
459
|
+
- spec/dummy/config/database.yml.github_actions
|
|
460
460
|
- spec/dummy/config/environment.rb
|
|
461
461
|
- spec/dummy/config/environments/development.rb
|
|
462
462
|
- spec/dummy/config/environments/production.rb
|
metadata.gz.sig
CHANGED
|
Binary file
|