ronin-exploits 1.0.0.beta1 → 1.0.0.beta2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.yardopts +1 -1
- data/README.md +1 -1
- data/data/new/exploit.rb.erb +2 -2
- data/gemspec.yml +7 -0
- data/lib/ronin/exploits/advisory.rb +1 -1
- data/lib/ronin/exploits/cli/command.rb +1 -1
- data/lib/ronin/exploits/cli/commands/irb.rb +1 -1
- data/lib/ronin/exploits/cli/commands/list.rb +1 -1
- data/lib/ronin/exploits/cli/commands/new.rb +1 -1
- data/lib/ronin/exploits/cli/commands/run.rb +1 -1
- data/lib/ronin/exploits/cli/commands/show.rb +91 -65
- data/lib/ronin/exploits/cli/exploit_command.rb +1 -1
- data/lib/ronin/exploits/cli/exploit_methods.rb +1 -1
- data/lib/ronin/exploits/cli/ruby_shell.rb +1 -1
- data/lib/ronin/exploits/cli.rb +6 -1
- data/lib/ronin/exploits/client_side_web_vuln.rb +1 -1
- data/lib/ronin/exploits/exceptions.rb +1 -1
- data/lib/ronin/exploits/exploit.rb +1 -1
- data/lib/ronin/exploits/heap_overflow.rb +1 -1
- data/lib/ronin/exploits/lfi.rb +1 -1
- data/lib/ronin/exploits/loot/file.rb +1 -1
- data/lib/ronin/exploits/loot.rb +1 -1
- data/lib/ronin/exploits/memory_corruption.rb +1 -1
- data/lib/ronin/exploits/metadata/arch.rb +1 -1
- data/lib/ronin/exploits/metadata/cookie_param.rb +1 -1
- data/lib/ronin/exploits/metadata/default_filename.rb +1 -1
- data/lib/ronin/exploits/metadata/default_port.rb +1 -1
- data/lib/ronin/exploits/metadata/header_name.rb +1 -1
- data/lib/ronin/exploits/metadata/os.rb +1 -1
- data/lib/ronin/exploits/metadata/shouts.rb +1 -1
- data/lib/ronin/exploits/metadata/url_path.rb +1 -1
- data/lib/ronin/exploits/metadata/url_query_param.rb +1 -1
- data/lib/ronin/exploits/mixins/binary.rb +1 -1
- data/lib/ronin/exploits/mixins/build_dir.rb +1 -1
- data/lib/ronin/exploits/mixins/file_builder.rb +1 -1
- data/lib/ronin/exploits/mixins/format_string.rb +1 -1
- data/lib/ronin/exploits/mixins/has_payload.rb +1 -1
- data/lib/ronin/exploits/mixins/has_targets.rb +1 -1
- data/lib/ronin/exploits/mixins/html.rb +1 -1
- data/lib/ronin/exploits/mixins/http.rb +1 -1
- data/lib/ronin/exploits/mixins/loot.rb +1 -1
- data/lib/ronin/exploits/mixins/nops.rb +1 -1
- data/lib/ronin/exploits/mixins/remote_tcp.rb +1 -1
- data/lib/ronin/exploits/mixins/remote_udp.rb +1 -1
- data/lib/ronin/exploits/mixins/seh.rb +1 -1
- data/lib/ronin/exploits/mixins/stack_overflow.rb +1 -1
- data/lib/ronin/exploits/mixins/text.rb +1 -1
- data/lib/ronin/exploits/mixins.rb +1 -1
- data/lib/ronin/exploits/open_redirect.rb +1 -1
- data/lib/ronin/exploits/params/base_url.rb +1 -1
- data/lib/ronin/exploits/params/bind_host.rb +1 -1
- data/lib/ronin/exploits/params/bind_port.rb +1 -1
- data/lib/ronin/exploits/params/filename.rb +1 -1
- data/lib/ronin/exploits/params/host.rb +1 -1
- data/lib/ronin/exploits/params/port.rb +1 -1
- data/lib/ronin/exploits/registry.rb +1 -1
- data/lib/ronin/exploits/rfi.rb +1 -1
- data/lib/ronin/exploits/root.rb +1 -1
- data/lib/ronin/exploits/seh_overflow.rb +1 -1
- data/lib/ronin/exploits/sqli.rb +1 -1
- data/lib/ronin/exploits/ssti.rb +1 -1
- data/lib/ronin/exploits/stack_overflow.rb +1 -1
- data/lib/ronin/exploits/target.rb +1 -1
- data/lib/ronin/exploits/test_result.rb +1 -1
- data/lib/ronin/exploits/use_after_free.rb +1 -1
- data/lib/ronin/exploits/version.rb +2 -2
- data/lib/ronin/exploits/web.rb +1 -1
- data/lib/ronin/exploits/web_vuln.rb +1 -1
- data/lib/ronin/exploits/xss.rb +1 -1
- data/lib/ronin/exploits.rb +1 -1
- metadata +8 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5b7d601e1580ea5719c365a686d579659df4deb60d77eff285d74ac1280d93b3
|
4
|
+
data.tar.gz: 87e9cef6168d40862c0442aabdaaa69d51563cbae6ff93abb8a3c4c0ef0b6704
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 37e77fed488fdcfed0357d792738b3bb231cbeae749631291aa12544a8b225ca14fe548cf70985ae88d9946f5e1f8ead8c1d0078d486fa4d0ed837b33fca9aa6
|
7
|
+
data.tar.gz: e032ca57e0b63ca63b93e79d6479c631a8939eaa5406d4d4d68bafebfd5b16ffdfc5e6f58f245440036ec0f2869937709c84cf915ce78e10efc4fb03c0bcc303
|
data/.yardopts
CHANGED
@@ -1 +1 @@
|
|
1
|
-
--markup markdown --title '
|
1
|
+
--markup markdown --title 'Ronin::Exploits Documentation' --protected
|
data/README.md
CHANGED
@@ -426,7 +426,7 @@ to be malicious software (malware) or malicious in nature.
|
|
426
426
|
ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
427
427
|
payload crafting functionality.
|
428
428
|
|
429
|
-
Copyright (c) 2007-
|
429
|
+
Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
430
430
|
|
431
431
|
ronin-exploits is free software: you can redistribute it and/or modify
|
432
432
|
it under the terms of the GNU Lesser General Public License as published
|
data/data/new/exploit.rb.erb
CHANGED
data/gemspec.yml
CHANGED
@@ -14,6 +14,13 @@ has_yard: true
|
|
14
14
|
|
15
15
|
required_ruby_version: ">= 3.0.0"
|
16
16
|
|
17
|
+
metadata:
|
18
|
+
documentation_uri: https://ronin-rb.dev/docs/ronin-exploits
|
19
|
+
source_code_uri: https://github.com/ronin-rb/ronin-exploits
|
20
|
+
bug_tracker_uri: https://github.com/ronin-rb/ronin-exploits/issues
|
21
|
+
changelog_uri: https://github.com/ronin-rb/ronin-exploits/blob/main/ChangeLog.md
|
22
|
+
rubygems_mfa_required: 'true'
|
23
|
+
|
17
24
|
generated_files:
|
18
25
|
- man/ronin-exploits.1
|
19
26
|
- man/ronin-exploits-irb.1
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -87,91 +87,117 @@ module Ronin
|
|
87
87
|
puts
|
88
88
|
|
89
89
|
indent do
|
90
|
-
|
90
|
+
print_metadata(exploit)
|
91
|
+
print_advisories(exploit)
|
92
|
+
print_authors(exploit)
|
93
|
+
print_description(exploit)
|
94
|
+
print_references(exploit)
|
91
95
|
|
92
|
-
|
96
|
+
if defined?(Mixins::HasTargets) &&
|
97
|
+
exploit.include?(Mixins::HasTargets)
|
98
|
+
unless exploit.targets.empty?
|
99
|
+
exploit.targets.each_with_index do |target,index|
|
100
|
+
puts "[ Target ##{index+1} ]"
|
101
|
+
puts
|
93
102
|
|
94
|
-
|
95
|
-
|
96
|
-
|
103
|
+
indent { print_target(target) }
|
104
|
+
end
|
105
|
+
end
|
97
106
|
end
|
98
107
|
|
99
|
-
|
100
|
-
|
101
|
-
fields['Disclosed'] = exploit.disclosure_date if exploit.disclosure_date
|
108
|
+
print_shouts(exploit)
|
109
|
+
end
|
102
110
|
|
103
|
-
|
104
|
-
|
105
|
-
fields['Arch'] = arch
|
106
|
-
end
|
107
|
-
end
|
111
|
+
print_params(exploit)
|
112
|
+
end
|
108
113
|
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
114
|
+
#
|
115
|
+
# Print the main metadata fields for the exploit.
|
116
|
+
#
|
117
|
+
# @param [Class<Exploit>] exploit
|
118
|
+
# The loaded exploit class.
|
119
|
+
#
|
120
|
+
def print_metadata(exploit)
|
121
|
+
fields = {}
|
122
|
+
fields['Type'] = exploit_type(exploit)
|
118
123
|
|
119
|
-
|
120
|
-
|
121
|
-
|
124
|
+
if defined?(Core::Metadata::Version) &&
|
125
|
+
exploit.include?(Core::Metadata::Version)
|
126
|
+
fields['Version'] = exploit.version if exploit.version
|
127
|
+
end
|
122
128
|
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
fields['Software Versions'] = versions.join(', ')
|
127
|
-
when Range
|
128
|
-
fields['Software Versions'] = "#{versions.begin} - #{versions.end}"
|
129
|
-
end
|
130
|
-
end
|
129
|
+
fields['Quality'] = exploit.quality if exploit.quality
|
130
|
+
fields['Released'] = exploit.release_date if exploit.release_date
|
131
|
+
fields['Disclosed'] = exploit.disclosure_date if exploit.disclosure_date
|
131
132
|
|
132
|
-
|
133
|
-
|
134
|
-
fields['
|
133
|
+
if defined?(Metadata::Arch) && exploit.include?(Metadata::Arch)
|
134
|
+
if (arch = target.arch)
|
135
|
+
fields['Arch'] = arch
|
135
136
|
end
|
137
|
+
end
|
136
138
|
|
137
|
-
|
138
|
-
|
139
|
+
if defined?(Metadata::OS) && exploit.include?(Metadata::OS)
|
140
|
+
if (os = exploit.os)
|
141
|
+
fields['OS'] = if (os_version = exploit.os_version)
|
142
|
+
"#{os} #{os_version}"
|
143
|
+
else
|
144
|
+
os
|
145
|
+
end
|
146
|
+
end
|
147
|
+
end
|
139
148
|
|
140
|
-
|
141
|
-
|
142
|
-
|
149
|
+
if (software = exploit.software)
|
150
|
+
fields['Software'] = software
|
151
|
+
end
|
143
152
|
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
153
|
+
if (versions = exploit.software_versions)
|
154
|
+
case versions
|
155
|
+
when Array
|
156
|
+
fields['Software Versions'] = versions.join(', ')
|
157
|
+
when Range
|
158
|
+
fields['Software Versions'] = "#{versions.begin} - #{versions.end}"
|
150
159
|
end
|
160
|
+
end
|
151
161
|
|
152
|
-
|
153
|
-
|
154
|
-
|
162
|
+
if defined?(Mixins::HasPayload) &&
|
163
|
+
exploit.include?(Mixins::HasPayload)
|
164
|
+
fields['Payload Type'] = payload_type(exploit.payload_class)
|
165
|
+
end
|
155
166
|
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
exploit.targets.each_with_index do |target,index|
|
160
|
-
puts "[ Target ##{index+1} ]"
|
161
|
-
puts
|
167
|
+
fields['Summary'] = exploit.summary if exploit.summary
|
168
|
+
print_fields(fields)
|
169
|
+
end
|
162
170
|
|
163
|
-
|
164
|
-
|
171
|
+
#
|
172
|
+
# Prints any advisories defined by an exploit class.
|
173
|
+
#
|
174
|
+
# @param [Class<Exploit>] exploit
|
175
|
+
# The loaded exploit class.
|
176
|
+
#
|
177
|
+
def print_advisories(exploit)
|
178
|
+
unless exploit.advisories.empty?
|
179
|
+
puts "Advisories:"
|
180
|
+
puts
|
181
|
+
|
182
|
+
indent do
|
183
|
+
exploit.advisories.each do |advisory|
|
184
|
+
print_advisory(advisory)
|
165
185
|
end
|
166
186
|
end
|
167
|
-
|
168
|
-
if defined?(Metadata::Shouts) &&
|
169
|
-
exploit.include?(Metadata::Shouts)
|
170
|
-
puts "Shouts: #{exploit.shouts.join(', ')}"
|
171
|
-
end
|
187
|
+
puts
|
172
188
|
end
|
189
|
+
end
|
173
190
|
|
174
|
-
|
191
|
+
#
|
192
|
+
# Prints the shouts section.
|
193
|
+
#
|
194
|
+
# @param [Class<Exploit>] exploit
|
195
|
+
# The loaded exploit class.
|
196
|
+
#
|
197
|
+
def print_shouts(exploit)
|
198
|
+
if defined?(Metadata::Shouts) && exploit.include?(Metadata::Shouts)
|
199
|
+
puts "Shouts: #{exploit.shouts.join(', ')}"
|
200
|
+
end
|
175
201
|
end
|
176
202
|
|
177
203
|
# Known exploit types and their printable names.
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
data/lib/ronin/exploits/cli.rb
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -18,8 +18,11 @@
|
|
18
18
|
# along with ronin-exploits. If not, see <https://www.gnu.org/licenses/>.
|
19
19
|
#
|
20
20
|
|
21
|
+
require 'ronin/exploits/version'
|
22
|
+
|
21
23
|
require 'command_kit/commands'
|
22
24
|
require 'command_kit/commands/auto_load'
|
25
|
+
require 'command_kit/options/version'
|
23
26
|
|
24
27
|
module Ronin
|
25
28
|
module Exploits
|
@@ -35,8 +38,10 @@ module Ronin
|
|
35
38
|
dir: "#{__dir__}/cli/commands",
|
36
39
|
namespace: "#{self}::Commands"
|
37
40
|
)
|
41
|
+
include CommandKit::Options::Version
|
38
42
|
|
39
43
|
command_name 'ronin-exploits'
|
44
|
+
version Ronin::Exploits::VERSION
|
40
45
|
|
41
46
|
command_aliases['ls'] = 'list'
|
42
47
|
command_aliases['info'] = 'show'
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
data/lib/ronin/exploits/lfi.rb
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
data/lib/ronin/exploits/loot.rb
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
4
4
|
# payload crafting functionality.
|
5
5
|
#
|
6
|
-
# Copyright (c) 2007-
|
6
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
7
7
|
#
|
8
8
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
9
9
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
4
4
|
# payload crafting functionality.
|
5
5
|
#
|
6
|
-
# Copyright (c) 2007-
|
6
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
7
7
|
#
|
8
8
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
9
9
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
data/lib/ronin/exploits/rfi.rb
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
data/lib/ronin/exploits/root.rb
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
data/lib/ronin/exploits/sqli.rb
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
data/lib/ronin/exploits/ssti.rb
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -21,6 +21,6 @@
|
|
21
21
|
module Ronin
|
22
22
|
module Exploits
|
23
23
|
# ronin-exploits version
|
24
|
-
VERSION = '1.0.0.
|
24
|
+
VERSION = '1.0.0.beta2'
|
25
25
|
end
|
26
26
|
end
|
data/lib/ronin/exploits/web.rb
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
data/lib/ronin/exploits/xss.rb
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
data/lib/ronin/exploits.rb
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
# ronin-exploits - A Ruby library for ronin-rb that provides exploitation and
|
3
3
|
# payload crafting functionality.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2007-
|
5
|
+
# Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-exploits is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ronin-exploits
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0.
|
4
|
+
version: 1.0.0.beta2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Postmodern
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-01-
|
11
|
+
date: 2023-01-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: uri-query_params
|
@@ -302,7 +302,12 @@ files:
|
|
302
302
|
homepage: https://ronin-rb.dev/exploits/
|
303
303
|
licenses:
|
304
304
|
- LGPL-3.0
|
305
|
-
metadata:
|
305
|
+
metadata:
|
306
|
+
documentation_uri: https://ronin-rb.dev/docs/ronin-exploits
|
307
|
+
source_code_uri: https://github.com/ronin-rb/ronin-exploits
|
308
|
+
bug_tracker_uri: https://github.com/ronin-rb/ronin-exploits/issues
|
309
|
+
changelog_uri: https://github.com/ronin-rb/ronin-exploits/blob/main/ChangeLog.md
|
310
|
+
rubygems_mfa_required: 'true'
|
306
311
|
post_install_message:
|
307
312
|
rdoc_options: []
|
308
313
|
require_paths:
|