ronin 1.5.0 → 1.5.1
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/.editorconfig +11 -0
- data/.github/workflows/ruby.yml +32 -0
- data/.gitignore +7 -7
- data/.ruby-version +1 -0
- data/COPYING.txt +3 -3
- data/ChangeLog.md +25 -11
- data/Gemfile +21 -20
- data/README.md +102 -81
- data/Rakefile +4 -5
- data/bin/ronin +7 -12
- data/bin/ronin-campaigns +7 -12
- data/bin/ronin-console +7 -12
- data/bin/ronin-creds +7 -12
- data/bin/ronin-database +7 -12
- data/bin/ronin-emails +7 -12
- data/bin/ronin-exec +7 -12
- data/bin/ronin-fuzzer +7 -12
- data/bin/ronin-help +7 -12
- data/bin/ronin-hosts +7 -12
- data/bin/ronin-install +7 -12
- data/bin/ronin-ips +7 -12
- data/bin/ronin-net-proxy +7 -12
- data/bin/ronin-repos +7 -12
- data/bin/ronin-uninstall +7 -12
- data/bin/ronin-update +7 -12
- data/bin/ronin-urls +7 -12
- data/bin/ronin-wordlist +7 -12
- data/gemspec.yml +8 -8
- data/lib/bond/completions/ronin.rb +23 -23
- data/lib/ronin.rb +3 -3
- data/lib/ronin/address.rb +6 -7
- data/lib/ronin/arch.rb +3 -3
- data/lib/ronin/author.rb +5 -7
- data/lib/ronin/auto_load.rb +5 -5
- data/lib/ronin/bootstrap.rb +3 -3
- data/lib/ronin/campaign.rb +3 -3
- data/lib/ronin/config.rb +5 -7
- data/lib/ronin/credential.rb +3 -3
- data/lib/ronin/database.rb +3 -3
- data/lib/ronin/database/database.rb +8 -12
- data/lib/ronin/database/exceptions.rb +3 -3
- data/lib/ronin/database/exceptions/invalid_config.rb +3 -3
- data/lib/ronin/database/exceptions/unknown_repository.rb +3 -3
- data/lib/ronin/database/migrations.rb +3 -3
- data/lib/ronin/database/migrations/1.0.0.rb +3 -3
- data/lib/ronin/database/migrations/1.1.0.rb +3 -3
- data/lib/ronin/database/migrations/exceptions.rb +3 -3
- data/lib/ronin/database/migrations/exceptions/duplicate_migration.rb +3 -3
- data/lib/ronin/database/migrations/exceptions/unknown_migration.rb +3 -3
- data/lib/ronin/database/migrations/graph.rb +3 -3
- data/lib/ronin/database/migrations/migration.rb +3 -3
- data/lib/ronin/database/migrations/migrations.rb +3 -3
- data/lib/ronin/email_address.rb +5 -7
- data/lib/ronin/environment.rb +3 -3
- data/lib/ronin/exceptions.rb +3 -3
- data/lib/ronin/exceptions/duplicate_repository.rb +3 -3
- data/lib/ronin/exceptions/repository_not_found.rb +3 -3
- data/lib/ronin/host_name.rb +3 -3
- data/lib/ronin/host_name_ip_address.rb +3 -3
- data/lib/ronin/installation.rb +5 -7
- data/lib/ronin/ip_address.rb +6 -8
- data/lib/ronin/ip_address_mac_address.rb +3 -3
- data/lib/ronin/license.rb +6 -6
- data/lib/ronin/mac_address.rb +3 -3
- data/lib/ronin/model.rb +3 -3
- data/lib/ronin/model/has_authors.rb +3 -3
- data/lib/ronin/model/has_description.rb +3 -3
- data/lib/ronin/model/has_license.rb +3 -3
- data/lib/ronin/model/has_name.rb +3 -3
- data/lib/ronin/model/has_title.rb +3 -3
- data/lib/ronin/model/has_unique_name.rb +5 -7
- data/lib/ronin/model/has_version.rb +3 -3
- data/lib/ronin/model/importable.rb +3 -3
- data/lib/ronin/model/model.rb +7 -8
- data/lib/ronin/model/types.rb +3 -3
- data/lib/ronin/model/types/description.rb +9 -12
- data/lib/ronin/open_port.rb +5 -7
- data/lib/ronin/organization.rb +3 -3
- data/lib/ronin/os.rb +5 -7
- data/lib/ronin/os_guess.rb +3 -3
- data/lib/ronin/password.rb +3 -3
- data/lib/ronin/port.rb +3 -3
- data/lib/ronin/repositories.rb +3 -3
- data/lib/ronin/repository.rb +3 -3
- data/lib/ronin/ronin.rb +3 -3
- data/lib/ronin/script.rb +3 -3
- data/lib/ronin/script/buildable.rb +3 -3
- data/lib/ronin/script/deployable.rb +3 -3
- data/lib/ronin/script/exceptions.rb +3 -3
- data/lib/ronin/script/exceptions/build_failed.rb +3 -3
- data/lib/ronin/script/exceptions/deploy_failed.rb +3 -3
- data/lib/ronin/script/exceptions/exception.rb +3 -3
- data/lib/ronin/script/exceptions/not_built.rb +3 -3
- data/lib/ronin/script/exceptions/test_failed.rb +3 -3
- data/lib/ronin/script/path.rb +3 -3
- data/lib/ronin/script/script.rb +3 -3
- data/lib/ronin/script/testable.rb +3 -3
- data/lib/ronin/service.rb +3 -3
- data/lib/ronin/service_credential.rb +3 -3
- data/lib/ronin/software.rb +3 -3
- data/lib/ronin/spec/database.rb +27 -21
- data/lib/ronin/target.rb +3 -3
- data/lib/ronin/tcp_port.rb +3 -3
- data/lib/ronin/udp_port.rb +3 -3
- data/lib/ronin/ui.rb +3 -3
- data/lib/ronin/ui/cli.rb +3 -3
- data/lib/ronin/ui/cli/class_command.rb +14 -7
- data/lib/ronin/ui/cli/cli.rb +5 -5
- data/lib/ronin/ui/cli/command.rb +5 -7
- data/lib/ronin/ui/cli/commands.rb +3 -3
- data/lib/ronin/ui/cli/commands/campaigns.rb +5 -7
- data/lib/ronin/ui/cli/commands/console.rb +3 -3
- data/lib/ronin/ui/cli/commands/creds.rb +3 -3
- data/lib/ronin/ui/cli/commands/database.rb +3 -3
- data/lib/ronin/ui/cli/commands/emails.rb +3 -3
- data/lib/ronin/ui/cli/commands/exec.rb +3 -3
- data/lib/ronin/ui/cli/commands/fuzzer.rb +16 -16
- data/lib/ronin/ui/cli/commands/help.rb +3 -3
- data/lib/ronin/ui/cli/commands/hosts.rb +5 -7
- data/lib/ronin/ui/cli/commands/install.rb +7 -11
- data/lib/ronin/ui/cli/commands/ips.rb +5 -7
- data/lib/ronin/ui/cli/commands/net/proxy.rb +19 -12
- data/lib/ronin/ui/cli/commands/repos.rb +3 -3
- data/lib/ronin/ui/cli/commands/uninstall.rb +3 -3
- data/lib/ronin/ui/cli/commands/update.rb +3 -3
- data/lib/ronin/ui/cli/commands/urls.rb +3 -3
- data/lib/ronin/ui/cli/commands/wordlist.rb +3 -3
- data/lib/ronin/ui/cli/exceptions.rb +3 -3
- data/lib/ronin/ui/cli/exceptions/unknown_command.rb +3 -3
- data/lib/ronin/ui/cli/model_command.rb +6 -9
- data/lib/ronin/ui/cli/printing.rb +3 -3
- data/lib/ronin/ui/cli/resources_command.rb +7 -11
- data/lib/ronin/ui/cli/script_command.rb +5 -10
- data/lib/ronin/ui/console.rb +3 -3
- data/lib/ronin/ui/console/commands.rb +3 -3
- data/lib/ronin/ui/console/console.rb +3 -3
- data/lib/ronin/ui/console/context.rb +3 -3
- data/lib/ronin/ui/console/shell.rb +3 -3
- data/lib/ronin/url.rb +5 -7
- data/lib/ronin/url_query_param.rb +3 -3
- data/lib/ronin/url_query_param_name.rb +6 -6
- data/lib/ronin/url_scheme.rb +4 -4
- data/lib/ronin/user_name.rb +3 -3
- data/lib/ronin/vendor.rb +3 -3
- data/lib/ronin/version.rb +5 -5
- data/lib/ronin/web_credential.rb +5 -7
- data/man/ronin-campaigns.1.md +20 -20
- data/man/ronin-console.1.md +17 -17
- data/man/ronin-creds.1.md +16 -16
- data/man/ronin-database.1.md +23 -23
- data/man/ronin-emails.1.md +18 -18
- data/man/ronin-exec.1.md +11 -11
- data/man/ronin-fuzzer.1.md +23 -23
- data/man/ronin-help.1.md +5 -5
- data/man/ronin-hosts.1.md +20 -20
- data/man/ronin-install.1.md +18 -18
- data/man/ronin-ips.1.md +21 -21
- data/man/ronin-net-proxy.1.md +24 -24
- data/man/ronin-repos.1.md +18 -18
- data/man/ronin-uninstall.1.md +14 -14
- data/man/ronin-update.1.md +14 -14
- data/man/ronin-urls.1.md +22 -22
- data/man/ronin-wordlist.1.md +14 -13
- data/man/ronin.1.md +1 -1
- data/spec/arch_spec.rb +59 -46
- data/spec/author_spec.rb +14 -14
- data/spec/campaign_spec.rb +8 -0
- data/spec/credential_spec.rb +11 -8
- data/spec/database_spec.rb +6 -6
- data/spec/email_address_spec.rb +23 -20
- data/spec/host_name_spec.rb +24 -22
- data/spec/installation_spec.rb +6 -6
- data/spec/ip_address_spec.rb +31 -26
- data/spec/license_spec.rb +15 -9
- data/spec/mac_address_spec.rb +17 -8
- data/spec/model/has_authors_spec.rb +56 -37
- data/spec/model/has_description_spec.rb +36 -23
- data/spec/model/has_license_spec.rb +38 -28
- data/spec/model/has_name_spec.rb +36 -19
- data/spec/model/has_title_spec.rb +27 -14
- data/spec/model/has_version_spec.rb +64 -35
- data/spec/model/model_spec.rb +57 -33
- data/spec/model/models/{basic_model.rb → base_model.rb} +1 -1
- data/spec/model/models/{custom_model.rb → inherited_model.rb} +2 -3
- data/spec/os_spec.rb +24 -20
- data/spec/password_spec.rb +17 -9
- data/spec/port_spec.rb +30 -22
- data/spec/repository_spec.rb +59 -60
- data/spec/ronin_spec.rb +4 -4
- data/spec/script/buildable_spec.rb +8 -8
- data/spec/script/deployable_spec.rb +7 -7
- data/spec/script/path_spec.rb +42 -40
- data/spec/script/script_spec.rb +23 -23
- data/spec/script/testable_spec.rb +20 -20
- data/spec/service_spec.rb +14 -8
- data/spec/software_spec.rb +30 -17
- data/spec/spec_helper.rb +4 -4
- data/spec/ui/cli/classes/test_command.rb +2 -4
- data/spec/ui/cli/cli_spec.rb +5 -5
- data/spec/ui/cli/command_spec.rb +34 -30
- data/spec/url_query_param_spec.rb +23 -14
- data/spec/url_scheme_spec.rb +12 -9
- data/spec/url_spec.rb +64 -61
- data/spec/vendor_spec.rb +15 -8
- metadata +122 -150
- data/.gemtest +0 -0
data/man/ronin-help.1.md
CHANGED
@@ -12,21 +12,21 @@ COMMAND.
|
|
12
12
|
## ARGUMENTS
|
13
13
|
|
14
14
|
*COMMAND*
|
15
|
-
|
15
|
+
The optional command to get detailed help information on.
|
16
16
|
|
17
17
|
## OPTIONS
|
18
18
|
|
19
19
|
`-v`, `--[no-]verbose`
|
20
|
-
|
20
|
+
Enable verbose output.
|
21
21
|
|
22
22
|
`-q`, `--[no-]quiet`
|
23
|
-
|
23
|
+
Disable verbose output.
|
24
24
|
|
25
25
|
`--[no-]silent`
|
26
|
-
|
26
|
+
Silence all output.
|
27
27
|
|
28
28
|
`--[no-]color`
|
29
|
-
|
29
|
+
Enables color output.
|
30
30
|
|
31
31
|
## AUTHOR
|
32
32
|
|
data/man/ronin-hosts.1.md
CHANGED
@@ -11,66 +11,66 @@ Manages HostNames.
|
|
11
11
|
## OPTIONS
|
12
12
|
|
13
13
|
`-v`, `--[no-]verbose`
|
14
|
-
|
14
|
+
Enable verbose output.
|
15
15
|
|
16
16
|
`-q`, `--[no-]quiet`
|
17
|
-
|
17
|
+
Disable verbose output.
|
18
18
|
|
19
19
|
`--[no-]silent`
|
20
|
-
|
20
|
+
Silence all output.
|
21
21
|
|
22
22
|
`--[no-]color`
|
23
|
-
|
23
|
+
Enables color output.
|
24
24
|
|
25
25
|
`-D`, `--database` *URI*
|
26
|
-
|
26
|
+
The database to URI (`mysql://user:password@host/ronin`).
|
27
27
|
|
28
28
|
`--[no-]csv`
|
29
|
-
|
29
|
+
CSV output.
|
30
30
|
|
31
31
|
`--[no-]xml`
|
32
|
-
|
32
|
+
XML output.
|
33
33
|
|
34
34
|
`--[no-]yaml`
|
35
|
-
|
35
|
+
YAML output.
|
36
36
|
|
37
37
|
`--[no-]json`
|
38
|
-
|
38
|
+
JSON output.
|
39
39
|
|
40
40
|
`-i`, `--import` *FILE*
|
41
|
-
|
41
|
+
Imports HostNames from the FILE.
|
42
42
|
|
43
43
|
`-I`, `--with-ips` *IP* [...]
|
44
|
-
|
44
|
+
Searches for HostNames associated with the IP Address(es).
|
45
45
|
|
46
46
|
`-p`, `--with-ports` *PORT* [...]
|
47
|
-
|
47
|
+
Searches for HostNames associated with the PORT(s).
|
48
48
|
|
49
49
|
`-D`, `--domain` *DOMAIN*
|
50
|
-
|
50
|
+
Searches for HostNames belonging to the DOMAIN (`co.uk`).
|
51
51
|
|
52
52
|
`-T`, `--tld` *TLD*
|
53
|
-
|
53
|
+
Searches for HostNames with the Top-Level-Domain (TLD) (`ru`).
|
54
54
|
|
55
55
|
`-l`, `--[no-]list`
|
56
|
-
|
56
|
+
Lists the HostNames.
|
57
57
|
|
58
58
|
`-L`, `--lookup` *IP*
|
59
|
-
|
59
|
+
Looks the HostNames associated with the IP Address.
|
60
60
|
|
61
61
|
## FILES
|
62
62
|
|
63
63
|
*~/.ronin/*
|
64
|
-
|
64
|
+
Ronin configuration directory.
|
65
65
|
|
66
66
|
*~/.ronin/database.log*
|
67
|
-
|
67
|
+
Database log.
|
68
68
|
|
69
69
|
*~/.ronin/database.sqlite3*
|
70
|
-
|
70
|
+
The default sqlite3 Database file.
|
71
71
|
|
72
72
|
*~/.ronin/database.yml*
|
73
|
-
|
73
|
+
Optional Database configuration.
|
74
74
|
|
75
75
|
## AUTHOR
|
76
76
|
|
data/man/ronin-install.1.md
CHANGED
@@ -11,64 +11,64 @@ Installs Ronin Repositories.
|
|
11
11
|
## ARGUMENTS
|
12
12
|
|
13
13
|
*URI*
|
14
|
-
|
14
|
+
The URI of the Repository to be installed.
|
15
15
|
|
16
16
|
## OPTIONS
|
17
17
|
|
18
18
|
`-v`, `--[no-]verbose`
|
19
|
-
|
19
|
+
Enable verbose output.
|
20
20
|
|
21
21
|
`-q`, `--[no-]quiet`
|
22
|
-
|
22
|
+
Disable verbose output.
|
23
23
|
|
24
24
|
`--[no-]silent`
|
25
|
-
|
25
|
+
Silence all output.
|
26
26
|
|
27
27
|
`--[no-]color`
|
28
|
-
|
28
|
+
Enables color output.
|
29
29
|
|
30
30
|
`--[no-]rsync`
|
31
|
-
|
31
|
+
Installs the Repository using Rsync.
|
32
32
|
|
33
33
|
`--[no-]svn`
|
34
|
-
|
34
|
+
Installs the Repository using SubVersion (SVN).
|
35
35
|
|
36
36
|
`--[no-]hg`
|
37
|
-
|
37
|
+
Installs the Repository using Mercurial (Hg).
|
38
38
|
|
39
39
|
`--[no-]git`
|
40
|
-
|
40
|
+
Installs the Repository using Git.
|
41
41
|
|
42
42
|
## FILES
|
43
43
|
|
44
44
|
*~/.ronin/*
|
45
|
-
|
45
|
+
Ronin configuration directory.
|
46
46
|
|
47
47
|
*~/.ronin/repos/*
|
48
|
-
|
48
|
+
Installation directory for Ronin Repositories.
|
49
49
|
|
50
50
|
*~/.ronin/database.log*
|
51
|
-
|
51
|
+
Database log.
|
52
52
|
|
53
53
|
*~/.ronin/database.sqlite3*
|
54
|
-
|
54
|
+
The default sqlite3 Database file.
|
55
55
|
|
56
56
|
*~/.ronin/database.yml*
|
57
|
-
|
57
|
+
Optional Database configuration.
|
58
58
|
|
59
59
|
## ENVIRONMENT
|
60
60
|
|
61
61
|
HOME
|
62
|
-
|
63
|
-
|
62
|
+
Specifies the home directory of the user. Ronin will search for the
|
63
|
+
*~/.ronin/* configuration directory within the home directory.
|
64
64
|
|
65
65
|
## EXAMPLES
|
66
66
|
|
67
67
|
`ronin install git://github.com/user/repo.git`
|
68
|
-
|
68
|
+
Installs a Ronin Repository using git.
|
69
69
|
|
70
70
|
`ronin install --git git@example.com:/home/secret/repo`
|
71
|
-
|
71
|
+
Installs a Ronin Repository using git over ssh.
|
72
72
|
|
73
73
|
## AUTHOR
|
74
74
|
|
data/man/ronin-ips.1.md
CHANGED
@@ -11,69 +11,69 @@ Manages IPAddresses.
|
|
11
11
|
## OPTIONS
|
12
12
|
|
13
13
|
`-v`, `--[no-]verbose`
|
14
|
-
|
14
|
+
Enable verbose output.
|
15
15
|
|
16
16
|
`-q`, `--[no-]quiet`
|
17
|
-
|
17
|
+
Disable verbose output.
|
18
18
|
|
19
19
|
`--[no-]silent`
|
20
|
-
|
20
|
+
Silence all output.
|
21
21
|
|
22
22
|
`--[no-]color`
|
23
|
-
|
23
|
+
Enables color output.
|
24
24
|
|
25
25
|
`-D`, `--database` *URI*
|
26
|
-
|
26
|
+
The database to URI (`mysql://user:password@host/ronin`).
|
27
27
|
|
28
28
|
`--[no-]csv`
|
29
|
-
|
29
|
+
CSV output.
|
30
30
|
|
31
31
|
`--[no-]xml`
|
32
|
-
|
32
|
+
XML output.
|
33
33
|
|
34
34
|
`--[no-]yaml`
|
35
|
-
|
35
|
+
YAML output.
|
36
36
|
|
37
37
|
`--[no-]json`
|
38
|
-
|
38
|
+
JSON output.
|
39
39
|
|
40
40
|
`-i`, `--import` *FILE*
|
41
|
-
|
41
|
+
Imports HostNames from the FILE.
|
42
42
|
|
43
43
|
`-4`, `--[no-]v4`
|
44
|
-
|
44
|
+
Searches for IPv4 addresses.
|
45
45
|
|
46
46
|
`-6`, `--[no-]v6`
|
47
|
-
|
47
|
+
Searches for IPv6 addresses.
|
48
48
|
|
49
49
|
`-p`, `--with-ports` *PORT* [...]
|
50
|
-
|
50
|
+
Searches for IPAddresses associated with the user PORT(s).
|
51
51
|
|
52
52
|
`-I`, `--with-macs` *MAC* [...]
|
53
|
-
|
53
|
+
Searches for IPAddresses associated with the MAC Address(es).
|
54
54
|
|
55
55
|
`-I`, `--with-hosts` *HOST* [...]
|
56
|
-
|
56
|
+
Searches for IPAddresses associated with the HOST(s).
|
57
57
|
|
58
58
|
`-l`, `--[no-]list`
|
59
|
-
|
59
|
+
Lists the IPAddresses.
|
60
60
|
|
61
61
|
`-L`, `--lookup` *IP*
|
62
|
-
|
62
|
+
Looks the IPAddresses associated with the IP Address.
|
63
63
|
|
64
64
|
## FILES
|
65
65
|
|
66
66
|
*~/.ronin/*
|
67
|
-
|
67
|
+
Ronin configuration directory.
|
68
68
|
|
69
69
|
*~/.ronin/database.log*
|
70
|
-
|
70
|
+
Database log.
|
71
71
|
|
72
72
|
*~/.ronin/database.sqlite3*
|
73
|
-
|
73
|
+
The default sqlite3 Database file.
|
74
74
|
|
75
75
|
*~/.ronin/database.yml*
|
76
|
-
|
76
|
+
Optional Database configuration.
|
77
77
|
|
78
78
|
## AUTHOR
|
79
79
|
|
data/man/ronin-net-proxy.1.md
CHANGED
@@ -11,74 +11,74 @@ Starts the Ronin TCP/UDP Proxy.
|
|
11
11
|
## ARGUMENTS
|
12
12
|
|
13
13
|
*SERVER*
|
14
|
-
|
14
|
+
The `host:port` of the server to proxy.
|
15
15
|
|
16
16
|
## OPTIONS
|
17
17
|
|
18
18
|
`--[no-]tcp`
|
19
|
-
|
19
|
+
Enables or disables TCP mode.
|
20
20
|
|
21
21
|
`--[no-]udp`
|
22
|
-
|
22
|
+
Enables or disables UDP mode.
|
23
23
|
|
24
24
|
`--[no-]hexdump`
|
25
|
-
|
25
|
+
Enables or disables hexdump mode.
|
26
26
|
|
27
27
|
`--host` HOST
|
28
|
-
|
28
|
+
The HOST the proxy will listen on. Defaults to "0.0.0.0".
|
29
29
|
|
30
30
|
`--port` PORT
|
31
|
-
|
31
|
+
The PORT the proxy will listen on.
|
32
32
|
|
33
33
|
`--rewrite-client` */REGEXP/:STRING*
|
34
|
-
|
34
|
+
Replace REGEXP with STRING in every client message.
|
35
35
|
|
36
36
|
`--rewrite-server` */REGEXP/:STRING*
|
37
|
-
|
37
|
+
Replace REGEXP with STRING in every server message.
|
38
38
|
|
39
39
|
`--rewrite` */REGEXP/:STRING*
|
40
|
-
|
40
|
+
Replace REGEXP with STRING in every message.
|
41
41
|
|
42
42
|
`--ignore-client` */REGEXP/*
|
43
|
-
|
43
|
+
Ignore messages from the client matching the REGEXP.
|
44
44
|
|
45
45
|
`--ignore-server` */REGEXP/*
|
46
|
-
|
46
|
+
Ignore messages from the server matching the REGEXP.
|
47
47
|
|
48
48
|
`--ignore` */REGEXP/*
|
49
|
-
|
49
|
+
Ignore messages matching the REGEXP.
|
50
50
|
|
51
51
|
`--close-client` */REGEXP/*
|
52
|
-
|
52
|
+
Closes the connection if the client sends a message matching the REGEXP.
|
53
53
|
|
54
54
|
`--close-server` */REGEXP/*
|
55
|
-
|
55
|
+
Closes the connection if the server sends a message matching the REGEXP.
|
56
56
|
|
57
57
|
`--close` */REGEXP/*
|
58
|
-
|
59
|
-
|
58
|
+
Closes the connection if the client or server sends a message matching
|
59
|
+
the REGEXP.
|
60
60
|
|
61
61
|
`--reset-client` */REGEXP/*
|
62
|
-
|
62
|
+
Reset the connection if the client sends a message matching the REGEXP.
|
63
63
|
|
64
64
|
`--reset-server` */REGEXP/*
|
65
|
-
|
65
|
+
Reset the connection if the server sends a message matching the REGEXP.
|
66
66
|
|
67
67
|
`--reset` */REGEXP/*
|
68
|
-
|
69
|
-
|
68
|
+
Reset the connection if the client or server sends a message matching
|
69
|
+
the REGEXP.
|
70
70
|
|
71
71
|
`-v`, `--[no-]verbose`
|
72
|
-
|
72
|
+
Enable verbose output.
|
73
73
|
|
74
74
|
`-q`, `--[no-]quiet`
|
75
|
-
|
75
|
+
Disable verbose output.
|
76
76
|
|
77
77
|
`--[no-]silent`
|
78
|
-
|
78
|
+
Silence all output.
|
79
79
|
|
80
80
|
`--[no-]color`
|
81
|
-
|
81
|
+
Enables color output.
|
82
82
|
|
83
83
|
## AUTHOR
|
84
84
|
|
data/man/ronin-repos.1.md
CHANGED
@@ -11,62 +11,62 @@ Lists Ronin Repositories.
|
|
11
11
|
## ARGUMENTS
|
12
12
|
|
13
13
|
*REPO*
|
14
|
-
|
14
|
+
The name of the Repository to list.
|
15
15
|
|
16
16
|
## OPTIONS
|
17
17
|
|
18
18
|
`-v`, `--[no-]verbose`
|
19
|
-
|
19
|
+
Enable verbose output.
|
20
20
|
|
21
21
|
`-q`, `--[no-]quiet`
|
22
|
-
|
22
|
+
Disable verbose output.
|
23
23
|
|
24
24
|
`--[no-]silent`
|
25
|
-
|
25
|
+
Silence all output.
|
26
26
|
|
27
27
|
`--[no-]color`
|
28
|
-
|
28
|
+
Enables color output.
|
29
29
|
|
30
30
|
`-D`, `--database` *URI*
|
31
|
-
|
31
|
+
The database to URI (`mysql://user:password@host/ronin`).
|
32
32
|
|
33
33
|
`--domain` *DOMAIN*
|
34
|
-
|
34
|
+
Searches for Repositories installed from the DOMAIN.
|
35
35
|
|
36
36
|
`-n`, `--named` *NAME*
|
37
|
-
|
37
|
+
Searches for Repositories with the given NAME.
|
38
38
|
|
39
39
|
`-t`, `--titled` *TITLE*
|
40
|
-
|
40
|
+
Searches for Repositories with the similar TITLE.
|
41
41
|
|
42
42
|
`-d`, `--describing` *DESCRIPTION*
|
43
|
-
|
43
|
+
Searches for Repositories with the similar DESCRIPTION.
|
44
44
|
|
45
45
|
`-L`, `--licensed-under` *LICENSE*
|
46
|
-
|
46
|
+
Searches for Repositories with the given LICENSE (`MIT`).
|
47
47
|
|
48
48
|
## FILES
|
49
49
|
|
50
50
|
*~/.ronin/*
|
51
|
-
|
51
|
+
Ronin configuration directory.
|
52
52
|
|
53
53
|
*~/.ronin/repos*
|
54
|
-
|
54
|
+
Installation directory for Ronin Repositories.
|
55
55
|
|
56
56
|
*~/.ronin/database.log*
|
57
|
-
|
57
|
+
Database log.
|
58
58
|
|
59
59
|
*~/.ronin/database.sqlite3*
|
60
|
-
|
60
|
+
The default sqlite3 Database file.
|
61
61
|
|
62
62
|
*~/.ronin/database.yml*
|
63
|
-
|
63
|
+
Optional Database configuration.
|
64
64
|
|
65
65
|
## ENVIRONMENT
|
66
66
|
|
67
67
|
HOME
|
68
|
-
|
69
|
-
|
68
|
+
Specifies the home directory of the user. Ronin will search for the
|
69
|
+
*~/.ronin/* configuration directory within the home directory.
|
70
70
|
|
71
71
|
## AUTHOR
|
72
72
|
|