ronin-nmap 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4aaba0923ea4e773c104616b0e7bcbdaa8b73f298e1d0d96b9ce0a76531a387a
4
- data.tar.gz: 62a5c3ca55c06c0ce22c0cd93f7e0a6cc8cc46c6b8ebe7752201066699a66e3e
3
+ metadata.gz: 7b759284c47b002205a2a322e506d6adefedbd8b5ac55f076a4e5556c23fa405
4
+ data.tar.gz: 3481ef2eab07dea4b2f44121fbde7fae3a153a24af6e4104b478f6a08da31666
5
5
  SHA512:
6
- metadata.gz: a8240b4f6456c83aff2adea4e133d14f2b2381b7cecb5e5a17db3643fcb2f952cb0be959e7830af822896cb0c097671b4b1a7ded35ebe8c362cb2e148200b0d6
7
- data.tar.gz: 38fff6cf2afd7fa2cca204059cbb6b91907811b979f7ff9dc12df8d34348c98c63789176b9e655e29d9f2359338f08f751d8520dcead854bf2b6359277a8ae42
6
+ metadata.gz: 5fb866ad3132e1fa27d94d56ab622250c77323192587d93b3871c3531a319c2ec5e7f3fd8a9d7f51486c51fcac37dc078e6284bb4837c0fb2c1249a2d09fda0a
7
+ data.tar.gz: cfe08033e85580e8c762c141bcb11eb0265636564ecd69894d0586d14a71739bf1f6a4453f07226632d292216f0ec3ac5876584bb1008b4707b0ed77aa74016c
@@ -13,6 +13,7 @@ jobs:
13
13
  - '3.1'
14
14
  - '3.2'
15
15
  - '3.3'
16
+ - '3.4'
16
17
  - jruby
17
18
  - truffleruby
18
19
  name: Ruby ${{ matrix.ruby }}
data/ChangeLog.md CHANGED
@@ -1,3 +1,8 @@
1
+ ### 0.1.1 / 2025-02-14
2
+
3
+ * Added the `csv` gem as a dependency for Bundler and Ruby 3.4.0.
4
+ * Use `require_relative` to improve load times.
5
+
1
6
  ### 0.1.0 / 2024-07-22
2
7
 
3
8
  * Initial release:
data/README.md CHANGED
@@ -216,7 +216,7 @@ gem.add_dependency 'ronin-nmap', '~> 0.1'
216
216
 
217
217
  ## License
218
218
 
219
- Copyright (c) 2023-2024 Hal Brodigan (postmodern.mod3@gmail.com)
219
+ Copyright (c) 2023-2025 Hal Brodigan (postmodern.mod3@gmail.com)
220
220
 
221
221
  ronin-nmap is free software: you can redistribute it and/or modify
222
222
  it under the terms of the GNU Lesser General Public License as published
@@ -28,10 +28,18 @@ _ronin-nmap_completions() {
28
28
  local compline="${compwords[*]}"
29
29
 
30
30
  case "$compline" in
31
+ 'import'*'--db-file')
32
+ while read -r; do COMPREPLY+=("$REPLY"); done < <(compgen -A file -A directory -- "$cur")
33
+ ;;
34
+
31
35
  'new'*'--xml-file')
32
36
  while read -r; do COMPREPLY+=("$REPLY"); done < <(compgen -A file -- "$cur")
33
37
  ;;
34
38
 
39
+ 'scan'*'--db-file')
40
+ while read -r; do COMPREPLY+=("$REPLY"); done < <(compgen -A file -A directory -- "$cur")
41
+ ;;
42
+
35
43
  'scan'*'--output')
36
44
  while read -r; do COMPREPLY+=("$REPLY"); done < <(compgen -A file -- "$cur")
37
45
  ;;
@@ -65,7 +73,7 @@ _ronin-nmap_completions() {
65
73
  ;;
66
74
 
67
75
  'new'*)
68
- while read -r; do COMPREPLY+=("$REPLY"); done < <(compgen -W "$(_ronin-nmap_completions_filter "--parser --scanner --printing --import --xml-file --syn-scan --ports -p --target")" -- "$cur")
76
+ while read -r; do COMPREPLY+=("$REPLY"); done < <(compgen -A file -A directory -W "$(_ronin-nmap_completions_filter "--parser --scanner --printing --import --xml-file --syn-scan --ports -p --target")" -- "$cur")
69
77
  ;;
