nslookupot 0.0.1 → 0.0.6
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 +4 -4
- data/.github/workflows/ci.yml +29 -0
- data/.rubocop.yml +1 -1
- data/Gemfile +3 -3
- data/README.md +3 -1
- data/lib/nslookupot.rb +1 -0
- data/lib/nslookupot/cli.rb +23 -11
- data/lib/nslookupot/resolver.rb +16 -4
- data/lib/nslookupot/version.rb +1 -1
- data/nslookupot.gemspec +1 -0
- data/spec/cli_spec.rb +32 -0
- metadata +23 -7
- data/.travis.yml +0 -17
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b9f55a82dd8b59575552ff6ec51ce460d3960edc9802ae7b0ad7b34acf9ecdb2
|
4
|
+
data.tar.gz: f5fafc615a8bcd14b230f29ca719dd43bebd48a4e91bbabd449936ad1ef20df2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4f9c2a07724a2f6ee9cb15b396360bd47e5a33ca7b17eb3be151cbc93d1c2111a91c60dbe362a7277af0cc646a556279ccfca08e7e3328cade8acb453bcdd273
|
7
|
+
data.tar.gz: 3663e91a31ac98e0d638be5bc182b66c776322fe7aeb0d6ad92d6cfea6a4d6b4d7a0ea885935cf797534d24f9c69eb1d622127765fecc088d86b842209e95de7
|
@@ -0,0 +1,29 @@
|
|
1
|
+
name: CI
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
branches:
|
6
|
+
- master
|
7
|
+
pull_request:
|
8
|
+
branches:
|
9
|
+
- '*'
|
10
|
+
|
11
|
+
jobs:
|
12
|
+
ci:
|
13
|
+
runs-on: ubuntu-latest
|
14
|
+
strategy:
|
15
|
+
matrix:
|
16
|
+
ruby-version: ['2.6.x', '2.7.x']
|
17
|
+
steps:
|
18
|
+
- name: Set up Ruby
|
19
|
+
uses: actions/setup-ruby@v1
|
20
|
+
- uses: actions/checkout@v1
|
21
|
+
- name: Install dependencies
|
22
|
+
run: |
|
23
|
+
gem --version
|
24
|
+
gem install bundler
|
25
|
+
bundle --version
|
26
|
+
bundle install
|
27
|
+
- name: Run test
|
28
|
+
run: |
|
29
|
+
bundle exec rake
|
data/.rubocop.yml
CHANGED
data/Gemfile
CHANGED
@@ -2,14 +2,14 @@
|
|
2
2
|
|
3
3
|
source 'https://rubygems.org'
|
4
4
|
|
5
|
+
gem 'caa_rr_patch'
|
5
6
|
gem 'openssl'
|
6
7
|
gem 'rake'
|
7
8
|
|
8
9
|
group :test do
|
9
|
-
gem '
|
10
|
-
gem 'pry-byebug'
|
10
|
+
gem 'byebug'
|
11
11
|
gem 'rspec', '3.8.0'
|
12
|
-
gem 'rubocop', '0.
|
12
|
+
gem 'rubocop', '0.78.0'
|
13
13
|
end
|
14
14
|
|
15
15
|
gemspec
|
data/README.md
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
# nslookupot
|
2
2
|
|
3
|
-
[](https://badge.fury.io/rb/nslookupot)
|
4
|
+
[](https://github.com/thekuwayama/nslookupot/actions?workflow=CI)
|
4
5
|
[](https://codeclimate.com/github/thekuwayama/nslookupot/maintainability)
|
5
6
|
|
6
7
|
nslookupot is CLI that is `nslookup` over TLS (version 1.2).
|
@@ -23,6 +24,7 @@ Usage: nslookupot [options] name
|
|
23
24
|
-s, --server VALUE the name server IP address (default 1.1.1.1)
|
24
25
|
-p, --port VALUE the name server port number (default 853)
|
25
26
|
-h, --hostname VALUE the name server hostname (default cloudflare-dns.com)
|
27
|
+
-n, --no-check-sni no check SNI (default false)
|
26
28
|
-t, --type VALUE the type of the information query (default A)
|
27
29
|
```
|
28
30
|
|
data/lib/nslookupot.rb
CHANGED
data/lib/nslookupot/cli.rb
CHANGED
@@ -12,7 +12,8 @@ module Nslookupot
|
|
12
12
|
opts = {
|
13
13
|
server: '1.1.1.1',
|
14
14
|
port: 853,
|
15
|
-
hostname: 'cloudflare-dns.com'
|
15
|
+
hostname: 'cloudflare-dns.com',
|
16
|
+
check_sni: true
|
16
17
|
}
|
17
18
|
type = 'A'
|
18
19
|
|
@@ -40,6 +41,14 @@ module Nslookupot
|
|
40
41
|
opts[:hostname] = v
|
41
42
|
end
|
42
43
|
|
44
|
+
op.on(
|
45
|
+
'-n',
|
46
|
+
'--no-check-sni',
|
47
|
+
"no check SNI (default #{!opts[:check_sni]})"
|
48
|
+
) do
|
49
|
+
opts[:check_sni] = false
|
50
|
+
end
|
51
|
+
|
43
52
|
op.on(
|
44
53
|
'-t',
|
45
54
|
'--type VALUE',
|
@@ -52,21 +61,21 @@ module Nslookupot
|
|
52
61
|
begin
|
53
62
|
args = op.parse(argv)
|
54
63
|
rescue OptionParser::InvalidOption => e
|
55
|
-
|
56
|
-
|
64
|
+
warn op.to_s
|
65
|
+
warn "error: #{e.message}"
|
57
66
|
exit 1
|
58
67
|
end
|
59
68
|
|
60
69
|
begin
|
61
70
|
type = s2typeclass(type)
|
62
71
|
rescue NameError
|
63
|
-
|
72
|
+
warn "error: unknown query type #{type}"
|
64
73
|
exit 1
|
65
74
|
end
|
66
75
|
|
67
76
|
if args.size != 1
|
68
|
-
|
69
|
-
|
77
|
+
warn op.to_s
|
78
|
+
warn 'error: number of arguments is not 1'
|
70
79
|
exit 1
|
71
80
|
end
|
72
81
|
|
@@ -75,20 +84,23 @@ module Nslookupot
|
|
75
84
|
# rubocop: enable Metrics/MethodLength
|
76
85
|
|
77
86
|
def s2typeclass(s)
|
78
|
-
Resolv::DNS::Resource::IN.const_get(s.upcase)
|
87
|
+
rr = Resolv::DNS::Resource::IN.const_get(s.upcase)
|
88
|
+
raise NameError unless rr < Resolv::DNS::Resource
|
89
|
+
|
90
|
+
rr
|
79
91
|
end
|
80
92
|
|
81
93
|
def run
|
82
94
|
opts, name, type = parse_options
|
83
95
|
|
84
|
-
resolver = Nslookupot::Resolver.new(opts)
|
96
|
+
resolver = Nslookupot::Resolver.new(**opts)
|
85
97
|
puts 'Address:'.ljust(16) + opts[:server] + '#' + opts[:port].to_s
|
86
98
|
puts '--'
|
87
99
|
resolver.resolve_resources(name, type).each do |rr|
|
88
100
|
puts 'Name:'.ljust(16) + name
|
89
|
-
rr.instance_variables.each do |
|
90
|
-
k = (
|
91
|
-
v = rr.instance_variable_get(
|
101
|
+
rr.instance_variables.each do |var|
|
102
|
+
k = (var[1..].capitalize + ':').ljust(16)
|
103
|
+
v = rr.instance_variable_get(var).to_s
|
92
104
|
puts k + v
|
93
105
|
end
|
94
106
|
puts ''
|
data/lib/nslookupot/resolver.rb
CHANGED
@@ -5,11 +5,17 @@ module Nslookupot
|
|
5
5
|
# @param server [String]
|
6
6
|
# @param port [Integer]
|
7
7
|
# @param hostname [String]
|
8
|
-
|
9
|
-
|
8
|
+
# @param check_sni [bool]
|
9
|
+
def initialize(
|
10
|
+
server: '1.1.1.1',
|
11
|
+
port: 853,
|
12
|
+
hostname: 'cloudflare-dns.com',
|
13
|
+
check_sni: true
|
14
|
+
)
|
10
15
|
@server = server
|
11
16
|
@port = port
|
12
17
|
@hostname = hostname # for SNI
|
18
|
+
@check_sni = check_sni
|
13
19
|
end
|
14
20
|
|
15
21
|
# @param name [String]
|
@@ -70,10 +76,16 @@ module Nslookupot
|
|
70
76
|
def gen_sock
|
71
77
|
ts = TCPSocket.new(@server, @port)
|
72
78
|
ctx = OpenSSL::SSL::SSLContext.new('TLSv1_2')
|
79
|
+
ctx.alpn_protocols = ['dot']
|
73
80
|
sock = OpenSSL::SSL::SSLSocket.new(ts, ctx)
|
74
81
|
sock.sync_close = true
|
75
|
-
|
76
|
-
|
82
|
+
if @check_sni
|
83
|
+
sock.hostname = @hostname
|
84
|
+
sock.connect
|
85
|
+
sock.post_connection_check(@hostname)
|
86
|
+
else
|
87
|
+
sock.connect
|
88
|
+
end
|
77
89
|
|
78
90
|
sock
|
79
91
|
end
|
data/lib/nslookupot/version.rb
CHANGED
data/nslookupot.gemspec
CHANGED
data/spec/cli_spec.rb
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative 'spec_helper'
|
4
|
+
|
5
|
+
RSpec.describe Nslookupot::CLI do
|
6
|
+
context 'Resource Record (RR) TYPEs' do
|
7
|
+
let(:cli) do
|
8
|
+
Nslookupot::CLI.new
|
9
|
+
end
|
10
|
+
|
11
|
+
it 'could return the typeclass object' do
|
12
|
+
expect(cli.s2typeclass('A')).to eq Resolv::DNS::Resource::IN::A
|
13
|
+
expect(cli.s2typeclass('AAAA')).to eq Resolv::DNS::Resource::IN::AAAA
|
14
|
+
expect(cli.s2typeclass('CNAME')).to eq Resolv::DNS::Resource::IN::CNAME
|
15
|
+
expect(cli.s2typeclass('HINFO')).to eq Resolv::DNS::Resource::IN::HINFO
|
16
|
+
expect(cli.s2typeclass('MINFO')).to eq Resolv::DNS::Resource::IN::MINFO
|
17
|
+
expect(cli.s2typeclass('MX')).to eq Resolv::DNS::Resource::IN::MX
|
18
|
+
expect(cli.s2typeclass('NS')).to eq Resolv::DNS::Resource::IN::NS
|
19
|
+
expect(cli.s2typeclass('PTR')).to eq Resolv::DNS::Resource::IN::PTR
|
20
|
+
expect(cli.s2typeclass('SOA')).to eq Resolv::DNS::Resource::IN::SOA
|
21
|
+
expect(cli.s2typeclass('TXT')).to eq Resolv::DNS::Resource::IN::TXT
|
22
|
+
expect(cli.s2typeclass('WKS')).to eq Resolv::DNS::Resource::IN::WKS
|
23
|
+
expect(cli.s2typeclass('CAA')).to eq Resolv::DNS::Resource::IN::CAA
|
24
|
+
end
|
25
|
+
|
26
|
+
it 'could raise NameError' do
|
27
|
+
expect { cli.s2typeclass('ANY') }.to raise_error(NameError)
|
28
|
+
expect { cli.s2typeclass('ClassValue') }.to raise_error(NameError)
|
29
|
+
expect { cli.s2typeclass('hoge') }.to raise_error(NameError)
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nslookupot
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- thekuwayama
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-09-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -24,6 +24,20 @@ dependencies:
|
|
24
24
|
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: caa_rr_patch
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
27
41
|
- !ruby/object:Gem::Dependency
|
28
42
|
name: openssl
|
29
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -46,9 +60,9 @@ executables:
|
|
46
60
|
extensions: []
|
47
61
|
extra_rdoc_files: []
|
48
62
|
files:
|
63
|
+
- ".github/workflows/ci.yml"
|
49
64
|
- ".gitignore"
|
50
65
|
- ".rubocop.yml"
|
51
|
-
- ".travis.yml"
|
52
66
|
- Gemfile
|
53
67
|
- LICENSE.txt
|
54
68
|
- README.md
|
@@ -59,13 +73,14 @@ files:
|
|
59
73
|
- lib/nslookupot/resolver.rb
|
60
74
|
- lib/nslookupot/version.rb
|
61
75
|
- nslookupot.gemspec
|
76
|
+
- spec/cli_spec.rb
|
62
77
|
- spec/resolver_spec.rb
|
63
78
|
- spec/spec_helper.rb
|
64
79
|
homepage: https://github.com/thekuwayama/nslookupot
|
65
80
|
licenses:
|
66
81
|
- MIT
|
67
82
|
metadata: {}
|
68
|
-
post_install_message:
|
83
|
+
post_install_message:
|
69
84
|
rdoc_options: []
|
70
85
|
require_paths:
|
71
86
|
- lib
|
@@ -80,10 +95,11 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
80
95
|
- !ruby/object:Gem::Version
|
81
96
|
version: '0'
|
82
97
|
requirements: []
|
83
|
-
rubygems_version: 3.
|
84
|
-
signing_key:
|
98
|
+
rubygems_version: 3.1.2
|
99
|
+
signing_key:
|
85
100
|
specification_version: 4
|
86
101
|
summary: nslookup over TLS
|
87
102
|
test_files:
|
103
|
+
- spec/cli_spec.rb
|
88
104
|
- spec/resolver_spec.rb
|
89
105
|
- spec/spec_helper.rb
|