ronin 1.5.1 → 2.0.0.beta1
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/.document +0 -1
- data/.github/workflows/ruby.yml +4 -5
- data/.gitignore +1 -0
- data/.mailmap +1 -0
- data/.ruby-version +1 -1
- data/.yardopts +0 -2
- data/ChangeLog.md +239 -148
- data/Gemfile +58 -45
- data/README.md +147 -178
- data/Rakefile +3 -50
- data/bin/ronin +2 -3
- data/data/new/project/.gitignore +15 -0
- data/data/new/project/.ruby-version.erb +1 -0
- data/data/new/project/Dockerfile.erb +9 -0
- data/data/new/project/Gemfile.erb +16 -0
- data/data/new/project/Rakefile +43 -0
- data/data/new/project/project.rb.erb +14 -0
- data/data/new/script.rb.erb +6 -0
- data/data/tips/cli/console.txt +4 -0
- data/data/tips/cli/help.txt +12 -0
- data/data/tips/ruby/array_join.txt +5 -0
- data/data/tips/ruby/binary_string.txt +4 -0
- data/data/tips/ruby/file_binread.txt +4 -0
- data/data/tips/ruby/file_each_line.txt +6 -0
- data/data/tips/ruby/force_encoding.txt +4 -0
- data/data/tips/ruby/integer_binary_format.txt +10 -0
- data/data/tips/ruby/integer_chr.txt +5 -0
- data/data/tips/ruby/integer_hex_format.txt +10 -0
- data/data/tips/ruby/string_bytes.txt +17 -0
- data/data/tips/ruby/string_chars.txt +17 -0
- data/data/tips/ruby/string_ord.txt +5 -0
- data/data/tips/ruby/string_split.txt +13 -0
- data/data/tips/scripting/array_pack.txt +5 -0
- data/data/tips/scripting/base64_decode.txt +5 -0
- data/data/tips/scripting/base64_encode.txt +5 -0
- data/data/tips/scripting/build_wordlist.txt +9 -0
- data/data/tips/scripting/chars.txt +8 -0
- data/data/tips/scripting/chars_strings_in.txt +12 -0
- data/data/tips/scripting/dir_traversal.txt +5 -0
- data/data/tips/scripting/dns_get_address.txt +5 -0
- data/data/tips/scripting/dns_get_addresses.txt +5 -0
- data/data/tips/scripting/extract_ips.txt +6 -0
- data/data/tips/scripting/file_each_row.txt +6 -0
- data/data/tips/scripting/file_hexdump.txt +4 -0
- data/data/tips/scripting/float_pack.txt +5 -0
- data/data/tips/scripting/ftp_connect.txt +14 -0
- data/data/tips/scripting/generate_self_signed_cert.txt +20 -0
- data/data/tips/scripting/http_get_body.txt +5 -0
- data/data/tips/scripting/http_get_headers.txt +17 -0
- data/data/tips/scripting/integer_pack.txt +5 -0
- data/data/tips/scripting/ip_range_cidr.txt +6 -0
- data/data/tips/scripting/ip_range_glob.txt +6 -0
- data/data/tips/scripting/load_cert.txt +5 -0
- data/data/tips/scripting/md5.txt +5 -0
- data/data/tips/scripting/printing_messages.txt +11 -0
- data/data/tips/scripting/random_alpha.txt +5 -0
- data/data/tips/scripting/random_alpha_numeric.txt +5 -0
- data/data/tips/scripting/random_hex.txt +5 -0
- data/data/tips/scripting/read_wordlist.txt +7 -0
- data/data/tips/scripting/ronin_support.txt +5 -0
- data/data/tips/scripting/sha1.txt +5 -0
- data/data/tips/scripting/sha256.txt +5 -0
- data/data/tips/scripting/sha512.txt +5 -0
- data/data/tips/scripting/ssl_cert.txt +10 -0
- data/data/tips/scripting/ssl_socket.txt +12 -0
- data/data/tips/scripting/string_hexdump.txt +5 -0
- data/data/tips/scripting/string_random_case.txt +5 -0
- data/data/tips/scripting/string_unpack.txt +5 -0
- data/data/tips/scripting/tcp_accept.txt +6 -0
- data/data/tips/scripting/tcp_banner.txt +5 -0
- data/data/tips/scripting/tcp_connect.txt +12 -0
- data/data/tips/scripting/tcp_open.txt +5 -0
- data/data/tips/scripting/tcp_send.txt +5 -0
- data/data/tips/scripting/tcp_server_loop.txt +6 -0
- data/data/tips/scripting/try.txt +4 -0
- data/data/tips/scripting/udp_connect.txt +8 -0
- data/data/tips/scripting/udp_open.txt +5 -0
- data/data/tips/scripting/udp_recv.txt +7 -0
- data/data/tips/scripting/udp_send.txt +5 -0
- data/data/tips/scripting/udp_server_loop.txt +7 -0
- data/data/tips/scripting/unix_accept.txt +7 -0
- data/data/tips/scripting/unix_connect.txt +12 -0
- data/data/tips/scripting/zlib_deflate.txt +5 -0
- data/data/tips/scripting/zlib_inflate.txt +5 -0
- data/gemspec.yml +73 -57
- data/lib/ronin/cli/char_set_options.rb +181 -0
- data/lib/ronin/cli/cipher_command.rb +149 -0
- data/lib/ronin/{script/exceptions/build_failed.rb → cli/command.rb} +11 -6
- data/lib/ronin/cli/commands/asn.rb +284 -0
- data/lib/ronin/cli/commands/banner_grab.rb +84 -0
- data/lib/ronin/cli/commands/bitflip.rb +132 -0
- data/lib/ronin/cli/commands/cert_dump.rb +285 -0
- data/lib/ronin/cli/commands/cert_gen.rb +395 -0
- data/lib/ronin/cli/commands/cert_grab.rb +128 -0
- data/lib/ronin/cli/commands/decode.rb +143 -0
- data/lib/ronin/cli/commands/decrypt.rb +67 -0
- data/lib/ronin/cli/commands/dns.rb +183 -0
- data/lib/ronin/cli/commands/email_addr.rb +127 -0
- data/lib/ronin/cli/commands/encode.rb +143 -0
- data/lib/ronin/cli/commands/encrypt.rb +67 -0
- data/lib/ronin/cli/commands/entropy.rb +75 -0
- data/lib/ronin/cli/commands/escape.rb +121 -0
- data/lib/ronin/cli/commands/extract.rb +138 -0
- data/lib/ronin/cli/commands/grep.rb +238 -0
- data/lib/ronin/cli/commands/hexdump.rb +475 -0
- data/lib/ronin/cli/commands/highlight.rb +121 -0
- data/lib/ronin/cli/commands/hmac.rb +102 -0
- data/lib/ronin/cli/commands/homoglyph.rb +98 -0
- data/lib/ronin/cli/commands/host.rb +305 -0
- data/lib/ronin/cli/commands/http.rb +354 -0
- data/lib/ronin/cli/commands/ip.rb +242 -0
- data/lib/ronin/cli/commands/iprange.rb +138 -0
- data/lib/ronin/cli/commands/irb.rb +106 -0
- data/lib/ronin/cli/commands/md5.rb +67 -0
- data/lib/ronin/cli/commands/netcat.rb +419 -0
- data/lib/ronin/cli/commands/new/project.rb +119 -0
- data/lib/ronin/cli/commands/new/script.rb +68 -0
- data/lib/ronin/cli/commands/new.rb +65 -0
- data/lib/ronin/cli/commands/proxy.rb +519 -0
- data/lib/ronin/cli/commands/public_suffix_list.rb +118 -0
- data/lib/ronin/cli/commands/quote.rb +114 -0
- data/lib/ronin/cli/commands/rot.rb +114 -0
- data/lib/ronin/cli/commands/sha1.rb +58 -0
- data/lib/ronin/cli/commands/sha256.rb +67 -0
- data/lib/ronin/cli/commands/sha512.rb +67 -0
- data/lib/ronin/cli/commands/strings.rb +151 -0
- data/lib/ronin/cli/commands/tips.rb +190 -0
- data/lib/ronin/cli/commands/tld_list.rb +118 -0
- data/lib/ronin/cli/commands/typo.rb +80 -0
- data/lib/ronin/cli/commands/typosquat.rb +123 -0
- data/lib/ronin/cli/commands/unescape.rb +121 -0
- data/lib/ronin/cli/commands/unhexdump.rb +213 -0
- data/lib/ronin/cli/commands/unquote.rb +114 -0
- data/lib/ronin/cli/commands/url.rb +151 -0
- data/lib/ronin/cli/commands/xor.rb +91 -0
- data/lib/ronin/cli/file_processor_command.rb +94 -0
- data/lib/ronin/cli/http_shell.rb +362 -0
- data/lib/ronin/cli/key_options.rb +61 -0
- data/lib/ronin/cli/method_options.rb +71 -0
- data/lib/ronin/cli/pattern_options.rb +343 -0
- data/lib/ronin/cli/printing/http.rb +153 -0
- data/lib/ronin/cli/printing/syntax_highlighting.rb +96 -0
- data/lib/ronin/{ui/cli/commands.rb → cli/string_methods_command.rb} +23 -12
- data/lib/ronin/cli/string_processor_command.rb +185 -0
- data/lib/ronin/cli/typo_options.rb +80 -0
- data/lib/ronin/cli/value_processor_command.rb +97 -0
- data/lib/ronin/cli.rb +70 -0
- data/lib/ronin/config.rb +2 -10
- data/lib/ronin/{database/exceptions/invalid_config.rb → root.rb} +6 -7
- data/lib/ronin/ui.rb +4 -4
- data/lib/ronin/version.rb +3 -4
- data/lib/ronin.rb +9 -5
- data/man/ronin-asn.1 +124 -0
- data/man/ronin-asn.1.md +86 -0
- data/man/ronin-banner-grab.1 +45 -0
- data/man/ronin-banner-grab.1.md +33 -0
- data/man/ronin-bitflip.1 +123 -0
- data/man/ronin-bitflip.1.md +92 -0
- data/man/ronin-cert-dump.1 +99 -0
- data/man/ronin-cert-dump.1.md +68 -0
- data/man/ronin-cert-gen.1 +144 -0
- data/man/ronin-cert-gen.1.md +104 -0
- data/man/ronin-cert-grab.1 +68 -0
- data/man/ronin-cert-grab.1.md +47 -0
- data/man/ronin-decode.1 +103 -0
- data/man/ronin-decode.1.md +77 -0
- data/man/ronin-decrypt.1 +75 -0
- data/man/ronin-decrypt.1.md +56 -0
- data/man/ronin-dns.1 +45 -0
- data/man/ronin-dns.1.md +33 -0
- data/man/ronin-email-addr.1 +76 -0
- data/man/ronin-email-addr.1.md +54 -0
- data/man/ronin-encode.1 +103 -0
- data/man/ronin-encode.1.md +77 -0
- data/man/ronin-encrypt.1 +75 -0
- data/man/ronin-encrypt.1.md +56 -0
- data/man/ronin-entropy.1 +43 -0
- data/man/ronin-entropy.1.md +32 -0
- data/man/ronin-escape.1 +94 -0
- data/man/ronin-escape.1.md +70 -0
- data/man/ronin-extract.1 +263 -0
- data/man/ronin-extract.1.md +197 -0
- data/man/ronin-grep.1 +275 -0
- data/man/ronin-grep.1.md +206 -0
- data/man/ronin-help.1 +3 -15
- data/man/ronin-help.1.md +3 -12
- data/man/ronin-hexdump.1 +323 -0
- data/man/ronin-hexdump.1.md +197 -0
- data/man/ronin-highlight.1 +42 -0
- data/man/ronin-highlight.1.md +31 -0
- data/man/ronin-hmac.1 +66 -0
- data/man/ronin-hmac.1.md +49 -0
- data/man/ronin-homoglyph.1 +49 -0
- data/man/ronin-homoglyph.1.md +36 -0
- data/man/ronin-host.1 +99 -0
- data/man/ronin-host.1.md +74 -0
- data/man/ronin-http.1 +141 -0
- data/man/ronin-http.1.md +105 -0
- data/man/ronin-ip.1 +145 -0
- data/man/ronin-ip.1.md +103 -0
- data/man/ronin-iprange.1 +46 -0
- data/man/ronin-iprange.1.md +34 -0
- data/man/ronin-irb.1 +35 -0
- data/man/ronin-irb.1.md +25 -0
- data/man/ronin-md5.1 +54 -0
- data/man/ronin-md5.1.md +40 -0
- data/man/ronin-netcat.1 +110 -0
- data/man/ronin-netcat.1.md +82 -0
- data/man/ronin-new-project.1 +54 -0
- data/man/ronin-new-project.1.md +40 -0
- data/man/ronin-new-script.1 +37 -0
- data/man/ronin-new-script.1.md +27 -0
- data/man/ronin-new.1 +51 -0
- data/man/ronin-new.1.md +38 -0
- data/man/{ronin-net-proxy.1 → ronin-proxy.1} +45 -37
- data/man/{ronin-net-proxy.1.md → ronin-proxy.1.md} +39 -32
- data/man/ronin-public-suffix-list.1 +55 -0
- data/man/ronin-public-suffix-list.1.md +41 -0
- data/man/ronin-quote.1 +78 -0
- data/man/ronin-quote.1.md +58 -0
- data/man/ronin-rot.1 +62 -0
- data/man/ronin-rot.1.md +46 -0
- data/man/ronin-sha1.1 +54 -0
- data/man/ronin-sha1.1.md +40 -0
- data/man/ronin-sha256.1 +54 -0
- data/man/ronin-sha256.1.md +40 -0
- data/man/ronin-sha512.1 +54 -0
- data/man/ronin-sha512.1.md +40 -0
- data/man/ronin-strings.1 +115 -0
- data/man/ronin-strings.1.md +86 -0
- data/man/ronin-tips.1 +35 -0
- data/man/ronin-tips.1.md +25 -0
- data/man/ronin-tld-list.1 +55 -0
- data/man/ronin-tld-list.1.md +41 -0
- data/man/ronin-typo.1 +61 -0
- data/man/ronin-typo.1.md +45 -0
- data/man/ronin-typosquat.1 +65 -0
- data/man/ronin-typosquat.1.md +48 -0
- data/man/ronin-unescape.1 +94 -0
- data/man/ronin-unescape.1.md +70 -0
- data/man/ronin-unhexdump.1 +187 -0
- data/man/ronin-unhexdump.1.md +107 -0
- data/man/ronin-unquote.1 +78 -0
- data/man/ronin-unquote.1.md +58 -0
- data/man/ronin-url.1 +85 -0
- data/man/ronin-url.1.md +63 -0
- data/man/ronin-xor.1 +62 -0
- data/man/ronin-xor.1.md +46 -0
- data/man/ronin.1 +25 -6
- data/man/ronin.1.md +20 -5
- data/ronin.gemspec +1 -1
- data/spec/cli/command_spec.rb +10 -0
- data/spec/cli/commands/decode_spec.rb +152 -0
- data/spec/cli/commands/encode_spec.rb +152 -0
- data/spec/cli/commands/escape_spec.rb +128 -0
- data/spec/cli/commands/quote_spec.rb +76 -0
- data/spec/cli/commands/unescape_spec.rb +128 -0
- data/spec/cli/commands/unquote_spec.rb +80 -0
- data/spec/cli/fixtures/file.txt +3 -0
- data/spec/cli/fixtures/file2.txt +3 -0
- data/spec/cli/key_options_spec.rb +56 -0
- data/spec/cli/method_options_spec.rb +71 -0
- data/spec/cli/string_methods_command_spec.rb +25 -0
- data/spec/cli/string_processor_command_spec.rb +258 -0
- data/spec/cli/value_processor_command_spec.rb +127 -0
- data/spec/spec_helper.rb +2 -57
- data/spec/version_spec.rb +11 -0
- metadata +301 -455
- data/bin/ronin-campaigns +0 -20
- data/bin/ronin-console +0 -20
- data/bin/ronin-creds +0 -20
- data/bin/ronin-database +0 -20
- data/bin/ronin-emails +0 -20
- data/bin/ronin-exec +0 -20
- data/bin/ronin-fuzzer +0 -20
- data/bin/ronin-help +0 -20
- data/bin/ronin-hosts +0 -20
- data/bin/ronin-install +0 -20
- data/bin/ronin-ips +0 -20
- data/bin/ronin-net-proxy +0 -20
- data/bin/ronin-repos +0 -20
- data/bin/ronin-uninstall +0 -20
- data/bin/ronin-update +0 -20
- data/bin/ronin-urls +0 -20
- data/bin/ronin-wordlist +0 -20
- data/lib/bond/completions/ronin.rb +0 -154
- data/lib/ronin/address.rb +0 -124
- data/lib/ronin/arch.rb +0 -136
- data/lib/ronin/author.rb +0 -66
- data/lib/ronin/auto_load.rb +0 -91
- data/lib/ronin/bootstrap.rb +0 -27
- data/lib/ronin/campaign.rb +0 -129
- data/lib/ronin/credential.rb +0 -119
- data/lib/ronin/database/database.rb +0 -325
- data/lib/ronin/database/exceptions/unknown_repository.rb +0 -25
- data/lib/ronin/database/exceptions.rb +0 -21
- data/lib/ronin/database/migrations/1.0.0.rb +0 -569
- data/lib/ronin/database/migrations/1.1.0.rb +0 -125
- data/lib/ronin/database/migrations/exceptions/duplicate_migration.rb +0 -29
- data/lib/ronin/database/migrations/exceptions/unknown_migration.rb +0 -27
- data/lib/ronin/database/migrations/exceptions.rb +0 -21
- data/lib/ronin/database/migrations/graph.rb +0 -300
- data/lib/ronin/database/migrations/migration.rb +0 -66
- data/lib/ronin/database/migrations/migrations.rb +0 -185
- data/lib/ronin/database/migrations.rb +0 -22
- data/lib/ronin/database.rb +0 -21
- data/lib/ronin/email_address.rb +0 -257
- data/lib/ronin/environment.rb +0 -30
- data/lib/ronin/exceptions/duplicate_repository.rb +0 -23
- data/lib/ronin/exceptions/repository_not_found.rb +0 -23
- data/lib/ronin/exceptions.rb +0 -21
- data/lib/ronin/host_name.rb +0 -271
- data/lib/ronin/host_name_ip_address.rb +0 -45
- data/lib/ronin/installation.rb +0 -225
- data/lib/ronin/ip_address.rb +0 -348
- data/lib/ronin/ip_address_mac_address.rb +0 -45
- data/lib/ronin/license.rb +0 -121
- data/lib/ronin/mac_address.rb +0 -111
- data/lib/ronin/model/has_authors.rb +0 -111
- data/lib/ronin/model/has_description.rb +0 -73
- data/lib/ronin/model/has_license.rb +0 -129
- data/lib/ronin/model/has_name.rb +0 -91
- data/lib/ronin/model/has_title.rb +0 -71
- data/lib/ronin/model/has_unique_name.rb +0 -127
- data/lib/ronin/model/has_version.rb +0 -77
- data/lib/ronin/model/importable.rb +0 -65
- data/lib/ronin/model/model.rb +0 -165
- data/lib/ronin/model/types/description.rb +0 -60
- data/lib/ronin/model/types.rb +0 -20
- data/lib/ronin/model.rb +0 -20
- data/lib/ronin/open_port.rb +0 -112
- data/lib/ronin/organization.rb +0 -46
- data/lib/ronin/os.rb +0 -157
- data/lib/ronin/os_guess.rb +0 -45
- data/lib/ronin/password.rb +0 -165
- data/lib/ronin/port.rb +0 -126
- data/lib/ronin/repositories.rb +0 -23
- data/lib/ronin/repository.rb +0 -771
- data/lib/ronin/ronin.rb +0 -43
- data/lib/ronin/script/buildable.rb +0 -156
- data/lib/ronin/script/deployable.rb +0 -202
- data/lib/ronin/script/exceptions/deploy_failed.rb +0 -27
- data/lib/ronin/script/exceptions/exception.rb +0 -25
- data/lib/ronin/script/exceptions/not_built.rb +0 -27
- data/lib/ronin/script/exceptions/test_failed.rb +0 -27
- data/lib/ronin/script/exceptions.rb +0 -24
- data/lib/ronin/script/path.rb +0 -293
- data/lib/ronin/script/script.rb +0 -384
- data/lib/ronin/script/testable.rb +0 -365
- data/lib/ronin/script.rb +0 -21
- data/lib/ronin/service.rb +0 -39
- data/lib/ronin/service_credential.rb +0 -31
- data/lib/ronin/software.rb +0 -55
- data/lib/ronin/spec/database.rb +0 -56
- data/lib/ronin/target.rb +0 -66
- data/lib/ronin/tcp_port.rb +0 -36
- data/lib/ronin/udp_port.rb +0 -32
- data/lib/ronin/ui/cli/class_command.rb +0 -137
- data/lib/ronin/ui/cli/cli.rb +0 -148
- data/lib/ronin/ui/cli/command.rb +0 -649
- data/lib/ronin/ui/cli/commands/campaigns.rb +0 -165
- data/lib/ronin/ui/cli/commands/console.rb +0 -106
- data/lib/ronin/ui/cli/commands/creds.rb +0 -108
- data/lib/ronin/ui/cli/commands/database.rb +0 -204
- data/lib/ronin/ui/cli/commands/emails.rb +0 -86
- data/lib/ronin/ui/cli/commands/exec.rb +0 -127
- data/lib/ronin/ui/cli/commands/fuzzer.rb +0 -306
- data/lib/ronin/ui/cli/commands/help.rb +0 -87
- data/lib/ronin/ui/cli/commands/hosts.rb +0 -177
- data/lib/ronin/ui/cli/commands/install.rb +0 -136
- data/lib/ronin/ui/cli/commands/ips.rb +0 -178
- data/lib/ronin/ui/cli/commands/net/proxy.rb +0 -411
- data/lib/ronin/ui/cli/commands/repos.rb +0 -164
- data/lib/ronin/ui/cli/commands/uninstall.rb +0 -90
- data/lib/ronin/ui/cli/commands/update.rb +0 -125
- data/lib/ronin/ui/cli/commands/urls.rb +0 -141
- data/lib/ronin/ui/cli/commands/wordlist.rb +0 -181
- data/lib/ronin/ui/cli/exceptions/unknown_command.rb +0 -27
- data/lib/ronin/ui/cli/exceptions.rb +0 -20
- data/lib/ronin/ui/cli/model_command.rb +0 -182
- data/lib/ronin/ui/cli/printing.rb +0 -167
- data/lib/ronin/ui/cli/resources_command.rb +0 -117
- data/lib/ronin/ui/cli/script_command.rb +0 -212
- data/lib/ronin/ui/cli.rb +0 -21
- data/lib/ronin/ui/console/commands.rb +0 -86
- data/lib/ronin/ui/console/console.rb +0 -215
- data/lib/ronin/ui/console/context.rb +0 -106
- data/lib/ronin/ui/console/shell.rb +0 -184
- data/lib/ronin/ui/console.rb +0 -22
- data/lib/ronin/url.rb +0 -546
- data/lib/ronin/url_query_param.rb +0 -73
- data/lib/ronin/url_query_param_name.rb +0 -89
- data/lib/ronin/url_scheme.rb +0 -53
- data/lib/ronin/user_name.rb +0 -47
- data/lib/ronin/vendor.rb +0 -39
- data/lib/ronin/web_credential.rb +0 -76
- data/man/ronin-campaigns.1 +0 -105
- data/man/ronin-campaigns.1.md +0 -78
- data/man/ronin-console.1 +0 -96
- data/man/ronin-console.1.md +0 -72
- data/man/ronin-creds.1 +0 -89
- data/man/ronin-creds.1.md +0 -66
- data/man/ronin-database.1 +0 -111
- data/man/ronin-database.1.md +0 -82
- data/man/ronin-emails.1 +0 -97
- data/man/ronin-emails.1.md +0 -72
- data/man/ronin-exec.1 +0 -65
- data/man/ronin-exec.1.md +0 -49
- data/man/ronin-fuzzer.1 +0 -95
- data/man/ronin-fuzzer.1.md +0 -73
- data/man/ronin-hosts.1 +0 -105
- data/man/ronin-hosts.1.md +0 -78
- data/man/ronin-install.1 +0 -104
- data/man/ronin-install.1.md +0 -79
- data/man/ronin-ips.1 +0 -109
- data/man/ronin-ips.1.md +0 -81
- data/man/ronin-repos.1 +0 -102
- data/man/ronin-repos.1.md +0 -77
- data/man/ronin-uninstall.1 +0 -88
- data/man/ronin-uninstall.1.md +0 -67
- data/man/ronin-update.1 +0 -88
- data/man/ronin-update.1.md +0 -67
- data/man/ronin-urls.1 +0 -113
- data/man/ronin-urls.1.md +0 -84
- data/man/ronin-wordlist.1 +0 -71
- data/man/ronin-wordlist.1.md +0 -54
- data/spec/arch_spec.rb +0 -77
- data/spec/author_spec.rb +0 -26
- data/spec/campaign_spec.rb +0 -13
- data/spec/classes/my_script.rb +0 -21
- data/spec/credential_spec.rb +0 -29
- data/spec/database_spec.rb +0 -28
- data/spec/email_address_spec.rb +0 -83
- data/spec/helpers/repos/installed/ronin.yml +0 -7
- data/spec/helpers/repos/installed/scripts/.keep +0 -0
- data/spec/helpers/repos/local/lib/init.rb +0 -1
- data/spec/helpers/repos/local/lib/stuff/another_test.rb +0 -6
- data/spec/helpers/repos/local/lib/stuff/test.rb +0 -4
- data/spec/helpers/repos/local/ronin.yml +0 -7
- data/spec/helpers/repos/local/scripts/.keep +0 -0
- data/spec/helpers/repos/remote/ronin.yml +0 -7
- data/spec/helpers/repos/remote/scripts/.keep +0 -0
- data/spec/helpers/repos/scripts/ronin.yml +0 -7
- data/spec/helpers/repos/scripts/scripts/cached/cached.rb +0 -10
- data/spec/helpers/repos/scripts/scripts/cached/missing.rb +0 -10
- data/spec/helpers/repos/scripts/scripts/cached/modified.rb +0 -10
- data/spec/helpers/repos/scripts/scripts/cached/unmodified.rb +0 -10
- data/spec/helpers/repos/scripts/scripts/failures/exceptions.rb +0 -11
- data/spec/helpers/repos/scripts/scripts/failures/load_errors.rb +0 -11
- data/spec/helpers/repos/scripts/scripts/failures/name_errors.rb +0 -8
- data/spec/helpers/repos/scripts/scripts/failures/no_method_errors.rb +0 -10
- data/spec/helpers/repos/scripts/scripts/failures/syntax_errors.rb +0 -11
- data/spec/helpers/repos/scripts/scripts/failures/validation_errors.rb +0 -11
- data/spec/helpers/repos/scripts/scripts/my_scripts/test.rb +0 -16
- data/spec/helpers/repositories.rb +0 -11
- data/spec/host_name_spec.rb +0 -92
- data/spec/installation_spec.rb +0 -40
- data/spec/ip_address_spec.rb +0 -109
- data/spec/license_spec.rb +0 -25
- data/spec/mac_address_spec.rb +0 -47
- data/spec/model/has_authors_spec.rb +0 -79
- data/spec/model/has_description_spec.rb +0 -76
- data/spec/model/has_license_spec.rb +0 -73
- data/spec/model/has_name_spec.rb +0 -54
- data/spec/model/has_title_spec.rb +0 -42
- data/spec/model/has_version_spec.rb +0 -87
- data/spec/model/model_spec.rb +0 -98
- data/spec/model/models/authored_model.rb +0 -11
- data/spec/model/models/base_model.rb +0 -13
- data/spec/model/models/described_model.rb +0 -9
- data/spec/model/models/inherited_model.rb +0 -16
- data/spec/model/models/licensed_model.rb +0 -11
- data/spec/model/models/named_model.rb +0 -9
- data/spec/model/models/titled_model.rb +0 -9
- data/spec/model/models/versioned_model.rb +0 -11
- data/spec/os_spec.rb +0 -48
- data/spec/password_spec.rb +0 -47
- data/spec/port_spec.rb +0 -51
- data/spec/repository_spec.rb +0 -270
- data/spec/ronin_spec.rb +0 -25
- data/spec/script/buildable_spec.rb +0 -51
- data/spec/script/classes/buildable_class.rb +0 -15
- data/spec/script/classes/deployable_class.rb +0 -13
- data/spec/script/classes/script_class.rb +0 -19
- data/spec/script/classes/testable_class.rb +0 -19
- data/spec/script/deployable_spec.rb +0 -55
- data/spec/script/path_spec.rb +0 -185
- data/spec/script/script_spec.rb +0 -128
- data/spec/script/testable_spec.rb +0 -117
- data/spec/service_spec.rb +0 -24
- data/spec/software_spec.rb +0 -46
- data/spec/ui/cli/classes/test_command.rb +0 -26
- data/spec/ui/cli/cli_spec.rb +0 -34
- data/spec/ui/cli/command_spec.rb +0 -291
- data/spec/url_query_param_spec.rb +0 -41
- data/spec/url_scheme_spec.rb +0 -21
- data/spec/url_spec.rb +0 -179
- data/spec/vendor_spec.rb +0 -25
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5f9faf9c4d5c58dd61eae2826b253dec52f91d42cf60c4084c9427bd2f9565c2
|
|
4
|
+
data.tar.gz: 7b8a62de96a781f7a88a90152377066b2969bbde80a221854c04134d814fbc44
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cf631759ec7ac9dae115deb74ad034ee73ec775eaa54cfd7b54d9cdd73293e64e8d6dabab1a3f73e1d299c63650329acb308ce87da2859dc588b703eebdc435f
|
|
7
|
+
data.tar.gz: ee6cb217a1dc0225b31d5411322b18344d14668cafccb853ca91c933ec1c462409f1643438b86402a4a5db68e2a71a3f6fe2fb18dd85c0ddaf3a0ae9fde4c9fd
|
data/.document
CHANGED
data/.github/workflows/ruby.yml
CHANGED
data/.gitignore
CHANGED
data/.mailmap
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Postmodern <postmodern.mod3@gmail.com> postmodern <postmodern.mod3@gmail.com>
|
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
ruby-
|
|
1
|
+
ruby-3.1
|
data/.yardopts
CHANGED
data/ChangeLog.md
CHANGED
|
@@ -1,28 +1,104 @@
|
|
|
1
|
+
### 2.0.0 / 2023-XX-XX
|
|
2
|
+
|
|
3
|
+
* Require `ruby` >= 3.0.0.
|
|
4
|
+
* Require [rouge] ~> 3.0
|
|
5
|
+
* Require [async-io] ~> 1.0
|
|
6
|
+
* Require [wordlist] ~> 1.0
|
|
7
|
+
* Require [ronin-support] ~> 1.0.0.
|
|
8
|
+
* Require [ronin-core] ~> 0.1.
|
|
9
|
+
* Require [ronin-repos] ~> 0.1.
|
|
10
|
+
* Require [ronin-db] ~> 0.1.
|
|
11
|
+
* Require [ronin-fuzzer] ~> 0.1.
|
|
12
|
+
* Require [ronin-web] ~> 1.0.
|
|
13
|
+
* Require [ronin-code-asm] ~> 1.0.
|
|
14
|
+
* Require [ronin-code-sql] ~> 2.0.
|
|
15
|
+
* Require [ronin-payloads] ~> 0.1.
|
|
16
|
+
* Require [ronin-exploits] ~> 1.0.
|
|
17
|
+
* Require [ronin-vulns] ~> 0.1.
|
|
18
|
+
* Added new sub-commands to the `ronin` command:
|
|
19
|
+
* `asn`
|
|
20
|
+
* `banner-grab`
|
|
21
|
+
* `bitflip`
|
|
22
|
+
* `cert-dump`
|
|
23
|
+
* `cert-gen`
|
|
24
|
+
* `cert-grab`
|
|
25
|
+
* `decode, dec`
|
|
26
|
+
* `decrypt`
|
|
27
|
+
* `dns`
|
|
28
|
+
* `email-addr`
|
|
29
|
+
* `encode, enc`
|
|
30
|
+
* `encrypt`
|
|
31
|
+
* `entropy`
|
|
32
|
+
* `escape`
|
|
33
|
+
* `extract`
|
|
34
|
+
* `grep`
|
|
35
|
+
* `help`
|
|
36
|
+
* `hexdump`
|
|
37
|
+
* `highlight`
|
|
38
|
+
* `hmac`
|
|
39
|
+
* `homoglyph`
|
|
40
|
+
* `host`
|
|
41
|
+
* `http`
|
|
42
|
+
* `ip`
|
|
43
|
+
* `iprange`
|
|
44
|
+
* `irb`
|
|
45
|
+
* `md5`
|
|
46
|
+
* `netcat` / `nc`
|
|
47
|
+
* `new`
|
|
48
|
+
* `proxy`
|
|
49
|
+
* `public-suffix-list`
|
|
50
|
+
* `quote`
|
|
51
|
+
* `rot`
|
|
52
|
+
* `sha1`
|
|
53
|
+
* `sha256`
|
|
54
|
+
* `sha512`
|
|
55
|
+
* `string`
|
|
56
|
+
* `strings`
|
|
57
|
+
* `tips`
|
|
58
|
+
* `tld-list`
|
|
59
|
+
* `typo`
|
|
60
|
+
* `typosquat`
|
|
61
|
+
* `unescape`
|
|
62
|
+
* `unhexdump`
|
|
63
|
+
* `unquote`
|
|
64
|
+
* `url`
|
|
65
|
+
* `url-edit`
|
|
66
|
+
* `xor`
|
|
67
|
+
* `ronin help <subcommand>` will now display a man page for that sub-command.
|
|
68
|
+
* Renamed the `ronin console` command to `ronin irb`.
|
|
69
|
+
* Moved and refactored all database code out into [ronin-db] and
|
|
70
|
+
[ronin-db-activerecord].
|
|
71
|
+
* Replaced all repository management related code with [ronin-repos].
|
|
72
|
+
* Replaced the CLI code with [command_kit] and [ronin-core].
|
|
73
|
+
* Refactored the `ronin` gem to only provide a top-level CLI with sub-commands
|
|
74
|
+
and require the other `ronin-` gems.
|
|
75
|
+
|
|
1
76
|
### 1.5.1 / 2021-02-28
|
|
2
77
|
|
|
3
78
|
* Require [ronin-support] ~> 0.5, >= 0.5.2.
|
|
79
|
+
* Support Ruby 3.0:
|
|
80
|
+
* `Ronin::UI::CLI.commands` now uses `Set`, since Ruby 3.0 moved `SortedSet`
|
|
81
|
+
out of the stdlib.
|
|
4
82
|
* Activate bundler in `bin/ronin` and `bin/ronin-*` commands, if a
|
|
5
83
|
`Gemfile.lock` file is found.
|
|
6
84
|
* Re-finalize all DataMapper models in
|
|
7
|
-
|
|
85
|
+
`Ronin::AutoLoad::ClassMethods#require_const`.
|
|
8
86
|
* Avoid calling `Ronin::Network::TCP::Proxy` specific methods in the
|
|
9
87
|
`ronin net:proxy` command, if working with a UDP proxy.
|
|
10
|
-
* {Ronin::UI::CLI.commands} now uses `Set`, since Ruby 3.0 moved `SortedSet`
|
|
11
|
-
out of the stdlib.
|
|
12
88
|
|
|
13
89
|
### 1.5.0 / 2012-06-16
|
|
14
90
|
|
|
15
91
|
* Require [ronin-support] ~> 0.5.
|
|
16
|
-
* Added
|
|
17
|
-
* Added
|
|
18
|
-
* Added
|
|
19
|
-
* Added the
|
|
92
|
+
* Added `Ronin::UI::CLI::Command#setup`.
|
|
93
|
+
* Added `Ronin::UI::CLI::Command#cleanup`.
|
|
94
|
+
* Added `Ronin::UI::CLI::Command.examples`.
|
|
95
|
+
* Added the `Ronin::UI::CLI::Commands::Net::Proxy net:proxy` ronin command.
|
|
20
96
|
* Added man-pages for each `ronin` command.
|
|
21
|
-
* Added more specs for the
|
|
22
|
-
* Added
|
|
97
|
+
* Added more specs for the `Ronin::UI::CLI::Command` DSL methods.
|
|
98
|
+
* Added `Ronin::AutoLoad::ClassMethods#require_const`, to also
|
|
23
99
|
finalize auto-loaded DataMapper models.
|
|
24
|
-
* Renamed `Ronin::Database.setup_log` to
|
|
25
|
-
* Allow
|
|
100
|
+
* Renamed `Ronin::Database.setup_log` to `Ronin::Database.log`.
|
|
101
|
+
* Allow `Ronin::Database.setup` to accept a URI for the `default` repository.
|
|
26
102
|
* Allow `ronin/spec/database` to test against other Databases,
|
|
27
103
|
specified by the `ADAPTER` environment variable.
|
|
28
104
|
* If `ADAPTER` is set to `mysql` or `postgres`, then `ronin/spec/database`
|
|
@@ -32,19 +108,19 @@
|
|
|
32
108
|
database.
|
|
33
109
|
* Allow console `!command`s to embed Ruby expressions:
|
|
34
110
|
|
|
35
|
-
>> !ncat
|
|
111
|
+
>> !ncat #`ip` #`port`
|
|
36
112
|
|
|
37
|
-
* Moved console `!command` logic into
|
|
113
|
+
* Moved console `!command` logic into `Ronin::UI::Console::Shell`.
|
|
38
114
|
* `!command`s now only execute shell commands.
|
|
39
|
-
* Moved console `.command` logic into
|
|
115
|
+
* Moved console `.command` logic into `Ronin::UI::Console::Commands`.
|
|
40
116
|
* `.command`s are now reserved only for special console commands
|
|
41
117
|
(ex: `.edit`).
|
|
42
118
|
* Improved recognition of console `!command`s and `.command`s.
|
|
43
119
|
* Do not allow execution of console commands while in multi-line mode!
|
|
44
|
-
* Fixed a bug in
|
|
45
|
-
* When
|
|
120
|
+
* Fixed a bug in `Ronin::UI::CLI::Command` which disabled colour output.
|
|
121
|
+
* When `Ronin::UI::CLI::Command#start` catches an Interrupt, it should exit
|
|
46
122
|
with status 130.
|
|
47
|
-
* Rescue `Errno::EPIPE` in
|
|
123
|
+
* Rescue `Errno::EPIPE` in `Ronin::UI::CLI::Command#start`.
|
|
48
124
|
* Improved `--help` output of `ronin` commands by adding `examples` and more
|
|
49
125
|
`:description`s to their options.
|
|
50
126
|
* Changed the `ronin-help COMMAND` to display the man-page for the given
|
|
@@ -58,7 +134,7 @@
|
|
|
58
134
|
* Removed dependencey on env.
|
|
59
135
|
* Removed `#to_ary` methods from Ronin Models that were causing
|
|
60
136
|
`SystemStackError: stack level too deep` exceptions. Fixes issue #4.
|
|
61
|
-
*
|
|
137
|
+
* `Ronin::UI::CLI::Command#start` now rescues Interupts.
|
|
62
138
|
|
|
63
139
|
### 1.4.0 / 2012-02-12
|
|
64
140
|
|
|
@@ -66,68 +142,68 @@
|
|
|
66
142
|
* Require parameters ~> 0.4.
|
|
67
143
|
* Require uri-query_params ~> 0.6.
|
|
68
144
|
* Require [ronin-support] ~> 0.4.
|
|
69
|
-
* Added
|
|
70
|
-
* Added
|
|
71
|
-
* Added
|
|
72
|
-
* Added
|
|
73
|
-
* Added
|
|
74
|
-
* Added
|
|
75
|
-
* Added
|
|
76
|
-
* Added
|
|
77
|
-
* Added
|
|
78
|
-
* Added
|
|
79
|
-
* Added
|
|
80
|
-
* Added
|
|
81
|
-
* Added
|
|
82
|
-
* Added
|
|
83
|
-
* Added
|
|
84
|
-
* Added
|
|
85
|
-
* Added
|
|
86
|
-
* Added
|
|
87
|
-
* Added
|
|
88
|
-
* Added
|
|
89
|
-
* Added
|
|
90
|
-
* Added
|
|
91
|
-
* Added
|
|
92
|
-
* Added
|
|
93
|
-
* Added
|
|
94
|
-
* Added
|
|
145
|
+
* Added `Ronin::Port.parse`.
|
|
146
|
+
* Added `Ronin::Port.from`.
|
|
147
|
+
* Added `Ronin::EmailAddress.from`.
|
|
148
|
+
* Added `Ronin::Password.parse`.
|
|
149
|
+
* Added `Ronin::URL#inspect`.
|
|
150
|
+
* Added `Ronin::Model::HasUniqueName::ClassMethods#parse`.
|
|
151
|
+
* Added `Ronin::Script::ClassMethods#short_name`.
|
|
152
|
+
* Added `Ronin::Script::Buildable#build_failed!`.
|
|
153
|
+
* Added `Ronin::Script::Path#clean`.
|
|
154
|
+
* Added `Ronin::Script::Path#destroy!`.
|
|
155
|
+
* Added `Ronin::UI::CLI::Command.usage`.
|
|
156
|
+
* Added `Ronin::UI::CLI::Command.summary`.
|
|
157
|
+
* Added `Ronin::UI::CLI::Command.option`.
|
|
158
|
+
* Added `Ronin::UI::CLI::Command.options`.
|
|
159
|
+
* Added `Ronin::UI::CLI::Command.options?`.
|
|
160
|
+
* Added `Ronin::UI::CLI::Command.each_option`.
|
|
161
|
+
* Added `Ronin::UI::CLI::Command.argument`.
|
|
162
|
+
* Added `Ronin::UI::CLI::Command.arguments`.
|
|
163
|
+
* Added `Ronin::UI::CLI::Command.arguments?`.
|
|
164
|
+
* Added `Ronin::UI::CLI::Command.each_argument`.
|
|
165
|
+
* Added `Ronin::UI::CLI::Command#start`.
|
|
166
|
+
* Added `Ronin::UI::CLI::Command#run`.
|
|
167
|
+
* Added `Ronin::UI::CLI::Command#option_parser`.
|
|
168
|
+
* Added `Ronin::UI::CLI::Printing`.
|
|
169
|
+
* Added `Ronin::UI::CLI::ClassCommand`.
|
|
170
|
+
* Added `Ronin::UI::CLI::ScriptCommand#setup`.
|
|
95
171
|
* Re-added the `ronin install` command.
|
|
96
172
|
* Re-added the `ronin uninstall` command.
|
|
97
173
|
* Re-added the `ronin update` command.
|
|
98
|
-
* Renamed `Ronin::URL.query_param` to
|
|
99
|
-
* Renamed `Ronin::URL.query_value` to
|
|
100
|
-
* Renamed `Ronin::Repository.add!` to
|
|
101
|
-
* Renamed `Ronin::Repository.install!` to
|
|
102
|
-
* Renamed `Ronin::Repository.uninstall!` to
|
|
174
|
+
* Renamed `Ronin::URL.query_param` to `Ronin::URL.with_query_param`.
|
|
175
|
+
* Renamed `Ronin::URL.query_value` to `Ronin::URL.with_query_value`.
|
|
176
|
+
* Renamed `Ronin::Repository.add!` to `Ronin::Repository.add`.
|
|
177
|
+
* Renamed `Ronin::Repository.install!` to `Ronin::Repository.install`.
|
|
178
|
+
* Renamed `Ronin::Repository.uninstall!` to `Ronin::Repository.uninstall`.
|
|
103
179
|
* Renamed `Ronin::UI::CLI::ScriptCommand#load_script` to
|
|
104
|
-
|
|
180
|
+
`Ronin::UI::CLI::ScriptCommand#load!`.
|
|
105
181
|
* Renamed `Ronin::UI::CLI::Commands::IPs` to
|
|
106
|
-
|
|
182
|
+
`Ronin::UI::CLI::Commands::Ips`.
|
|
107
183
|
* Renamed `Ronin::UI::CLI::Commands::URLs` to
|
|
108
|
-
|
|
184
|
+
`Ronin::UI::CLI::Commands::Urls`.
|
|
109
185
|
* Removed thor from the dependencies.
|
|
110
186
|
* Removed `Ronin::Script::InstanceMethods#script_type` in favor of
|
|
111
|
-
|
|
112
|
-
* Have
|
|
187
|
+
`Ronin::Script::ClassMethods#short_name`.
|
|
188
|
+
* Have `Ronin::AutoLoad` call `finalize` directly on the newly auto-loaded
|
|
113
189
|
model.
|
|
114
|
-
* Associate
|
|
115
|
-
* Ensure that all
|
|
116
|
-
* Include
|
|
117
|
-
|
|
118
|
-
* Refactored
|
|
190
|
+
* Associate `Ronin::EmailAddress` with `Ronin::Credential`.
|
|
191
|
+
* Ensure that all `Ronin::Script`s have unique name/version properties.
|
|
192
|
+
* Include `Ronin::Model::HasName`, `Ronin::Model::HasTitle`,
|
|
193
|
+
`Ronin::Model::HasDescription` into `Ronin::Repository`.
|
|
194
|
+
* Refactored `Ronin::UI::CLI::Command` to use
|
|
119
195
|
[Parameters::Options](http://rubydoc.info/gems/parameters/0.4.0/Parameters/Options)
|
|
120
196
|
from parameters 0.4.0.
|
|
121
|
-
*
|
|
197
|
+
* `Ronin::UI::CLI::Command#start` now rescues and prints exceptions, then
|
|
122
198
|
exits with status `-1`.
|
|
123
|
-
*
|
|
199
|
+
* `Ronin::UI::CLI::ScriptCommand` may now accept additional options for the
|
|
124
200
|
loaded script after `--`:
|
|
125
201
|
|
|
126
202
|
ronin exploit -f myexploit.rb -- --host victim.com --port 1337
|
|
127
203
|
|
|
128
204
|
* Fixed a typo in the `ronin repos` command.
|
|
129
205
|
* The `ronin repos` command now only lists installed Repositories.
|
|
130
|
-
* `Ronin::Support` is now included into
|
|
206
|
+
* `Ronin::Support` is now included into `Ronin`, making all support methods
|
|
131
207
|
accessible in the `ronin` console.
|
|
132
208
|
* Allow `ronin` console commands to be prefixed with a `.`.
|
|
133
209
|
|
|
@@ -135,29 +211,29 @@
|
|
|
135
211
|
|
|
136
212
|
* Require DataMapper ~> 1.2.
|
|
137
213
|
* Require [ronin-support] ~> 0.3.
|
|
138
|
-
* Added
|
|
139
|
-
* Added
|
|
140
|
-
* Added
|
|
141
|
-
* Added
|
|
142
|
-
* Added
|
|
143
|
-
* Added
|
|
214
|
+
* Added `Ronin::Model::Importable`.
|
|
215
|
+
* Added `Ronin::MACAddress.extract`.
|
|
216
|
+
* Added `Ronin::IPAddress.extract`.
|
|
217
|
+
* Added `Ronin::HostName.extract`.
|
|
218
|
+
* Added `Ronin::URL.extract`.
|
|
219
|
+
* Added `Ronin::EmailAddress.extract`.
|
|
144
220
|
* Renamed `license!` to `licensed_under` in
|
|
145
|
-
|
|
221
|
+
`Ronin::Model::HasLicense::InstanceMethods`.
|
|
146
222
|
* Moved `Ronin::UI::Output`, `Ronin::UI::Shell` and `Ronin::Network::Mixins`
|
|
147
223
|
into [ronin-support].
|
|
148
|
-
*
|
|
224
|
+
* `Ronin::Author.site` and `Ronin::License.url` now use the URI property.
|
|
149
225
|
* Merged `Ronin::UI::CLI::ModelCommand.query_model` into
|
|
150
|
-
|
|
226
|
+
`Ronin::UI::CLI::ModelCommand.model`.
|
|
151
227
|
|
|
152
228
|
### 1.2.0 / 2011-08-15
|
|
153
229
|
|
|
154
230
|
* Require dm-is-predefined ~> 0.4.
|
|
155
|
-
* Added
|
|
156
|
-
* Added custom tab-completion to
|
|
157
|
-
*
|
|
158
|
-
*
|
|
159
|
-
*
|
|
160
|
-
*
|
|
231
|
+
* Added `Ronin::UI::Console::Context`.
|
|
232
|
+
* Added custom tab-completion to `Ronin::UI::Console` for:
|
|
233
|
+
* `Ronin::IPAddress`
|
|
234
|
+
* `Ronin::HostName`
|
|
235
|
+
* `Ronin::EmailAddress`
|
|
236
|
+
* `Ronin::URL`
|
|
161
237
|
* Paths
|
|
162
238
|
* Commands
|
|
163
239
|
* Added the ability to run commands in Ronin Console, via the
|
|
@@ -167,9 +243,9 @@
|
|
|
167
243
|
* `!cd` - Changes the current working directory and updates
|
|
168
244
|
`ENV['OLDPWD']`.
|
|
169
245
|
* `!export` - Sets `ENV` variables.
|
|
170
|
-
* Added an index to
|
|
171
|
-
* Refactored
|
|
172
|
-
* Fixed a bug in
|
|
246
|
+
* Added an index to `Ronin::OS.version`.
|
|
247
|
+
* Refactored `Ronin::OS.predefine` using dm-is-predefined.
|
|
248
|
+
* Fixed a bug in `Ronin::UI::Console.setup` where the wrong binding was
|
|
173
249
|
being passed to Ripl.
|
|
174
250
|
|
|
175
251
|
### 1.1.0 / 2011-07-04
|
|
@@ -178,70 +254,70 @@
|
|
|
178
254
|
* Require data_paths ~> 0.3.
|
|
179
255
|
* Require [ronin-support] ~> 0.2.
|
|
180
256
|
* Added `ronin/repositories`, for quickly loading all repositories.
|
|
181
|
-
* Added
|
|
182
|
-
* Added
|
|
183
|
-
* Added
|
|
184
|
-
* Added
|
|
185
|
-
* Added
|
|
186
|
-
* Added
|
|
187
|
-
* Added timestamps to
|
|
188
|
-
* Added the `created_at` timestamp to
|
|
257
|
+
* Added `Ronin#script`.
|
|
258
|
+
* Added `Ronin::AutoLoad`.
|
|
259
|
+
* Added `Ronin::Arch.arm`.
|
|
260
|
+
* Added `Ronin::Arch.mips`.
|
|
261
|
+
* Added `Ronin::Arch.x86`.
|
|
262
|
+
* Added `Ronin::URLQueryParamName`.
|
|
263
|
+
* Added timestamps to `Ronin::Campaign`.
|
|
264
|
+
* Added the `created_at` timestamp to `Ronin::Target`.
|
|
189
265
|
* Added `Ronin::Network::Mixins::HTTP#http_status`.
|
|
190
266
|
* Added `Ronin::Network::Mixins::HTTP#http_ok?`.
|
|
191
267
|
* Added `Ronin::Network::Mixins::HTTP#http_server`.
|
|
192
268
|
* Added `Ronin::Network::Mixins::HTTP#http_powered_by`.
|
|
193
269
|
* Added `print_info` method calls to `Ronin::Network::Mixins::HTTP`.
|
|
194
|
-
* Added
|
|
195
|
-
* Added
|
|
196
|
-
* Added
|
|
197
|
-
* Added
|
|
198
|
-
* Added
|
|
199
|
-
* Added
|
|
200
|
-
* Added
|
|
201
|
-
* Added
|
|
202
|
-
* Added the `--database` option to
|
|
203
|
-
* Renamed `Ronin::Engine` to
|
|
204
|
-
* Renamed `Ronin::Engine::Verifiable` to
|
|
270
|
+
* Added `Ronin::Script::InstanceMethods#run`.
|
|
271
|
+
* Added `Ronin::Script::Exception`.
|
|
272
|
+
* Added `Ronin::Script::Path#to_s`.
|
|
273
|
+
* Added `Ronin::Script::ClassMethods#load_from`.
|
|
274
|
+
* Added `Ronin::Repository#find_script`.
|
|
275
|
+
* Added `Ronin::UI::CLI::Command#setup`.
|
|
276
|
+
* Added `Ronin::UI::CLI::ResourcesCommand`.
|
|
277
|
+
* Added `Ronin::UI::CLI::ScriptCommand`.
|
|
278
|
+
* Added the `--database` option to `Ronin::UI::CLI::ModelCommand`.
|
|
279
|
+
* Renamed `Ronin::Engine` to `Ronin::Script`.
|
|
280
|
+
* Renamed `Ronin::Engine::Verifiable` to `Ronin::Script::Testable`.
|
|
205
281
|
* Renamed `Ronin::Engine#engine_name` to
|
|
206
282
|
`Ronin::Script::InstanceMethods#script_type`.
|
|
207
283
|
* Renamed `Ronin::Engine::InstanceMethods#load_original!` to
|
|
208
|
-
|
|
209
|
-
* Renamed `Ronin::CachedFile` to
|
|
284
|
+
`Ronin::Script::InstanceMethods#load_script!`.
|
|
285
|
+
* Renamed `Ronin::CachedFile` to `Ronin::Script::Path`.
|
|
210
286
|
* Renamed `Ronin::UI::CLI::ModelCommand.model=` to
|
|
211
|
-
|
|
287
|
+
`Ronin::UI::CLI::ModelCommand.model`.
|
|
212
288
|
* Renamed `Ronin::UI::CLI::ModelCommand#model` to
|
|
213
289
|
`Ronin::UI::CLI::ModelCommand.query_model`.
|
|
214
290
|
* Renamed `Ronin::UI::CLI::ModelCommand#new_query` to
|
|
215
|
-
|
|
291
|
+
`Ronin::UI::CLI::ModelCommand#query`.
|
|
216
292
|
* Renamed `Ronin::UI::CLI::ModelCommand#print_resource` to
|
|
217
|
-
|
|
293
|
+
`Ronin::UI::CLI::ResourcesCommand#print_resource`.
|
|
218
294
|
* Renamed `Ronin::UI::CLI::ModelCommand#print_resources` to
|
|
219
|
-
|
|
295
|
+
`Ronin::UI::CLI::ResourcesCommand#print_resources`.
|
|
220
296
|
* Removed `Ronin::Engine#method_missing`.
|
|
221
|
-
* Extend `DataPaths::Finders` into
|
|
222
|
-
* Fixed a RubyGems deprecation in
|
|
297
|
+
* Extend `DataPaths::Finders` into `Ronin::Config`.
|
|
298
|
+
* Fixed a RubyGems deprecation in `Ronin::Installation`.
|
|
223
299
|
* Enabled verbose DataMapper logging if `$DEBUG` or the `DEBUG`
|
|
224
300
|
environment variable are set.
|
|
225
301
|
* Switched from DataMapper URIs to Hashes.
|
|
226
|
-
* Fixed a bug in
|
|
302
|
+
* Fixed a bug in `Ronin::Database::Migrations::Migration#initialize`, where
|
|
227
303
|
`:needs` was being overridden.
|
|
228
|
-
* Group Database migration files by
|
|
229
|
-
* Ensure that
|
|
304
|
+
* Group Database migration files by `Ronin::VERSION`.
|
|
305
|
+
* Ensure that `Ronin::Database::Migrations` preserves the order of loaded
|
|
230
306
|
migrations.
|
|
231
|
-
* Set the length of
|
|
232
|
-
* Set the length of
|
|
233
|
-
* Merged `Ronin::Model::Cacheable` into
|
|
307
|
+
* Set the length of `Ronin::Password.clear_text` to 256.
|
|
308
|
+
* Set the length of `Ronin::License.url` to 256.
|
|
309
|
+
* Merged `Ronin::Model::Cacheable` into `Ronin::Script`.
|
|
234
310
|
* Repositories can now cache/load scripts from the `scripts/` directory.
|
|
235
|
-
* Disable
|
|
311
|
+
* Disable `Ronin::UI::Console.short_errors?` if the `VERBOSE` environment
|
|
236
312
|
variable is set.
|
|
237
|
-
* Disable
|
|
313
|
+
* Disable `Ronin::UI::Console.color?` if the `STDOUT` is a tty.
|
|
238
314
|
* Set `Ronin::UI::Output.handler` to `Ronin::UI::Output::Terminal::Raw`,
|
|
239
315
|
when `STDOUT` is not a tty.
|
|
240
316
|
* Enable `Ronin::UI::Output.verbose?` if `$VERBOSE` or `$DEBUG` are set.
|
|
241
|
-
*
|
|
242
|
-
|
|
243
|
-
* Merged `query_method` into
|
|
244
|
-
* Allow
|
|
317
|
+
* `Ronin::UI::CLI::ModelCommand#setup` now automatically calls
|
|
318
|
+
`Ronin::Database.setup`, before executing the command.
|
|
319
|
+
* Merged `query_method` into `Ronin::UI::CLI::ModelCommand#query`.
|
|
320
|
+
* Allow `Ronin::UI::CLI::ModelCommand.query_option` to map to Model
|
|
245
321
|
properties.
|
|
246
322
|
* Use DataMapper query-paths to improve performance of query-helper methods.
|
|
247
323
|
* Removed `Ronin::Target#directory`.
|
|
@@ -277,29 +353,29 @@
|
|
|
277
353
|
* Require thor ~> 0.14.3.
|
|
278
354
|
* Require [ronin-support] ~> 0.1.
|
|
279
355
|
* Added `ronin/bootstrap` which only loads configuration and the Database.
|
|
280
|
-
* Added
|
|
281
|
-
* Added
|
|
282
|
-
* Added
|
|
283
|
-
* Added
|
|
284
|
-
* Added
|
|
285
|
-
* Added
|
|
286
|
-
* Added
|
|
287
|
-
* Added
|
|
288
|
-
* Added
|
|
289
|
-
* Added
|
|
290
|
-
* Added
|
|
291
|
-
* Added
|
|
292
|
-
* Added
|
|
293
|
-
* Added
|
|
294
|
-
* Added
|
|
295
|
-
* Added
|
|
296
|
-
* Added
|
|
297
|
-
* Added
|
|
298
|
-
* Added
|
|
299
|
-
* Added
|
|
300
|
-
* Added
|
|
301
|
-
* Added
|
|
302
|
-
* Added
|
|
356
|
+
* Added `Ronin::Database::Migrations`.
|
|
357
|
+
* Added `Ronin::Model::HasUniqueName`.
|
|
358
|
+
* Added `Ronin::Address`:
|
|
359
|
+
* Added `Ronin::MACAddress`.
|
|
360
|
+
* Added `Ronin::IPAddress`.
|
|
361
|
+
* Added `Ronin::HostName`.
|
|
362
|
+
* Added `Ronin::Port`:
|
|
363
|
+
* Added `Ronin::TCPPort`.
|
|
364
|
+
* Added `Ronin::UDPPort`.
|
|
365
|
+
* Added `Ronin::Service`.
|
|
366
|
+
* Added `Ronin::OpenPort`.
|
|
367
|
+
* Added `Ronin::OSGuess`.
|
|
368
|
+
* Added `Ronin::UserName`.
|
|
369
|
+
* Added `Ronin::URL`:
|
|
370
|
+
* Added `Ronin::URLScheme`.
|
|
371
|
+
* Added `Ronin::URLQueryParam`.
|
|
372
|
+
* Added `Ronin::EmailAddress`.
|
|
373
|
+
* Added `Ronin::Credential`.
|
|
374
|
+
* Added `Ronin::ServiceCredential`.
|
|
375
|
+
* Added `Ronin::WebCredential`.
|
|
376
|
+
* Added `Ronin::Organization`.
|
|
377
|
+
* Added `Ronin::Campaign`.
|
|
378
|
+
* Added `Ronin::Target`.
|
|
303
379
|
* Added `Ronin::Engine`.
|
|
304
380
|
* Added `Ronin::UI::Output::Terminal::Raw`.
|
|
305
381
|
* Added `Ronin::UI::Output::Terminal::Color`.
|
|
@@ -319,9 +395,9 @@
|
|
|
319
395
|
credentials from the Database.
|
|
320
396
|
* Added the `ronin-campaigns` command for listing, importing and exporting
|
|
321
397
|
Campaigns from the Database.
|
|
322
|
-
* Renamed `Ronin::Product` to
|
|
323
|
-
* Renamed `Ronin::UI::CommandLine` to
|
|
324
|
-
* Renamed `Ronin::Platform::Overlay` to
|
|
398
|
+
* Renamed `Ronin::Product` to `Ronin::Software`.
|
|
399
|
+
* Renamed `Ronin::UI::CommandLine` to `Ronin::UI::CLI`.
|
|
400
|
+
* Renamed `Ronin::Platform::Overlay` to `Ronin::Repository`.
|
|
325
401
|
* Renamed `Ronin::Platform::CachedFile` to `Ronin::CachedFile`.
|
|
326
402
|
* Renamed `Ronin::Platform::Cacheable` to `Ronin::Model::Cacheable`.
|
|
327
403
|
* Removed `Ronin::Platform::Extension`.
|
|
@@ -331,9 +407,9 @@
|
|
|
331
407
|
* Switched from [Jeweler](https://github.com/technicalpickles/jeweler)
|
|
332
408
|
to [Ore](http://github.com/ruby-ore/ore) and [Bundler](http://gembundler.com).
|
|
333
409
|
* Use [OpenNamespace](http://github.com/postmodern/open_namespace) to auto-load
|
|
334
|
-
everything in the
|
|
410
|
+
everything in the `Ronin` namespace.
|
|
335
411
|
* Switched from DataMapper auto-migrations to explicit-migrations.
|
|
336
|
-
* Switched
|
|
412
|
+
* Switched `Ronin::UI::Console` from IRB to
|
|
337
413
|
[Ripl](https://github.com/cldwalker/ripl):
|
|
338
414
|
* Enabled result coloring with
|
|
339
415
|
[ripl-color_result](https://github.com/janlelis/ripl-color_result).
|
|
@@ -773,4 +849,19 @@
|
|
|
773
849
|
* Auto-indentation enabled.
|
|
774
850
|
* Pretty-Print loaded.
|
|
775
851
|
|
|
776
|
-
[
|
|
852
|
+
[open_namespace]: https://github.com/postmodern/open_namespace#readme
|
|
853
|
+
[rouge]: https://github.com/rouge-ruby/rouge#readme
|
|
854
|
+
[async-io]: https://github.com/socketry/async-io#readme
|
|
855
|
+
[wordlist]: https://github.com/postmodern/wordlist.rb#readme
|
|
856
|
+
|
|
857
|
+
[ronin-support]: https://github.com/ronin-rb/ronin-support#readme
|
|
858
|
+
[ronin-repos]: https://github.com/ronin-rb/ronin-repos#readme
|
|
859
|
+
[ronin-core]: https://github.com/ronin-rb/ronin-core#readme
|
|
860
|
+
[ronin-db]: https://github.com/ronin-rb/ronin-db#readme
|
|
861
|
+
[ronin-fuzzer]: https://github.com/ronin-rb/ronin-fuzzer#readme
|
|
862
|
+
[ronin-web]: https://github.com/ronin-rb/ronin-web#readme
|
|
863
|
+
[ronin-code-asm]: https://github.com/ronin-rb/ronin-code-asm#readme
|
|
864
|
+
[ronin-code-sql]: https://github.com/ronin-rb/ronin-code-sql#readme
|
|
865
|
+
[ronin-payloads]: https://github.com/ronin-rb/ronin-payloads#readme
|
|
866
|
+
[ronin-exploits]: https://github.com/ronin-rb/ronin-exploits#readme
|
|
867
|
+
[ronin-vulns]: https://github.com/ronin-rb/ronin-vulns#readme
|