mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
33cb47ee48
Before we were calling to_sym in the mime type, even when it is unknown what can cause denial of service since symbols are not removed by the garbage collector. Fixes: CVE-2014-0082
34 lines
594 B
Ruby
34 lines
594 B
Ruby
module ActionView #:nodoc:
|
|
# = Action View Text Template
|
|
class Template
|
|
class Text #:nodoc:
|
|
attr_accessor :type
|
|
|
|
def initialize(string, type = nil)
|
|
@string = string.to_s
|
|
@type = Types[type] || type if type
|
|
@type ||= Types[:text]
|
|
end
|
|
|
|
def identifier
|
|
'text template'
|
|
end
|
|
|
|
def inspect
|
|
'text template'
|
|
end
|
|
|
|
def to_str
|
|
@string
|
|
end
|
|
|
|
def render(*args)
|
|
to_str
|
|
end
|
|
|
|
def formats
|
|
[@type.respond_to?(:ref) ? @type.ref : @type.to_s]
|
|
end
|
|
end
|
|
end
|
|
end
|