ronin-db 0.1.2-java → 0.2.0-java
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/ruby.yml +3 -2
- data/.gitignore +1 -0
- data/.ruby-version +1 -1
- data/ChangeLog.md +35 -0
- data/Gemfile +6 -4
- data/README.md +17 -5
- data/Rakefile +13 -35
- data/data/completions/ronin-db +271 -0
- data/gemspec.yml +17 -2
- data/lib/ronin/db/cli/command.rb +1 -1
- data/lib/ronin/db/cli/commands/add.rb +1 -1
- data/lib/ronin/db/cli/commands/asn.rb +12 -2
- data/lib/ronin/db/cli/commands/certs.rb +322 -0
- data/lib/ronin/db/cli/commands/completion.rb +63 -0
- data/lib/ronin/db/cli/commands/creds.rb +2 -1
- data/lib/ronin/db/cli/commands/edit.rb +1 -1
- data/lib/ronin/db/cli/commands/emails.rb +22 -1
- data/lib/ronin/db/cli/commands/hosts.rb +2 -1
- data/lib/ronin/db/cli/commands/ips.rb +2 -1
- data/lib/ronin/db/cli/commands/irb.rb +8 -4
- data/lib/ronin/db/cli/commands/list.rb +1 -1
- data/lib/ronin/db/cli/commands/migrate.rb +12 -8
- data/lib/ronin/db/cli/commands/open_ports.rb +102 -0
- data/lib/ronin/db/cli/commands/oses.rb +95 -0
- data/lib/ronin/db/cli/commands/passwords.rb +83 -0
- data/lib/ronin/db/cli/commands/people.rb +185 -0
- data/lib/ronin/db/cli/commands/phone_numbers.rb +136 -0
- data/lib/ronin/db/cli/commands/ports.rb +103 -0
- data/lib/ronin/db/cli/commands/remove.rb +1 -1
- data/lib/ronin/db/cli/commands/services.rb +102 -0
- data/lib/ronin/db/cli/commands/software.rb +95 -0
- data/lib/ronin/db/cli/commands/street_addresses.rb +129 -0
- data/lib/ronin/db/cli/commands/urls.rb +2 -1
- data/lib/ronin/db/cli/commands/web_vulns.rb +235 -0
- data/lib/ronin/db/cli/database_options.rb +87 -0
- data/lib/ronin/db/cli/deletable.rb +85 -0
- data/lib/ronin/db/cli/importable.rb +108 -0
- data/lib/ronin/db/cli/model_command.rb +8 -6
- data/lib/ronin/db/cli/modifiable.rb +12 -104
- data/lib/ronin/db/cli/printing.rb +58 -0
- data/lib/ronin/db/cli/ruby_shell.rb +1 -1
- data/lib/ronin/db/cli/uri_methods.rb +1 -1
- data/lib/ronin/db/cli.rb +5 -1
- data/lib/ronin/db/config_file.rb +13 -8
- data/lib/ronin/db/exceptions.rb +10 -1
- data/lib/ronin/db/home.rb +1 -1
- data/lib/ronin/db/root.rb +1 -1
- data/lib/ronin/db/tasks.rb +87 -0
- data/lib/ronin/db/version.rb +2 -2
- data/lib/ronin/db.rb +24 -7
- data/man/ronin-db-add.1 +48 -70
- data/man/ronin-db-add.1.md +26 -22
- data/man/ronin-db-asn.1 +37 -55
- data/man/ronin-db-asn.1.md +29 -19
- data/man/ronin-db-certs.1 +108 -0
- data/man/ronin-db-certs.1.md +106 -0
- data/man/ronin-db-completion.1 +76 -0
- data/man/ronin-db-completion.1.md +78 -0
- data/man/ronin-db-creds.1 +29 -47
- data/man/ronin-db-creds.1.md +23 -16
- data/man/ronin-db-edit.1 +16 -27
- data/man/ronin-db-edit.1.md +11 -7
- data/man/ronin-db-emails.1 +37 -50
- data/man/ronin-db-emails.1.md +30 -17
- data/man/ronin-db-hosts.1 +32 -52
- data/man/ronin-db-hosts.1.md +25 -18
- data/man/ronin-db-ips.1 +32 -53
- data/man/ronin-db-ips.1.md +26 -19
- data/man/ronin-db-irb.1 +23 -36
- data/man/ronin-db-irb.1.md +17 -10
- data/man/ronin-db-list.1 +17 -31
- data/man/ronin-db-list.1.md +13 -9
- data/man/ronin-db-migrate.1 +23 -36
- data/man/ronin-db-migrate.1.md +17 -10
- data/man/ronin-db-open-ports.1 +72 -0
- data/man/ronin-db-open-ports.1.md +70 -0
- data/man/ronin-db-oses.1 +72 -0
- data/man/ronin-db-oses.1.md +70 -0
- data/man/ronin-db-passwords.1 +75 -0
- data/man/ronin-db-passwords.1.md +73 -0
- data/man/ronin-db-people.1 +96 -0
- data/man/ronin-db-people.1.md +94 -0
- data/man/ronin-db-phone-numbers.1 +93 -0
- data/man/ronin-db-phone-numbers.1.md +91 -0
- data/man/ronin-db-ports.1 +87 -0
- data/man/ronin-db-ports.1.md +85 -0
- data/man/ronin-db-remove.1 +16 -29
- data/man/ronin-db-remove.1.md +12 -8
- data/man/ronin-db-services.1 +84 -0
- data/man/ronin-db-services.1.md +82 -0
- data/man/ronin-db-software.1 +72 -0
- data/man/ronin-db-software.1.md +70 -0
- data/man/ronin-db-street-addresses.1 +81 -0
- data/man/ronin-db-street-addresses.1.md +79 -0
- data/man/ronin-db-urls.1 +38 -61
- data/man/ronin-db-urls.1.md +28 -21
- data/man/ronin-db-web-vulns.1 +87 -0
- data/man/ronin-db-web-vulns.1.md +85 -0
- data/man/ronin-db.1 +118 -0
- data/man/ronin-db.1.md +99 -0
- data/scripts/setup +58 -0
- metadata +70 -13
- data/lib/ronin/db/cli/database_command.rb +0 -71
- data/lib/ronin/db/cli/resources_command.rb +0 -118
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
# ronin-db-phone-numbers 1 "2023-02-01" Ronin DB "User Manuals"
|
|
2
|
+
|
|
3
|
+
## NAME
|
|
4
|
+
|
|
5
|
+
ronin-db-phone-numbers - Manages phone numbers in the database
|
|
6
|
+
|
|
7
|
+
## SYNOPSIS
|
|
8
|
+
|
|
9
|
+
`ronin-db phone-numbers` [*options*]
|
|
10
|
+
|
|
11
|
+
## DESCRIPTION
|
|
12
|
+
|
|
13
|
+
Manages PhoneNumbers.
|
|
14
|
+
|
|
15
|
+
## OPTIONS
|
|
16
|
+
|
|
17
|
+
`--db` *NAME*
|
|
18
|
+
: The database to connect to. Defaults to `default` if not given.
|
|
19
|
+
|
|
20
|
+
`--db-uri` *URI*
|
|
21
|
+
: The explicit database URI to connect to.
|
|
22
|
+
|
|
23
|
+
* **sqlite3**: `sqlite3:relative/path.db` or `sqlite3:///absolute/path.db`
|
|
24
|
+
* **mysql**: `mysql://user:password@host/database`
|
|
25
|
+
* **postgres**: `postgres://user:password@host/database`
|
|
26
|
+
|
|
27
|
+
`--db-file` *PATH*
|
|
28
|
+
: The sqlite3 database file to use.
|
|
29
|
+
|
|
30
|
+
`-v`, `--verbose`
|
|
31
|
+
: Enable verbose output.
|
|
32
|
+
|
|
33
|
+
`--add` *VALUE*
|
|
34
|
+
: Adds the phone number to the database.
|
|
35
|
+
|
|
36
|
+
`--import` *FILE*
|
|
37
|
+
: Imports the phone numbers from the given *FILE*.
|
|
38
|
+
|
|
39
|
+
`--delete` *VALUE*
|
|
40
|
+
: Deletes the phone number from the database.
|
|
41
|
+
|
|
42
|
+
`--delete-all`
|
|
43
|
+
: Deletes every phone number from the database.
|
|
44
|
+
|
|
45
|
+
`-P`, `--for-person` *FULL_NAME*
|
|
46
|
+
: Searches for phone numbers associated with the person's full name.
|
|
47
|
+
|
|
48
|
+
`-O`, `--for-organization` *NAME*
|
|
49
|
+
: Searches for phone numbers associated with the organization's name.
|
|
50
|
+
|
|
51
|
+
`-c`, `--with-country-code` *NUM*
|
|
52
|
+
: Searches for phone numbers with the matching 1-3 digit country code.
|
|
53
|
+
|
|
54
|
+
`-a`, `--with-area-code` *NUM*
|
|
55
|
+
: Searches for phone numbers with the matching 3 digit area code.
|
|
56
|
+
|
|
57
|
+
`-p`, `--with-prefix` *NUM*
|
|
58
|
+
: Searches for phone numbers with the matching 3 digit prefix number.
|
|
59
|
+
|
|
60
|
+
`-l`, `--with-line-number` *NUM*
|
|
61
|
+
: Searches for phone numbers with the matching 4 digit line number.
|
|
62
|
+
|
|
63
|
+
`-S`, `--similar-to` *PHONE_NUMBER*
|
|
64
|
+
: Searches for phone numbers that are similar to the given *PHONE_NUMBER*.
|
|
65
|
+
|
|
66
|
+
`-h`, `--help`
|
|
67
|
+
: Print help information.
|
|
68
|
+
|
|
69
|
+
## ENVIRONMENT
|
|
70
|
+
|
|
71
|
+
*HOME*
|
|
72
|
+
: Alternate location for the user's home directory.
|
|
73
|
+
|
|
74
|
+
*XDG_CONFIG_HOME*
|
|
75
|
+
: Alternate location for the `~/.config` directory.
|
|
76
|
+
|
|
77
|
+
*XDG_DATA_HOME*
|
|
78
|
+
: Alternate location for the `~/.local/share` directory.
|
|
79
|
+
|
|
80
|
+
## FILES
|
|
81
|
+
|
|
82
|
+
`~/.local/share/ronin-db/database.sqlite3`
|
|
83
|
+
: The default sqlite3 database file.
|
|
84
|
+
|
|
85
|
+
`~/.config/ronin-db/database.yml`
|
|
86
|
+
: Optional database configuration.
|
|
87
|
+
|
|
88
|
+
## AUTHOR
|
|
89
|
+
|
|
90
|
+
Postmodern <postmodern.mod3@gmail.com>
|
|
91
|
+
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
.\" Generated by kramdown-man 1.0.1
|
|
2
|
+
.\" https://github.com/postmodern/kramdown-man#readme
|
|
3
|
+
.TH ronin-db-ports 1 "2023-02-01" Ronin DB "User Manuals"
|
|
4
|
+
.SH NAME
|
|
5
|
+
.PP
|
|
6
|
+
ronin\-db\-ports \- Manages port numbers in the database
|
|
7
|
+
.SH SYNOPSIS
|
|
8
|
+
.PP
|
|
9
|
+
\fBronin\-db ports\fR \[lB]\fIoptions\fP\[rB]
|
|
10
|
+
.SH DESCRIPTION
|
|
11
|
+
.PP
|
|
12
|
+
Manages Ports\.
|
|
13
|
+
.SH OPTIONS
|
|
14
|
+
.TP
|
|
15
|
+
\fB\-\-db\fR \fINAME\fP
|
|
16
|
+
The database to connect to\. Defaults to \fBdefault\fR if not given\.
|
|
17
|
+
.TP
|
|
18
|
+
\fB\-\-db\-uri\fR \fIURI\fP
|
|
19
|
+
The explicit database URI to connect to\.
|
|
20
|
+
.RS
|
|
21
|
+
.RS
|
|
22
|
+
.IP \(bu 2
|
|
23
|
+
\fBsqlite3\fP: \fBsqlite3:relative\[sl]path\.db\fR or \fBsqlite3:\[sl]\[sl]\[sl]absolute\[sl]path\.db\fR
|
|
24
|
+
.IP \(bu 2
|
|
25
|
+
\fBmysql\fP: \fBmysql:\[sl]\[sl]user:password\[at]host\[sl]database\fR
|
|
26
|
+
.IP \(bu 2
|
|
27
|
+
\fBpostgres\fP: \fBpostgres:\[sl]\[sl]user:password\[at]host\[sl]database\fR
|
|
28
|
+
.RE
|
|
29
|
+
.RE
|
|
30
|
+
.TP
|
|
31
|
+
\fB\-\-db\-file\fR \fIPATH\fP
|
|
32
|
+
The sqlite3 database file to use\.
|
|
33
|
+
.TP
|
|
34
|
+
\fB\-v\fR, \fB\-\-verbose\fR
|
|
35
|
+
Enable verbose output\.
|
|
36
|
+
.TP
|
|
37
|
+
\fB\-\-add\fR \fIVALUE\fP
|
|
38
|
+
Adds the URL to the database\.
|
|
39
|
+
.TP
|
|
40
|
+
\fB\-\-import\fR \fIFILE\fP
|
|
41
|
+
Imports the URLs from the given \fIFILE\fP\.
|
|
42
|
+
.TP
|
|
43
|
+
\fB\-\-delete\fR \fIVALUE\fP
|
|
44
|
+
Deletes the URL from the database\.
|
|
45
|
+
.TP
|
|
46
|
+
\fB\-\-delete\-all\fR
|
|
47
|
+
Deletes every URL from the database\.
|
|
48
|
+
.TP
|
|
49
|
+
\fB\-\-named\fR \fINAME\fP
|
|
50
|
+
Searches for all Ports that contain \fINAME\fP in it\[cq]s name\.
|
|
51
|
+
.TP
|
|
52
|
+
\fB\-N\fR, \fB\-\-numer\fR \fIPORT\fP
|
|
53
|
+
Searches for all Ports that are associated with the port number\.
|
|
54
|
+
.TP
|
|
55
|
+
\fB\-P\fR, \fB\-\-with\-protocol\fR \[lB]\fBtcp\fR\[or]\fBudp\fR\[rB]
|
|
56
|
+
Searches for all Ports that are associated with the protocol\.
|
|
57
|
+
.TP
|
|
58
|
+
\fB\-S\fR, \fB\-\-with\-service\fR \fISERVICE\fP
|
|
59
|
+
Searches for all Ports that are associated with the service\.
|
|
60
|
+
.TP
|
|
61
|
+
\fB\-I\fR, \fB\-\-with\-ip\fR \fIIP\fP
|
|
62
|
+
Searches for all Ports associated with the IP address\.
|
|
63
|
+
.TP
|
|
64
|
+
\fB\-h\fR, \fB\-\-help\fR
|
|
65
|
+
Print help information\.
|
|
66
|
+
.SH ENVIRONMENT
|
|
67
|
+
.TP
|
|
68
|
+
\fIHOME\fP
|
|
69
|
+
Alternate location for the user\[cq]s home directory\.
|
|
70
|
+
.TP
|
|
71
|
+
\fIXDG\[ru]CONFIG\[ru]HOME\fP
|
|
72
|
+
Alternate location for the \fB\[ti]\[sl]\.config\fR directory\.
|
|
73
|
+
.TP
|
|
74
|
+
\fIXDG\[ru]DATA\[ru]HOME\fP
|
|
75
|
+
Alternate location for the \fB\[ti]\[sl]\.local\[sl]share\fR directory\.
|
|
76
|
+
.SH FILES
|
|
77
|
+
.TP
|
|
78
|
+
\fB\[ti]\[sl]\.local\[sl]share\[sl]ronin\-db\[sl]database\.sqlite3\fR
|
|
79
|
+
The default sqlite3 database file\.
|
|
80
|
+
.TP
|
|
81
|
+
\fB\[ti]\[sl]\.config\[sl]ronin\-db\[sl]database\.yml\fR
|
|
82
|
+
Optional database configuration\.
|
|
83
|
+
.SH AUTHOR
|
|
84
|
+
.PP
|
|
85
|
+
Postmodern
|
|
86
|
+
.MT postmodern\.mod3\[at]gmail\.com
|
|
87
|
+
.ME
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
# ronin-db-ports 1 "2023-02-01" Ronin DB "User Manuals"
|
|
2
|
+
|
|
3
|
+
## NAME
|
|
4
|
+
|
|
5
|
+
ronin-db-ports - Manages port numbers in the database
|
|
6
|
+
|
|
7
|
+
## SYNOPSIS
|
|
8
|
+
|
|
9
|
+
`ronin-db ports` [*options*]
|
|
10
|
+
|
|
11
|
+
## DESCRIPTION
|
|
12
|
+
|
|
13
|
+
Manages Ports.
|
|
14
|
+
|
|
15
|
+
## OPTIONS
|
|
16
|
+
|
|
17
|
+
`--db` *NAME*
|
|
18
|
+
: The database to connect to. Defaults to `default` if not given.
|
|
19
|
+
|
|
20
|
+
`--db-uri` *URI*
|
|
21
|
+
: The explicit database URI to connect to.
|
|
22
|
+
|
|
23
|
+
* **sqlite3**: `sqlite3:relative/path.db` or `sqlite3:///absolute/path.db`
|
|
24
|
+
* **mysql**: `mysql://user:password@host/database`
|
|
25
|
+
* **postgres**: `postgres://user:password@host/database`
|
|
26
|
+
|
|
27
|
+
`--db-file` *PATH*
|
|
28
|
+
: The sqlite3 database file to use.
|
|
29
|
+
|
|
30
|
+
`-v`, `--verbose`
|
|
31
|
+
: Enable verbose output.
|
|
32
|
+
|
|
33
|
+
`--add` *VALUE*
|
|
34
|
+
: Adds the URL to the database.
|
|
35
|
+
|
|
36
|
+
`--import` *FILE*
|
|
37
|
+
: Imports the URLs from the given *FILE*.
|
|
38
|
+
|
|
39
|
+
`--delete` *VALUE*
|
|
40
|
+
: Deletes the URL from the database.
|
|
41
|
+
|
|
42
|
+
`--delete-all`
|
|
43
|
+
: Deletes every URL from the database.
|
|
44
|
+
|
|
45
|
+
`--named` *NAME*
|
|
46
|
+
: Searches for all Ports that contain *NAME* in it's name.
|
|
47
|
+
|
|
48
|
+
`-N`, `--numer` *PORT*
|
|
49
|
+
: Searches for all Ports that are associated with the port number.
|
|
50
|
+
|
|
51
|
+
`-P`, `--with-protocol` [`tcp`\|`udp`]
|
|
52
|
+
: Searches for all Ports that are associated with the protocol.
|
|
53
|
+
|
|
54
|
+
`-S`, `--with-service` *SERVICE*
|
|
55
|
+
: Searches for all Ports that are associated with the service.
|
|
56
|
+
|
|
57
|
+
`-I`, `--with-ip` *IP*
|
|
58
|
+
: Searches for all Ports associated with the IP address.
|
|
59
|
+
|
|
60
|
+
`-h`, `--help`
|
|
61
|
+
: Print help information.
|
|
62
|
+
|
|
63
|
+
## ENVIRONMENT
|
|
64
|
+
|
|
65
|
+
*HOME*
|
|
66
|
+
: Alternate location for the user's home directory.
|
|
67
|
+
|
|
68
|
+
*XDG_CONFIG_HOME*
|
|
69
|
+
: Alternate location for the `~/.config` directory.
|
|
70
|
+
|
|
71
|
+
*XDG_DATA_HOME*
|
|
72
|
+
: Alternate location for the `~/.local/share` directory.
|
|
73
|
+
|
|
74
|
+
## FILES
|
|
75
|
+
|
|
76
|
+
`~/.local/share/ronin-db/database.sqlite3`
|
|
77
|
+
: The default sqlite3 database file.
|
|
78
|
+
|
|
79
|
+
`~/.config/ronin-db/database.yml`
|
|
80
|
+
: Optional database configuration.
|
|
81
|
+
|
|
82
|
+
## AUTHOR
|
|
83
|
+
|
|
84
|
+
Postmodern <postmodern.mod3@gmail.com>
|
|
85
|
+
|
data/man/ronin-db-remove.1
CHANGED
|
@@ -1,62 +1,49 @@
|
|
|
1
|
-
.\" Generated by kramdown-man 0.1
|
|
1
|
+
.\" Generated by kramdown-man 1.0.1
|
|
2
2
|
.\" https://github.com/postmodern/kramdown-man#readme
|
|
3
3
|
.TH ronin-db-remove 1 "2023-02-01" Ronin DB "User Manuals"
|
|
4
|
-
.
|
|
4
|
+
.SH NAME
|
|
5
|
+
.PP
|
|
6
|
+
ronin\-db\-remove \- Removes a database from the configuration file
|
|
5
7
|
.SH SYNOPSIS
|
|
6
|
-
.
|
|
7
|
-
|
|
8
|
-
\fBronin-db remove\fR \[lB]\fIoptions\fP\[rB] \fINAME\fP
|
|
9
|
-
.LP
|
|
8
|
+
.PP
|
|
9
|
+
\fBronin\-db remove\fR \[lB]\fIoptions\fP\[rB] \fINAME\fP
|
|
10
10
|
.SH DESCRIPTION
|
|
11
|
-
.LP
|
|
12
11
|
.PP
|
|
13
|
-
Removes a database entry from the \fB
|
|
12
|
+
Removes a database entry from the \fB\[ti]\[sl]\.config\[sl]ronin\-db\[sl]database\.yml\fR
|
|
14
13
|
configuration file\.
|
|
15
|
-
.LP
|
|
16
14
|
.SH ARGUMENTS
|
|
17
|
-
.LP
|
|
18
15
|
.TP
|
|
19
16
|
\fINAME\fP
|
|
20
17
|
The database entry to remove\.
|
|
21
|
-
.LP
|
|
22
18
|
.SH OPTIONS
|
|
23
|
-
.LP
|
|
24
19
|
.TP
|
|
25
|
-
\fB
|
|
20
|
+
\fB\-h\fR, \fB\-\-help\fR
|
|
26
21
|
Print help information\.
|
|
27
|
-
.LP
|
|
28
22
|
.SH ENVIRONMENT
|
|
29
|
-
.LP
|
|
30
23
|
.TP
|
|
31
24
|
\fIHOME\fP
|
|
32
25
|
Alternate location for the user\[cq]s home directory\.
|
|
33
|
-
.LP
|
|
34
26
|
.TP
|
|
35
27
|
\fIXDG\[ru]CONFIG\[ru]HOME\fP
|
|
36
|
-
Alternate location for the \fB
|
|
37
|
-
.LP
|
|
28
|
+
Alternate location for the \fB\[ti]\[sl]\.config\fR directory\.
|
|
38
29
|
.TP
|
|
39
30
|
\fIXDG\[ru]DATA\[ru]HOME\fP
|
|
40
|
-
Alternate location for the \fB
|
|
41
|
-
.LP
|
|
31
|
+
Alternate location for the \fB\[ti]\[sl]\.local\[sl]share\fR directory\.
|
|
42
32
|
.SH FILES
|
|
43
|
-
.LP
|
|
44
33
|
.TP
|
|
45
|
-
\fB
|
|
34
|
+
\fB\[ti]\[sl]\.local\[sl]share\[sl]ronin\-db\[sl]database\.sqlite3\fR
|
|
46
35
|
The default sqlite3 database file\.
|
|
47
|
-
.LP
|
|
48
36
|
.TP
|
|
49
|
-
\fB
|
|
37
|
+
\fB\[ti]\[sl]\.config\[sl]ronin\-db\[sl]database\.yml\fR
|
|
50
38
|
Optional database configuration\.
|
|
51
|
-
.LP
|
|
52
39
|
.SH AUTHOR
|
|
53
|
-
.LP
|
|
54
40
|
.PP
|
|
55
41
|
Postmodern
|
|
56
42
|
.MT postmodern\.mod3\[at]gmail\.com
|
|
57
43
|
.ME
|
|
58
|
-
.LP
|
|
59
44
|
.SH SEE ALSO
|
|
60
|
-
.LP
|
|
61
45
|
.PP
|
|
62
|
-
|
|
46
|
+
.BR ronin\-db (1)
|
|
47
|
+
.BR ronin\-db\-add (1)
|
|
48
|
+
.BR ronin\-db\-list (1)
|
|
49
|
+
.BR ronin\-db\-edit (1)
|
data/man/ronin-db-remove.1.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# ronin-db-remove 1 "2023-02-01" Ronin DB "User Manuals"
|
|
2
2
|
|
|
3
|
+
## NAME
|
|
4
|
+
|
|
5
|
+
ronin-db-remove - Removes a database from the configuration file
|
|
6
|
+
|
|
3
7
|
## SYNOPSIS
|
|
4
8
|
|
|
5
9
|
`ronin-db remove` [*options*] *NAME*
|
|
@@ -12,31 +16,31 @@ configuration file.
|
|
|
12
16
|
## ARGUMENTS
|
|
13
17
|
|
|
14
18
|
*NAME*
|
|
15
|
-
|
|
19
|
+
: The database entry to remove.
|
|
16
20
|
|
|
17
21
|
## OPTIONS
|
|
18
22
|
|
|
19
23
|
`-h`, `--help`
|
|
20
|
-
|
|
24
|
+
: Print help information.
|
|
21
25
|
|
|
22
26
|
## ENVIRONMENT
|
|
23
27
|
|
|
24
28
|
*HOME*
|
|
25
|
-
|
|
29
|
+
: Alternate location for the user's home directory.
|
|
26
30
|
|
|
27
31
|
*XDG_CONFIG_HOME*
|
|
28
|
-
|
|
32
|
+
: Alternate location for the `~/.config` directory.
|
|
29
33
|
|
|
30
34
|
*XDG_DATA_HOME*
|
|
31
|
-
|
|
35
|
+
: Alternate location for the `~/.local/share` directory.
|
|
32
36
|
|
|
33
37
|
## FILES
|
|
34
38
|
|
|
35
39
|
`~/.local/share/ronin-db/database.sqlite3`
|
|
36
|
-
|
|
40
|
+
: The default sqlite3 database file.
|
|
37
41
|
|
|
38
42
|
`~/.config/ronin-db/database.yml`
|
|
39
|
-
|
|
43
|
+
: Optional database configuration.
|
|
40
44
|
|
|
41
45
|
## AUTHOR
|
|
42
46
|
|
|
@@ -44,4 +48,4 @@ Postmodern <postmodern.mod3@gmail.com>
|
|
|
44
48
|
|
|
45
49
|
## SEE ALSO
|
|
46
50
|
|
|
47
|
-
ronin-db(1) ronin-db-add(1) ronin-db-list(1) ronin-db-edit(1)
|
|
51
|
+
[ronin-db](ronin-db.1.md) [ronin-db-add](ronin-db-add.1.md) [ronin-db-list](ronin-db-list.1.md) [ronin-db-edit](ronin-db-edit.1.md)
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
.\" Generated by kramdown-man 1.0.1
|
|
2
|
+
.\" https://github.com/postmodern/kramdown-man#readme
|
|
3
|
+
.TH ronin-db-services 1 "2023-02-01" Ronin DB "User Manuals"
|
|
4
|
+
.SH NAME
|
|
5
|
+
.PP
|
|
6
|
+
ronin\-db\-services \- Manages services in the database
|
|
7
|
+
.SH SYNOPSIS
|
|
8
|
+
.PP
|
|
9
|
+
\fBronin\-db services\fR \[lB]\fIoptions\fP\[rB]
|
|
10
|
+
.SH DESCRIPTION
|
|
11
|
+
.PP
|
|
12
|
+
Manages Services\.
|
|
13
|
+
.SH OPTIONS
|
|
14
|
+
.TP
|
|
15
|
+
\fB\-\-db\fR \fINAME\fP
|
|
16
|
+
The database to connect to\. Defaults to \fBdefault\fR if not given\.
|
|
17
|
+
.TP
|
|
18
|
+
\fB\-\-db\-uri\fR \fIURI\fP
|
|
19
|
+
The explicit database URI to connect to\.
|
|
20
|
+
.RS
|
|
21
|
+
.RS
|
|
22
|
+
.IP \(bu 2
|
|
23
|
+
\fBsqlite3\fP: \fBsqlite3:relative\[sl]path\.db\fR or \fBsqlite3:\[sl]\[sl]\[sl]absolute\[sl]path\.db\fR
|
|
24
|
+
.IP \(bu 2
|
|
25
|
+
\fBmysql\fP: \fBmysql:\[sl]\[sl]user:password\[at]host\[sl]database\fR
|
|
26
|
+
.IP \(bu 2
|
|
27
|
+
\fBpostgres\fP: \fBpostgres:\[sl]\[sl]user:password\[at]host\[sl]database\fR
|
|
28
|
+
.RE
|
|
29
|
+
.RE
|
|
30
|
+
.TP
|
|
31
|
+
\fB\-\-db\-file\fR \fIPATH\fP
|
|
32
|
+
The sqlite3 database file to use\.
|
|
33
|
+
.TP
|
|
34
|
+
\fB\-v\fR, \fB\-\-verbose\fR
|
|
35
|
+
Enable verbose output\.
|
|
36
|
+
.TP
|
|
37
|
+
\fB\-\-add\fR \fIVALUE\fP
|
|
38
|
+
Adds the URL to the database\.
|
|
39
|
+
.TP
|
|
40
|
+
\fB\-\-import\fR \fIFILE\fP
|
|
41
|
+
Imports the URLs from the given \fIFILE\fP\.
|
|
42
|
+
.TP
|
|
43
|
+
\fB\-\-delete\fR \fIVALUE\fP
|
|
44
|
+
Deletes the URL from the database\.
|
|
45
|
+
.TP
|
|
46
|
+
\fB\-\-delete\-all\fR
|
|
47
|
+
Deletes every URL from the database\.
|
|
48
|
+
.TP
|
|
49
|
+
\fB\-\-named\fR \fINAME\fP
|
|
50
|
+
Searches for all Services that contain \fINAME\fP in it\[cq]s name\.
|
|
51
|
+
.TP
|
|
52
|
+
\fB\-p\fR, \fB\-\-with\-port\fR \fIPORT\fP
|
|
53
|
+
Searches for all Services that are associated with the port number\.
|
|
54
|
+
.TP
|
|
55
|
+
\fB\-P\fR, \fB\-\-with\-protocol\fR \[lB]\fBtcp\fR\[or]\fBudp\fR\[rB]
|
|
56
|
+
Searches for all Services that are associated with the protocol\.
|
|
57
|
+
.TP
|
|
58
|
+
\fB\-I\fR, \fB\-\-with\-ip\fR \fIIP\fP
|
|
59
|
+
Searches for all Services associated with the IP address\.
|
|
60
|
+
.TP
|
|
61
|
+
\fB\-h\fR, \fB\-\-help\fR
|
|
62
|
+
Print help information\.
|
|
63
|
+
.SH ENVIRONMENT
|
|
64
|
+
.TP
|
|
65
|
+
\fIHOME\fP
|
|
66
|
+
Alternate location for the user\[cq]s home directory\.
|
|
67
|
+
.TP
|
|
68
|
+
\fIXDG\[ru]CONFIG\[ru]HOME\fP
|
|
69
|
+
Alternate location for the \fB\[ti]\[sl]\.config\fR directory\.
|
|
70
|
+
.TP
|
|
71
|
+
\fIXDG\[ru]DATA\[ru]HOME\fP
|
|
72
|
+
Alternate location for the \fB\[ti]\[sl]\.local\[sl]share\fR directory\.
|
|
73
|
+
.SH FILES
|
|
74
|
+
.TP
|
|
75
|
+
\fB\[ti]\[sl]\.local\[sl]share\[sl]ronin\-db\[sl]database\.sqlite3\fR
|
|
76
|
+
The default sqlite3 database file\.
|
|
77
|
+
.TP
|
|
78
|
+
\fB\[ti]\[sl]\.config\[sl]ronin\-db\[sl]database\.yml\fR
|
|
79
|
+
Optional database configuration\.
|
|
80
|
+
.SH AUTHOR
|
|
81
|
+
.PP
|
|
82
|
+
Postmodern
|
|
83
|
+
.MT postmodern\.mod3\[at]gmail\.com
|
|
84
|
+
.ME
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
# ronin-db-services 1 "2023-02-01" Ronin DB "User Manuals"
|
|
2
|
+
|
|
3
|
+
## NAME
|
|
4
|
+
|
|
5
|
+
ronin-db-services - Manages services in the database
|
|
6
|
+
|
|
7
|
+
## SYNOPSIS
|
|
8
|
+
|
|
9
|
+
`ronin-db services` [*options*]
|
|
10
|
+
|
|
11
|
+
## DESCRIPTION
|
|
12
|
+
|
|
13
|
+
Manages Services.
|
|
14
|
+
|
|
15
|
+
## OPTIONS
|
|
16
|
+
|
|
17
|
+
`--db` *NAME*
|
|
18
|
+
: The database to connect to. Defaults to `default` if not given.
|
|
19
|
+
|
|
20
|
+
`--db-uri` *URI*
|
|
21
|
+
: The explicit database URI to connect to.
|
|
22
|
+
|
|
23
|
+
* **sqlite3**: `sqlite3:relative/path.db` or `sqlite3:///absolute/path.db`
|
|
24
|
+
* **mysql**: `mysql://user:password@host/database`
|
|
25
|
+
* **postgres**: `postgres://user:password@host/database`
|
|
26
|
+
|
|
27
|
+
`--db-file` *PATH*
|
|
28
|
+
: The sqlite3 database file to use.
|
|
29
|
+
|
|
30
|
+
`-v`, `--verbose`
|
|
31
|
+
: Enable verbose output.
|
|
32
|
+
|
|
33
|
+
`--add` *VALUE*
|
|
34
|
+
: Adds the URL to the database.
|
|
35
|
+
|
|
36
|
+
`--import` *FILE*
|
|
37
|
+
: Imports the URLs from the given *FILE*.
|
|
38
|
+
|
|
39
|
+
`--delete` *VALUE*
|
|
40
|
+
: Deletes the URL from the database.
|
|
41
|
+
|
|
42
|
+
`--delete-all`
|
|
43
|
+
: Deletes every URL from the database.
|
|
44
|
+
|
|
45
|
+
`--named` *NAME*
|
|
46
|
+
: Searches for all Services that contain *NAME* in it's name.
|
|
47
|
+
|
|
48
|
+
`-p`, `--with-port` *PORT*
|
|
49
|
+
: Searches for all Services that are associated with the port number.
|
|
50
|
+
|
|
51
|
+
`-P`, `--with-protocol` [`tcp`\|`udp`]
|
|
52
|
+
: Searches for all Services that are associated with the protocol.
|
|
53
|
+
|
|
54
|
+
`-I`, `--with-ip` *IP*
|
|
55
|
+
: Searches for all Services associated with the IP address.
|
|
56
|
+
|
|
57
|
+
`-h`, `--help`
|
|
58
|
+
: Print help information.
|
|
59
|
+
|
|
60
|
+
## ENVIRONMENT
|
|
61
|
+
|
|
62
|
+
*HOME*
|
|
63
|
+
: Alternate location for the user's home directory.
|
|
64
|
+
|
|
65
|
+
*XDG_CONFIG_HOME*
|
|
66
|
+
: Alternate location for the `~/.config` directory.
|
|
67
|
+
|
|
68
|
+
*XDG_DATA_HOME*
|
|
69
|
+
: Alternate location for the `~/.local/share` directory.
|
|
70
|
+
|
|
71
|
+
## FILES
|
|
72
|
+
|
|
73
|
+
`~/.local/share/ronin-db/database.sqlite3`
|
|
74
|
+
: The default sqlite3 database file.
|
|
75
|
+
|
|
76
|
+
`~/.config/ronin-db/database.yml`
|
|
77
|
+
: Optional database configuration.
|
|
78
|
+
|
|
79
|
+
## AUTHOR
|
|
80
|
+
|
|
81
|
+
Postmodern <postmodern.mod3@gmail.com>
|
|
82
|
+
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
.\" Generated by kramdown-man 1.0.1
|
|
2
|
+
.\" https://github.com/postmodern/kramdown-man#readme
|
|
3
|
+
.TH ronin-db-software 1 "2023-02-01" Ronin DB "User Manuals"
|
|
4
|
+
.SH NAME
|
|
5
|
+
.PP
|
|
6
|
+
ronin\-db\-software \- Queries software in the database
|
|
7
|
+
.SH SYNOPSIS
|
|
8
|
+
.PP
|
|
9
|
+
\fBronin\-db software\fR \[lB]\fIoptions\fP\[rB]
|
|
10
|
+
.SH DESCRIPTION
|
|
11
|
+
.PP
|
|
12
|
+
Queries Software in the database\.
|
|
13
|
+
.SH OPTIONS
|
|
14
|
+
.TP
|
|
15
|
+
\fB\-\-db\fR \fINAME\fP
|
|
16
|
+
The database name to connect to\. Defaults to \fBdefault\fR if not given\.
|
|
17
|
+
.TP
|
|
18
|
+
\fB\-\-db\-uri\fR \fIURI\fP
|
|
19
|
+
The explicit database URI to connect to\.
|
|
20
|
+
.RS
|
|
21
|
+
.RS
|
|
22
|
+
.IP \(bu 2
|
|
23
|
+
\fBsqlite3\fP: \fBsqlite3:relative\[sl]path\.db\fR or \fBsqlite3:\[sl]\[sl]\[sl]absolute\[sl]path\.db\fR
|
|
24
|
+
.IP \(bu 2
|
|
25
|
+
\fBmysql\fP: \fBmysql:\[sl]\[sl]user:password\[at]host\[sl]database\fR
|
|
26
|
+
.IP \(bu 2
|
|
27
|
+
\fBpostgres\fP: \fBpostgres:\[sl]\[sl]user:password\[at]host\[sl]database\fR
|
|
28
|
+
.RE
|
|
29
|
+
.RE
|
|
30
|
+
.TP
|
|
31
|
+
\fB\-\-db\-file\fR \fIPATH\fP
|
|
32
|
+
The sqlite3 database file to use\.
|
|
33
|
+
.TP
|
|
34
|
+
\fB\-v\fR, \fB\-\-verbose\fR
|
|
35
|
+
Enables verbose output
|
|
36
|
+
.TP
|
|
37
|
+
\fB\-N\fR, \fB\-\-name\fR \fINAME\fP
|
|
38
|
+
Searches for all Software with the matching name\.
|
|
39
|
+
.TP
|
|
40
|
+
\fB\-\-named\fR \fINAME\fP
|
|
41
|
+
Searches for all Software containing the name\.
|
|
42
|
+
.TP
|
|
43
|
+
\fB\-V\fR, \fB\-\-version\fR \fIVERSION\fP
|
|
44
|
+
Searches for all Software with the matching version\.
|
|
45
|
+
.TP
|
|
46
|
+
\fB\-\-vendor\fR \fIVENDOR\fP
|
|
47
|
+
Searches for all Software with the matching vendor name\.
|
|
48
|
+
.TP
|
|
49
|
+
\fB\-h\fR, \fB\-\-help\fR
|
|
50
|
+
Print help information\.
|
|
51
|
+
.SH ENVIRONMENT
|
|
52
|
+
.TP
|
|
53
|
+
\fIHOME\fP
|
|
54
|
+
Alternate location for the user\[cq]s home directory\.
|
|
55
|
+
.TP
|
|
56
|
+
\fIXDG\[ru]CONFIG\[ru]HOME\fP
|
|
57
|
+
Alternate location for the \fB\[ti]\[sl]\.config\fR directory\.
|
|
58
|
+
.TP
|
|
59
|
+
\fIXDG\[ru]DATA\[ru]HOME\fP
|
|
60
|
+
Alternate location for the \fB\[ti]\[sl]\.local\[sl]share\fR directory\.
|
|
61
|
+
.SH FILES
|
|
62
|
+
.TP
|
|
63
|
+
\fB\[ti]\[sl]\.local\[sl]share\[sl]ronin\-db\[sl]database\.sqlite3\fR
|
|
64
|
+
The default sqlite3 database file\.
|
|
65
|
+
.TP
|
|
66
|
+
\fB\[ti]\[sl]\.config\[sl]ronin\-db\[sl]database\.yml\fR
|
|
67
|
+
Optional database configuration\.
|
|
68
|
+
.SH AUTHOR
|
|
69
|
+
.PP
|
|
70
|
+
Postmodern
|
|
71
|
+
.MT postmodern\.mod3\[at]gmail\.com
|
|
72
|
+
.ME
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
# ronin-db-software 1 "2023-02-01" Ronin DB "User Manuals"
|
|
2
|
+
|
|
3
|
+
## NAME
|
|
4
|
+
|
|
5
|
+
ronin-db-software - Queries software in the database
|
|
6
|
+
|
|
7
|
+
## SYNOPSIS
|
|
8
|
+
|
|
9
|
+
`ronin-db software` [*options*]
|
|
10
|
+
|
|
11
|
+
## DESCRIPTION
|
|
12
|
+
|
|
13
|
+
Queries Software in the database.
|
|
14
|
+
|
|
15
|
+
## OPTIONS
|
|
16
|
+
|
|
17
|
+
`--db` *NAME*
|
|
18
|
+
: The database name to connect to. Defaults to `default` if not given.
|
|
19
|
+
|
|
20
|
+
`--db-uri` *URI*
|
|
21
|
+
: The explicit database URI to connect to.
|
|
22
|
+
|
|
23
|
+
* **sqlite3**: `sqlite3:relative/path.db` or `sqlite3:///absolute/path.db`
|
|
24
|
+
* **mysql**: `mysql://user:password@host/database`
|
|
25
|
+
* **postgres**: `postgres://user:password@host/database`
|
|
26
|
+
|
|
27
|
+
`--db-file` *PATH*
|
|
28
|
+
: The sqlite3 database file to use.
|
|
29
|
+
|
|
30
|
+
`-v`, `--verbose`
|
|
31
|
+
: Enables verbose output
|
|
32
|
+
|
|
33
|
+
`-N`, `--name` *NAME*
|
|
34
|
+
: Searches for all Software with the matching name.
|
|
35
|
+
|
|
36
|
+
`--named` *NAME*
|
|
37
|
+
: Searches for all Software containing the name.
|
|
38
|
+
|
|
39
|
+
`-V`, `--version` *VERSION*
|
|
40
|
+
: Searches for all Software with the matching version.
|
|
41
|
+
|
|
42
|
+
`--vendor` *VENDOR*
|
|
43
|
+
: Searches for all Software with the matching vendor name.
|
|
44
|
+
|
|
45
|
+
`-h`, `--help`
|
|
46
|
+
: Print help information.
|
|
47
|
+
|
|
48
|
+
## ENVIRONMENT
|
|
49
|
+
|
|
50
|
+
*HOME*
|
|
51
|
+
: Alternate location for the user's home directory.
|
|
52
|
+
|
|
53
|
+
*XDG_CONFIG_HOME*
|
|
54
|
+
: Alternate location for the `~/.config` directory.
|
|
55
|
+
|
|
56
|
+
*XDG_DATA_HOME*
|
|
57
|
+
: Alternate location for the `~/.local/share` directory.
|
|
58
|
+
|
|
59
|
+
## FILES
|
|
60
|
+
|
|
61
|
+
`~/.local/share/ronin-db/database.sqlite3`
|
|
62
|
+
: The default sqlite3 database file.
|
|
63
|
+
|
|
64
|
+
`~/.config/ronin-db/database.yml`
|
|
65
|
+
: Optional database configuration.
|
|
66
|
+
|
|
67
|
+
## AUTHOR
|
|
68
|
+
|
|
69
|
+
Postmodern <postmodern.mod3@gmail.com>
|
|
70
|
+
|