70
78
 
71
79
  *)
data/gemspec.yml CHANGED
@@ -5,7 +5,7 @@ description: |
5
5
  parse nmap XML, convert nmap XML into JSON or CSV, or import nmap XML into the
6
6
  ronin-db database.
7
7
 
8
- license: LGPL-3.0
8
+ license: LGPL-3.0-or-later
9
9
  authors: Postmodern
10
10
  email: postmodern.mod3@gmail.com
11
11
  homepage: https://ronin-rb.dev/
@@ -33,6 +33,7 @@ generated_files:
33
33
  required_ruby_version: ">= 3.0.0"
34
34
 
35
35
  dependencies:
36
+ csv: ~> 3.0
36
37
  ruby-nmap: ~> 1.0
37
38
  # Ronin dependencies:
38
39
  ronin-core: ~> 0.2
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-nmap - A Ruby library for automating nmap and importing nmap scans.
4
4
  #
5
- # Copyright (c) 2023-2024 Hal Brodigan (postmodern.mod3@gmail.com)
5
+ # Copyright (c) 2023-2025 Hal Brodigan (postmodern.mod3@gmail.com)
6
6
  #
7
7
  # ronin-nmap is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU Lesser General Public License as published
@@ -18,7 +18,7 @@
18
18
  # along with ronin-nmap. If not, see <https://www.gnu.org/licenses/>.
19
19
  #
20
20
 
21
- require 'ronin/nmap/root'
21
+ require_relative '../root'
22
22
 
23
23
  require 'ronin/core/cli/command'
24
24
 
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-nmap - A Ruby library for automating nmap and importing nmap scans.
4
4
  #
5
- # Copyright (c) 2023-2024 Hal Brodigan (postmodern.mod3@gmail.com)
5
+ # Copyright (c) 2023-2025 Hal Brodigan (postmodern.mod3@gmail.com)
6
6
  #
7
7
  # ronin-nmap is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU Lesser General Public License as published
@@ -18,9 +18,10 @@
18
18
  # along with ronin-nmap. If not, see <https://www.gnu.org/licenses/>.
19
19
  #
20
20
 
21
- require 'ronin/nmap/root'
22
21
  require 'ronin/core/cli/completion_command'
23
22
 
23
+ require_relative '../../root'
24
+
24
25
  module Ronin
25
26
  module Nmap
26
27
  class CLI
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-nmap - A Ruby library for automating nmap and importing nmap scans.
4
4
  #
5
- # Copyright (c) 2023-2024 Hal Brodigan (postmodern.mod3@gmail.com)
5
+ # Copyright (c) 2023-2025 Hal Brodigan (postmodern.mod3@gmail.com)
6
6
  #
7
7
  # ronin-nmap is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU Lesser General Public License as published
@@ -18,8 +18,8 @@
18
18
  # along with ronin-nmap. If not, see <https://www.gnu.org/licenses/>.
19
19
  #
20
20
 
21
- require 'ronin/nmap/cli/command'
22
- require 'ronin/nmap/converter'
21
+ require_relative '../command'
22
+ require_relative '../../converter'
23
23
 
24
24
  module Ronin
25
25
  module Nmap
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-nmap - A Ruby library for automating nmap and importing nmap scans.
4
4
  #
5
- # Copyright (c) 2023-2024 Hal Brodigan (postmodern.mod3@gmail.com)
5
+ # Copyright (c) 2023-2025 Hal Brodigan (postmodern.mod3@gmail.com)
6
6
  #
7
7
  # ronin-nmap is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU Lesser General Public License as published
@@ -18,10 +18,10 @@
18
18
  # along with ronin-nmap. If not, see <https://www.gnu.org/licenses/>.
19
19
  #
20
20
 
21
- require 'ronin/nmap/cli/command'
22
- require 'ronin/nmap/cli/filtering_options'
23
- require 'nmap/xml'
21
+ require_relative '../command'
22
+ require_relative '../filtering_options'
24
23
 
24
+ require 'nmap/xml'
25
25
  require 'set'
26
26
 
27
27
  module Ronin
@@ -18,7 +18,7 @@
18
18
  # along with ronin-nmap. If not, see <https://www.gnu.org/licenses/>.
