ronin-recon 0.1.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (119) hide show
  1. checksums.yaml +7 -0
  2. data/.document +4 -0
  3. data/.github/workflows/ruby.yml +46 -0
  4. data/.gitignore +20 -0
  5. data/.rspec +1 -0
  6. data/.rubocop.yml +44 -0
  7. data/.ruby-version +1 -0
  8. data/.yardopts +1 -0
  9. data/COPYING.txt +165 -0
  10. data/ChangeLog.md +36 -0
  11. data/Gemfile +62 -0
  12. data/README.md +391 -0
  13. data/Rakefile +74 -0
  14. data/bin/ronin-recon +16 -0
  15. data/data/completions/ronin-recon +95 -0
  16. data/data/templates/worker.rb.erb +67 -0
  17. data/data/wordlists/raft-small-directories.txt.gz +0 -0
  18. data/data/wordlists/subdomains-1000.txt.gz +0 -0
  19. data/examples/recon.rb +24 -0
  20. data/gemspec.yml +57 -0
  21. data/lib/ronin/recon/builtin/dns/lookup.rb +65 -0
  22. data/lib/ronin/recon/builtin/dns/mailservers.rb +64 -0
  23. data/lib/ronin/recon/builtin/dns/nameservers.rb +61 -0
  24. data/lib/ronin/recon/builtin/dns/reverse_lookup.rb +63 -0
  25. data/lib/ronin/recon/builtin/dns/srv_enum.rb +178 -0
  26. data/lib/ronin/recon/builtin/dns/subdomain_enum.rb +105 -0
  27. data/lib/ronin/recon/builtin/dns/suffix_enum.rb +168 -0
  28. data/lib/ronin/recon/builtin/net/ip_range_enum.rb +65 -0
  29. data/lib/ronin/recon/builtin/net/port_scan.rb +84 -0
  30. data/lib/ronin/recon/builtin/net/service_id.rb +75 -0
  31. data/lib/ronin/recon/builtin/ssl/cert_enum.rb +109 -0
  32. data/lib/ronin/recon/builtin/ssl/cert_grab.rb +76 -0
  33. data/lib/ronin/recon/builtin/ssl/cert_sh.rb +77 -0
  34. data/lib/ronin/recon/builtin/web/dir_enum.rb +121 -0
  35. data/lib/ronin/recon/builtin/web/email_addresses.rb +70 -0
  36. data/lib/ronin/recon/builtin/web/spider.rb +93 -0
  37. data/lib/ronin/recon/builtin.rb +34 -0
  38. data/lib/ronin/recon/cli/command.rb +40 -0
  39. data/lib/ronin/recon/cli/commands/completion.rb +61 -0
  40. data/lib/ronin/recon/cli/commands/irb.rb +57 -0
  41. data/lib/ronin/recon/cli/commands/new.rb +203 -0
  42. data/lib/ronin/recon/cli/commands/run.rb +420 -0
  43. data/lib/ronin/recon/cli/commands/test.rb +99 -0
  44. data/lib/ronin/recon/cli/commands/worker.rb +114 -0
  45. data/lib/ronin/recon/cli/commands/workers.rb +80 -0
  46. data/lib/ronin/recon/cli/debug_option.rb +45 -0
  47. data/lib/ronin/recon/cli/printing.rb +122 -0
  48. data/lib/ronin/recon/cli/ruby_shell.rb +51 -0
  49. data/lib/ronin/recon/cli/worker_command.rb +105 -0
  50. data/lib/ronin/recon/cli.rb +50 -0
  51. data/lib/ronin/recon/config.rb +371 -0
  52. data/lib/ronin/recon/dns_worker.rb +41 -0
  53. data/lib/ronin/recon/engine.rb +639 -0
  54. data/lib/ronin/recon/exceptions.rb +45 -0
  55. data/lib/ronin/recon/graph.rb +127 -0
  56. data/lib/ronin/recon/importer.rb +224 -0
  57. data/lib/ronin/recon/input_file.rb +81 -0
  58. data/lib/ronin/recon/message/job_completed.rb +60 -0
  59. data/lib/ronin/recon/message/job_failed.rb +69 -0
  60. data/lib/ronin/recon/message/job_started.rb +60 -0
  61. data/lib/ronin/recon/message/shutdown.rb +38 -0
  62. data/lib/ronin/recon/message/value.rb +76 -0
  63. data/lib/ronin/recon/message/worker_started.rb +51 -0
  64. data/lib/ronin/recon/message/worker_stopped.rb +51 -0
  65. data/lib/ronin/recon/mixins/dns.rb +639 -0
  66. data/lib/ronin/recon/mixins/http.rb +58 -0
  67. data/lib/ronin/recon/mixins.rb +21 -0
  68. data/lib/ronin/recon/output_formats/dir.rb +94 -0
  69. data/lib/ronin/recon/output_formats/dot.rb +155 -0
  70. data/lib/ronin/recon/output_formats/graph_format.rb +48 -0
  71. data/lib/ronin/recon/output_formats/graphviz_format.rb +115 -0
  72. data/lib/ronin/recon/output_formats/pdf.rb +43 -0
  73. data/lib/ronin/recon/output_formats/png.rb +43 -0
  74. data/lib/ronin/recon/output_formats/svg.rb +43 -0
  75. data/lib/ronin/recon/output_formats.rb +48 -0
  76. data/lib/ronin/recon/registry.rb +35 -0
  77. data/lib/ronin/recon/root.rb +33 -0
  78. data/lib/ronin/recon/scope.rb +112 -0
  79. data/lib/ronin/recon/value/parser.rb +113 -0
  80. data/lib/ronin/recon/value.rb +110 -0
  81. data/lib/ronin/recon/value_status.rb +87 -0
  82. data/lib/ronin/recon/values/cert.rb +168 -0
  83. data/lib/ronin/recon/values/domain.rb +88 -0
  84. data/lib/ronin/recon/values/email_address.rb +114 -0
  85. data/lib/ronin/recon/values/host.rb +137 -0
  86. data/lib/ronin/recon/values/ip.rb +123 -0
  87. data/lib/ronin/recon/values/ip_range.rb +155 -0
  88. data/lib/ronin/recon/values/mailserver.rb +61 -0
  89. data/lib/ronin/recon/values/nameserver.rb +61 -0
  90. data/lib/ronin/recon/values/open_port.rb +190 -0
  91. data/lib/ronin/recon/values/url.rb +218 -0
  92. data/lib/ronin/recon/values/website.rb +200 -0
  93. data/lib/ronin/recon/values/wildcard.rb +140 -0
  94. data/lib/ronin/recon/values.rb +32 -0
  95. data/lib/ronin/recon/version.rb +26 -0
  96. data/lib/ronin/recon/web_worker.rb +35 -0
  97. data/lib/ronin/recon/worker.rb +433 -0
  98. data/lib/ronin/recon/worker_pool.rb +203 -0
  99. data/lib/ronin/recon/workers.rb +260 -0
  100. data/lib/ronin/recon.rb +22 -0
  101. data/man/ronin-recon-completion.1 +76 -0
  102. data/man/ronin-recon-completion.1.md +78 -0
  103. data/man/ronin-recon-irb.1 +27 -0
  104. data/man/ronin-recon-irb.1.md +26 -0
  105. data/man/ronin-recon-new.1 +58 -0
  106. data/man/ronin-recon-new.1.md +59 -0
  107. data/man/ronin-recon-run.1 +137 -0
  108. data/man/ronin-recon-run.1.md +115 -0
  109. data/man/ronin-recon-test.1 +53 -0
  110. data/man/ronin-recon-test.1.md +55 -0
  111. data/man/ronin-recon-worker.1 +32 -0
  112. data/man/ronin-recon-worker.1.md +34 -0
  113. data/man/ronin-recon-workers.1 +29 -0
  114. data/man/ronin-recon-workers.1.md +31 -0
  115. data/man/ronin-recon.1 +57 -0
  116. data/man/ronin-recon.1.md +57 -0
  117. data/ronin-recon.gemspec +62 -0
  118. data/scripts/setup +58 -0
  119. metadata +364 -0
