nmap-parser 0.3.2 → 0.3.5
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.
- data/BUGS +3 -2
- data/ChangeLog.rdoc +249 -0
- data/LICENSE +1 -1
- data/README +23 -19
- data/TODO +4 -0
- data/examples/listopentcp.rb +3 -3
- data/examples/services.rb +17 -18
- data/lib/nmap/parser.rb +948 -581
- metadata +23 -15
metadata
CHANGED
@@ -1,7 +1,12 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nmap-parser
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 0
|
7
|
+
- 3
|
8
|
+
- 5
|
9
|
+
version: 0.3.5
|
5
10
|
platform: ruby
|
6
11
|
authors:
|
7
12
|
- Kris Katterjohn
|
@@ -9,53 +14,56 @@ autorequire:
|
|
9
14
|
bindir: bin
|
10
15
|
cert_chain: []
|
11
16
|
|
12
|
-
date:
|
17
|
+
date: 2010-06-01 00:00:00 -05:00
|
13
18
|
default_executable:
|
14
19
|
dependencies: []
|
15
20
|
|
16
|
-
description: Nmap::Parser
|
21
|
+
description: Nmap::Parser
|
17
22
|
email: katterjohn@gmail.com
|
18
23
|
executables: []
|
19
24
|
|
20
25
|
extensions: []
|
21
26
|
|
22
|
-
extra_rdoc_files:
|
23
|
-
|
27
|
+
extra_rdoc_files:
|
28
|
+
- ChangeLog.rdoc
|
24
29
|
files:
|
25
30
|
- BUGS
|
31
|
+
- ChangeLog.rdoc
|
26
32
|
- LICENSE
|
27
33
|
- README
|
34
|
+
- TODO
|
28
35
|
- lib/nmap/parser.rb
|
29
36
|
- examples/listopentcp.rb
|
30
37
|
- examples/services.rb
|
31
38
|
has_rdoc: true
|
32
39
|
homepage: http://rubynmap.sourceforge.net
|
40
|
+
licenses: []
|
41
|
+
|
33
42
|
post_install_message:
|
34
|
-
rdoc_options:
|
35
|
-
|
36
|
-
- Ruby Nmap::Parser Library
|
37
|
-
- --main
|
38
|
-
- Nmap::Parser
|
43
|
+
rdoc_options: []
|
44
|
+
|
39
45
|
require_paths:
|
40
46
|
- lib
|
41
47
|
required_ruby_version: !ruby/object:Gem::Requirement
|
42
48
|
requirements:
|
43
49
|
- - ">="
|
44
50
|
- !ruby/object:Gem::Version
|
51
|
+
segments:
|
52
|
+
- 0
|
45
53
|
version: "0"
|
46
|
-
version:
|
47
54
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
48
55
|
requirements:
|
49
56
|
- - ">="
|
50
57
|
- !ruby/object:Gem::Version
|
58
|
+
segments:
|
59
|
+
- 0
|
51
60
|
version: "0"
|
52
|
-
version:
|
53
61
|
requirements: []
|
54
62
|
|
55
63
|
rubyforge_project: rubynmap
|
56
|
-
rubygems_version: 1.
|
64
|
+
rubygems_version: 1.3.6
|
57
65
|
signing_key:
|
58
|
-
specification_version:
|
59
|
-
summary: Ruby
|
66
|
+
specification_version: 3
|
67
|
+
summary: This library provides a Ruby interface to the Nmap Security Scanner and its XML formatted scan data. It can run Nmap and parse its XML output directly from the scan, parse a file or string of XML scan data, or parse XML scan data from an object via its read() method. This information is presented in an easy-to-use and intuitive fashion for further storage and manipulation.
|
60
68
|
test_files: []
|
61
69
|
|