19
19
  #
20
20
 
21
- require 'ronin/nmap/cli/command'
21
+ require_relative '../command'
22
22
 
23
23
  require 'command_kit/colors'
24
24
  require 'command_kit/printing/indent'
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-nmap - A Ruby library for automating nmap and importing nmap scans.
4
4
  #
5
- # Copyright (c) 2023-2024 Hal Brodigan (postmodern.mod3@gmail.com)
5
+ # Copyright (c) 2023-2025 Hal Brodigan (postmodern.mod3@gmail.com)
6
6
  #
7
7
  # ronin-nmap is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU Lesser General Public License as published
@@ -18,9 +18,9 @@
18
18
  # along with ronin-nmap. If not, see <https://www.gnu.org/licenses/>.
19
19
  #
20
20
 
21
- require 'ronin/nmap/cli/command'
22
- require 'ronin/nmap/cli/importable'
23
- require 'ronin/nmap/importer'
21
+ require_relative '../command'
22
+ require_relative '../importable'
23
+ require_relative '../../importer'
24
24
 
25
25
  module Ronin
26
26
  module Nmap
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-nmap - A Ruby library for automating nmap and importing nmap scans.
4
4
  #
5
- # Copyright (c) 2023-2024 Hal Brodigan (postmodern.mod3@gmail.com)
5
+ # Copyright (c) 2023-2025 Hal Brodigan (postmodern.mod3@gmail.com)
6
6
  #
7
7
  # ronin-nmap is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU Lesser General Public License as published
@@ -18,8 +18,8 @@
18
18
  # along with ronin-nmap. If not, see <https://www.gnu.org/licenses/>.
19
19
  #
20
20
 
21
- require 'ronin/nmap/cli/command'
22
- require 'ronin/nmap/root'
21
+ require_relative '../command'
22
+ require_relative '../../root'
23
23
 
24
24
  require 'ronin/core/cli/generator'
25
25
 
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-nmap - A Ruby library for automating nmap and importing nmap scans.
4
4
  #
5
- # Copyright (c) 2023-2024 Hal Brodigan (postmodern.mod3@gmail.com)
5
+ # Copyright (c) 2023-2025 Hal Brodigan (postmodern.mod3@gmail.com)
6
6
  #
7
7
  # ronin-nmap is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU Lesser General Public License as published
@@ -18,8 +18,9 @@
18
18
  # along with ronin-nmap. If not, see <https://www.gnu.org/licenses/>.
19
19
  #
20
20
 
21
- require 'ronin/nmap/cli/command'
22
- require 'ronin/nmap/cli/filtering_options'
21
+ require_relative '../command'
22
+ require_relative '../filtering_options'
23
+
23
24
  require 'nmap/xml'
24
25
 
25
26
  module Ronin
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-nmap - A Ruby library for automating nmap and importing nmap scans.
4
4
  #
5
- # Copyright (c) 2023-2024 Hal Brodigan (postmodern.mod3@gmail.com)
5
+ # Copyright (c) 2023-2025 Hal Brodigan (postmodern.mod3@gmail.com)
6
6
  #
7
7
  # ronin-nmap is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU Lesser General Public License as published
@@ -18,11 +18,11 @@
18
18
  # along with ronin-nmap. If not, see <https://www.gnu.org/licenses/>.
19
19
  #
20
20
 
21
- require 'ronin/nmap/cli/command'
22
- require 'ronin/nmap/cli/importable'
23
- require 'ronin/nmap/converter'
24
- require 'ronin/core/cli/logging'
21
+ require_relative '../command'
22
+ require_relative '../importable'
23
+ require_relative '../../converter'
25
24
 
25
+ require 'ronin/core/cli/logging'
26
26
  require 'tempfile'
27
27
  require 'set'
28
28
 
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-nmap - A Ruby library for automating nmap and importing nmap scans.
4
4
  #
5
- # Copyright (c) 2023-2024 Hal Brodigan (postmodern.mod3@gmail.com)
5
+ # Copyright (c) 2023-2025 Hal Brodigan (postmodern.mod3@gmail.com)
6
6
  #
7
7
  # ronin-nmap is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU Lesser General Public License as published
@@ -18,7 +18,7 @@
18
18
  # along with ronin-nmap. If not, see <https://www.gnu.org/licenses/>.
19
19
  #
