metasploit-model 1.0.1 → 1.0.2

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
  SHA1:
3
- metadata.gz: 519db0e496006de97b485933109b516a41db09df
4
- data.tar.gz: 1b1233f121bfad3dae1e50b566d831f4c14b4104
3
+ metadata.gz: 6a7d4ad9d0c4946c6a0e8ebe5025c81bc41ad31a
4
+ data.tar.gz: cfd7b5e32b8e5f6d8713e06d077dbe2046062a2c
5
5
  SHA512:
6
- metadata.gz: c8156cf5bd0866171c32254f599a9333af2272bfe8adf4ca4e15d54b91599541fc4a449e3475fd032340402122160c89730efc257373e738d7869a06075beb58
7
- data.tar.gz: 2a66fdfb500d80a040b62cfadbff5508f69901cead9dfb87e8ac601b867755419ee6cefff528e6abb8139c6e1601e581645b1f232d315cd1d682f72af634ccdc
6
+ metadata.gz: 541adb6f543a08f68a6cf291dd0a653da704d03f71235deeb0016299feba9dbea8db24a774128978003e9950ee15588ec687d478a1496d26ff13d5719164c099
7
+ data.tar.gz: 2a98c0a6042143b1690353facf0ec62abec652970c20abd768072598031a37e253650900afeb90402e73ef386d049d7cb8951e1c03189db17f89961645f16949
@@ -5,6 +5,7 @@
5
5
  #
6
6
  # 1. Add a String constant where the constant name is in SCREAMING_SNAKE_CASE and the String in Title Case.
7
7
  # 2. Add the new constant to {ALL}.
8
+ # 3. Add a new key/value to {SHORT_NAMES} for this constant.
8
9
  module Metasploit::Model::Realm::Key
9
10
  #
10
11
  # CONSTANTS
@@ -27,6 +28,9 @@ module Metasploit::Model::Realm::Key
27
28
  # database and does not allow authenticating to just a server (which would be an `Mdm::Service`).
28
29
  POSTGRESQL_DATABASE = 'PostgreSQL Database'
29
30
 
31
+ # An RSYNC module (share) name, which can optionally require authentication.
32
+ RSYNC_MODULE = 'RSYNC Module'
33
+
30
34
  # This is a Wildcard Realm Type which indicates we don't know or care what type of Realm it is.
31
35
  WILDCARD = '*'
32
36
 
@@ -36,6 +40,7 @@ module Metasploit::Model::Realm::Key
36
40
  DB2_DATABASE,
37
41
  ORACLE_SYSTEM_IDENTIFIER,
38
42
  POSTGRESQL_DATABASE,
43
+ RSYNC_MODULE,
39
44
  WILDCARD
40
45
  ]
41
46
 
@@ -46,6 +51,7 @@ module Metasploit::Model::Realm::Key
46
51
  'db2db' => DB2_DATABASE,
47
52
  'sid' => ORACLE_SYSTEM_IDENTIFIER,
48
53
  'pgdb' => POSTGRESQL_DATABASE,
54
+ 'rsync' => RSYNC_MODULE,
49
55
  'wildcard' => WILDCARD
50
56
  }
51
57
  end
@@ -11,7 +11,7 @@ module Metasploit
11
11
  # The minor version number, scoped to the {MAJOR} version number.
12
12
  MINOR = 0
13
13
  # The patch version number, scoped to the {MAJOR} and {MINOR} version numbers.
14
- PATCH = 1
14
+ PATCH = 2
15
15
 
16
16
  #
17
17
  # Module Methods
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: metasploit-model
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Luke Imhoff
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-12-11 00:00:00.000000000 Z
11
+ date: 2015-12-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -382,7 +382,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
382
382
  version: '0'
383
383
  requirements: []
384
384
  rubyforge_project:
385
- rubygems_version: 2.4.3
385
+ rubygems_version: 2.4.8
386
386
  signing_key:
387
387
  specification_version: 4
388
388
  summary: Metasploit Model Mixins and Validators