@@ -0,0 +1,57 @@
1
+ # ronin-recon 1 "2024-01-01" Ronin Recon "User Manuals"
2
+
3
+ ## NAME
4
+
5
+ ronin-recon - A micro-framework and tool for performing reconnaissance.
6
+
7
+ ## SYNOPSIS
8
+
9
+ `ronin-recon` [*options*] [*COMMAND* [...]]
10
+
11
+ ## DESCRIPTION
12
+
13
+ Runs a `ronin-recon` *COMMAND*.
14
+
15
+ ## ARGUMENTS
16
+
17
+ *COMMAND*
18
+ : The `ronin-recon` command to execute.
19
+
20
+ ## OPTIONS
21
+
22
+ `-V`, `--version`
23
+ : Prints the `ronin-recon` version and exits.
24
+
25
+ `-h`, `--help`
26
+ : Print help information
27
+
28
+ ## COMMANDS
29
+
30
+ *completion*
31
+ : Manages the shell completion rules for `ronin-recon`.
32
+
33
+ *help*
34
+ : Lists available commands or shows help about a specific command.
35
+
36
+ *irb*
37
+ : Starts an interactive Ruby shell with ronin-recon loaded.
38
+
39
+ *new*
40
+ : Creates a new recon worker file.
41
+
42
+ *test*
43
+ : Loads an individual worker and tests it.
44
+
45
+ *worker*
46
+ : Prints information about a recon worker.
47
+
48
+ *workers*
49
+ : Lists the available recon workers.
50
+
51
+ ## AUTHOR
52
+
53
+ Postmodern <postmodern.mod3@gmail.com>
54
+
55
+ ## SEE ALSO
56
+
57
+ [ronin-recon-completion](ronin-recon-completion.1.md) [ronin-recon-new](ronin-recon-new.1.md) [ronin-recon-test](ronin-recon-test.1.md) [ronin-recon-worker](ronin-recon-worker.1.md) [ronin-recon-workers](ronin-recon-workers.1.md)
@@ -0,0 +1,62 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'yaml'
4
+
5
+ Gem::Specification.new do |gem|
6
+ gemspec = YAML.load_file('gemspec.yml')
7
+
8
+ gem.name = gemspec.fetch('name')
9
+ gem.version = gemspec.fetch('version') do
10
+ lib_dir = File.join(File.dirname(__FILE__),'lib')
11
+ $LOAD_PATH << lib_dir unless $LOAD_PATH.include?(lib_dir)
12
+
13
+ require 'ronin/recon/version'
14
+ Ronin::Recon::VERSION
15
+ end
16
+
17
+ gem.summary = gemspec['summary']
18
+ gem.description = gemspec['description']
19
+ gem.licenses = Array(gemspec['license'])
20
+ gem.authors = Array(gemspec['authors'])
21
+ gem.email = gemspec['email']
22
+ gem.homepage = gemspec['homepage']
23
+ gem.metadata = gemspec['metadata'] if gemspec['metadata']
24
+
25
+ glob = ->(patterns) { gem.files & Dir[*patterns] }
26
+
27
+ gem.files = `git ls-files`.split($/)
28
+ gem.files = glob[gemspec['files']] if gemspec['files']
29
+ gem.files += Array(gemspec['generated_files'])
30
+ # exclude test files from the packages gem
31
+ gem.files -= glob[gemspec['test_files'] || 'spec/{**/}*']
32
+
33
+ gem.executables = gemspec.fetch('executables') do
34
+ glob['bin/*'].map { |path| File.basename(path) }
35
+ end
36
+
37
+ gem.extensions = glob[gemspec['extensions'] || 'ext/**/extconf.rb']
38
+ gem.extra_rdoc_files = glob[gemspec['extra_doc_files'] || '*.{txt,md}']
39
+
40
+ gem.require_paths = Array(gemspec.fetch('require_paths') {
41
+ %w[ext lib].select { |dir| File.directory?(dir) }
42
+ })
43
+
44
+ gem.requirements = gemspec['requirements']
45
+ gem.required_ruby_version = gemspec['required_ruby_version']
46
+ gem.required_rubygems_version = gemspec['required_rubygems_version']
47
+ gem.post_install_message = gemspec['post_install_message']
48
+
49
+ split = ->(string) { string.split(/,\s*/) }
50
+
51
+ if gemspec['dependencies']
52
+ gemspec['dependencies'].each do |name,versions|
53
+ gem.add_dependency(name,split[versions])
54
+ end
55
+ end
56
+
57
+ if gemspec['development_dependencies']
58
+ gemspec['development_dependencies'].each do |name,versions|
59
+ gem.add_development_dependency(name,split[versions])
60
+ end
61
+ end
62
+ end
data/scripts/setup ADDED
@@ -0,0 +1,58 @@
1
+ #!/usr/bin/env bash
2
+
3
+ #
4
+ # Prints a log message.
5
+ #
6
+ function log()
7
+ {
8
+ if [[ -t 1 ]]; then
9
+ echo -e "\x1b[1m\x1b[32m>>>\x1b[0m \x1b[1m$1\x1b[0m"
10
+ else
11
+ echo ">>> $1"
12
+ fi
13
+ }
14
+
15
+ #
16
+ # Prints a warn message.
17
+ #
18
+ function warn()
19
+ {
20
+ if [[ -t 1 ]]; then
21
+ echo -e "\x1b[1m\x1b[33m***\x1b[0m \x1b[1m$1\x1b[0m" >&2
22
+ else
23
+ echo "*** $1" >&2
24
+ fi
25
+ }
26
+
27
+ #
28
+ # Prints an error message.
29
+ #
30
+ function error()
31
+ {
32
+ if [[ -t 1 ]]; then
33
+ echo -e "\x1b[1m\x1b[31m!!!\x1b[0m \x1b[1m$1\x1b[0m" >&2
34
+ else
35
+ echo "!!! $1" >&2
36
+ fi
37
+ }
38
+
39
+ #
40
+ # Prints an error message and exists with -1.
41
+ #
42
+ function fail()
43
+ {
44
+ error "$@"
45
+ exit -1
46
+ }
47
+
48
+ # default to installing gems into vendor/bundle
49
+ if [[ ! -f .bundle/config ]]; then
50
+ bundle config set --local path vendor/bundle >/dev/null || \
51
+ fail "Failed to run 'bundle config'"
52
+ fi
53
+
54
+ log "Installing gems ..."
55
+ bundle install || fail "Failed to run 'bundle install'!"
56
+
57
+ log "Setting up the project ..."
58
+ bundle exec rake setup || "Failed to run 'rake setup'!"
metadata ADDED
@@ -0,0 +1,364 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ronin-recon
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0.rc1
5
+ platform: ruby
6
+ authors:
7
+ - Postmodern
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2024-06-23 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: thread-local
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: async-io
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: async-dns
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '1.0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '1.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: async-http
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '0.60'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '0.60'
69
+ - !ruby/object:Gem::Dependency
70
+ name: wordlist
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '1.0'
76
+ - - ">="
77
+ - !ruby/object:Gem::Version
78
+ version: 1.0.3
79
+ type: :runtime
80
+ prerelease: false
81
+ version_requirements: !ruby/object:Gem::Requirement
82
+ requirements:
83
+ - - "~>"
84
+ - !ruby/object:Gem::Version
85
+ version: '1.0'
86
+ - - ">="
87
+ - !ruby/object:Gem::Version
88
+ version: 1.0.3
89
+ - !ruby/object:Gem::Dependency
90
+ name: ronin-support
91
+ requirement: !ruby/object:Gem::Requirement
92
+ requirements:
93
+ - - "~>"
94
+ - !ruby/object:Gem::Version
95
+ version: 1.1.0.rc1
96
+ type: :runtime
97
+ prerelease: false
98
+ version_requirements: !ruby/object:Gem::Requirement
99
+ requirements:
100
+ - - "~>"
101
+ - !ruby/object:Gem::Version
102
+ version: 1.1.0.rc1
103
+ - !ruby/object:Gem::Dependency
104
+ name: ronin-core
105
+ requirement: !ruby/object:Gem::Requirement
106
+ requirements:
107
+ - - "~>"
108
+ - !ruby/object:Gem::Version
109
+ version: 0.2.0.rc1
110
+ type: :runtime
111
+ prerelease: false
112
+ version_requirements: !ruby/object:Gem::Requirement
113
+ requirements:
114
+ - - "~>"
115
+ - !ruby/object:Gem::Version
116
+ version: 0.2.0.rc1
117
+ - !ruby/object:Gem::Dependency
118
+ name: ronin-db
119
+ requirement: !ruby/object:Gem::Requirement
120
+ requirements:
121
+ - - "~>"
122
+ - !ruby/object:Gem::Version
123
+ version: 0.2.0.rc1
124
+ type: :runtime
125
+ prerelease: false
126
+ version_requirements: !ruby/object:Gem::Requirement
127
+ requirements:
128
+ - - "~>"
129
+ - !ruby/object:Gem::Version
130
+ version: 0.2.0.rc1
131
+ - !ruby/object:Gem::Dependency
132
+ name: ronin-repos
133
+ requirement: !ruby/object:Gem::Requirement
134
+ requirements:
135
+ - - "~>"
136
+ - !ruby/object:Gem::Version
137
+ version: '0.1'
138
+ type: :runtime
139
+ prerelease: false
140
+ version_requirements: !ruby/object:Gem::Requirement
141
+ requirements:
142
+ - - "~>"
143
+ - !ruby/object:Gem::Version
144
+ version: '0.1'
145
+ - !ruby/object:Gem::Dependency
146
+ name: ronin-masscan
147
+ requirement: !ruby/object:Gem::Requirement
148
+ requirements:
149
+ - - "~>"
150
+ - !ruby/object:Gem::Version
151
+ version: 0.1.0.rc1
152
+ type: :runtime
153
+ prerelease: false
154
+ version_requirements: !ruby/object:Gem::Requirement
155
+ requirements:
156
+ - - "~>"
157
+ - !ruby/object:Gem::Version
158
+ version: 0.1.0.rc1
159
+ - !ruby/object:Gem::Dependency
160
+ name: ronin-nmap
161
+ requirement: !ruby/object:Gem::Requirement
162
+ requirements:
163
+ - - "~>"
164
+ - !ruby/object:Gem::Version
165
+ version: 0.1.0.rc1
166
+ type: :runtime
167
+ prerelease: false
168
+ version_requirements: !ruby/object:Gem::Requirement
169
+ requirements:
170
+ - - "~>"
171
+ - !ruby/object:Gem::Version
172
+ version: 0.1.0.rc1
173
+ - !ruby/object:Gem::Dependency
174
+ name: ronin-web-spider
175
+ requirement: !ruby/object:Gem::Requirement
176
+ requirements:
177
+ - - "~>"
178
+ - !ruby/object:Gem::Version
179
+ version: 0.2.0.rc1
180
+ type: :runtime
181
+ prerelease: false
182
+ version_requirements: !ruby/object:Gem::Requirement
183
+ requirements:
184
+ - - "~>"
185
+ - !ruby/object:Gem::Version
186
+ version: 0.2.0.rc1
187
+ - !ruby/object:Gem::Dependency
188
+ name: bundler
189
+ requirement: !ruby/object:Gem::Requirement
190
+ requirements:
191
+ - - "~>"
192
+ - !ruby/object:Gem::Version
193
+ version: '2.0'
194
+ type: :development
195
+ prerelease: false
196
+ version_requirements: !ruby/object:Gem::Requirement
197
+ requirements:
198
+ - - "~>"
199
+ - !ruby/object:Gem::Version
200
+ version: '2.0'
201
+ description: |
202
+ ronin-recon is a micro-framework and tool for performing reconnaissance.
203
+ ronin-recon uses multiple workers which process different data types
204
+ (IP, host, URL, etc) and produce new values. ronin-recon contains built-in
205
+ recon workers and supports loading additional 3rd-party workers from Ruby
206
+ files or 3rd-party git repositories. ronin-recon has a unique queue design
207
+ and uses asynchronous I/O to maximize efficiency. ronin-recon can lookup
208
+ IPs addresses, nameservers, mailservers, bruteforce sub-domains, port scan
209
+ IPs, discover services, and spider websites.
210
+ email: postmodern.mod3@gmail.com
211
+ executables:
212
+ - ronin-recon
213
+ extensions: []
214
+ extra_rdoc_files:
215
+ - COPYING.txt
216
+ - ChangeLog.md
217
+ - README.md
218
+ files:
219
+ - ".document"
220
+ - ".github/workflows/ruby.yml"
221
+ - ".gitignore"
222
+ - ".rspec"
223
+ - ".rubocop.yml"
224
+ - ".ruby-version"
225
+ - ".yardopts"
226
+ - COPYING.txt
227
+ - ChangeLog.md
228
+ - Gemfile
229
+ - README.md
230
+ - Rakefile
231
+ - bin/ronin-recon
232
+ - data/completions/ronin-recon
233
+ - data/templates/worker.rb.erb
234
+ - data/wordlists/raft-small-directories.txt.gz
235
+ - data/wordlists/subdomains-1000.txt.gz
236
+ - examples/recon.rb
237
+ - gemspec.yml
238
+ - lib/ronin/recon.rb
239
+ - lib/ronin/recon/builtin.rb
240
+ - lib/ronin/recon/builtin/dns/lookup.rb
241
+ - lib/ronin/recon/builtin/dns/mailservers.rb
242
+ - lib/ronin/recon/builtin/dns/nameservers.rb
243
+ - lib/ronin/recon/builtin/dns/reverse_lookup.rb
244
+ - lib/ronin/recon/builtin/dns/srv_enum.rb
245
+ - lib/ronin/recon/builtin/dns/subdomain_enum.rb
246
+ - lib/ronin/recon/builtin/dns/suffix_enum.rb
247
+ - lib/ronin/recon/builtin/net/ip_range_enum.rb
248
+ - lib/ronin/recon/builtin/net/port_scan.rb
249
+ - lib/ronin/recon/builtin/net/service_id.rb
250
+ - lib/ronin/recon/builtin/ssl/cert_enum.rb
251
+ - lib/ronin/recon/builtin/ssl/cert_grab.rb
252
+ - lib/ronin/recon/builtin/ssl/cert_sh.rb
253
+ - lib/ronin/recon/builtin/web/dir_enum.rb
254
+ - lib/ronin/recon/builtin/web/email_addresses.rb
255
+ - lib/ronin/recon/builtin/web/spider.rb
256
+ - lib/ronin/recon/cli.rb
257
+ - lib/ronin/recon/cli/command.rb
258
+ - lib/ronin/recon/cli/commands/completion.rb
259
+ - lib/ronin/recon/cli/commands/irb.rb
260
+ - lib/ronin/recon/cli/commands/new.rb
261
+ - lib/ronin/recon/cli/commands/run.rb
262
+ - lib/ronin/recon/cli/commands/test.rb
263
+ - lib/ronin/recon/cli/commands/worker.rb
264
+ - lib/ronin/recon/cli/commands/workers.rb
265
+ - lib/ronin/recon/cli/debug_option.rb
266
+ - lib/ronin/recon/cli/printing.rb
267
+ - lib/ronin/recon/cli/ruby_shell.rb
268
+ - lib/ronin/recon/cli/worker_command.rb
269
+ - lib/ronin/recon/config.rb
270
+ - lib/ronin/recon/dns_worker.rb
271
+ - lib/ronin/recon/engine.rb
272
+ - lib/ronin/recon/exceptions.rb
273
+ - lib/ronin/recon/graph.rb
274
+ - lib/ronin/recon/importer.rb
275
+ - lib/ronin/recon/input_file.rb
276
+ - lib/ronin/recon/message/job_completed.rb
277
+ - lib/ronin/recon/message/job_failed.rb
278
+ - lib/ronin/recon/message/job_started.rb
279
+ - lib/ronin/recon/message/shutdown.rb
280
+ - lib/ronin/recon/message/value.rb
281
+ - lib/ronin/recon/message/worker_started.rb
282
+ - lib/ronin/recon/message/worker_stopped.rb
283
+ - lib/ronin/recon/mixins.rb
284
+ - lib/ronin/recon/mixins/dns.rb
285
+ - lib/ronin/recon/mixins/http.rb
286
+ - lib/ronin/recon/output_formats.rb
287
+ - lib/ronin/recon/output_formats/dir.rb
288
+ - lib/ronin/recon/output_formats/dot.rb
289
+ - lib/ronin/recon/output_formats/graph_format.rb
290
+ - lib/ronin/recon/output_formats/graphviz_format.rb
291
+ - lib/ronin/recon/output_formats/pdf.rb
292
+ - lib/ronin/recon/output_formats/png.rb
293
+ - lib/ronin/recon/output_formats/svg.rb
294
+ - lib/ronin/recon/registry.rb
295
+ - lib/ronin/recon/root.rb
296
+ - lib/ronin/recon/scope.rb
297
+ - lib/ronin/recon/value.rb
298
+ - lib/ronin/recon/value/parser.rb
299
+ - lib/ronin/recon/value_status.rb
300
+ - lib/ronin/recon/values.rb
301
+ - lib/ronin/recon/values/cert.rb
302
+ - lib/ronin/recon/values/domain.rb
303
+ - lib/ronin/recon/values/email_address.rb
304
+ - lib/ronin/recon/values/host.rb
305
+ - lib/ronin/recon/values/ip.rb
306
+ - lib/ronin/recon/values/ip_range.rb
307
+ - lib/ronin/recon/values/mailserver.rb
308
+ - lib/ronin/recon/values/nameserver.rb
309
+ - lib/ronin/recon/values/open_port.rb
310
+ - lib/ronin/recon/values/url.rb
311
+ - lib/ronin/recon/values/website.rb
312
+ - lib/ronin/recon/values/wildcard.rb
313
+ - lib/ronin/recon/version.rb
314
+ - lib/ronin/recon/web_worker.rb
315
+ - lib/ronin/recon/worker.rb
316
+ - lib/ronin/recon/worker_pool.rb
317
+ - lib/ronin/recon/workers.rb
318
+ - man/ronin-recon-completion.1
319
+ - man/ronin-recon-completion.1.md
320
+ - man/ronin-recon-irb.1
321
+ - man/ronin-recon-irb.1.md
322
+ - man/ronin-recon-new.1
323
+ - man/ronin-recon-new.1.md
324
+ - man/ronin-recon-run.1
325
+ - man/ronin-recon-run.1.md
326
+ - man/ronin-recon-test.1
327
+ - man/ronin-recon-test.1.md
328
+ - man/ronin-recon-worker.1
329
+ - man/ronin-recon-worker.1.md
330
+ - man/ronin-recon-workers.1
331
+ - man/ronin-recon-workers.1.md
332
+ - man/ronin-recon.1
333
+ - man/ronin-recon.1.md
334
+ - ronin-recon.gemspec
335
+ - scripts/setup
336
+ homepage: https://ronin-rb.dev/
337
+ licenses:
338
+ - LGPL-3.0
339
+ metadata:
340
+ documentation_uri: https://ronin-rb.dev/docs/ronin-recon
341
+ source_code_uri: https://github.com/ronin-rb/ronin-recon
342
+ bug_tracker_uri: https://github.com/ronin-rb/ronin-recon/issues
343
+ changelog_uri: https://github.com/ronin-rb/ronin-recon/blob/main/ChangeLog.md
344
+ rubygems_mfa_required: 'true'
345
+ post_install_message:
346
+ rdoc_options: []
347
+ require_paths:
348
+ - lib
349
+ required_ruby_version: !ruby/object:Gem::Requirement
350
+ requirements:
351
+ - - ">="
352
+ - !ruby/object:Gem::Version
353
+ version: 3.1.0
354
+ required_rubygems_version: !ruby/object:Gem::Requirement
355
+ requirements:
356
+ - - ">="
357
+ - !ruby/object:Gem::Version
358
+ version: '0'
359
+ requirements: []
360
+ rubygems_version: 3.3.27
361
+ signing_key:
362
+ specification_version: 4
363
+ summary: A micro-framework and tool for performing reconnaissance.
364
+ test_files: []