20
20
 
21
- require 'ronin/nmap/cli/port_list'
21
+ require_relative 'port_list'
22
22
 
23
23
  module Ronin
24
24
  module Nmap
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-nmap - A Ruby library for automating nmap and importing nmap scans.
4
4
  #
5
- # Copyright (c) 2023-2024 Hal Brodigan (postmodern.mod3@gmail.com)
5
+ # Copyright (c) 2023-2025 Hal Brodigan (postmodern.mod3@gmail.com)
6
6
  #
7
7
  # ronin-nmap is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU Lesser General Public License as published
@@ -18,7 +18,8 @@
18
18
  # along with ronin-nmap. If not, see <https://www.gnu.org/licenses/>.
19
19
  #
20
20
 
21
- require 'ronin/nmap/importer'
21
+ require_relative '../importer'
22
+
22
23
  require 'ronin/db/cli/database_options'
23
24
  require 'ronin/db/cli/printing'
24
25
  require 'ronin/core/cli/logging'
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-nmap - A Ruby library for automating nmap and importing nmap scans.
4
4
  #
5
- # Copyright (c) 2023-2024 Hal Brodigan (postmodern.mod3@gmail.com)
5
+ # Copyright (c) 2023-2025 Hal Brodigan (postmodern.mod3@gmail.com)
6
6
  #
7
7
  # ronin-nmap is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU Lesser General Public License as published
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-nmap - A Ruby library for automating nmap and importing nmap scans.
4
4
  #
5
- # Copyright (c) 2023-2024 Hal Brodigan (postmodern.mod3@gmail.com)
5
+ # Copyright (c) 2023-2025 Hal Brodigan (postmodern.mod3@gmail.com)
6
6
  #
7
7
  # ronin-nmap is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU Lesser General Public License as published
@@ -18,13 +18,14 @@
18
18
  # along with ronin-nmap. If not, see <https://www.gnu.org/licenses/>.
19
19
  #
20
20
 
21
- require 'ronin/nmap/version'
22
21
  require 'ronin/core/cli/help/banner'
23
22
 
24
23
  require 'command_kit/commands'
25
24
  require 'command_kit/commands/auto_load'
26
25
  require 'command_kit/options/version'
27
26
 
27
+ require_relative 'version'
28
+
28
29
  module Ronin
29
30
  module Nmap
30
31
  #
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-nmap - A Ruby library for automating nmap and importing nmap scans.
4
4
  #
5
- # Copyright (c) 2023-2024 Hal Brodigan (postmodern.mod3@gmail.com)
5
+ # Copyright (c) 2023-2025 Hal Brodigan (postmodern.mod3@gmail.com)
6
6
  #
7
7
  # ronin-nmap is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU Lesser General Public License as published
@@ -18,7 +18,7 @@
18
18
  # along with ronin-nmap. If not, see <https://www.gnu.org/licenses/>.
19
19
  #
20
20
 
21
- require 'ronin/nmap/converters'
21
+ require_relative 'converters'
22
22
 
23
23
  require 'nmap/xml'
24
24
 
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-nmap - A Ruby library for automating nmap and importing nmap scans.
4
4
  #
5
- # Copyright (c) 2023-2024 Hal Brodigan (postmodern.mod3@gmail.com)
5
+ # Copyright (c) 2023-2025 Hal Brodigan (postmodern.mod3@gmail.com)
6
6
  #
7
7
  # ronin-nmap is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU Lesser General Public License as published
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-nmap - A Ruby library for automating nmap and importing nmap scans.
4
4
  #
5
- # Copyright (c) 2023-2024 Hal Brodigan (postmodern.mod3@gmail.com)
5
+ # Copyright (c) 2023-2025 Hal Brodigan (postmodern.mod3@gmail.com)
6
6
  #
7
7
  # ronin-nmap is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU Lesser General Public License as published
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-nmap - A Ruby library for automating nmap and importing nmap scans.
4
4
  #
5
- # Copyright (c) 2023-2024 Hal Brodigan (postmodern.mod3@gmail.com)
5
+ # Copyright (c) 2023-2025 Hal Brodigan (postmodern.mod3@gmail.com)
6
6
  #
7
7
  # ronin-nmap is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU Lesser General Public License as published
