ronin-db 0.1.0.beta2-java → 0.1.0.beta3-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ruby.yml +1 -0
- data/README.md +3 -1
- data/gemspec.yml +1 -1
- data/lib/ronin/db/cli/commands/asn.rb +2 -2
- data/lib/ronin/db/cli/commands/ips.rb +2 -0
- data/lib/ronin/db/cli/modifiable.rb +1 -1
- data/lib/ronin/db/version.rb +1 -1
- data/man/ronin-db-asn.1 +1 -1
- data/man/ronin-db-asn.1.md +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8a1fd6f813989f03da5abf216142db2db9a788c15e177c48f3abbc3d1cd5eb33
|
4
|
+
data.tar.gz: df1a62c7d8cbddf3ed141435125595f20fcc4ef8d94cb8d081882650b555560e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 87f9f0c1e514c786199f6e11b654a2584ddb8b9a298ba20e96226d56686812d8cb7bb8d7f918e964c0e3ecf7612d4edafe505a66908c54f010ec2141bbd57278
|
7
|
+
data.tar.gz: 4e3b1b38a64379605773d5965794aba7c07ed151788f12c0ac3653771221e854a75a08d0509806b4aed73f20d1361e2ecd2f149db6fa3a3337c81719d94d9fa0
|
data/.github/workflows/ruby.yml
CHANGED
data/README.md
CHANGED
@@ -2,6 +2,7 @@
|
|
2
2
|
|
3
3
|
[![CI](https://github.com/ronin-rb/ronin-db/actions/workflows/ruby.yml/badge.svg)](https://github.com/ronin-rb/ronin-db/actions/workflows/ruby.yml)
|
4
4
|
[![Code Climate](https://codeclimate.com/github/ronin-rb/ronin-db.svg)](https://codeclimate.com/github/ronin-rb/ronin-db)
|
5
|
+
[![Gem Version](https://badge.fury.io/rb/ronin-db.svg)](https://badge.fury.io/rb/ronin-db)
|
5
6
|
|
6
7
|
* [Website](https://ronin-rb.dev)
|
7
8
|
* [Source](https://github.com/ronin-rb/ronin-db)
|
@@ -205,7 +206,8 @@ and [ronin-db-activerecord].
|
|
205
206
|
|
206
207
|
* [Ruby] >= 3.0.0
|
207
208
|
* [libsqlite3][sqlite]
|
208
|
-
* [sqlite3]
|
209
|
+
* [sqlite3][sqlite3]
|
210
|
+
(or [activerecord-jdbcsqlite3-adapter] ~> 70.0.pre on JRuby)
|
209
211
|
* [ronin-db-activerecord] ~> 0.1
|
210
212
|
* [ronin-support] ~> 1.0
|
211
213
|
* [ronin-core] ~> 0.1
|
data/gemspec.yml
CHANGED
@@ -41,7 +41,7 @@ module Ronin
|
|
41
41
|
# --db-uri URI The database URI to connect to
|
42
42
|
# -v, --verbose Enables verbose output
|
43
43
|
# -n, --number INT Searches for all ASN records with the AS number
|
44
|
-
# -C XX|None|
|
44
|
+
# -C XX|None|Unknown, Searches for all ASN records with the country code
|
45
45
|
# --country-code
|
46
46
|
# -N, --name NAME Searches for all ASN records with the matching name
|
47
47
|
# -I, --ip IP Queries the ASN record for the IP
|
@@ -70,7 +70,7 @@ module Ronin
|
|
70
70
|
option :country_code, short: '-C',
|
71
71
|
value: {
|
72
72
|
type: /[A-Z]{2}|None|Unknown/,
|
73
|
-
usage: 'XX|None|
|
73
|
+
usage: 'XX|None|Unknown'
|
74
74
|
},
|
75
75
|
desc: 'Searches for all ASN records with the country code' do |cc|
|
76
76
|
@query_method_calls << [:with_country_code, [cc]]
|
data/lib/ronin/db/version.rb
CHANGED
data/man/ronin-db-asn.1
CHANGED
@@ -32,7 +32,7 @@ Enables verbose output
|
|
32
32
|
Searches for all ASN records with the AS number\.
|
33
33
|
.LP
|
34
34
|
.TP
|
35
|
-
\fB-C\fR, \fB--country-code\fR \fIXX\fP\[or]\fBNone\fR\[or]\
|
35
|
+
\fB-C\fR, \fB--country-code\fR \fIXX\fP\[or]\fBNone\fR\[or]\fBUnknown\fR
|
36
36
|
Searches for all ASN records with the country code\.
|
37
37
|
.LP
|
38
38
|
.TP
|
data/man/ronin-db-asn.1.md
CHANGED
@@ -23,7 +23,7 @@ Queries or updates Autonomous System Numbers (ASNs) in the database.
|
|
23
23
|
`-n`, `--number` *INT*
|
24
24
|
Searches for all ASN records with the AS number.
|
25
25
|
|
26
|
-
`-C`, `--country-code` *XX*\|`None`\|`
|
26
|
+
`-C`, `--country-code` *XX*\|`None`\|`Unknown`
|
27
27
|
Searches for all ASN records with the country code.
|
28
28
|
|
29
29
|
`-N`, `--name` *NAME*
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ronin-db
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.0.
|
4
|
+
version: 0.1.0.beta3
|
5
5
|
platform: java
|
6
6
|
authors:
|
7
7
|
- Postmodern
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-01-
|
11
|
+
date: 2023-01-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
requirements:
|
30
30
|
- - "~>"
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 0.1.0.
|
32
|
+
version: 0.1.0.beta2
|
33
33
|
name: ronin-db-activerecord
|
34
34
|
prerelease: false
|
35
35
|
type: :runtime
|
@@ -37,7 +37,7 @@ dependencies:
|
|
37
37
|
requirements:
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 0.1.0.
|
40
|
+
version: 0.1.0.beta2
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
requirement: !ruby/object:Gem::Requirement
|
43
43
|
requirements:
|