nexpose 7.2.1 → 7.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/CHANGELOG.md +134 -15
- data/Gemfile.lock +89 -36
- data/README.markdown +6 -1
- data/Rakefile +2 -0
- data/lib/eso.rb +23 -0
- data/lib/eso/conductor.rb +227 -0
- data/lib/eso/configuration/configuration.rb +124 -0
- data/lib/eso/configuration/configuration_manager.rb +145 -0
- data/lib/eso/filter.rb +137 -0
- data/lib/eso/integration_option.rb +88 -0
- data/lib/eso/integration_options_manager.rb +178 -0
- data/lib/eso/nexpose.rb +212 -0
- data/lib/eso/service.rb +83 -0
- data/lib/eso/step.rb +166 -0
- data/lib/eso/step_configuration.rb +73 -0
- data/lib/eso/workflow.rb +149 -0
- data/lib/nexpose/ajax.rb +1 -0
- data/lib/nexpose/role.rb +1 -0
- data/lib/nexpose/util.rb +2 -1
- data/lib/nexpose/version.rb +1 -1
- metadata +19 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: bcd253e64cfd5a4ee8d5272a296501c9f77a7decacab24d09ebde617aa5faac5
|
4
|
+
data.tar.gz: 56e465549f83e5d26a9c9865af382fae45997c9381901504f278bc5365f773e7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2ec970e1b75e3ee2d9acd63521afcd10a4847a7a69be94c68f125f81c1b35bc8c873e32873edd0b7bbfbd9b87aa18e80b886ec61cd7b776dc2c54e74a4392099
|
7
|
+
data.tar.gz: b7fb4ad6cb4e87af683aaf08cfa756df9f21b386ebe88f7937ab65aee72eeb999cabe325255d795f6a6d6d973e0bd3a0264e5ad69684b12d31c184bb1cf26d0e
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,43 @@
|
|
1
|
-
#
|
1
|
+
# Changelog
|
2
|
+
|
3
|
+
## [Unreleased](https://github.com/rapid7/nexpose-client/tree/HEAD)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v7.2.1...HEAD)
|
6
|
+
|
7
|
+
**Fixed bugs:**
|
8
|
+
|
9
|
+
- Login Failed when update nexpose-client 2.0.2 to 7.2.1 [\#324](https://github.com/rapid7/nexpose-client/issues/324)
|
10
|
+
|
11
|
+
**Closed issues:**
|
12
|
+
|
13
|
+
- Stuck on maintenance mode page [\#327](https://github.com/rapid7/nexpose-client/issues/327)
|
14
|
+
- job failure in servicenow [\#323](https://github.com/rapid7/nexpose-client/issues/323)
|
15
|
+
- \[QUESTION\] How to generate Shared Secret via RESTful API? [\#322](https://github.com/rapid7/nexpose-client/issues/322)
|
16
|
+
- XML::VulnerabilityDetail/Complete API missing an instances value for vulnerabilities [\#306](https://github.com/rapid7/nexpose-client/issues/306)
|
17
|
+
|
18
|
+
**Merged pull requests:**
|
19
|
+
|
20
|
+
- Add a new privilege ManageAdvPolicies [\#330](https://github.com/rapid7/nexpose-client/pull/330) ([jinq102030](https://github.com/jinq102030))
|
21
|
+
- Fix HostOrIP for Ruby 2.6.3 [\#328](https://github.com/rapid7/nexpose-client/pull/328) ([abunn-r7](https://github.com/abunn-r7))
|
22
|
+
- Fix travis builds [\#326](https://github.com/rapid7/nexpose-client/pull/326) ([gschneider-r7](https://github.com/gschneider-r7))
|
23
|
+
- Migrate eso-client to nexpose-client / CSRF header update [\#309](https://github.com/rapid7/nexpose-client/pull/309) ([hwilson-r7](https://github.com/hwilson-r7))
|
24
|
+
|
25
|
+
## [v7.2.1](https://github.com/rapid7/nexpose-client/tree/v7.2.1) (2018-06-01)
|
26
|
+
|
27
|
+
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v7.2.0...v7.2.1)
|
28
|
+
|
29
|
+
**Closed issues:**
|
30
|
+
|
31
|
+
- api/3/assets/{id}/software returns HTTP.500 error [\#319](https://github.com/rapid7/nexpose-client/issues/319)
|
32
|
+
- Unknown SSH Handshake error [\#308](https://github.com/rapid7/nexpose-client/issues/308)
|
33
|
+
- Use rex-mime gem instead of bundled "rexlite/mime" dependency [\#253](https://github.com/rapid7/nexpose-client/issues/253)
|
34
|
+
|
35
|
+
**Merged pull requests:**
|
36
|
+
|
37
|
+
- When passed a filename, download a report in chunks [\#321](https://github.com/rapid7/nexpose-client/pull/321) ([toofishes](https://github.com/toofishes))
|
2
38
|
|
3
39
|
## [v7.2.0](https://github.com/rapid7/nexpose-client/tree/v7.2.0) (2018-01-17)
|
40
|
+
|
4
41
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v7.1.1...v7.2.0)
|
5
42
|
|
6
43
|
**Closed issues:**
|
@@ -14,9 +51,9 @@
|
|
14
51
|
|
15
52
|
- Update vuln exceptions to use generally available API version [\#313](https://github.com/rapid7/nexpose-client/pull/313) ([mhuffman-r7](https://github.com/mhuffman-r7))
|
16
53
|
- Add a method to add common vuln status filters to report configs [\#303](https://github.com/rapid7/nexpose-client/pull/303) ([gschneider-r7](https://github.com/gschneider-r7))
|
17
|
-
- Updated for Ruby 2.4 Support [\#301](https://github.com/rapid7/nexpose-client/pull/301) ([twosevenzero](https://github.com/twosevenzero))
|
18
54
|
|
19
55
|
## [v7.1.1](https://github.com/rapid7/nexpose-client/tree/v7.1.1) (2017-09-28)
|
56
|
+
|
20
57
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v7.1.0...v7.1.1)
|
21
58
|
|
22
59
|
**Merged pull requests:**
|
@@ -24,6 +61,7 @@
|
|
24
61
|
- Some methods were not honoring custom Connection Timeouts [\#300](https://github.com/rapid7/nexpose-client/pull/300) ([sgreen-r7](https://github.com/sgreen-r7))
|
25
62
|
|
26
63
|
## [v7.1.0](https://github.com/rapid7/nexpose-client/tree/v7.1.0) (2017-09-26)
|
64
|
+
|
27
65
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v7.0.1...v7.1.0)
|
28
66
|
|
29
67
|
**Fixed bugs:**
|
@@ -41,18 +79,20 @@
|
|
41
79
|
**Merged pull requests:**
|
42
80
|
|
43
81
|
- adding the ability to include a password when restoring a backup [\#298](https://github.com/rapid7/nexpose-client/pull/298) ([sgreen-r7](https://github.com/sgreen-r7))
|
44
|
-
- Allow for Starting Scan during Blackout [\#297](https://github.com/rapid7/nexpose-client/pull/297) ([sgreen-r7](https://github.com/sgreen-r7))
|
45
82
|
|
46
83
|
## [v7.0.1](https://github.com/rapid7/nexpose-client/tree/v7.0.1) (2017-09-11)
|
84
|
+
|
47
85
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v7.0.0...v7.0.1)
|
48
86
|
|
49
87
|
**Merged pull requests:**
|
50
88
|
|
89
|
+
- Allow for Starting Scan during Blackout [\#297](https://github.com/rapid7/nexpose-client/pull/297) ([sgreen-r7](https://github.com/sgreen-r7))
|
51
90
|
- Only Cleanup!! v3 [\#295](https://github.com/rapid7/nexpose-client/pull/295) ([sgreen-r7](https://github.com/sgreen-r7))
|
52
91
|
- Revert "Only Cleanup!" [\#293](https://github.com/rapid7/nexpose-client/pull/293) ([sgreen-r7](https://github.com/sgreen-r7))
|
53
92
|
- Only Cleanup! [\#292](https://github.com/rapid7/nexpose-client/pull/292) ([sgreen-r7](https://github.com/sgreen-r7))
|
54
93
|
|
55
94
|
## [v7.0.0](https://github.com/rapid7/nexpose-client/tree/v7.0.0) (2017-08-31)
|
95
|
+
|
56
96
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v6.1.1...v7.0.0)
|
57
97
|
|
58
98
|
**Fixed bugs:**
|
@@ -75,9 +115,11 @@
|
|
75
115
|
- Bug fixes for adhoc scan with hostname and dynamic asset group description [\#276](https://github.com/rapid7/nexpose-client/pull/276) ([gschneider-r7](https://github.com/gschneider-r7))
|
76
116
|
|
77
117
|
## [v6.1.1](https://github.com/rapid7/nexpose-client/tree/v6.1.1) (2017-07-24)
|
118
|
+
|
78
119
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v6.1.0...v6.1.1)
|
79
120
|
|
80
121
|
## [v6.1.0](https://github.com/rapid7/nexpose-client/tree/v6.1.0) (2017-06-19)
|
122
|
+
|
81
123
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v6.0.0...v6.1.0)
|
82
124
|
|
83
125
|
**Closed issues:**
|
@@ -85,6 +127,7 @@
|
|
85
127
|
- Please make engine pool available in ScanData, ScanSummary. [\#277](https://github.com/rapid7/nexpose-client/issues/277)
|
86
128
|
|
87
129
|
## [v6.0.0](https://github.com/rapid7/nexpose-client/tree/v6.0.0) (2017-04-03)
|
130
|
+
|
88
131
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v5.3.2...v6.0.0)
|
89
132
|
|
90
133
|
**Fixed bugs:**
|
@@ -96,6 +139,7 @@
|
|
96
139
|
- adding support for listing vuln exceptions on asset groups [\#266](https://github.com/rapid7/nexpose-client/pull/266) ([sgreen-r7](https://github.com/sgreen-r7))
|
97
140
|
|
98
141
|
## [v5.3.2](https://github.com/rapid7/nexpose-client/tree/v5.3.2) (2017-03-28)
|
142
|
+
|
99
143
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v5.3.1...v5.3.2)
|
100
144
|
|
101
145
|
**Fixed bugs:**
|
@@ -107,6 +151,7 @@
|
|
107
151
|
- set blackout enabled [\#265](https://github.com/rapid7/nexpose-client/pull/265) ([dmurray-r7](https://github.com/dmurray-r7))
|
108
152
|
|
109
153
|
## [v5.3.1](https://github.com/rapid7/nexpose-client/tree/v5.3.1) (2017-03-01)
|
154
|
+
|
110
155
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v5.3.0...v5.3.1)
|
111
156
|
|
112
157
|
**Closed issues:**
|
@@ -118,6 +163,7 @@
|
|
118
163
|
- added specific test method for shared creds to use correct attrs [\#262](https://github.com/rapid7/nexpose-client/pull/262) ([sgreen-r7](https://github.com/sgreen-r7))
|
119
164
|
|
120
165
|
## [v5.3.0](https://github.com/rapid7/nexpose-client/tree/v5.3.0) (2017-02-14)
|
166
|
+
|
121
167
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v5.2.0...v5.3.0)
|
122
168
|
|
123
169
|
**Merged pull requests:**
|
@@ -126,6 +172,7 @@
|
|
126
172
|
- allow user to supply a cerificate file for trusted SSL [\#254](https://github.com/rapid7/nexpose-client/pull/254) ([jmartin-r7](https://github.com/jmartin-r7))
|
127
173
|
|
128
174
|
## [v5.2.0](https://github.com/rapid7/nexpose-client/tree/v5.2.0) (2017-01-31)
|
175
|
+
|
129
176
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v5.1.0...v5.2.0)
|
130
177
|
|
131
178
|
**Fixed bugs:**
|
@@ -149,6 +196,7 @@
|
|
149
196
|
- add Connection:update\_engine [\#227](https://github.com/rapid7/nexpose-client/pull/227) ([nbirnel](https://github.com/nbirnel))
|
150
197
|
|
151
198
|
## [v5.1.0](https://github.com/rapid7/nexpose-client/tree/v5.1.0) (2016-08-26)
|
199
|
+
|
152
200
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v5.0.0...v5.1.0)
|
153
201
|
|
154
202
|
**Fixed bugs:**
|
@@ -158,10 +206,12 @@
|
|
158
206
|
**Merged pull requests:**
|
159
207
|
|
160
208
|
- Add Unique ID support to Asset and ExternalAsset [\#241](https://github.com/rapid7/nexpose-client/pull/241) ([gschneider-r7](https://github.com/gschneider-r7))
|
209
|
+
- api delete fix [\#230](https://github.com/rapid7/nexpose-client/pull/230) ([dmurray-r7](https://github.com/dmurray-r7))
|
161
210
|
- first attempt for fix of hash failure of blackouts [\#226](https://github.com/rapid7/nexpose-client/pull/226) ([sgreen-r7](https://github.com/sgreen-r7))
|
162
211
|
- Use latest minor versions of Ruby in Travis-CI [\#218](https://github.com/rapid7/nexpose-client/pull/218) ([gschneider-r7](https://github.com/gschneider-r7))
|
163
212
|
|
164
213
|
## [v5.0.0](https://github.com/rapid7/nexpose-client/tree/v5.0.0) (2016-06-23)
|
214
|
+
|
165
215
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v4.0.5...v5.0.0)
|
166
216
|
|
167
217
|
**Fixed bugs:**
|
@@ -175,6 +225,7 @@
|
|
175
225
|
- Fix incorrect documentation for schedule time format [\#232](https://github.com/rapid7/nexpose-client/pull/232) ([dmurray-r7](https://github.com/dmurray-r7))
|
176
226
|
|
177
227
|
## [v4.0.5](https://github.com/rapid7/nexpose-client/tree/v4.0.5) (2016-06-02)
|
228
|
+
|
178
229
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v4.0.4...v4.0.5)
|
179
230
|
|
180
231
|
**Closed issues:**
|
@@ -184,12 +235,13 @@
|
|
184
235
|
**Merged pull requests:**
|
185
236
|
|
186
237
|
- \#233: Fixed parsing of completed asset response to use correct asset ID [\#234](https://github.com/rapid7/nexpose-client/pull/234) ([mhuffman-r7](https://github.com/mhuffman-r7))
|
187
|
-
- api delete fix [\#230](https://github.com/rapid7/nexpose-client/pull/230) ([dmurray-r7](https://github.com/dmurray-r7))
|
188
238
|
|
189
239
|
## [v4.0.4](https://github.com/rapid7/nexpose-client/tree/v4.0.4) (2016-05-17)
|
240
|
+
|
190
241
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v4.0.3...v4.0.4)
|
191
242
|
|
192
243
|
## [v4.0.3](https://github.com/rapid7/nexpose-client/tree/v4.0.3) (2016-05-11)
|
244
|
+
|
193
245
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v4.0.2...v4.0.3)
|
194
246
|
|
195
247
|
**Fixed bugs:**
|
@@ -197,12 +249,15 @@
|
|
197
249
|
- Increase REXML::Security.entity\_expansion\_text\_limit [\#229](https://github.com/rapid7/nexpose-client/pull/229) ([sgreen-r7](https://github.com/sgreen-r7))
|
198
250
|
|
199
251
|
## [v4.0.2](https://github.com/rapid7/nexpose-client/tree/v4.0.2) (2016-05-06)
|
252
|
+
|
200
253
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v4.0.1...v4.0.2)
|
201
254
|
|
202
255
|
## [v4.0.1](https://github.com/rapid7/nexpose-client/tree/v4.0.1) (2016-05-06)
|
256
|
+
|
203
257
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v4.0.0...v4.0.1)
|
204
258
|
|
205
259
|
## [v4.0.0](https://github.com/rapid7/nexpose-client/tree/v4.0.0) (2016-05-05)
|
260
|
+
|
206
261
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v3.3.2...v4.0.0)
|
207
262
|
|
208
263
|
**Closed issues:**
|
@@ -211,10 +266,10 @@
|
|
211
266
|
|
212
267
|
**Merged pull requests:**
|
213
268
|
|
214
|
-
- Add new filter and update IP address operators [\#224](https://github.com/rapid7/nexpose-client/pull/224) ([rkhalil-r7](https://github.com/rkhalil-r7))
|
215
269
|
- Allow import scan to return scan ID when available [\#223](https://github.com/rapid7/nexpose-client/pull/223) ([gschneider-r7](https://github.com/gschneider-r7))
|
216
270
|
|
217
271
|
## [v3.3.2](https://github.com/rapid7/nexpose-client/tree/v3.3.2) (2016-04-29)
|
272
|
+
|
218
273
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v3.3.1...v3.3.2)
|
219
274
|
|
220
275
|
**Fixed bugs:**
|
@@ -233,6 +288,7 @@
|
|
233
288
|
- Make HostOrIP\#convert more flexible on IP address range input [\#214](https://github.com/rapid7/nexpose-client/pull/214) ([gschneider-r7](https://github.com/gschneider-r7))
|
234
289
|
|
235
290
|
## [v3.3.1](https://github.com/rapid7/nexpose-client/tree/v3.3.1) (2016-04-08)
|
291
|
+
|
236
292
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v3.3.0...v3.3.1)
|
237
293
|
|
238
294
|
**Fixed bugs:**
|
@@ -242,25 +298,28 @@
|
|
242
298
|
**Closed issues:**
|
243
299
|
|
244
300
|
- Unable to retrieve proofs [\#213](https://github.com/rapid7/nexpose-client/issues/213)
|
301
|
+
- Adding criteria to tag. [\#209](https://github.com/rapid7/nexpose-client/issues/209)
|
245
302
|
|
246
303
|
**Merged pull requests:**
|
247
304
|
|
248
305
|
- Fixing variable references in the to-headers call [\#216](https://github.com/rapid7/nexpose-client/pull/216) ([mhuffman-r7](https://github.com/mhuffman-r7))
|
249
306
|
|
250
307
|
## [v3.3.0](https://github.com/rapid7/nexpose-client/tree/v3.3.0) (2016-04-06)
|
308
|
+
|
251
309
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v3.2.0...v3.3.0)
|
252
310
|
|
253
311
|
**Closed issues:**
|
254
312
|
|
255
313
|
- Return nexpose\_id via API using vulnid [\#210](https://github.com/rapid7/nexpose-client/issues/210)
|
256
|
-
- Adding criteria to tag. [\#209](https://github.com/rapid7/nexpose-client/issues/209)
|
257
314
|
|
258
315
|
**Merged pull requests:**
|
259
316
|
|
317
|
+
- Add new filter and update IP address operators [\#224](https://github.com/rapid7/nexpose-client/pull/224) ([rkhalil-r7](https://github.com/rkhalil-r7))
|
260
318
|
- Add method for returning the version information for each scan engine [\#212](https://github.com/rapid7/nexpose-client/pull/212) ([Red5d](https://github.com/Red5d))
|
261
319
|
- Scheduled Backup and Maintenance [\#211](https://github.com/rapid7/nexpose-client/pull/211) ([dmurray-r7](https://github.com/dmurray-r7))
|
262
320
|
|
263
321
|
## [v3.2.0](https://github.com/rapid7/nexpose-client/tree/v3.2.0) (2016-01-20)
|
322
|
+
|
264
323
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v3.1.0...v3.2.0)
|
265
324
|
|
266
325
|
**Merged pull requests:**
|
@@ -268,6 +327,7 @@
|
|
268
327
|
- Windows services editor option [\#207](https://github.com/rapid7/nexpose-client/pull/207) ([kprzerwa-r7](https://github.com/kprzerwa-r7))
|
269
328
|
|
270
329
|
## [v3.1.0](https://github.com/rapid7/nexpose-client/tree/v3.1.0) (2016-01-06)
|
330
|
+
|
271
331
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v3.0.1...v3.1.0)
|
272
332
|
|
273
333
|
**Merged pull requests:**
|
@@ -275,9 +335,11 @@
|
|
275
335
|
- Two factor authentication [\#206](https://github.com/rapid7/nexpose-client/pull/206) ([dsadgat-r7](https://github.com/dsadgat-r7))
|
276
336
|
|
277
337
|
## [v3.0.1](https://github.com/rapid7/nexpose-client/tree/v3.0.1) (2015-12-11)
|
338
|
+
|
278
339
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v3.0.0...v3.0.1)
|
279
340
|
|
280
341
|
## [v3.0.0](https://github.com/rapid7/nexpose-client/tree/v3.0.0) (2015-12-11)
|
342
|
+
|
281
343
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v2.3.0...v3.0.0)
|
282
344
|
|
283
345
|
**Closed issues:**
|
@@ -295,6 +357,7 @@
|
|
295
357
|
- Remove deprecated method aliases [\#184](https://github.com/rapid7/nexpose-client/pull/184) ([gschneider-r7](https://github.com/gschneider-r7))
|
296
358
|
|
297
359
|
## [v2.3.0](https://github.com/rapid7/nexpose-client/tree/v2.3.0) (2015-12-10)
|
360
|
+
|
298
361
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v2.2.0...v2.3.0)
|
299
362
|
|
300
363
|
**Merged pull requests:**
|
@@ -302,6 +365,7 @@
|
|
302
365
|
- Add support for modifying the asset linking global preference [\#202](https://github.com/rapid7/nexpose-client/pull/202) ([erran-r7](https://github.com/erran-r7))
|
303
366
|
|
304
367
|
## [v2.2.0](https://github.com/rapid7/nexpose-client/tree/v2.2.0) (2015-12-01)
|
368
|
+
|
305
369
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v2.1.3...v2.2.0)
|
306
370
|
|
307
371
|
**Merged pull requests:**
|
@@ -309,6 +373,7 @@
|
|
309
373
|
- Add methods to enable debug/enhanced logging in the scan template. [\#197](https://github.com/rapid7/nexpose-client/pull/197) ([xliu-r7](https://github.com/xliu-r7))
|
310
374
|
|
311
375
|
## [v2.1.3](https://github.com/rapid7/nexpose-client/tree/v2.1.3) (2015-11-23)
|
376
|
+
|
312
377
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v2.1.2...v2.1.3)
|
313
378
|
|
314
379
|
**Merged pull requests:**
|
@@ -317,6 +382,7 @@
|
|
317
382
|
- Update documentation for list\_device\_vulns [\#194](https://github.com/rapid7/nexpose-client/pull/194) ([rchen-r7](https://github.com/rchen-r7))
|
318
383
|
|
319
384
|
## [v2.1.2](https://github.com/rapid7/nexpose-client/tree/v2.1.2) (2015-11-04)
|
385
|
+
|
320
386
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v2.1.1...v2.1.2)
|
321
387
|
|
322
388
|
**Closed issues:**
|
@@ -329,6 +395,7 @@
|
|
329
395
|
- Use a block with file.new to auto-close file ref [\#191](https://github.com/rapid7/nexpose-client/pull/191) ([gschneider-r7](https://github.com/gschneider-r7))
|
330
396
|
|
331
397
|
## [v2.1.1](https://github.com/rapid7/nexpose-client/tree/v2.1.1) (2015-10-21)
|
398
|
+
|
332
399
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v2.1.0...v2.1.1)
|
333
400
|
|
334
401
|
**Merged pull requests:**
|
@@ -336,6 +403,7 @@
|
|
336
403
|
- Update URLs for NSC config [\#189](https://github.com/rapid7/nexpose-client/pull/189) ([gschneider-r7](https://github.com/gschneider-r7))
|
337
404
|
|
338
405
|
## [v2.1.0](https://github.com/rapid7/nexpose-client/tree/v2.1.0) (2015-10-07)
|
406
|
+
|
339
407
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v2.0.2...v2.1.0)
|
340
408
|
|
341
409
|
**Fixed bugs:**
|
@@ -357,9 +425,11 @@
|
|
357
425
|
- Add methods for changing and querying a scan template's ACES logging level [\#187](https://github.com/rapid7/nexpose-client/pull/187) ([tomhart-r7](https://github.com/tomhart-r7))
|
358
426
|
|
359
427
|
## [v2.0.2](https://github.com/rapid7/nexpose-client/tree/v2.0.2) (2015-08-13)
|
428
|
+
|
360
429
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v2.0.1...v2.0.2)
|
361
430
|
|
362
431
|
## [v2.0.1](https://github.com/rapid7/nexpose-client/tree/v2.0.1) (2015-08-07)
|
432
|
+
|
363
433
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v2.0.0...v2.0.1)
|
364
434
|
|
365
435
|
**Merged pull requests:**
|
@@ -368,6 +438,7 @@
|
|
368
438
|
- Updated endpoints for txml removals [\#181](https://github.com/rapid7/nexpose-client/pull/181) ([btrujillo-r7](https://github.com/btrujillo-r7))
|
369
439
|
|
370
440
|
## [v2.0.0](https://github.com/rapid7/nexpose-client/tree/v2.0.0) (2015-07-16)
|
441
|
+
|
371
442
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v1.3.0...v2.0.0)
|
372
443
|
|
373
444
|
**Fixed bugs:**
|
@@ -380,6 +451,7 @@
|
|
380
451
|
- Password policy expiration [\#180](https://github.com/rapid7/nexpose-client/pull/180) ([dmurray-r7](https://github.com/dmurray-r7))
|
381
452
|
|
382
453
|
## [v1.3.0](https://github.com/rapid7/nexpose-client/tree/v1.3.0) (2015-07-07)
|
454
|
+
|
383
455
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v1.2.0...v1.3.0)
|
384
456
|
|
385
457
|
**Fixed bugs:**
|
@@ -391,6 +463,7 @@
|
|
391
463
|
- Update FilteredAsset to support site\_id in Nexpose 5.13 and later [\#179](https://github.com/rapid7/nexpose-client/pull/179) ([gschneider-r7](https://github.com/gschneider-r7))
|
392
464
|
|
393
465
|
## [v1.2.0](https://github.com/rapid7/nexpose-client/tree/v1.2.0) (2015-06-24)
|
466
|
+
|
394
467
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v1.1.0...v1.2.0)
|
395
468
|
|
396
469
|
**Merged pull requests:**
|
@@ -398,6 +471,7 @@
|
|
398
471
|
- Add new syslog constants [\#177](https://github.com/rapid7/nexpose-client/pull/177) ([erran-r7](https://github.com/erran-r7))
|
399
472
|
|
400
473
|
## [v1.1.0](https://github.com/rapid7/nexpose-client/tree/v1.1.0) (2015-05-29)
|
474
|
+
|
401
475
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v1.0.0...v1.1.0)
|
402
476
|
|
403
477
|
**Fixed bugs:**
|
@@ -421,6 +495,7 @@
|
|
421
495
|
- Add DHCP Protocol/Type constants to the DiscoveryConnection class [\#164](https://github.com/rapid7/nexpose-client/pull/164) ([erran-r7](https://github.com/erran-r7))
|
422
496
|
|
423
497
|
## [v1.0.0](https://github.com/rapid7/nexpose-client/tree/v1.0.0) (2015-04-08)
|
498
|
+
|
424
499
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v0.9.8...v1.0.0)
|
425
500
|
|
426
501
|
**Closed issues:**
|
@@ -445,16 +520,18 @@
|
|
445
520
|
- site-api/site: collapse include\_asset methods and add deprecrated methods [\#138](https://github.com/rapid7/nexpose-client/pull/138) ([gschneider-r7](https://github.com/gschneider-r7))
|
446
521
|
- site-api/alert: address some of hound's comments [\#137](https://github.com/rapid7/nexpose-client/pull/137) ([gschneider-r7](https://github.com/gschneider-r7))
|
447
522
|
- Site api [\#135](https://github.com/rapid7/nexpose-client/pull/135) ([gperez-r7](https://github.com/gperez-r7))
|
523
|
+
- Remove Ruby 1.9.3 support, require Ruby 2.1.5 [\#134](https://github.com/rapid7/nexpose-client/pull/134) ([gschneider-r7](https://github.com/gschneider-r7))
|
448
524
|
|
449
525
|
## [v0.9.8](https://github.com/rapid7/nexpose-client/tree/v0.9.8) (2015-03-17)
|
526
|
+
|
450
527
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v0.9.7...v0.9.8)
|
451
528
|
|
452
529
|
**Merged pull requests:**
|
453
530
|
|
454
531
|
- Update Nexpose::ScanTemplate methods for device and service discovery [\#136](https://github.com/rapid7/nexpose-client/pull/136) ([jhart-r7](https://github.com/jhart-r7))
|
455
|
-
- Remove Ruby 1.9.3 support, require Ruby 2.1.5 [\#134](https://github.com/rapid7/nexpose-client/pull/134) ([gschneider-r7](https://github.com/gschneider-r7))
|
456
532
|
|
457
533
|
## [v0.9.7](https://github.com/rapid7/nexpose-client/tree/v0.9.7) (2015-03-17)
|
534
|
+
|
458
535
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v0.9.6...v0.9.7)
|
459
536
|
|
460
537
|
**Merged pull requests:**
|
@@ -462,6 +539,7 @@
|
|
462
539
|
- Allow control of device discovery and other template options [\#133](https://github.com/rapid7/nexpose-client/pull/133) ([jhart-r7](https://github.com/jhart-r7))
|
463
540
|
|
464
541
|
## [v0.9.6](https://github.com/rapid7/nexpose-client/tree/v0.9.6) (2015-03-05)
|
542
|
+
|
465
543
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v0.9.5...v0.9.6)
|
466
544
|
|
467
545
|
**Fixed bugs:**
|
@@ -487,6 +565,7 @@
|
|
487
565
|
- Exclude assets by IP, hostname, or IP ranges from site [\#109](https://github.com/rapid7/nexpose-client/pull/109) ([gschneider-r7](https://github.com/gschneider-r7))
|
488
566
|
|
489
567
|
## [v0.9.5](https://github.com/rapid7/nexpose-client/tree/v0.9.5) (2015-02-09)
|
568
|
+
|
490
569
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v0.9.4...v0.9.5)
|
491
570
|
|
492
571
|
**Merged pull requests:**
|
@@ -495,6 +574,7 @@
|
|
495
574
|
- Add gschneider to gem authors [\#105](https://github.com/rapid7/nexpose-client/pull/105) ([gschneider-r7](https://github.com/gschneider-r7))
|
496
575
|
|
497
576
|
## [v0.9.4](https://github.com/rapid7/nexpose-client/tree/v0.9.4) (2015-01-28)
|
577
|
+
|
498
578
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v0.9.3...v0.9.4)
|
499
579
|
|
500
580
|
**Merged pull requests:**
|
@@ -503,6 +583,7 @@
|
|
503
583
|
- fix shared credentials xml element to correctly grab service type [\#102](https://github.com/rapid7/nexpose-client/pull/102) ([sgreen-r7](https://github.com/sgreen-r7))
|
504
584
|
|
505
585
|
## [v0.9.3](https://github.com/rapid7/nexpose-client/tree/v0.9.3) (2015-01-05)
|
586
|
+
|
506
587
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v0.9.2...v0.9.3)
|
507
588
|
|
508
589
|
**Merged pull requests:**
|
@@ -510,6 +591,7 @@
|
|
510
591
|
- Ajax clean up [\#101](https://github.com/rapid7/nexpose-client/pull/101) ([mdaines-r7](https://github.com/mdaines-r7))
|
511
592
|
|
512
593
|
## [v0.9.2](https://github.com/rapid7/nexpose-client/tree/v0.9.2) (2015-01-05)
|
594
|
+
|
513
595
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v0.9.1...v0.9.2)
|
514
596
|
|
515
597
|
**Closed issues:**
|
@@ -517,9 +599,11 @@
|
|
517
599
|
- Extract Common Credential Module [\#96](https://github.com/rapid7/nexpose-client/issues/96)
|
518
600
|
|
519
601
|
## [v0.9.1](https://github.com/rapid7/nexpose-client/tree/v0.9.1) (2015-01-02)
|
602
|
+
|
520
603
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v0.9.0...v0.9.1)
|
521
604
|
|
522
605
|
## [v0.9.0](https://github.com/rapid7/nexpose-client/tree/v0.9.0) (2014-12-31)
|
606
|
+
|
523
607
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v0.8.18...v0.9.0)
|
524
608
|
|
525
609
|
**Closed issues:**
|
@@ -531,22 +615,26 @@
|
|
531
615
|
**Merged pull requests:**
|
532
616
|
|
533
617
|
- Update to the new username attr for xml [\#100](https://github.com/rapid7/nexpose-client/pull/100) ([sgreen-r7](https://github.com/sgreen-r7))
|
534
|
-
- Refactor/Extract Common Credential Module [\#98](https://github.com/rapid7/nexpose-client/pull/98) ([sgreen-r7](https://github.com/sgreen-r7))
|
535
618
|
|
536
619
|
## [v0.8.18](https://github.com/rapid7/nexpose-client/tree/v0.8.18) (2014-12-15)
|
620
|
+
|
537
621
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v0.8.17...v0.8.18)
|
538
622
|
|
539
623
|
## [v0.8.17](https://github.com/rapid7/nexpose-client/tree/v0.8.17) (2014-12-11)
|
624
|
+
|
540
625
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v0.8.16...v0.8.17)
|
541
626
|
|
542
627
|
## [v0.8.16](https://github.com/rapid7/nexpose-client/tree/v0.8.16) (2014-12-10)
|
628
|
+
|
543
629
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v0.8.15...v0.8.16)
|
544
630
|
|
545
631
|
**Merged pull requests:**
|
546
632
|
|
633
|
+
- Refactor/Extract Common Credential Module [\#98](https://github.com/rapid7/nexpose-client/pull/98) ([sgreen-r7](https://github.com/sgreen-r7))
|
547
634
|
- Add incomplete\_assets method [\#93](https://github.com/rapid7/nexpose-client/pull/93) ([gschneider-r7](https://github.com/gschneider-r7))
|
548
635
|
|
549
636
|
## [v0.8.15](https://github.com/rapid7/nexpose-client/tree/v0.8.15) (2014-11-12)
|
637
|
+
|
550
638
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v0.8.14...v0.8.15)
|
551
639
|
|
552
640
|
**Closed issues:**
|
@@ -558,9 +646,11 @@
|
|
558
646
|
- allow creating vuln exception with site scope [\#91](https://github.com/rapid7/nexpose-client/pull/91) ([gschneider-r7](https://github.com/gschneider-r7))
|
559
647
|
|
560
648
|
## [v0.8.14](https://github.com/rapid7/nexpose-client/tree/v0.8.14) (2014-11-11)
|
649
|
+
|
561
650
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v0.8.13...v0.8.14)
|
562
651
|
|
563
652
|
## [v0.8.13](https://github.com/rapid7/nexpose-client/tree/v0.8.13) (2014-11-05)
|
653
|
+
|
564
654
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v0.8.12...v0.8.13)
|
565
655
|
|
566
656
|
**Merged pull requests:**
|
@@ -568,6 +658,7 @@
|
|
568
658
|
- Expose scan template level control scanning options [\#88](https://github.com/rapid7/nexpose-client/pull/88) ([erran](https://github.com/erran))
|
569
659
|
|
570
660
|
## [v0.8.12](https://github.com/rapid7/nexpose-client/tree/v0.8.12) (2014-11-05)
|
661
|
+
|
571
662
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v0.8.11...v0.8.12)
|
572
663
|
|
573
664
|
**Merged pull requests:**
|
@@ -576,6 +667,7 @@
|
|
576
667
|
- Use attr\_accessor instead of a custom setter in GlobalSettings [\#89](https://github.com/rapid7/nexpose-client/pull/89) ([erran](https://github.com/erran))
|
577
668
|
|
578
669
|
## [v0.8.11](https://github.com/rapid7/nexpose-client/tree/v0.8.11) (2014-11-04)
|
670
|
+
|
579
671
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v0.8.10...v0.8.11)
|
580
672
|
|
581
673
|
**Merged pull requests:**
|
@@ -584,6 +676,7 @@
|
|
584
676
|
- Use bundler for gem tasks [\#86](https://github.com/rapid7/nexpose-client/pull/86) ([erran](https://github.com/erran))
|
585
677
|
|
586
678
|
## [v0.8.10](https://github.com/rapid7/nexpose-client/tree/v0.8.10) (2014-10-29)
|
679
|
+
|
587
680
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v0.8.9...v0.8.10)
|
588
681
|
|
589
682
|
**Closed issues:**
|
@@ -595,12 +688,15 @@
|
|
595
688
|
- Support mobile dynamic connections [\#85](https://github.com/rapid7/nexpose-client/pull/85) ([rtaylor-r7](https://github.com/rtaylor-r7))
|
596
689
|
|
597
690
|
## [v0.8.9](https://github.com/rapid7/nexpose-client/tree/v0.8.9) (2014-10-20)
|
691
|
+
|
598
692
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v0.8.8...v0.8.9)
|
599
693
|
|
600
694
|
## [v0.8.8](https://github.com/rapid7/nexpose-client/tree/v0.8.8) (2014-10-17)
|
695
|
+
|
601
696
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v0.8.7...v0.8.8)
|
602
697
|
|
603
698
|
## [v0.8.7](https://github.com/rapid7/nexpose-client/tree/v0.8.7) (2014-10-14)
|
699
|
+
|
604
700
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v0.8.6...v0.8.7)
|
605
701
|
|
606
702
|
**Closed issues:**
|
@@ -608,6 +704,7 @@
|
|
608
704
|
- Error When Loading Dynamic Sites [\#83](https://github.com/rapid7/nexpose-client/issues/83)
|
609
705
|
|
610
706
|
## [v0.8.6](https://github.com/rapid7/nexpose-client/tree/v0.8.6) (2014-10-13)
|
707
|
+
|
611
708
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v0.8.5...v0.8.6)
|
612
709
|
|
613
710
|
**Closed issues:**
|
@@ -615,6 +712,7 @@
|
|
615
712
|
- Site.save is not functioning for dynamic sites [\#71](https://github.com/rapid7/nexpose-client/issues/71)
|
616
713
|
|
617
714
|
## [v0.8.5](https://github.com/rapid7/nexpose-client/tree/v0.8.5) (2014-10-09)
|
715
|
+
|
618
716
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v0.8.1...v0.8.5)
|
619
717
|
|
620
718
|
**Closed issues:**
|
@@ -631,6 +729,7 @@
|
|
631
729
|
- Add support for new Description tag in site and group configs [\#70](https://github.com/rapid7/nexpose-client/pull/70) ([gschneider-r7](https://github.com/gschneider-r7))
|
632
730
|
|
633
731
|
## [v0.8.1](https://github.com/rapid7/nexpose-client/tree/v0.8.1) (2014-07-03)
|
732
|
+
|
634
733
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v0.8.0...v0.8.1)
|
635
734
|
|
636
735
|
**Merged pull requests:**
|
@@ -639,6 +738,7 @@
|
|
639
738
|
- SNMP v3 credential support [\#67](https://github.com/rapid7/nexpose-client/pull/67) ([kprzerwa-r7](https://github.com/kprzerwa-r7))
|
640
739
|
|
641
740
|
## [v0.8.0](https://github.com/rapid7/nexpose-client/tree/v0.8.0) (2014-06-13)
|
741
|
+
|
642
742
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v0.7.6...v0.8.0)
|
643
743
|
|
644
744
|
**Merged pull requests:**
|
@@ -646,14 +746,15 @@
|
|
646
746
|
- An incorrect type when parsing JSON in the Asset class for initialization [\#66](https://github.com/rapid7/nexpose-client/pull/66) ([DevinCarr](https://github.com/DevinCarr))
|
647
747
|
|
648
748
|
## [v0.7.6](https://github.com/rapid7/nexpose-client/tree/v0.7.6) (2014-06-06)
|
749
|
+
|
649
750
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v0.7.5...v0.7.6)
|
650
751
|
|
651
752
|
**Merged pull requests:**
|
652
753
|
|
653
754
|
- Add methods to scan\_template.rb to enable port exclusion. [\#65](https://github.com/rapid7/nexpose-client/pull/65) ([AdamBunn](https://github.com/AdamBunn))
|
654
|
-
- Validate and raise error for unsupported colors [\#64](https://github.com/rapid7/nexpose-client/pull/64) ([erran](https://github.com/erran))
|
655
755
|
|
656
756
|
## [v0.7.5](https://github.com/rapid7/nexpose-client/tree/v0.7.5) (2014-05-23)
|
757
|
+
|
657
758
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v0.7.4...v0.7.5)
|
658
759
|
|
659
760
|
**Merged pull requests:**
|
@@ -661,6 +762,7 @@
|
|
661
762
|
- Add tag filter to doc [\#63](https://github.com/rapid7/nexpose-client/pull/63) ([zachrab](https://github.com/zachrab))
|
662
763
|
|
663
764
|
## [v0.7.4](https://github.com/rapid7/nexpose-client/tree/v0.7.4) (2014-05-07)
|
765
|
+
|
664
766
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v0.7.3...v0.7.4)
|
665
767
|
|
666
768
|
**Merged pull requests:**
|
@@ -668,6 +770,7 @@
|
|
668
770
|
- Fixed escaping in Roles [\#62](https://github.com/rapid7/nexpose-client/pull/62) ([asalazar-r7](https://github.com/asalazar-r7))
|
669
771
|
|
670
772
|
## [v0.7.3](https://github.com/rapid7/nexpose-client/tree/v0.7.3) (2014-04-30)
|
773
|
+
|
671
774
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v0.7.2...v0.7.3)
|
672
775
|
|
673
776
|
**Merged pull requests:**
|
@@ -675,6 +778,7 @@
|
|
675
778
|
- Fix updates on Roles. [\#61](https://github.com/rapid7/nexpose-client/pull/61) ([kkohli-r7](https://github.com/kkohli-r7))
|
676
779
|
|
677
780
|
## [v0.7.2](https://github.com/rapid7/nexpose-client/tree/v0.7.2) (2014-04-29)
|
781
|
+
|
678
782
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v0.7.1...v0.7.2)
|
679
783
|
|
680
784
|
**Closed issues:**
|
@@ -683,13 +787,14 @@
|
|
683
787
|
|
684
788
|
**Merged pull requests:**
|
685
789
|
|
686
|
-
- Set role.id to -1 by default on initialization [\#60](https://github.com/rapid7/nexpose-client/pull/60) ([erran](https://github.com/erran))
|
687
790
|
- Add controls-insight-only as a valid role [\#58](https://github.com/rapid7/nexpose-client/pull/58) ([erran](https://github.com/erran))
|
688
791
|
|
689
792
|
## [v0.7.1](https://github.com/rapid7/nexpose-client/tree/v0.7.1) (2014-04-10)
|
793
|
+
|
690
794
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v0.7.0...v0.7.1)
|
691
795
|
|
692
796
|
## [v0.7.0](https://github.com/rapid7/nexpose-client/tree/v0.7.0) (2014-03-26)
|
797
|
+
|
693
798
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v0.6.5...v0.7.0)
|
694
799
|
|
695
800
|
**Closed issues:**
|
@@ -701,12 +806,16 @@
|
|
701
806
|
|
702
807
|
**Merged pull requests:**
|
703
808
|
|
809
|
+
- Validate and raise error for unsupported colors [\#64](https://github.com/rapid7/nexpose-client/pull/64) ([erran](https://github.com/erran))
|
810
|
+
- Set role.id to -1 by default on initialization [\#60](https://github.com/rapid7/nexpose-client/pull/60) ([erran](https://github.com/erran))
|
704
811
|
- Changes for criticality tags and associated assets [\#56](https://github.com/rapid7/nexpose-client/pull/56) ([zachrab](https://github.com/zachrab))
|
705
812
|
- Ivan - Support for tags [\#55](https://github.com/rapid7/nexpose-client/pull/55) ([kkohli-r7](https://github.com/kkohli-r7))
|
706
813
|
- Minor licensing and naming updates [\#54](https://github.com/rapid7/nexpose-client/pull/54) ([todb-r7](https://github.com/todb-r7))
|
707
814
|
- Updating Silo functionality in the Gem [\#52](https://github.com/rapid7/nexpose-client/pull/52) ([asalazar-r7](https://github.com/asalazar-r7))
|
815
|
+
- Fix for dynamic asset group creation [\#51](https://github.com/rapid7/nexpose-client/pull/51) ([zachrab](https://github.com/zachrab))
|
708
816
|
|
709
817
|
## [v0.6.5](https://github.com/rapid7/nexpose-client/tree/v0.6.5) (2014-03-11)
|
818
|
+
|
710
819
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v0.6.4...v0.6.5)
|
711
820
|
|
712
821
|
**Closed issues:**
|
@@ -714,13 +823,11 @@
|
|
714
823
|
- Site class missing organization attributes [\#53](https://github.com/rapid7/nexpose-client/issues/53)
|
715
824
|
|
716
825
|
## [v0.6.4](https://github.com/rapid7/nexpose-client/tree/v0.6.4) (2014-03-10)
|
717
|
-
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v0.6.3...v0.6.4)
|
718
826
|
|
719
|
-
|
720
|
-
|
721
|
-
- Fix for dynamic asset group creation [\#51](https://github.com/rapid7/nexpose-client/pull/51) ([zachrab](https://github.com/zachrab))
|
827
|
+
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v0.6.3...v0.6.4)
|
722
828
|
|
723
829
|
## [v0.6.3](https://github.com/rapid7/nexpose-client/tree/v0.6.3) (2014-02-25)
|
830
|
+
|
724
831
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v0.6.2...v0.6.3)
|
725
832
|
|
726
833
|
**Closed issues:**
|
@@ -730,6 +837,7 @@
|
|
730
837
|
- Nexpose::ReportConfig.build incorrectly adds frequency when generate\_now is true [\#43](https://github.com/rapid7/nexpose-client/issues/43)
|
731
838
|
|
732
839
|
## [v0.6.2](https://github.com/rapid7/nexpose-client/tree/v0.6.2) (2014-01-30)
|
840
|
+
|
733
841
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v0.6.1...v0.6.2)
|
734
842
|
|
735
843
|
**Closed issues:**
|
@@ -740,9 +848,11 @@
|
|
740
848
|
- After a successful authentication, session\_id is nil since gem version 0.1.3 [\#45](https://github.com/rapid7/nexpose-client/issues/45)
|
741
849
|
|
742
850
|
## [v0.6.1](https://github.com/rapid7/nexpose-client/tree/v0.6.1) (2014-01-09)
|
851
|
+
|
743
852
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v0.6.0...v0.6.1)
|
744
853
|
|
745
854
|
## [v0.6.0](https://github.com/rapid7/nexpose-client/tree/v0.6.0) (2013-12-18)
|
855
|
+
|
746
856
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v0.5.6...v0.6.0)
|
747
857
|
|
748
858
|
**Merged pull requests:**
|
@@ -750,9 +860,11 @@
|
|
750
860
|
- Added equality comparison to report filters and modified single quote XM... [\#42](https://github.com/rapid7/nexpose-client/pull/42) ([zeroorone13](https://github.com/zeroorone13))
|
751
861
|
|
752
862
|
## [v0.5.6](https://github.com/rapid7/nexpose-client/tree/v0.5.6) (2013-11-21)
|
863
|
+
|
753
864
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v0.5.5...v0.5.6)
|
754
865
|
|
755
866
|
## [v0.5.5](https://github.com/rapid7/nexpose-client/tree/v0.5.5) (2013-11-08)
|
867
|
+
|
756
868
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v0.5.4...v0.5.5)
|
757
869
|
|
758
870
|
**Closed issues:**
|
@@ -764,9 +876,11 @@
|
|
764
876
|
- Fixed call to delete\_device \(method name changed\) [\#41](https://github.com/rapid7/nexpose-client/pull/41) ([pdogg](https://github.com/pdogg))
|
765
877
|
|
766
878
|
## [v0.5.4](https://github.com/rapid7/nexpose-client/tree/v0.5.4) (2013-09-27)
|
879
|
+
|
767
880
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v0.5.3...v0.5.4)
|
768
881
|
|
769
882
|
## [v0.5.3](https://github.com/rapid7/nexpose-client/tree/v0.5.3) (2013-09-27)
|
883
|
+
|
770
884
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v0.5.2...v0.5.3)
|
771
885
|
|
772
886
|
**Closed issues:**
|
@@ -774,6 +888,7 @@
|
|
774
888
|
- Move NexpoesAPI into a new Nexpose::API module [\#39](https://github.com/rapid7/nexpose-client/issues/39)
|
775
889
|
|
776
890
|
## [v0.5.2](https://github.com/rapid7/nexpose-client/tree/v0.5.2) (2013-09-17)
|
891
|
+
|
777
892
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v0.5.1...v0.5.2)
|
778
893
|
|
779
894
|
**Closed issues:**
|
@@ -784,6 +899,7 @@
|
|
784
899
|
- Nexpose::ReportAdHoc strange behavior with different formats [\#4](https://github.com/rapid7/nexpose-client/issues/4)
|
785
900
|
|
786
901
|
## [v0.5.1](https://github.com/rapid7/nexpose-client/tree/v0.5.1) (2013-09-15)
|
902
|
+
|
787
903
|
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/v0.5.0...v0.5.1)
|
788
904
|
|
789
905
|
**Merged pull requests:**
|
@@ -791,6 +907,9 @@
|
|
791
907
|
- Allow for Nexpose::Connection.new to consume URI objects [\#38](https://github.com/rapid7/nexpose-client/pull/38) ([erran](https://github.com/erran))
|
792
908
|
|
793
909
|
## [v0.5.0](https://github.com/rapid7/nexpose-client/tree/v0.5.0) (2013-09-01)
|
910
|
+
|
911
|
+
[Full Changelog](https://github.com/rapid7/nexpose-client/compare/47947da8766ff8388850d7ce458898388773c433...v0.5.0)
|
912
|
+
|
794
913
|
**Closed issues:**
|
795
914
|
|
796
915
|
- ReportTemplate delete does not work [\#36](https://github.com/rapid7/nexpose-client/issues/36)
|
@@ -820,4 +939,4 @@
|
|
820
939
|
|
821
940
|
|
822
941
|
|
823
|
-
\* *This
|
942
|
+
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
|