@@ -18,8 +18,8 @@
18
18
  # along with ronin-nmap. If not, see <https://www.gnu.org/licenses/>.
19
19
  #
20
20
 
21
- require 'ronin/nmap/converters/json'
22
- require 'ronin/nmap/converters/csv'
21
+ require_relative 'converters/json'
22
+ require_relative 'converters/csv'
23
23
 
24
24
  module Ronin
25
25
  module Nmap
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-nmap - A Ruby library for automating nmap and importing nmap scans.
4
4
  #
5
- # Copyright (c) 2023-2024 Hal Brodigan (postmodern.mod3@gmail.com)
5
+ # Copyright (c) 2023-2025 Hal Brodigan (postmodern.mod3@gmail.com)
6
6
  #
7
7
  # ronin-nmap is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU Lesser General Public License as published
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-nmap - A Ruby library for automating nmap and importing nmap scans.
4
4
  #
5
- # Copyright (c) 2023-2024 Hal Brodigan (postmodern.mod3@gmail.com)
5
+ # Copyright (c) 2023-2025 Hal Brodigan (postmodern.mod3@gmail.com)
6
6
  #
7
7
  # ronin-nmap is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU Lesser General Public License as published
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-nmap - A Ruby library for automating nmap and importing nmap scans.
4
4
  #
5
- # Copyright (c) 2023-2024 Hal Brodigan (postmodern.mod3@gmail.com)
5
+ # Copyright (c) 2023-2025 Hal Brodigan (postmodern.mod3@gmail.com)
6
6
  #
7
7
  # ronin-nmap is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU Lesser General Public License as published
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-nmap - A Ruby library for automating nmap and importing nmap scans.
4
4
  #
5
- # Copyright (c) 2023-2024 Hal Brodigan (postmodern.mod3@gmail.com)
5
+ # Copyright (c) 2023-2025 Hal Brodigan (postmodern.mod3@gmail.com)
6
6
  #
7
7
  # ronin-nmap is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU Lesser General Public License as published
@@ -21,6 +21,6 @@
21
21
  module Ronin
22
22
  module Nmap
23
23
  # ronin-nmap version
24
- VERSION = '0.1.0'
24
+ VERSION = '0.1.1'
25
25
  end
26
26
  end
data/lib/ronin/nmap.rb CHANGED
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-nmap - A Ruby library for automating nmap and importing nmap scans.
4
4
  #
5
- # Copyright (c) 2023-2024 Hal Brodigan (postmodern.mod3@gmail.com)
5
+ # Copyright (c) 2023-2025 Hal Brodigan (postmodern.mod3@gmail.com)
6
6
  #
7
7
  # ronin-nmap is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU Lesser General Public License as published
@@ -18,8 +18,9 @@
18
18
  # along with ronin-nmap. If not, see <https://www.gnu.org/licenses/>.
19
19
  #
20
20
 
21
- require 'ronin/nmap/exceptions'
22
- require 'ronin/nmap/importer'
21
+ require_relative 'nmap/exceptions'
22
+ require_relative 'nmap/importer'
23
+
23
24
  require 'ronin/core/home'
24
25
  require 'nmap/command'
25
26
  require 'nmap/xml'
metadata CHANGED
@@ -1,15 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ronin-nmap
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Postmodern
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-07-22 00:00:00.000000000 Z
11
+ date: 2025-02-15 00:00:00.000000000 Z
12
12
  dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: csv
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.0'
13
27
  - !ruby/object:Gem::Dependency
14
28
  name: ruby-nmap
15
29
  requirement: !ruby/object:Gem::Requirement
@@ -139,7 +153,7 @@ files:
139
153
  - scripts/setup
140
154
  homepage: https://ronin-rb.dev/
141
155
  licenses:
142
- - LGPL-3.0
156
+ - LGPL-3.0-or-later
143
157
  metadata:
144
158
  documentation_uri: https://ronin-rb.dev/docs/ronin-nmap
145
159
  source_code_uri: https://github.com/ronin-rb/ronin-nmap
@@ -161,7 +175,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
161
175
  - !ruby/object:Gem::Version
162
176
  version: '0'
163
177
  requirements: []
164
- rubygems_version: 3.5.11
178
+ rubygems_version: 3.5.22
165
179
  signing_key:
166
180
  specification_version: 4
167
181
  summary: A Ruby library and CLI for working with nmap.