rangescan 0.1.0
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.
- checksums.yaml +7 -0
- data/.gitignore +59 -0
- data/.rspec +3 -0
- data/.travis.yml +6 -0
- data/Gemfile +6 -0
- data/Gemfile.lock +94 -0
- data/LICENSE +21 -0
- data/README.md +40 -0
- data/Rakefile +8 -0
- data/bin/console +15 -0
- data/bin/setup +8 -0
- data/exe/rangescan +8 -0
- data/lib/rangescan.rb +13 -0
- data/lib/rangescan/cli.rb +34 -0
- data/lib/rangescan/matcher.rb +18 -0
- data/lib/rangescan/range.rb +17 -0
- data/lib/rangescan/scanner.rb +54 -0
- data/lib/rangescan/version.rb +5 -0
- data/rangescan.gemspec +39 -0
- metadata +203 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: a7560ddf707ab1d55befca7e8cdffd4274618845256d4da74575d99d613c4ab9
|
|
4
|
+
data.tar.gz: 296098c05eac8e1c7e6294a503aa6b591b2617d2fcdc3f6f4093299e9a174a53
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: c8a7d6badbbaa041657f86015462f3049cce8e852073a268caadfcfc76fbfd555b31c69b1380ee4846bc92279ce98cb4758d33612d7a4656bad6ca5e2a1d06f0
|
|
7
|
+
data.tar.gz: 51537dc5b498beb430a225486b6b2ce259172e485d5bde54ed5400b191f2d909a7cb01bcf4372f1a6af72d8b1dd33e06da605449c53270d69bc60077b8e1748d
|
data/.gitignore
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
*.gem
|
|
2
|
+
*.rbc
|
|
3
|
+
/.config
|
|
4
|
+
/coverage/
|
|
5
|
+
/InstalledFiles
|
|
6
|
+
/pkg/
|
|
7
|
+
/spec/reports/
|
|
8
|
+
/spec/examples.txt
|
|
9
|
+
/test/tmp/
|
|
10
|
+
/test/version_tmp/
|
|
11
|
+
/tmp/
|
|
12
|
+
|
|
13
|
+
# Used by dotenv library to load environment variables.
|
|
14
|
+
# .env
|
|
15
|
+
|
|
16
|
+
# Ignore Byebug command history file.
|
|
17
|
+
.byebug_history
|
|
18
|
+
|
|
19
|
+
## Specific to RubyMotion:
|
|
20
|
+
.dat*
|
|
21
|
+
.repl_history
|
|
22
|
+
build/
|
|
23
|
+
*.bridgesupport
|
|
24
|
+
build-iPhoneOS/
|
|
25
|
+
build-iPhoneSimulator/
|
|
26
|
+
|
|
27
|
+
## Specific to RubyMotion (use of CocoaPods):
|
|
28
|
+
#
|
|
29
|
+
# We recommend against adding the Pods directory to your .gitignore. However
|
|
30
|
+
# you should judge for yourself, the pros and cons are mentioned at:
|
|
31
|
+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
|
|
32
|
+
#
|
|
33
|
+
# vendor/Pods/
|
|
34
|
+
|
|
35
|
+
## Documentation cache and generated files:
|
|
36
|
+
/.yardoc/
|
|
37
|
+
/_yardoc/
|
|
38
|
+
/doc/
|
|
39
|
+
/rdoc/
|
|
40
|
+
|
|
41
|
+
## Environment normalization:
|
|
42
|
+
/.bundle/
|
|
43
|
+
/vendor/bundle
|
|
44
|
+
/lib/bundler/man/
|
|
45
|
+
|
|
46
|
+
# for a library or gem, you might want to ignore these files since the code is
|
|
47
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
48
|
+
# Gemfile.lock
|
|
49
|
+
# .ruby-version
|
|
50
|
+
# .ruby-gemset
|
|
51
|
+
|
|
52
|
+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
|
53
|
+
.rvmrc
|
|
54
|
+
|
|
55
|
+
# Used by RuboCop. Remote config files pulled in from inherit_from directive.
|
|
56
|
+
# .rubocop-https?--*
|
|
57
|
+
|
|
58
|
+
# RSpec
|
|
59
|
+
.rspec_status
|
data/.rspec
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: .
|
|
3
|
+
specs:
|
|
4
|
+
rangescan (0.1.0)
|
|
5
|
+
http (~> 4.4)
|
|
6
|
+
ipaddress (~> 0.8)
|
|
7
|
+
parallel (~> 1.19)
|
|
8
|
+
thor (~> 1.0)
|
|
9
|
+
|
|
10
|
+
GEM
|
|
11
|
+
remote: https://rubygems.org/
|
|
12
|
+
specs:
|
|
13
|
+
addressable (2.7.0)
|
|
14
|
+
public_suffix (>= 2.0.2, < 5.0)
|
|
15
|
+
coveralls (0.8.23)
|
|
16
|
+
json (>= 1.8, < 3)
|
|
17
|
+
simplecov (~> 0.16.1)
|
|
18
|
+
term-ansicolor (~> 1.3)
|
|
19
|
+
thor (>= 0.19.4, < 2.0)
|
|
20
|
+
tins (~> 1.6)
|
|
21
|
+
crack (0.4.3)
|
|
22
|
+
safe_yaml (~> 1.0.0)
|
|
23
|
+
diff-lcs (1.3)
|
|
24
|
+
docile (1.3.2)
|
|
25
|
+
domain_name (0.5.20190701)
|
|
26
|
+
unf (>= 0.0.5, < 1.0.0)
|
|
27
|
+
ffi (1.13.1)
|
|
28
|
+
ffi-compiler (1.0.1)
|
|
29
|
+
ffi (>= 1.0.0)
|
|
30
|
+
rake
|
|
31
|
+
glint (0.1.0)
|
|
32
|
+
hashdiff (1.0.1)
|
|
33
|
+
http (4.4.1)
|
|
34
|
+
addressable (~> 2.3)
|
|
35
|
+
http-cookie (~> 1.0)
|
|
36
|
+
http-form_data (~> 2.2)
|
|
37
|
+
http-parser (~> 1.2.0)
|
|
38
|
+
http-cookie (1.0.3)
|
|
39
|
+
domain_name (~> 0.5)
|
|
40
|
+
http-form_data (2.3.0)
|
|
41
|
+
http-parser (1.2.1)
|
|
42
|
+
ffi-compiler (>= 1.0, < 2.0)
|
|
43
|
+
ipaddress (0.8.3)
|
|
44
|
+
json (2.3.0)
|
|
45
|
+
parallel (1.19.1)
|
|
46
|
+
public_suffix (4.0.5)
|
|
47
|
+
rake (13.0.1)
|
|
48
|
+
rspec (3.9.0)
|
|
49
|
+
rspec-core (~> 3.9.0)
|
|
50
|
+
rspec-expectations (~> 3.9.0)
|
|
51
|
+
rspec-mocks (~> 3.9.0)
|
|
52
|
+
rspec-core (3.9.2)
|
|
53
|
+
rspec-support (~> 3.9.3)
|
|
54
|
+
rspec-expectations (3.9.2)
|
|
55
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
56
|
+
rspec-support (~> 3.9.0)
|
|
57
|
+
rspec-mocks (3.9.1)
|
|
58
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
59
|
+
rspec-support (~> 3.9.0)
|
|
60
|
+
rspec-support (3.9.3)
|
|
61
|
+
safe_yaml (1.0.5)
|
|
62
|
+
simplecov (0.16.1)
|
|
63
|
+
docile (~> 1.1)
|
|
64
|
+
json (>= 1.8, < 3)
|
|
65
|
+
simplecov-html (~> 0.10.0)
|
|
66
|
+
simplecov-html (0.10.2)
|
|
67
|
+
sync (0.5.0)
|
|
68
|
+
term-ansicolor (1.7.1)
|
|
69
|
+
tins (~> 1.0)
|
|
70
|
+
thor (1.0.1)
|
|
71
|
+
tins (1.25.0)
|
|
72
|
+
sync
|
|
73
|
+
unf (0.1.4)
|
|
74
|
+
unf_ext
|
|
75
|
+
unf_ext (0.0.7.7)
|
|
76
|
+
webmock (3.8.3)
|
|
77
|
+
addressable (>= 2.3.6)
|
|
78
|
+
crack (>= 0.3.2)
|
|
79
|
+
hashdiff (>= 0.4.0, < 2.0.0)
|
|
80
|
+
|
|
81
|
+
PLATFORMS
|
|
82
|
+
ruby
|
|
83
|
+
|
|
84
|
+
DEPENDENCIES
|
|
85
|
+
bundler (~> 2.1)
|
|
86
|
+
coveralls (~> 0.8)
|
|
87
|
+
glint (~> 0.1)
|
|
88
|
+
rake (~> 13.0)
|
|
89
|
+
rangescan!
|
|
90
|
+
rspec (~> 3.9)
|
|
91
|
+
webmock (~> 3.8)
|
|
92
|
+
|
|
93
|
+
BUNDLED WITH
|
|
94
|
+
2.1.4
|
data/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2020 Manabu Niseki
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
data/README.md
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# rangescan
|
|
2
|
+
|
|
3
|
+
[](https://travis-ci.com/ninoseki/rangescan)
|
|
4
|
+
[](https://coveralls.io/github/ninoseki/rangescan?branch=master)
|
|
5
|
+
[](https://www.codefactor.io/repository/github/ninoseki/rangescan)
|
|
6
|
+
|
|
7
|
+
A CLI tool to scan websites on a specific IP range and filter the results by a regexp.
|
|
8
|
+
|
|
9
|
+
## Installation
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
gem install rangescan
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Usage
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
$ rangescan
|
|
19
|
+
Commands:
|
|
20
|
+
rangescan help [COMMAND] # Describe available commands or one specific command
|
|
21
|
+
rangescan scan [IP_WITH_SUBNET_MASK, REGEXP] # Scan an IP range & filter by a regexp
|
|
22
|
+
|
|
23
|
+
$ rangescan help scan
|
|
24
|
+
Usage:
|
|
25
|
+
rangescan scan [IP_WITH_SUBNET_MASK, REGEXP]
|
|
26
|
+
|
|
27
|
+
Options:
|
|
28
|
+
[--host=HOST] # Host header
|
|
29
|
+
[--port=N] # Port to check (80 or 443)
|
|
30
|
+
[--scheme=SCHEME] # Scheme to use (http or https)
|
|
31
|
+
[--timeout=N] # Timeout in seconds
|
|
32
|
+
[--user-agent=USER_AGENT] # User Agent header
|
|
33
|
+
[--veryfy-ssl], [--no-veryfy-ssl] # Verify SSL or not
|
|
34
|
+
|
|
35
|
+
Scan an IP range & filter by a regexp
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
## License
|
|
39
|
+
|
|
40
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
data/bin/console
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
# frozen_string_literal: true
|
|
3
|
+
|
|
4
|
+
require "bundler/setup"
|
|
5
|
+
require "RangeScan"
|
|
6
|
+
|
|
7
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
|
8
|
+
# with your gem easier. You can also use a different console, if you like.
|
|
9
|
+
|
|
10
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
|
11
|
+
# require "pry"
|
|
12
|
+
# Pry.start
|
|
13
|
+
|
|
14
|
+
require "irb"
|
|
15
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
data/exe/rangescan
ADDED
data/lib/rangescan.rb
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require "thor"
|
|
4
|
+
require "json"
|
|
5
|
+
|
|
6
|
+
module RangeScan
|
|
7
|
+
class CLI < Thor
|
|
8
|
+
desc "scan [IP_WITH_SUBNET_MASK, REGEXP]", "Scan an IP range & filter by a regexp"
|
|
9
|
+
method_option :host, type: :string, desc: "Host header"
|
|
10
|
+
method_option :port, type: :numeric, desc: "Port"
|
|
11
|
+
method_option :scheme, type: :string, desc: "Scheme (http or https)"
|
|
12
|
+
method_option :timeout, type: :numeric, desc: "Timeout in seconds"
|
|
13
|
+
method_option :user_agent, type: :string, desc: "User Agent"
|
|
14
|
+
method_option :verify_ssl, type: :boolean, desc: "Whether to verify SSL or not"
|
|
15
|
+
def scan(ip_with_subnet_mask, regexp)
|
|
16
|
+
symbolized_options = symbolize_hash_keys(options)
|
|
17
|
+
range = Range.new(ip_with_subnet_mask)
|
|
18
|
+
|
|
19
|
+
scanner = Scanner.new(**symbolized_options)
|
|
20
|
+
results = scanner.scan(range.to_a)
|
|
21
|
+
|
|
22
|
+
matcher = Matcher.new(regexp)
|
|
23
|
+
filtered = matcher.filter(results)
|
|
24
|
+
|
|
25
|
+
puts JSON.pretty_generate(filtered)
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
no_commands do
|
|
29
|
+
def symbolize_hash_keys(hash)
|
|
30
|
+
hash.map { |k, v| [k.to_sym, v] }.to_h
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
end
|
|
34
|
+
end
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module RangeScan
|
|
4
|
+
class Matcher
|
|
5
|
+
attr_reader :regexp
|
|
6
|
+
|
|
7
|
+
def initialize(regexp)
|
|
8
|
+
@regexp = Regexp.new(regexp)
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
def filter(results)
|
|
12
|
+
results.select do |result|
|
|
13
|
+
body = result.dig(:body) || ""
|
|
14
|
+
body =~ regexp
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
end
|
|
18
|
+
end
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require "ipaddress"
|
|
4
|
+
|
|
5
|
+
module RangeScan
|
|
6
|
+
class Range
|
|
7
|
+
attr_reader :ip_with_subnet_mask
|
|
8
|
+
|
|
9
|
+
def initialize(ip_with_subnet_mask)
|
|
10
|
+
@ip_with_subnet_mask = IPAddress::IPv4.new(ip_with_subnet_mask)
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
def to_a
|
|
14
|
+
ip_with_subnet_mask.to_a.map(&:to_s)
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
end
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require "http"
|
|
4
|
+
require "parallel"
|
|
5
|
+
|
|
6
|
+
module RangeScan
|
|
7
|
+
class Scanner
|
|
8
|
+
attr_reader :context
|
|
9
|
+
attr_reader :host
|
|
10
|
+
attr_reader :port
|
|
11
|
+
attr_reader :scheme
|
|
12
|
+
attr_reader :ssl_context
|
|
13
|
+
attr_reader :timeout
|
|
14
|
+
attr_reader :user_agent
|
|
15
|
+
|
|
16
|
+
def initialize(host: nil, port: nil, scheme: "http", verify_ssl: true, timeout: 5, user_agent: nil)
|
|
17
|
+
@host = host
|
|
18
|
+
@port = port || (scheme == "http" ? 80 : 443)
|
|
19
|
+
@timeout = timeout
|
|
20
|
+
@scheme = scheme
|
|
21
|
+
@user_agent = user_agent
|
|
22
|
+
|
|
23
|
+
@ssl_context = OpenSSL::SSL::SSLContext.new
|
|
24
|
+
@ssl_context.verify_mode = OpenSSL::SSL::VERIFY_NONE unless verify_ssl
|
|
25
|
+
end
|
|
26
|
+
|
|
27
|
+
def scan(ipv4s)
|
|
28
|
+
Parallel.map(ipv4s) do |ipv4|
|
|
29
|
+
get ipv4
|
|
30
|
+
end.compact
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
private
|
|
34
|
+
|
|
35
|
+
def default_headers
|
|
36
|
+
{ host: host, user_agent: user_agent }.compact
|
|
37
|
+
end
|
|
38
|
+
|
|
39
|
+
def ssl_options
|
|
40
|
+
scheme == "http" ? {} : { ssl_context: ssl_context }
|
|
41
|
+
end
|
|
42
|
+
|
|
43
|
+
def get(ipv4)
|
|
44
|
+
url = "#{scheme}://#{ipv4}:#{port}"
|
|
45
|
+
|
|
46
|
+
begin
|
|
47
|
+
res = HTTP.timeout(timeout).headers(default_headers).get(url, ssl_options)
|
|
48
|
+
{ ipv4: ipv4, code: res.code, body: res.body.to_s }
|
|
49
|
+
rescue StandardError
|
|
50
|
+
nil
|
|
51
|
+
end
|
|
52
|
+
end
|
|
53
|
+
end
|
|
54
|
+
end
|
data/rangescan.gemspec
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require_relative 'lib/rangescan/version'
|
|
4
|
+
|
|
5
|
+
Gem::Specification.new do |spec|
|
|
6
|
+
spec.name = "rangescan"
|
|
7
|
+
spec.version = RangeScan::VERSION
|
|
8
|
+
spec.authors = ["Manabu Niseki"]
|
|
9
|
+
spec.email = ["manabu.niseki@gmail.com"]
|
|
10
|
+
|
|
11
|
+
spec.summary = "Scan websites on a specific IP range"
|
|
12
|
+
spec.description = "A CLI tool to scan websites on a specific IP range"
|
|
13
|
+
spec.homepage = "https://github.com/ninoseki/rangescan"
|
|
14
|
+
spec.license = "MIT"
|
|
15
|
+
spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
|
|
16
|
+
|
|
17
|
+
spec.metadata["homepage_uri"] = spec.homepage
|
|
18
|
+
|
|
19
|
+
# Specify which files should be added to the gem when it is released.
|
|
20
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
|
21
|
+
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
|
22
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
23
|
+
end
|
|
24
|
+
spec.bindir = "exe"
|
|
25
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
26
|
+
spec.require_paths = ["lib"]
|
|
27
|
+
|
|
28
|
+
spec.add_development_dependency "bundler", "~> 2.1"
|
|
29
|
+
spec.add_development_dependency "coveralls", "~> 0.8"
|
|
30
|
+
spec.add_development_dependency "glint", "~> 0.1"
|
|
31
|
+
spec.add_development_dependency "rake", "~> 13.0"
|
|
32
|
+
spec.add_development_dependency "rspec", "~> 3.9"
|
|
33
|
+
spec.add_development_dependency "webmock", "~> 3.8"
|
|
34
|
+
|
|
35
|
+
spec.add_dependency "http", "~> 4.4"
|
|
36
|
+
spec.add_dependency "ipaddress", "~> 0.8"
|
|
37
|
+
spec.add_dependency "parallel", "~> 1.19"
|
|
38
|
+
spec.add_dependency "thor", "~> 1.0"
|
|
39
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,203 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: rangescan
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Manabu Niseki
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: exe
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2020-06-16 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: bundler
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '2.1'
|
|
20
|
+
type: :development
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '2.1'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: coveralls
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - "~>"
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '0.8'
|
|
34
|
+
type: :development
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - "~>"
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '0.8'
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: glint
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - "~>"
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '0.1'
|
|
48
|
+
type: :development
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - "~>"
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '0.1'
|
|
55
|
+
- !ruby/object:Gem::Dependency
|
|
56
|
+
name: rake
|
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
|
58
|
+
requirements:
|
|
59
|
+
- - "~>"
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: '13.0'
|
|
62
|
+
type: :development
|
|
63
|
+
prerelease: false
|
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
66
|
+
- - "~>"
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: '13.0'
|
|
69
|
+
- !ruby/object:Gem::Dependency
|
|
70
|
+
name: rspec
|
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
|
72
|
+
requirements:
|
|
73
|
+
- - "~>"
|
|
74
|
+
- !ruby/object:Gem::Version
|
|
75
|
+
version: '3.9'
|
|
76
|
+
type: :development
|
|
77
|
+
prerelease: false
|
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
79
|
+
requirements:
|
|
80
|
+
- - "~>"
|
|
81
|
+
- !ruby/object:Gem::Version
|
|
82
|
+
version: '3.9'
|
|
83
|
+
- !ruby/object:Gem::Dependency
|
|
84
|
+
name: webmock
|
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
|
86
|
+
requirements:
|
|
87
|
+
- - "~>"
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: '3.8'
|
|
90
|
+
type: :development
|
|
91
|
+
prerelease: false
|
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
93
|
+
requirements:
|
|
94
|
+
- - "~>"
|
|
95
|
+
- !ruby/object:Gem::Version
|
|
96
|
+
version: '3.8'
|
|
97
|
+
- !ruby/object:Gem::Dependency
|
|
98
|
+
name: http
|
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
|
100
|
+
requirements:
|
|
101
|
+
- - "~>"
|
|
102
|
+
- !ruby/object:Gem::Version
|
|
103
|
+
version: '4.4'
|
|
104
|
+
type: :runtime
|
|
105
|
+
prerelease: false
|
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
107
|
+
requirements:
|
|
108
|
+
- - "~>"
|
|
109
|
+
- !ruby/object:Gem::Version
|
|
110
|
+
version: '4.4'
|
|
111
|
+
- !ruby/object:Gem::Dependency
|
|
112
|
+
name: ipaddress
|
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
|
114
|
+
requirements:
|
|
115
|
+
- - "~>"
|
|
116
|
+
- !ruby/object:Gem::Version
|
|
117
|
+
version: '0.8'
|
|
118
|
+
type: :runtime
|
|
119
|
+
prerelease: false
|
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
121
|
+
requirements:
|
|
122
|
+
- - "~>"
|
|
123
|
+
- !ruby/object:Gem::Version
|
|
124
|
+
version: '0.8'
|
|
125
|
+
- !ruby/object:Gem::Dependency
|
|
126
|
+
name: parallel
|
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
|
128
|
+
requirements:
|
|
129
|
+
- - "~>"
|
|
130
|
+
- !ruby/object:Gem::Version
|
|
131
|
+
version: '1.19'
|
|
132
|
+
type: :runtime
|
|
133
|
+
prerelease: false
|
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
135
|
+
requirements:
|
|
136
|
+
- - "~>"
|
|
137
|
+
- !ruby/object:Gem::Version
|
|
138
|
+
version: '1.19'
|
|
139
|
+
- !ruby/object:Gem::Dependency
|
|
140
|
+
name: thor
|
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
|
142
|
+
requirements:
|
|
143
|
+
- - "~>"
|
|
144
|
+
- !ruby/object:Gem::Version
|
|
145
|
+
version: '1.0'
|
|
146
|
+
type: :runtime
|
|
147
|
+
prerelease: false
|
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
149
|
+
requirements:
|
|
150
|
+
- - "~>"
|
|
151
|
+
- !ruby/object:Gem::Version
|
|
152
|
+
version: '1.0'
|
|
153
|
+
description: A CLI tool to scan websites on a specific IP range
|
|
154
|
+
email:
|
|
155
|
+
- manabu.niseki@gmail.com
|
|
156
|
+
executables:
|
|
157
|
+
- rangescan
|
|
158
|
+
extensions: []
|
|
159
|
+
extra_rdoc_files: []
|
|
160
|
+
files:
|
|
161
|
+
- ".gitignore"
|
|
162
|
+
- ".rspec"
|
|
163
|
+
- ".travis.yml"
|
|
164
|
+
- Gemfile
|
|
165
|
+
- Gemfile.lock
|
|
166
|
+
- LICENSE
|
|
167
|
+
- README.md
|
|
168
|
+
- Rakefile
|
|
169
|
+
- bin/console
|
|
170
|
+
- bin/setup
|
|
171
|
+
- exe/rangescan
|
|
172
|
+
- lib/rangescan.rb
|
|
173
|
+
- lib/rangescan/cli.rb
|
|
174
|
+
- lib/rangescan/matcher.rb
|
|
175
|
+
- lib/rangescan/range.rb
|
|
176
|
+
- lib/rangescan/scanner.rb
|
|
177
|
+
- lib/rangescan/version.rb
|
|
178
|
+
- rangescan.gemspec
|
|
179
|
+
homepage: https://github.com/ninoseki/rangescan
|
|
180
|
+
licenses:
|
|
181
|
+
- MIT
|
|
182
|
+
metadata:
|
|
183
|
+
homepage_uri: https://github.com/ninoseki/rangescan
|
|
184
|
+
post_install_message:
|
|
185
|
+
rdoc_options: []
|
|
186
|
+
require_paths:
|
|
187
|
+
- lib
|
|
188
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
189
|
+
requirements:
|
|
190
|
+
- - ">="
|
|
191
|
+
- !ruby/object:Gem::Version
|
|
192
|
+
version: 2.3.0
|
|
193
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
194
|
+
requirements:
|
|
195
|
+
- - ">="
|
|
196
|
+
- !ruby/object:Gem::Version
|
|
197
|
+
version: '0'
|
|
198
|
+
requirements: []
|
|
199
|
+
rubygems_version: 3.1.2
|
|
200
|
+
signing_key:
|
|
201
|
+
specification_version: 4
|
|
202
|
+
summary: Scan websites on a specific IP range
|
|
203
|
+
test_files: []
|