nexpose 0.0.9 → 0.0.91
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/nexpose.rb +13 -3236
- data/lib/nexpose/api_request.rb +144 -0
- data/lib/nexpose/connection.rb +106 -0
- data/lib/nexpose/creds.rb +189 -0
- data/lib/nexpose/error.rb +21 -0
- data/lib/nexpose/misc.rb +122 -0
- data/lib/nexpose/report.rb +570 -0
- data/lib/nexpose/scan.rb +280 -0
- data/lib/nexpose/scan_engine.rb +147 -0
- data/lib/nexpose/silo.rb +347 -0
- data/lib/nexpose/site.rb +877 -0
- data/lib/nexpose/ticket.rb +108 -0
- data/lib/nexpose/util.rb +35 -0
- data/lib/nexpose/vuln.rb +520 -0
- data/nexpose.gemspec +3 -3
- metadata +22 -11
data/nexpose.gemspec
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
|
3
3
|
APP_NAME = "nexpose"
|
4
|
-
VERSION = "0.0.
|
4
|
+
VERSION = "0.0.91"
|
5
5
|
REVISION = "12878"
|
6
6
|
|
7
7
|
Gem::Specification.new do |s|
|
8
8
|
s.name = APP_NAME
|
9
9
|
s.version = VERSION
|
10
10
|
s.homepage = "https://github.com/rapid7/nexpose-client"
|
11
|
-
s.summary = "Ruby API for Rapid7
|
12
|
-
s.description = "This gem provides a Ruby API to the
|
11
|
+
s.summary = "Ruby API for Rapid7 Nexpose"
|
12
|
+
s.description = "This gem provides a Ruby API to the Nexpose vulnerability management product by Rapid7. This version is based on Metasploit SVN revision #{REVISION}"
|
13
13
|
s.license = "BSD"
|
14
14
|
s.authors = ["HD Moore", "Chris Lee"]
|
15
15
|
s.email = ["hdm@metasploit.com", "christopher_lee@rapid7.com"]
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nexpose
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.91
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -10,12 +10,11 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date:
|
14
|
-
default_executable:
|
13
|
+
date: 2012-03-08 00:00:00.000000000Z
|
15
14
|
dependencies:
|
16
15
|
- !ruby/object:Gem::Dependency
|
17
16
|
name: librex
|
18
|
-
requirement: &
|
17
|
+
requirement: &29000580 !ruby/object:Gem::Requirement
|
19
18
|
none: false
|
20
19
|
requirements:
|
21
20
|
- - ! '>='
|
@@ -23,10 +22,10 @@ dependencies:
|
|
23
22
|
version: 0.0.32
|
24
23
|
type: :runtime
|
25
24
|
prerelease: false
|
26
|
-
version_requirements: *
|
25
|
+
version_requirements: *29000580
|
27
26
|
- !ruby/object:Gem::Dependency
|
28
27
|
name: rex
|
29
|
-
requirement: &
|
28
|
+
requirement: &29000304 !ruby/object:Gem::Requirement
|
30
29
|
none: false
|
31
30
|
requirements:
|
32
31
|
- - ! '>='
|
@@ -34,8 +33,8 @@ dependencies:
|
|
34
33
|
version: 1.0.2
|
35
34
|
type: :runtime
|
36
35
|
prerelease: false
|
37
|
-
version_requirements: *
|
38
|
-
description: This gem provides a Ruby API to the
|
36
|
+
version_requirements: *29000304
|
37
|
+
description: This gem provides a Ruby API to the Nexpose vulnerability management
|
39
38
|
product by Rapid7. This version is based on Metasploit SVN revision 12878
|
40
39
|
email:
|
41
40
|
- hdm@metasploit.com
|
@@ -49,8 +48,20 @@ files:
|
|
49
48
|
- Rakefile
|
50
49
|
- README
|
51
50
|
- README.markdown
|
51
|
+
- lib/nexpose/api_request.rb
|
52
|
+
- lib/nexpose/connection.rb
|
53
|
+
- lib/nexpose/creds.rb
|
54
|
+
- lib/nexpose/error.rb
|
55
|
+
- lib/nexpose/misc.rb
|
56
|
+
- lib/nexpose/report.rb
|
57
|
+
- lib/nexpose/scan.rb
|
58
|
+
- lib/nexpose/scan_engine.rb
|
59
|
+
- lib/nexpose/silo.rb
|
60
|
+
- lib/nexpose/site.rb
|
61
|
+
- lib/nexpose/ticket.rb
|
62
|
+
- lib/nexpose/util.rb
|
63
|
+
- lib/nexpose/vuln.rb
|
52
64
|
- lib/nexpose.rb
|
53
|
-
has_rdoc: true
|
54
65
|
homepage: https://github.com/rapid7/nexpose-client
|
55
66
|
licenses:
|
56
67
|
- BSD
|
@@ -72,8 +83,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
72
83
|
version: '0'
|
73
84
|
requirements: []
|
74
85
|
rubyforge_project:
|
75
|
-
rubygems_version: 1.
|
86
|
+
rubygems_version: 1.8.17
|
76
87
|
signing_key:
|
77
88
|
specification_version: 3
|
78
|
-
summary: Ruby API for Rapid7
|
89
|
+
summary: Ruby API for Rapid7 Nexpose
|
79
90
|
test_files: []
|