metasploit-credential 0.13.19 → 0.14.0

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,15 +1,7 @@
1
1
  ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- MWMyMmQ1ODI2Nzk5N2QyYzU0OWRhNjhkNjU2OWY3ODk5Y2RiMmZiOA==
5
- data.tar.gz: !binary |-
6
- YzA1MjdkYzFjOTE3NzUwMDY3ZTNmZGZlMTQxODhkNzcwNTBhZmQ0Mg==
2
+ SHA1:
3
+ metadata.gz: 48003606e463fcd6008e7964f9a938ab9e30bfb1
4
+ data.tar.gz: ab9f18d094d9940956614be3bf8d7d3007043b2a
7
5
  SHA512:
8
- metadata.gz: !binary |-
9
- MTAxZjVmYjc3OTk3YjIyNzVjNTBiYzRjYzYyZTQ3ZDgxYzRkYTllZjM1ZWM1
10
- Yzg2NWIyNmMzYmMzYzk4MDg5OTQzOGI2MDQyZWEwNDY3YjUxMzNlZGU0MzA0
11
- YjUzYTYzMmZhYjY0ZmIwZDc0ODI5NDdkMDYyMjE4MjliODY0N2Y=
12
- data.tar.gz: !binary |-
13
- NDFiM2I4MTZjNmQ5YTUyYzI5ZTAzZDVkN2QyM2RiYjY2MDJiNWQxYTNjNjBm
14
- OTE3M2NjNTBmOTg2YTJhNWY1NjMwMzFkYTNjNzE0OTE5NGI4MjA5NGMzNzY1
15
- NzA4MzI4MzA5MzY3YTM2ZWYxOTY1ZTFmNzgxZGM3MjFkYjUwOTI=
6
+ metadata.gz: 45ab8e1ae7e54bcebaff5f8dd40b39596999b3d19a90fcb86184a23488d8807ad4db2b1ff7313d10d81209fa6e2ec3f775e692b5a1dc958995faa020308e5cf4
7
+ data.tar.gz: f180cfde02a2c194a7416164748d593447c7a011ecc5ebbe0e78d876dddc8f2aabcefa010b60b05af74e48fc18dea7edd7d102556f6d9a15422285587daf05e4
@@ -139,7 +139,7 @@ If your changes are incompatible with the previous branch's API, then increment
139
139
  - [ ] Following the rules for [semantic versioning 2.0](http://semver.org/spec/v2.0.0.html), update [`MINOR`](lib/metasploit/credential/version.rb) and [`PATCH`](lib/metasploit/credential/version.rb) and commit the changes.
140
140
 
141
141
  ## MRI Ruby
142
- - [ ] `rvm use ruby-1.9.3@metasploit_data_models`
142
+ - [ ] `rvm use ruby-2.1@metasploit_data_models`
143
143
  - [ ] `rm Gemfile.lock`
144
144
  - [ ] `bundle install`
145
145
  - [ ] `rake release`
@@ -5,9 +5,9 @@ module Metasploit
5
5
  # The major version number.
6
6
  MAJOR = 0
7
7
  # The minor version number, scoped to the {MAJOR} version number.
8
- MINOR = 13
8
+ MINOR = 14
9
9
  # The patch number, scoped to the {MINOR} version number.
10
- PATCH = 19
10
+ PATCH = 0
11
11
 
12
12
  # The full version string, including the {MAJOR}, {MINOR}, {PATCH}, and optionally, the {PRERELEASE} in the
13
13
  # {http://semver.org/spec/v2.0.0.html semantic versioning v2.0.0} format.
@@ -3267,6 +3267,13 @@ CREATE INDEX index_notes_on_ntype ON notes USING btree (ntype);
3267
3267
  CREATE INDEX index_refs_on_name ON refs USING btree (name);
3268
3268
 
3269
3269
 
3270
+ --
3271
+ -- Name: index_services_on_host_id_and_port_and_proto; Type: INDEX; Schema: public; Owner: -; Tablespace:
3272
+ --
3273
+
3274
+ CREATE UNIQUE INDEX index_services_on_host_id_and_port_and_proto ON services USING btree (host_id, port, proto);
3275
+
3276
+
3270
3277
  --
3271
3278
  -- Name: index_services_on_name; Type: INDEX; Schema: public; Owner: -; Tablespace:
3272
3279
  --
@@ -3675,6 +3682,8 @@ INSERT INTO schema_migrations (version) VALUES ('20150112203945');
3675
3682
 
3676
3683
  INSERT INTO schema_migrations (version) VALUES ('20150205192745');
3677
3684
 
3685
+ INSERT INTO schema_migrations (version) VALUES ('20150212214222');
3686
+
3678
3687
  INSERT INTO schema_migrations (version) VALUES ('21');
3679
3688
 
3680
3689
  INSERT INTO schema_migrations (version) VALUES ('22');
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: 0.13.19
4
+ version: 0.14.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Luke Imhoff
@@ -9,104 +9,104 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-02-10 00:00:00.000000000 Z
12
+ date: 2015-02-18 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: metasploit-concern
16
16
  requirement: !ruby/object:Gem::Requirement
17
17
  requirements:
18
- - - ~>
18
+ - - "~>"
19
19
  - !ruby/object:Gem::Version
20
20
  version: 0.3.0
21
21
  type: :runtime
22
22
  prerelease: false
23
23
  version_requirements: !ruby/object:Gem::Requirement
24
24
  requirements:
25
- - - ~>
25
+ - - "~>"
26
26
  - !ruby/object:Gem::Version
27
27
  version: 0.3.0
28
28
  - !ruby/object:Gem::Dependency
29
29
  name: metasploit_data_models
30
30
  requirement: !ruby/object:Gem::Requirement
31
31
  requirements:
32
- - - ~>
32
+ - - "~>"
33
33
  - !ruby/object:Gem::Version
34
- version: 0.22.8
34
+ version: 0.23.0
35
35
  type: :runtime
36
36
  prerelease: false
37
37
  version_requirements: !ruby/object:Gem::Requirement
38
38
  requirements:
39
- - - ~>
39
+ - - "~>"
40
40
  - !ruby/object:Gem::Version
41
- version: 0.22.8
41
+ version: 0.23.0
42
42
  - !ruby/object:Gem::Dependency
43
43
  name: metasploit-model
44
44
  requirement: !ruby/object:Gem::Requirement
45
45
  requirements:
46
- - - ~>
46
+ - - "~>"
47
47
  - !ruby/object:Gem::Version
48
48
  version: 0.29.0
49
49
  type: :runtime
50
50
  prerelease: false
51
51
  version_requirements: !ruby/object:Gem::Requirement
52
52
  requirements:
53
- - - ~>
53
+ - - "~>"
54
54
  - !ruby/object:Gem::Version
55
55
  version: 0.29.0
56
56
  - !ruby/object:Gem::Dependency
57
57
  name: railties
58
58
  requirement: !ruby/object:Gem::Requirement
59
59
  requirements:
60
- - - <
60
+ - - "<"
61
61
  - !ruby/object:Gem::Version
62
62
  version: 4.0.0
63
63
  type: :runtime
64
64
  prerelease: false
65
65
  version_requirements: !ruby/object:Gem::Requirement
66
66
  requirements:
67
- - - <
67
+ - - "<"
68
68
  - !ruby/object:Gem::Version
69
69
  version: 4.0.0
70
70
  - !ruby/object:Gem::Dependency
71
71
  name: rubyntlm
72
72
  requirement: !ruby/object:Gem::Requirement
73
73
  requirements:
74
- - - ! '>='
74
+ - - ">="
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  type: :runtime
78
78
  prerelease: false
79
79
  version_requirements: !ruby/object:Gem::Requirement
80
80
  requirements:
81
- - - ! '>='
81
+ - - ">="
82
82
  - !ruby/object:Gem::Version
83
83
  version: '0'
84
84
  - !ruby/object:Gem::Dependency
85
85
  name: rubyzip
86
86
  requirement: !ruby/object:Gem::Requirement
87
87
  requirements:
88
- - - ~>
88
+ - - "~>"
89
89
  - !ruby/object:Gem::Version
90
90
  version: '1.1'
91
91
  type: :runtime
92
92
  prerelease: false
93
93
  version_requirements: !ruby/object:Gem::Requirement
94
94
  requirements:
95
- - - ~>
95
+ - - "~>"
96
96
  - !ruby/object:Gem::Version
97
97
  version: '1.1'
98
98
  - !ruby/object:Gem::Dependency
99
99
  name: pg
100
100
  requirement: !ruby/object:Gem::Requirement
101
101
  requirements:
102
- - - ! '>='
102
+ - - ">="
103
103
  - !ruby/object:Gem::Version
104
104
  version: '0'
105
105
  type: :runtime
106
106
  prerelease: false
107
107
  version_requirements: !ruby/object:Gem::Requirement
108
108
  requirements:
109
- - - ! '>='
109
+ - - ">="
110
110
  - !ruby/object:Gem::Version
111
111
  version: '0'
112
112
  description: The Metasploit::Credential namespace and its ActiveRecord::Base subclasses
@@ -300,17 +300,17 @@ require_paths:
300
300
  - lib
301
301
  required_ruby_version: !ruby/object:Gem::Requirement
302
302
  requirements:
303
- - - ! '>='
303
+ - - ">="
304
304
  - !ruby/object:Gem::Version
305
- version: '0'
305
+ version: '2.1'
306
306
  required_rubygems_version: !ruby/object:Gem::Requirement
307
307
  requirements:
308
- - - ! '>='
308
+ - - ">="
309
309
  - !ruby/object:Gem::Version
310
310
  version: '0'
311
311
  requirements: []
312
312
  rubyforge_project:
313
- rubygems_version: 2.4.5
313
+ rubygems_version: 2.4.3
314
314
  signing_key:
315
315
  specification_version: 4
316
316
  summary: Credential models for metasploit-framework and Metasploit Pro