ronin-exploits 0.3.1 → 1.0.0.beta1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.document +4 -0
- data/.editorconfig +11 -0
- data/.github/workflows/ruby.yml +31 -0
- data/.gitignore +13 -0
- data/.mailmap +1 -0
- data/.rspec +1 -0
- data/.ruby-version +1 -0
- data/.yardopts +1 -0
- data/COPYING.txt +161 -335
- data/{History.txt → ChangeLog.md} +119 -16
- data/Gemfile +50 -0
- data/README.md +454 -0
- data/Rakefile +37 -23
- data/bin/ronin-exploits +13 -6
- data/data/new/exploit.rb.erb +158 -0
- data/gemspec.yml +37 -0
- data/lib/ronin/exploits/advisory.rb +84 -0
- data/lib/ronin/exploits/cli/command.rb +39 -0
- data/lib/ronin/exploits/cli/commands/irb.rb +57 -0
- data/lib/ronin/exploits/cli/commands/list.rb +80 -0
- data/lib/ronin/exploits/cli/commands/new.rb +332 -0
- data/lib/ronin/exploits/cli/commands/run.rb +396 -0
- data/lib/ronin/exploits/cli/commands/show.rb +264 -0
- data/lib/ronin/exploits/cli/exploit_command.rb +114 -0
- data/lib/ronin/exploits/cli/exploit_methods.rb +114 -0
- data/lib/ronin/exploits/cli/ruby_shell.rb +51 -0
- data/lib/ronin/exploits/cli.rb +46 -0
- data/lib/ronin/exploits/client_side_web_vuln.rb +69 -0
- data/lib/ronin/exploits/exceptions.rb +27 -17
- data/lib/ronin/exploits/exploit.rb +501 -582
- data/lib/ronin/exploits/heap_overflow.rb +50 -0
- data/lib/ronin/exploits/lfi.rb +141 -0
- data/lib/ronin/exploits/loot/file.rb +113 -0
- data/lib/ronin/exploits/loot.rb +119 -0
- data/lib/ronin/exploits/memory_corruption.rb +53 -0
- data/lib/ronin/exploits/metadata/arch.rb +83 -0
- data/lib/ronin/exploits/metadata/cookie_param.rb +80 -0
- data/lib/ronin/exploits/metadata/default_filename.rb +69 -0
- data/lib/ronin/exploits/metadata/default_port.rb +69 -0
- data/lib/ronin/exploits/metadata/header_name.rb +80 -0
- data/lib/ronin/exploits/metadata/os.rb +117 -0
- data/lib/ronin/exploits/metadata/shouts.rb +85 -0
- data/lib/ronin/exploits/metadata/url_path.rb +82 -0
- data/lib/ronin/exploits/metadata/url_query_param.rb +80 -0
- data/lib/ronin/exploits/mixins/binary.rb +106 -0
- data/lib/ronin/exploits/mixins/build_dir.rb +61 -0
- data/lib/ronin/exploits/mixins/file_builder.rb +102 -0
- data/lib/ronin/exploits/mixins/format_string.rb +87 -0
- data/lib/ronin/exploits/mixins/has_payload.rb +202 -0
- data/lib/ronin/exploits/mixins/has_targets.rb +297 -0
- data/lib/ronin/exploits/mixins/html.rb +213 -0
- data/lib/ronin/exploits/mixins/http.rb +866 -0
- data/lib/ronin/exploits/mixins/loot.rb +84 -0
- data/lib/ronin/exploits/mixins/nops.rb +121 -0
- data/lib/ronin/exploits/mixins/remote_tcp.rb +272 -0
- data/lib/ronin/exploits/mixins/remote_udp.rb +264 -0
- data/lib/ronin/exploits/mixins/seh.rb +136 -0
- data/lib/ronin/exploits/mixins/stack_overflow.rb +124 -0
- data/lib/ronin/exploits/mixins/text.rb +65 -0
- data/lib/ronin/exploits/mixins.rb +32 -0
- data/lib/ronin/exploits/open_redirect.rb +103 -0
- data/lib/ronin/exploits/params/base_url.rb +84 -0
- data/lib/ronin/exploits/params/bind_host.rb +53 -0
- data/lib/ronin/exploits/params/bind_port.rb +53 -0
- data/lib/ronin/exploits/params/filename.rb +71 -0
- data/lib/ronin/exploits/params/host.rb +56 -0
- data/lib/ronin/exploits/params/port.rb +71 -0
- data/lib/ronin/exploits/registry.rb +32 -0
- data/lib/ronin/exploits/rfi.rb +106 -0
- data/lib/ronin/exploits/root.rb +28 -0
- data/lib/ronin/exploits/seh_overflow.rb +90 -0
- data/lib/ronin/exploits/sqli.rb +172 -0
- data/lib/ronin/exploits/ssti.rb +108 -0
- data/lib/ronin/exploits/stack_overflow.rb +90 -0
- data/lib/ronin/exploits/target.rb +63 -103
- data/lib/ronin/exploits/test_result.rb +80 -0
- data/lib/ronin/exploits/use_after_free.rb +50 -0
- data/lib/ronin/exploits/version.rb +11 -12
- data/lib/ronin/exploits/web.rb +18 -89
- data/lib/ronin/exploits/web_vuln.rb +378 -0
- data/lib/ronin/exploits/xss.rb +102 -0
- data/lib/ronin/exploits.rb +19 -26
- data/man/ronin-exploits-irb.1 +31 -0
- data/man/ronin-exploits-irb.1.md +22 -0
- data/man/ronin-exploits-list.1 +37 -0
- data/man/ronin-exploits-list.1.md +27 -0
- data/man/ronin-exploits-new.1 +98 -0
- data/man/ronin-exploits-new.1.md +73 -0
- data/man/ronin-exploits-run.1 +117 -0
- data/man/ronin-exploits-run.1.md +87 -0
- data/man/ronin-exploits-show.1 +45 -0
- data/man/ronin-exploits-show.1.md +33 -0
- data/man/ronin-exploits.1 +55 -0
- data/man/ronin-exploits.1.md +41 -0
- data/ronin-exploits.gemspec +62 -0
- data/spec/advisory_spec.rb +71 -0
- data/spec/cli/exploit_command_spec.rb +68 -0
- data/spec/cli/exploit_methods_spec.rb +208 -0
- data/spec/cli/ruby_shell_spec.rb +14 -0
- data/spec/client_side_web_vuln_spec.rb +117 -0
- data/spec/exploit_spec.rb +538 -0
- data/spec/exploits_spec.rb +3 -4
- data/spec/heap_overflow_spec.rb +14 -0
- data/spec/lfi_spec.rb +162 -0
- data/spec/loot/file_spec.rb +131 -0
- data/spec/loot_spec.rb +138 -0
- data/spec/memory_corruption_spec.rb +22 -0
- data/spec/metadata/arch_spec.rb +82 -0
- data/spec/metadata/cookie_param_spec.rb +67 -0
- data/spec/metadata/default_filename_spec.rb +62 -0
- data/spec/metadata/default_port_spec.rb +62 -0
- data/spec/metadata/header_name_spec.rb +67 -0
- data/spec/metadata/os_spec.rb +164 -0
- data/spec/metadata/shouts_spec.rb +100 -0
- data/spec/metadata/url_path_spec.rb +67 -0
- data/spec/metadata/url_query_param_spec.rb +67 -0
- data/spec/mixins/binary_spec.rb +129 -0
- data/spec/mixins/build_dir.rb +66 -0
- data/spec/mixins/file_builder_spec.rb +67 -0
- data/spec/mixins/format_string_spec.rb +44 -0
- data/spec/mixins/has_payload_spec.rb +333 -0
- data/spec/mixins/has_targets_spec.rb +434 -0
- data/spec/mixins/html_spec.rb +772 -0
- data/spec/mixins/http_spec.rb +1227 -0
- data/spec/mixins/loot_spec.rb +20 -0
- data/spec/mixins/nops_spec.rb +165 -0
- data/spec/mixins/remote_tcp_spec.rb +217 -0
- data/spec/mixins/remote_udp_spec.rb +217 -0
- data/spec/mixins/seh_spec.rb +89 -0
- data/spec/mixins/stack_overflow_spec.rb +87 -0
- data/spec/mixins/text_spec.rb +43 -0
- data/spec/open_redirect_spec.rb +71 -0
- data/spec/params/base_url_spec.rb +71 -0
- data/spec/params/bind_host_spec.rb +34 -0
- data/spec/params/bind_port_spec.rb +35 -0
- data/spec/params/filename_spec.rb +77 -0
- data/spec/params/host_spec.rb +34 -0
- data/spec/params/port_spec.rb +77 -0
- data/spec/rfi_spec.rb +107 -0
- data/spec/seh_overflow_spec.rb +18 -0
- data/spec/spec_helper.rb +6 -10
- data/spec/sqli_spec.rb +306 -0
- data/spec/ssti_spec.rb +121 -0
- data/spec/stack_overflow_spec.rb +18 -0
- data/spec/target_spec.rb +92 -0
- data/spec/test_result_spec.rb +32 -0
- data/spec/use_after_free_spec.rb +14 -0
- data/spec/web_spec.rb +12 -0
- data/spec/web_vuln_spec.rb +854 -0
- data/spec/xss_spec.rb +69 -0
- metadata +356 -324
- data/Manifest.txt +0 -196
- data/README.txt +0 -274
- data/bin/ronin-exploit +0 -12
- data/bin/ronin-gen-binary-payload +0 -12
- data/bin/ronin-gen-exploit +0 -12
- data/bin/ronin-gen-ftp-exploit +0 -12
- data/bin/ronin-gen-http-exploit +0 -12
- data/bin/ronin-gen-local-exploit +0 -12
- data/bin/ronin-gen-nops +0 -12
- data/bin/ronin-gen-payload +0 -12
- data/bin/ronin-gen-remote-exploit +0 -12
- data/bin/ronin-gen-remote-tcp-exploit +0 -12
- data/bin/ronin-gen-remote-udp-exploit +0 -12
- data/bin/ronin-gen-shellcode +0 -12
- data/bin/ronin-gen-web-exploit +0 -12
- data/bin/ronin-payload +0 -12
- data/bin/ronin-payloads +0 -12
- data/lib/ronin/controls/behaviors.rb +0 -133
- data/lib/ronin/controls/exceptions/not_implemented.rb +0 -27
- data/lib/ronin/controls/exceptions/program_not_found.rb +0 -27
- data/lib/ronin/controls/exceptions.rb +0 -23
- data/lib/ronin/controls/file_system.rb +0 -145
- data/lib/ronin/controls/helpers/command_exec.rb +0 -143
- data/lib/ronin/controls/helpers/dir_create.rb +0 -42
- data/lib/ronin/controls/helpers/dir_listing.rb +0 -62
- data/lib/ronin/controls/helpers/dir_remove.rb +0 -42
- data/lib/ronin/controls/helpers/file_ctime.rb +0 -52
- data/lib/ronin/controls/helpers/file_mtime.rb +0 -53
- data/lib/ronin/controls/helpers/file_ownership.rb +0 -53
- data/lib/ronin/controls/helpers/file_read.rb +0 -62
- data/lib/ronin/controls/helpers/file_remove.rb +0 -51
- data/lib/ronin/controls/helpers/file_write.rb +0 -62
- data/lib/ronin/controls/helpers/memory_read.rb +0 -39
- data/lib/ronin/controls/helpers/memory_write.rb +0 -39
- data/lib/ronin/controls/helpers.rb +0 -33
- data/lib/ronin/controls.rb +0 -23
- data/lib/ronin/exploits/control.rb +0 -47
- data/lib/ronin/exploits/exceptions/exception.rb +0 -27
- data/lib/ronin/exploits/exceptions/exploit_not_built.rb +0 -29
- data/lib/ronin/exploits/exceptions/payload_size.rb +0 -29
- data/lib/ronin/exploits/exceptions/restricted_char.rb +0 -29
- data/lib/ronin/exploits/exceptions/target_data_missing.rb +0 -29
- data/lib/ronin/exploits/exceptions/target_unspecified.rb +0 -29
- data/lib/ronin/exploits/exceptions/unknown_helper.rb +0 -29
- data/lib/ronin/exploits/exploit_author.rb +0 -33
- data/lib/ronin/exploits/ftp.rb +0 -42
- data/lib/ronin/exploits/helpers/binary.rb +0 -50
- data/lib/ronin/exploits/helpers/buffer_overflow.rb +0 -115
- data/lib/ronin/exploits/helpers/file_based.rb +0 -112
- data/lib/ronin/exploits/helpers/format_string.rb +0 -117
- data/lib/ronin/exploits/helpers/padding.rb +0 -101
- data/lib/ronin/exploits/helpers.rb +0 -26
- data/lib/ronin/exploits/http.rb +0 -49
- data/lib/ronin/exploits/local.rb +0 -40
- data/lib/ronin/exploits/remote.rb +0 -40
- data/lib/ronin/exploits/remote_tcp.rb +0 -87
- data/lib/ronin/exploits/remote_udp.rb +0 -87
- data/lib/ronin/exploits/targets/buffer_overflow.rb +0 -46
- data/lib/ronin/exploits/targets/format_string.rb +0 -43
- data/lib/ronin/exploits/targets.rb +0 -27
- data/lib/ronin/exploits/verifiers.rb +0 -121
- data/lib/ronin/generators/exploits/exploit.rb +0 -70
- data/lib/ronin/generators/exploits/ftp.rb +0 -42
- data/lib/ronin/generators/exploits/http.rb +0 -42
- data/lib/ronin/generators/exploits/local.rb +0 -42
- data/lib/ronin/generators/exploits/remote.rb +0 -42
- data/lib/ronin/generators/exploits/remote_tcp.rb +0 -44
- data/lib/ronin/generators/exploits/remote_udp.rb +0 -44
- data/lib/ronin/generators/exploits/static.rb +0 -30
- data/lib/ronin/generators/exploits/web.rb +0 -45
- data/lib/ronin/generators/exploits.rb +0 -23
- data/lib/ronin/generators/payloads/binary_payload.rb +0 -42
- data/lib/ronin/generators/payloads/nops.rb +0 -42
- data/lib/ronin/generators/payloads/payload.rb +0 -66
- data/lib/ronin/generators/payloads/shellcode.rb +0 -42
- data/lib/ronin/generators/payloads/static.rb +0 -30
- data/lib/ronin/generators/payloads.rb +0 -23
- data/lib/ronin/model/has_default_port.rb +0 -54
- data/lib/ronin/model/targets_arch.rb +0 -68
- data/lib/ronin/model/targets_os.rb +0 -69
- data/lib/ronin/model/targets_product.rb +0 -68
- data/lib/ronin/payloads/asm_payload.rb +0 -40
- data/lib/ronin/payloads/binary_payload.rb +0 -42
- data/lib/ronin/payloads/control.rb +0 -47
- data/lib/ronin/payloads/encoders/encoder.rb +0 -92
- data/lib/ronin/payloads/encoders/xor.rb +0 -79
- data/lib/ronin/payloads/encoders.rb +0 -32
- data/lib/ronin/payloads/exceptions/exception.rb +0 -27
- data/lib/ronin/payloads/exceptions/not_implemented.rb +0 -29
- data/lib/ronin/payloads/exceptions/unknown_helper.rb +0 -29
- data/lib/ronin/payloads/exceptions.rb +0 -23
- data/lib/ronin/payloads/has_payload.rb +0 -111
- data/lib/ronin/payloads/helpers/chained.rb +0 -61
- data/lib/ronin/payloads/helpers/rpc.rb +0 -93
- data/lib/ronin/payloads/helpers.rb +0 -23
- data/lib/ronin/payloads/nops.rb +0 -39
- data/lib/ronin/payloads/payload.rb +0 -350
- data/lib/ronin/payloads/payload_author.rb +0 -33
- data/lib/ronin/payloads/shellcode.rb +0 -40
- data/lib/ronin/payloads/web_payload.rb +0 -41
- data/lib/ronin/payloads.rb +0 -36
- data/lib/ronin/ui/command_line/commands/exploit.rb +0 -193
- data/lib/ronin/ui/command_line/commands/exploits.rb +0 -154
- data/lib/ronin/ui/command_line/commands/gen_binary_payload.rb +0 -34
- data/lib/ronin/ui/command_line/commands/gen_exploit.rb +0 -34
- data/lib/ronin/ui/command_line/commands/gen_ftp_exploit.rb +0 -34
- data/lib/ronin/ui/command_line/commands/gen_http_exploit.rb +0 -34
- data/lib/ronin/ui/command_line/commands/gen_local_exploit.rb +0 -34
- data/lib/ronin/ui/command_line/commands/gen_nops.rb +0 -34
- data/lib/ronin/ui/command_line/commands/gen_payload.rb +0 -34
- data/lib/ronin/ui/command_line/commands/gen_remote_exploit.rb +0 -34
- data/lib/ronin/ui/command_line/commands/gen_remote_tcp_exploit.rb +0 -34
- data/lib/ronin/ui/command_line/commands/gen_remote_udp_exploit.rb +0 -34
- data/lib/ronin/ui/command_line/commands/gen_shellcode.rb +0 -34
- data/lib/ronin/ui/command_line/commands/gen_web_exploit.rb +0 -34
- data/lib/ronin/ui/command_line/commands/payload.rb +0 -129
- data/lib/ronin/ui/command_line/commands/payloads.rb +0 -128
- data/lib/ronin/vuln/behavior.rb +0 -165
- data/spec/controls/behaviors_examples.rb +0 -38
- data/spec/exploits/binary_exploit_spec.rb +0 -44
- data/spec/exploits/buffer_overflow_exploit_spec.rb +0 -70
- data/spec/exploits/exploit_spec.rb +0 -313
- data/spec/exploits/file_based_exploit_spec.rb +0 -48
- data/spec/exploits/format_string_exploit_spec.rb +0 -32
- data/spec/exploits/ftp_spec.rb +0 -13
- data/spec/exploits/http_spec.rb +0 -17
- data/spec/exploits/padding_exploit_spec.rb +0 -44
- data/spec/exploits/remote_tcp_spec.rb +0 -28
- data/spec/exploits/remote_udp_spec.rb +0 -28
- data/spec/exploits/target_spec.rb +0 -98
- data/spec/exploits/targets/buffer_overflow_spec.rb +0 -22
- data/spec/exploits/web_spec.rb +0 -35
- data/spec/generators/exploits/exploit_examples.rb +0 -24
- data/spec/generators/exploits/exploit_spec.rb +0 -42
- data/spec/generators/exploits/ftp_spec.rb +0 -42
- data/spec/generators/exploits/http_spec.rb +0 -42
- data/spec/generators/exploits/local_spec.rb +0 -42
- data/spec/generators/exploits/remote_spec.rb +0 -42
- data/spec/generators/exploits/remote_tcp_spec.rb +0 -47
- data/spec/generators/exploits/remote_udp_spec.rb +0 -47
- data/spec/generators/exploits/web_spec.rb +0 -52
- data/spec/generators/payloads/binary_payload_spec.rb +0 -31
- data/spec/generators/payloads/nops_spec.rb +0 -31
- data/spec/generators/payloads/payload_examples.rb +0 -16
- data/spec/generators/payloads/payload_spec.rb +0 -31
- data/spec/generators/payloads/shellcode_spec.rb +0 -31
- data/spec/helpers/database.rb +0 -5
- data/spec/helpers/objects.rb +0 -22
- data/spec/model/has_default_port_spec.rb +0 -27
- data/spec/model/models/default_port_model.rb +0 -13
- data/spec/model/models/non_default_port_model.rb +0 -11
- data/spec/model/models/targets_arch_model.rb +0 -11
- data/spec/model/models/targets_os_model.rb +0 -11
- data/spec/model/models/targets_product_model.rb +0 -11
- data/spec/model/targets_arch_spec.rb +0 -32
- data/spec/model/targets_os_spec.rb +0 -33
- data/spec/model/targets_product_spec.rb +0 -35
- data/spec/objects/exploits/example.rb +0 -25
- data/spec/objects/exploits/simple.rb +0 -24
- data/spec/objects/payloads/simple.rb +0 -19
- data/spec/payloads/encoders/encoder_spec.rb +0 -30
- data/spec/payloads/encoders/xor_spec.rb +0 -20
- data/spec/payloads/payload_spec.rb +0 -156
- data/spec/vuln/behavior_spec.rb +0 -15
- data/static/ronin/generators/exploits/_cache.erb +0 -14
- data/static/ronin/generators/exploits/_header.erb +0 -1
- data/static/ronin/generators/exploits/_helpers.erb +0 -4
- data/static/ronin/generators/exploits/exploit.erb +0 -24
- data/static/ronin/generators/exploits/ftp.erb +0 -24
- data/static/ronin/generators/exploits/http.erb +0 -26
- data/static/ronin/generators/exploits/local.erb +0 -24
- data/static/ronin/generators/exploits/remote.erb +0 -24
- data/static/ronin/generators/exploits/remote_tcp.erb +0 -26
- data/static/ronin/generators/exploits/remote_udp.erb +0 -26
- data/static/ronin/generators/exploits/web.erb +0 -28
- data/static/ronin/generators/payloads/_cache.erb +0 -10
- data/static/ronin/generators/payloads/_header.erb +0 -1
- data/static/ronin/generators/payloads/_helpers.erb +0 -2
- data/static/ronin/generators/payloads/binary_payload.erb +0 -25
- data/static/ronin/generators/payloads/nops.erb +0 -19
- data/static/ronin/generators/payloads/payload.erb +0 -25
- data/static/ronin/generators/payloads/shellcode.erb +0 -25
- data/tasks/spec.rb +0 -10
- data/tasks/yard.rb +0 -13
- data.tar.gz.sig +0 -0
- metadata.gz.sig +0 -0
metadata
CHANGED
@@ -1,346 +1,378 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: ronin-exploits
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0.beta1
|
5
5
|
platform: ruby
|
6
|
-
authors:
|
6
|
+
authors:
|
7
7
|
- Postmodern
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
|
-
cert_chain:
|
11
|
-
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
W+IhIkANQ7E6uMZIZcdnfadC6lPAtlKkqtd9crvRbFgr6e3kyflmohbRnTEJHoRd
|
21
|
-
7SHHsybE6DSn7oTDs6XBTNrNIn5VfZA0z01eeos/+zBm1zKJOK2+/7xtLLDuDU9G
|
22
|
-
+Rd+ltUBbvxUrMNZmDG29pnmN2xTRH+Q8HxD2AxlvM5SRpK6OeZaHV7PaCCAVZ4L
|
23
|
-
T9BFl1sfMvRlABeGEkSyuQIDAQABozkwNzAJBgNVHRMEAjAAMAsGA1UdDwQEAwIE
|
24
|
-
sDAdBgNVHQ4EFgQUKwsd+PqEYmBvyaTyoL+uRuk+PhEwDQYJKoZIhvcNAQEFBQAD
|
25
|
-
ggEBAB4TvHsrlbcXcKg6gX5BIb9tI+zGkpzo0Z7jnxMEcNO7NGGwmzafDBI/xZYv
|
26
|
-
xkRH3/HXbGGYDOi6Q6gWt5GujSx0bOImDtYTJTH8jnzN92HzEK5WdScm1QpZKF1e
|
27
|
-
cezArMbxbSPaosxTCtG6LQTkE28lFQsmFZ5xzouugS4h5+LVJiVMmiP+l3EfkjFa
|
28
|
-
GOURU+rNEMPWo8MCWivGW7jes6BMzWHcW7DQ0scNVmIcCIgdyMmpscuAEOSeghy9
|
29
|
-
/fFs57Ey2OXBL55nDOyvN/ZQ2Vab05UH4t+GCxjAPeirzL/29FBtePT6VD44c38j
|
30
|
-
pDj+ws7QjtH/Qcrr1l9jfN0ehDs=
|
31
|
-
-----END CERTIFICATE-----
|
32
|
-
|
33
|
-
date: 2009-10-01 00:00:00 -07:00
|
34
|
-
default_executable:
|
35
|
-
dependencies:
|
36
|
-
- !ruby/object:Gem::Dependency
|
37
|
-
name: ronin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2023-01-01 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: uri-query_params
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0.6'
|
38
20
|
type: :runtime
|
39
|
-
|
40
|
-
version_requirements: !ruby/object:Gem::Requirement
|
41
|
-
requirements:
|
42
|
-
- - "
|
43
|
-
- !ruby/object:Gem::Version
|
44
|
-
version: 0.
|
45
|
-
|
46
|
-
|
47
|
-
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0.6'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: ronin-support
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 1.0.0.beta1
|
48
34
|
type: :runtime
|
49
|
-
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
51
|
-
requirements:
|
52
|
-
- - "
|
53
|
-
- !ruby/object:Gem::Version
|
54
|
-
version: 0.
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 1.0.0.beta1
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: ronin-code-sql
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 2.0.0.beta1
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 2.0.0.beta1
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: ronin-payloads
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 0.1.0.beta1
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 0.1.0.beta1
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: ronin-vulns
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 0.1.0.beta1
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 0.1.0.beta1
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: ronin-post_ex
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: 0.1.0.beta1
|
90
|
+
type: :runtime
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: 0.1.0.beta1
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: ronin-core
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "~>"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: 0.1.0.beta1
|
104
|
+
type: :runtime
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - "~>"
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: 0.1.0.beta1
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: ronin-repos
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - "~>"
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: 0.1.0.beta1
|
118
|
+
type: :runtime
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - "~>"
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: 0.1.0.beta1
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: bundler
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - "~>"
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: '2.0'
|
78
132
|
type: :development
|
79
|
-
|
80
|
-
version_requirements: !ruby/object:Gem::Requirement
|
81
|
-
requirements:
|
82
|
-
- - "
|
83
|
-
- !ruby/object:Gem::Version
|
84
|
-
version: 2.
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
Ronin allows for the rapid development and distribution of code, exploits
|
92
|
-
or payloads over many common Source-Code-Management (SCM) systems.
|
93
|
-
email:
|
94
|
-
- postmodern.mod3@gmail.com
|
95
|
-
executables:
|
96
|
-
- ronin-payload
|
97
|
-
- ronin-exploit
|
98
|
-
- ronin-payloads
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - "~>"
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: '2.0'
|
139
|
+
description: ronin-exploits is a Ruby micro-framework for writing and running exploits.
|
140
|
+
ronin-exploits allows one to write exploits as plain old Ruby classes. ronin-exploits
|
141
|
+
can be distributed as Ruby files or as git repositories that can be installed using
|
142
|
+
ronin-reps.
|
143
|
+
email: postmodern.mod3@gmail.com
|
144
|
+
executables:
|
99
145
|
- ronin-exploits
|
100
|
-
- ronin-gen-exploit
|
101
|
-
- ronin-gen-local-exploit
|
102
|
-
- ronin-gen-remote-exploit
|
103
|
-
- ronin-gen-remote-tcp-exploit
|
104
|
-
- ronin-gen-remote-udp-exploit
|
105
|
-
- ronin-gen-http-exploit
|
106
|
-
- ronin-gen-ftp-exploit
|
107
|
-
- ronin-gen-web-exploit
|
108
|
-
- ronin-gen-payload
|
109
|
-
- ronin-gen-binary-payload
|
110
|
-
- ronin-gen-shellcode
|
111
|
-
- ronin-gen-nops
|
112
146
|
extensions: []
|
113
|
-
|
114
|
-
extra_rdoc_files:
|
115
|
-
- History.txt
|
147
|
+
extra_rdoc_files:
|
116
148
|
- COPYING.txt
|
117
|
-
-
|
118
|
-
- README.
|
119
|
-
files:
|
120
|
-
-
|
149
|
+
- ChangeLog.md
|
150
|
+
- README.md
|
151
|
+
files:
|
152
|
+
- ".document"
|
153
|
+
- ".editorconfig"
|
154
|
+
- ".github/workflows/ruby.yml"
|
155
|
+
- ".gitignore"
|
156
|
+
- ".mailmap"
|
157
|
+
- ".rspec"
|
158
|
+
- ".ruby-version"
|
159
|
+
- ".yardopts"
|
121
160
|
- COPYING.txt
|
122
|
-
-
|
123
|
-
-
|
161
|
+
- ChangeLog.md
|
162
|
+
- Gemfile
|
163
|
+
- README.md
|
124
164
|
- Rakefile
|
125
|
-
- bin/ronin-payload
|
126
|
-
- bin/ronin-exploit
|
127
|
-
- bin/ronin-payloads
|
128
165
|
- bin/ronin-exploits
|
129
|
-
-
|
130
|
-
-
|
131
|
-
- bin/ronin-gen-remote-exploit
|
132
|
-
- bin/ronin-gen-remote-tcp-exploit
|
133
|
-
- bin/ronin-gen-remote-udp-exploit
|
134
|
-
- bin/ronin-gen-http-exploit
|
135
|
-
- bin/ronin-gen-ftp-exploit
|
136
|
-
- bin/ronin-gen-web-exploit
|
137
|
-
- bin/ronin-gen-payload
|
138
|
-
- bin/ronin-gen-binary-payload
|
139
|
-
- bin/ronin-gen-shellcode
|
140
|
-
- bin/ronin-gen-nops
|
141
|
-
- lib/ronin/model/has_default_port.rb
|
142
|
-
- lib/ronin/model/targets_arch.rb
|
143
|
-
- lib/ronin/model/targets_os.rb
|
144
|
-
- lib/ronin/model/targets_product.rb
|
145
|
-
- lib/ronin/vuln/behavior.rb
|
146
|
-
- lib/ronin/controls.rb
|
147
|
-
- lib/ronin/controls/exceptions.rb
|
148
|
-
- lib/ronin/controls/exceptions/not_implemented.rb
|
149
|
-
- lib/ronin/controls/exceptions/program_not_found.rb
|
150
|
-
- lib/ronin/controls/behaviors.rb
|
151
|
-
- lib/ronin/controls/file_system.rb
|
152
|
-
- lib/ronin/controls/helpers.rb
|
153
|
-
- lib/ronin/controls/helpers/memory_read.rb
|
154
|
-
- lib/ronin/controls/helpers/memory_write.rb
|
155
|
-
- lib/ronin/controls/helpers/file_read.rb
|
156
|
-
- lib/ronin/controls/helpers/file_write.rb
|
157
|
-
- lib/ronin/controls/helpers/file_remove.rb
|
158
|
-
- lib/ronin/controls/helpers/file_ownership.rb
|
159
|
-
- lib/ronin/controls/helpers/file_mtime.rb
|
160
|
-
- lib/ronin/controls/helpers/file_ctime.rb
|
161
|
-
- lib/ronin/controls/helpers/dir_listing.rb
|
162
|
-
- lib/ronin/controls/helpers/dir_create.rb
|
163
|
-
- lib/ronin/controls/helpers/dir_remove.rb
|
164
|
-
- lib/ronin/controls/helpers/command_exec.rb
|
166
|
+
- data/new/exploit.rb.erb
|
167
|
+
- gemspec.yml
|
165
168
|
- lib/ronin/exploits.rb
|
169
|
+
- lib/ronin/exploits/advisory.rb
|
170
|
+
- lib/ronin/exploits/cli.rb
|
171
|
+
- lib/ronin/exploits/cli/command.rb
|
172
|
+
- lib/ronin/exploits/cli/commands/irb.rb
|
173
|
+
- lib/ronin/exploits/cli/commands/list.rb
|
174
|
+
- lib/ronin/exploits/cli/commands/new.rb
|
175
|
+
- lib/ronin/exploits/cli/commands/run.rb
|
176
|
+
- lib/ronin/exploits/cli/commands/show.rb
|
177
|
+
- lib/ronin/exploits/cli/exploit_command.rb
|
178
|
+
- lib/ronin/exploits/cli/exploit_methods.rb
|
179
|
+
- lib/ronin/exploits/cli/ruby_shell.rb
|
180
|
+
- lib/ronin/exploits/client_side_web_vuln.rb
|
166
181
|
- lib/ronin/exploits/exceptions.rb
|
167
|
-
- lib/ronin/exploits/exceptions/exception.rb
|
168
|
-
- lib/ronin/exploits/exceptions/unknown_helper.rb
|
169
|
-
- lib/ronin/exploits/exceptions/target_unspecified.rb
|
170
|
-
- lib/ronin/exploits/exceptions/target_data_missing.rb
|
171
|
-
- lib/ronin/exploits/exceptions/exploit_not_built.rb
|
172
|
-
- lib/ronin/exploits/exceptions/restricted_char.rb
|
173
|
-
- lib/ronin/exploits/exceptions/payload_size.rb
|
174
|
-
- lib/ronin/exploits/verifiers.rb
|
175
|
-
- lib/ronin/exploits/helpers.rb
|
176
|
-
- lib/ronin/exploits/helpers/file_based.rb
|
177
|
-
- lib/ronin/exploits/helpers/binary.rb
|
178
|
-
- lib/ronin/exploits/helpers/padding.rb
|
179
|
-
- lib/ronin/exploits/helpers/buffer_overflow.rb
|
180
|
-
- lib/ronin/exploits/helpers/format_string.rb
|
181
|
-
- lib/ronin/exploits/targets.rb
|
182
|
-
- lib/ronin/exploits/targets/buffer_overflow.rb
|
183
|
-
- lib/ronin/exploits/targets/format_string.rb
|
184
|
-
- lib/ronin/exploits/control.rb
|
185
|
-
- lib/ronin/exploits/target.rb
|
186
182
|
- lib/ronin/exploits/exploit.rb
|
187
|
-
- lib/ronin/exploits/
|
188
|
-
- lib/ronin/exploits/
|
189
|
-
- lib/ronin/exploits/
|
190
|
-
- lib/ronin/exploits/
|
191
|
-
- lib/ronin/exploits/
|
192
|
-
- lib/ronin/exploits/
|
193
|
-
- lib/ronin/exploits/
|
194
|
-
- lib/ronin/exploits/
|
183
|
+
- lib/ronin/exploits/heap_overflow.rb
|
184
|
+
- lib/ronin/exploits/lfi.rb
|
185
|
+
- lib/ronin/exploits/loot.rb
|
186
|
+
- lib/ronin/exploits/loot/file.rb
|
187
|
+
- lib/ronin/exploits/memory_corruption.rb
|
188
|
+
- lib/ronin/exploits/metadata/arch.rb
|
189
|
+
- lib/ronin/exploits/metadata/cookie_param.rb
|
190
|
+
- lib/ronin/exploits/metadata/default_filename.rb
|
191
|
+
- lib/ronin/exploits/metadata/default_port.rb
|
192
|
+
- lib/ronin/exploits/metadata/header_name.rb
|
193
|
+
- lib/ronin/exploits/metadata/os.rb
|
194
|
+
- lib/ronin/exploits/metadata/shouts.rb
|
195
|
+
- lib/ronin/exploits/metadata/url_path.rb
|
196
|
+
- lib/ronin/exploits/metadata/url_query_param.rb
|
197
|
+
- lib/ronin/exploits/mixins.rb
|
198
|
+
- lib/ronin/exploits/mixins/binary.rb
|
199
|
+
- lib/ronin/exploits/mixins/build_dir.rb
|
200
|
+
- lib/ronin/exploits/mixins/file_builder.rb
|
201
|
+
- lib/ronin/exploits/mixins/format_string.rb
|
202
|
+
- lib/ronin/exploits/mixins/has_payload.rb
|
203
|
+
- lib/ronin/exploits/mixins/has_targets.rb
|
204
|
+
- lib/ronin/exploits/mixins/html.rb
|
205
|
+
- lib/ronin/exploits/mixins/http.rb
|
206
|
+
- lib/ronin/exploits/mixins/loot.rb
|
207
|
+
- lib/ronin/exploits/mixins/nops.rb
|
208
|
+
- lib/ronin/exploits/mixins/remote_tcp.rb
|
209
|
+
- lib/ronin/exploits/mixins/remote_udp.rb
|
210
|
+
- lib/ronin/exploits/mixins/seh.rb
|
211
|
+
- lib/ronin/exploits/mixins/stack_overflow.rb
|
212
|
+
- lib/ronin/exploits/mixins/text.rb
|
213
|
+
- lib/ronin/exploits/open_redirect.rb
|
214
|
+
- lib/ronin/exploits/params/base_url.rb
|
215
|
+
- lib/ronin/exploits/params/bind_host.rb
|
216
|
+
- lib/ronin/exploits/params/bind_port.rb
|
217
|
+
- lib/ronin/exploits/params/filename.rb
|
218
|
+
- lib/ronin/exploits/params/host.rb
|
219
|
+
- lib/ronin/exploits/params/port.rb
|
220
|
+
- lib/ronin/exploits/registry.rb
|
221
|
+
- lib/ronin/exploits/rfi.rb
|
222
|
+
- lib/ronin/exploits/root.rb
|
223
|
+
- lib/ronin/exploits/seh_overflow.rb
|
224
|
+
- lib/ronin/exploits/sqli.rb
|
225
|
+
- lib/ronin/exploits/ssti.rb
|
226
|
+
- lib/ronin/exploits/stack_overflow.rb
|
227
|
+
- lib/ronin/exploits/target.rb
|
228
|
+
- lib/ronin/exploits/test_result.rb
|
229
|
+
- lib/ronin/exploits/use_after_free.rb
|
195
230
|
- lib/ronin/exploits/version.rb
|
196
|
-
- lib/ronin/
|
197
|
-
- lib/ronin/
|
198
|
-
- lib/ronin/
|
199
|
-
-
|
200
|
-
-
|
201
|
-
-
|
202
|
-
-
|
203
|
-
-
|
204
|
-
-
|
205
|
-
-
|
206
|
-
-
|
207
|
-
-
|
208
|
-
-
|
209
|
-
-
|
210
|
-
-
|
211
|
-
-
|
212
|
-
-
|
213
|
-
-
|
214
|
-
-
|
215
|
-
-
|
216
|
-
-
|
217
|
-
-
|
218
|
-
- lib/ronin/generators/exploits/local.rb
|
219
|
-
- lib/ronin/generators/exploits/remote.rb
|
220
|
-
- lib/ronin/generators/exploits/remote_tcp.rb
|
221
|
-
- lib/ronin/generators/exploits/remote_udp.rb
|
222
|
-
- lib/ronin/generators/exploits/http.rb
|
223
|
-
- lib/ronin/generators/exploits/ftp.rb
|
224
|
-
- lib/ronin/generators/exploits/web.rb
|
225
|
-
- lib/ronin/generators/exploits/static.rb
|
226
|
-
- lib/ronin/generators/payloads.rb
|
227
|
-
- lib/ronin/generators/payloads/payload.rb
|
228
|
-
- lib/ronin/generators/payloads/binary_payload.rb
|
229
|
-
- lib/ronin/generators/payloads/shellcode.rb
|
230
|
-
- lib/ronin/generators/payloads/nops.rb
|
231
|
-
- lib/ronin/generators/payloads/static.rb
|
232
|
-
- lib/ronin/ui/command_line/commands/payload.rb
|
233
|
-
- lib/ronin/ui/command_line/commands/exploit.rb
|
234
|
-
- lib/ronin/ui/command_line/commands/payloads.rb
|
235
|
-
- lib/ronin/ui/command_line/commands/exploits.rb
|
236
|
-
- lib/ronin/ui/command_line/commands/gen_exploit.rb
|
237
|
-
- lib/ronin/ui/command_line/commands/gen_local_exploit.rb
|
238
|
-
- lib/ronin/ui/command_line/commands/gen_remote_exploit.rb
|
239
|
-
- lib/ronin/ui/command_line/commands/gen_remote_tcp_exploit.rb
|
240
|
-
- lib/ronin/ui/command_line/commands/gen_remote_udp_exploit.rb
|
241
|
-
- lib/ronin/ui/command_line/commands/gen_http_exploit.rb
|
242
|
-
- lib/ronin/ui/command_line/commands/gen_ftp_exploit.rb
|
243
|
-
- lib/ronin/ui/command_line/commands/gen_web_exploit.rb
|
244
|
-
- lib/ronin/ui/command_line/commands/gen_payload.rb
|
245
|
-
- lib/ronin/ui/command_line/commands/gen_binary_payload.rb
|
246
|
-
- lib/ronin/ui/command_line/commands/gen_shellcode.rb
|
247
|
-
- lib/ronin/ui/command_line/commands/gen_nops.rb
|
248
|
-
- tasks/spec.rb
|
249
|
-
- tasks/yard.rb
|
250
|
-
- static/ronin/generators/exploits/_header.erb
|
251
|
-
- static/ronin/generators/exploits/_helpers.erb
|
252
|
-
- static/ronin/generators/exploits/_cache.erb
|
253
|
-
- static/ronin/generators/exploits/exploit.erb
|
254
|
-
- static/ronin/generators/exploits/local.erb
|
255
|
-
- static/ronin/generators/exploits/remote.erb
|
256
|
-
- static/ronin/generators/exploits/remote_tcp.erb
|
257
|
-
- static/ronin/generators/exploits/remote_udp.erb
|
258
|
-
- static/ronin/generators/exploits/http.erb
|
259
|
-
- static/ronin/generators/exploits/ftp.erb
|
260
|
-
- static/ronin/generators/exploits/web.erb
|
261
|
-
- static/ronin/generators/payloads/_header.erb
|
262
|
-
- static/ronin/generators/payloads/_helpers.erb
|
263
|
-
- static/ronin/generators/payloads/_cache.erb
|
264
|
-
- static/ronin/generators/payloads/payload.erb
|
265
|
-
- static/ronin/generators/payloads/binary_payload.erb
|
266
|
-
- static/ronin/generators/payloads/shellcode.erb
|
267
|
-
- static/ronin/generators/payloads/nops.erb
|
268
|
-
- spec/spec_helper.rb
|
269
|
-
- spec/helpers/database.rb
|
270
|
-
- spec/helpers/objects.rb
|
271
|
-
- spec/objects/exploits/simple.rb
|
272
|
-
- spec/objects/exploits/example.rb
|
273
|
-
- spec/objects/payloads/simple.rb
|
231
|
+
- lib/ronin/exploits/web.rb
|
232
|
+
- lib/ronin/exploits/web_vuln.rb
|
233
|
+
- lib/ronin/exploits/xss.rb
|
234
|
+
- man/ronin-exploits-irb.1
|
235
|
+
- man/ronin-exploits-irb.1.md
|
236
|
+
- man/ronin-exploits-list.1
|
237
|
+
- man/ronin-exploits-list.1.md
|
238
|
+
- man/ronin-exploits-new.1
|
239
|
+
- man/ronin-exploits-new.1.md
|
240
|
+
- man/ronin-exploits-run.1
|
241
|
+
- man/ronin-exploits-run.1.md
|
242
|
+
- man/ronin-exploits-show.1
|
243
|
+
- man/ronin-exploits-show.1.md
|
244
|
+
- man/ronin-exploits.1
|
245
|
+
- man/ronin-exploits.1.md
|
246
|
+
- ronin-exploits.gemspec
|
247
|
+
- spec/advisory_spec.rb
|
248
|
+
- spec/cli/exploit_command_spec.rb
|
249
|
+
- spec/cli/exploit_methods_spec.rb
|
250
|
+
- spec/cli/ruby_shell_spec.rb
|
251
|
+
- spec/client_side_web_vuln_spec.rb
|
252
|
+
- spec/exploit_spec.rb
|
274
253
|
- spec/exploits_spec.rb
|
275
|
-
- spec/
|
276
|
-
- spec/
|
277
|
-
- spec/
|
278
|
-
- spec/
|
279
|
-
- spec/
|
280
|
-
- spec/
|
281
|
-
- spec/
|
282
|
-
- spec/
|
283
|
-
- spec/
|
284
|
-
- spec/
|
285
|
-
- spec/
|
286
|
-
- spec/
|
287
|
-
- spec/
|
288
|
-
- spec/
|
289
|
-
- spec/
|
290
|
-
- spec/
|
291
|
-
- spec/
|
292
|
-
- spec/
|
293
|
-
- spec/
|
294
|
-
- spec/
|
295
|
-
- spec/
|
296
|
-
- spec/
|
297
|
-
- spec/
|
298
|
-
- spec/
|
299
|
-
- spec/
|
300
|
-
- spec/
|
301
|
-
- spec/
|
302
|
-
- spec/
|
303
|
-
- spec/
|
304
|
-
- spec/
|
305
|
-
- spec/
|
306
|
-
- spec/
|
307
|
-
- spec/
|
308
|
-
- spec/
|
309
|
-
- spec/
|
310
|
-
- spec/
|
311
|
-
- spec/
|
312
|
-
- spec/
|
313
|
-
- spec/
|
314
|
-
- spec/
|
315
|
-
- spec/
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
-
|
323
|
-
-
|
324
|
-
|
254
|
+
- spec/heap_overflow_spec.rb
|
255
|
+
- spec/lfi_spec.rb
|
256
|
+
- spec/loot/file_spec.rb
|
257
|
+
- spec/loot_spec.rb
|
258
|
+
- spec/memory_corruption_spec.rb
|
259
|
+
- spec/metadata/arch_spec.rb
|
260
|
+
- spec/metadata/cookie_param_spec.rb
|
261
|
+
- spec/metadata/default_filename_spec.rb
|
262
|
+
- spec/metadata/default_port_spec.rb
|
263
|
+
- spec/metadata/header_name_spec.rb
|
264
|
+
- spec/metadata/os_spec.rb
|
265
|
+
- spec/metadata/shouts_spec.rb
|
266
|
+
- spec/metadata/url_path_spec.rb
|
267
|
+
- spec/metadata/url_query_param_spec.rb
|
268
|
+
- spec/mixins/binary_spec.rb
|
269
|
+
- spec/mixins/build_dir.rb
|
270
|
+
- spec/mixins/file_builder_spec.rb
|
271
|
+
- spec/mixins/format_string_spec.rb
|
272
|
+
- spec/mixins/has_payload_spec.rb
|
273
|
+
- spec/mixins/has_targets_spec.rb
|
274
|
+
- spec/mixins/html_spec.rb
|
275
|
+
- spec/mixins/http_spec.rb
|
276
|
+
- spec/mixins/loot_spec.rb
|
277
|
+
- spec/mixins/nops_spec.rb
|
278
|
+
- spec/mixins/remote_tcp_spec.rb
|
279
|
+
- spec/mixins/remote_udp_spec.rb
|
280
|
+
- spec/mixins/seh_spec.rb
|
281
|
+
- spec/mixins/stack_overflow_spec.rb
|
282
|
+
- spec/mixins/text_spec.rb
|
283
|
+
- spec/open_redirect_spec.rb
|
284
|
+
- spec/params/base_url_spec.rb
|
285
|
+
- spec/params/bind_host_spec.rb
|
286
|
+
- spec/params/bind_port_spec.rb
|
287
|
+
- spec/params/filename_spec.rb
|
288
|
+
- spec/params/host_spec.rb
|
289
|
+
- spec/params/port_spec.rb
|
290
|
+
- spec/rfi_spec.rb
|
291
|
+
- spec/seh_overflow_spec.rb
|
292
|
+
- spec/spec_helper.rb
|
293
|
+
- spec/sqli_spec.rb
|
294
|
+
- spec/ssti_spec.rb
|
295
|
+
- spec/stack_overflow_spec.rb
|
296
|
+
- spec/target_spec.rb
|
297
|
+
- spec/test_result_spec.rb
|
298
|
+
- spec/use_after_free_spec.rb
|
299
|
+
- spec/web_spec.rb
|
300
|
+
- spec/web_vuln_spec.rb
|
301
|
+
- spec/xss_spec.rb
|
302
|
+
homepage: https://ronin-rb.dev/exploits/
|
303
|
+
licenses:
|
304
|
+
- LGPL-3.0
|
305
|
+
metadata: {}
|
306
|
+
post_install_message:
|
307
|
+
rdoc_options: []
|
308
|
+
require_paths:
|
325
309
|
- lib
|
326
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
327
|
-
requirements:
|
310
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
311
|
+
requirements:
|
328
312
|
- - ">="
|
329
|
-
- !ruby/object:Gem::Version
|
330
|
-
version:
|
331
|
-
|
332
|
-
|
333
|
-
requirements:
|
313
|
+
- !ruby/object:Gem::Version
|
314
|
+
version: 3.0.0
|
315
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
316
|
+
requirements:
|
334
317
|
- - ">="
|
335
|
-
- !ruby/object:Gem::Version
|
336
|
-
version:
|
337
|
-
version:
|
318
|
+
- !ruby/object:Gem::Version
|
319
|
+
version: '0'
|
338
320
|
requirements: []
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
321
|
+
rubygems_version: 3.3.26
|
322
|
+
signing_key:
|
323
|
+
specification_version: 4
|
324
|
+
summary: A Ruby micro-framework for writing and running exploits and payloads.
|
325
|
+
test_files:
|
326
|
+
- spec/advisory_spec.rb
|
327
|
+
- spec/cli/exploit_command_spec.rb
|
328
|
+
- spec/cli/exploit_methods_spec.rb
|
329
|
+
- spec/cli/ruby_shell_spec.rb
|
330
|
+
- spec/client_side_web_vuln_spec.rb
|
331
|
+
- spec/exploit_spec.rb
|
332
|
+
- spec/exploits_spec.rb
|
333
|
+
- spec/heap_overflow_spec.rb
|
334
|
+
- spec/lfi_spec.rb
|
335
|
+
- spec/loot/file_spec.rb
|
336
|
+
- spec/loot_spec.rb
|
337
|
+
- spec/memory_corruption_spec.rb
|
338
|
+
- spec/metadata/arch_spec.rb
|
339
|
+
- spec/metadata/cookie_param_spec.rb
|
340
|
+
- spec/metadata/default_filename_spec.rb
|
341
|
+
- spec/metadata/default_port_spec.rb
|
342
|
+
- spec/metadata/header_name_spec.rb
|
343
|
+
- spec/metadata/os_spec.rb
|
344
|
+
- spec/metadata/shouts_spec.rb
|
345
|
+
- spec/metadata/url_path_spec.rb
|
346
|
+
- spec/metadata/url_query_param_spec.rb
|
347
|
+
- spec/mixins/binary_spec.rb
|
348
|
+
- spec/mixins/file_builder_spec.rb
|
349
|
+
- spec/mixins/format_string_spec.rb
|
350
|
+
- spec/mixins/has_payload_spec.rb
|
351
|
+
- spec/mixins/has_targets_spec.rb
|
352
|
+
- spec/mixins/html_spec.rb
|
353
|
+
- spec/mixins/http_spec.rb
|
354
|
+
- spec/mixins/loot_spec.rb
|
355
|
+
- spec/mixins/nops_spec.rb
|
356
|
+
- spec/mixins/remote_tcp_spec.rb
|
357
|
+
- spec/mixins/remote_udp_spec.rb
|
358
|
+
- spec/mixins/seh_spec.rb
|
359
|
+
- spec/mixins/stack_overflow_spec.rb
|
360
|
+
- spec/mixins/text_spec.rb
|
361
|
+
- spec/open_redirect_spec.rb
|
362
|
+
- spec/params/base_url_spec.rb
|
363
|
+
- spec/params/bind_host_spec.rb
|
364
|
+
- spec/params/bind_port_spec.rb
|
365
|
+
- spec/params/filename_spec.rb
|
366
|
+
- spec/params/host_spec.rb
|
367
|
+
- spec/params/port_spec.rb
|
368
|
+
- spec/rfi_spec.rb
|
369
|
+
- spec/seh_overflow_spec.rb
|
370
|
+
- spec/sqli_spec.rb
|
371
|
+
- spec/ssti_spec.rb
|
372
|
+
- spec/stack_overflow_spec.rb
|
373
|
+
- spec/target_spec.rb
|
374
|
+
- spec/test_result_spec.rb
|
375
|
+
- spec/use_after_free_spec.rb
|
376
|
+
- spec/web_spec.rb
|
377
|
+
- spec/web_vuln_spec.rb
|
378
|
+
- spec/xss_spec.rb
|