mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Make usable chars more strict
Remove other than alphanumeric and some punctuations considered filesystem-safe, instead of removing some unsafe chars only. https://hackerone.com/reports/1131465
This commit is contained in:
parent
0d8c9a7fe7
commit
3b97a6496f
2 changed files with 5 additions and 3 deletions
|
@ -115,7 +115,7 @@ class Dir
|
|||
Dir.tmpdir
|
||||
end
|
||||
|
||||
UNUSABLE_CHARS = [File::SEPARATOR, File::ALT_SEPARATOR, File::PATH_SEPARATOR, ":"].uniq.join("").freeze
|
||||
UNUSABLE_CHARS = "^,-.0-9A-Z_a-z~"
|
||||
|
||||
class << (RANDOM = Random.new)
|
||||
MAX = 36**6 # < 0x100000000
|
||||
|
|
|
@ -97,8 +97,10 @@ class TestTmpdir < Test::Unit::TestCase
|
|||
target = target.chomp('/') + '/'
|
||||
traversal_path = target.sub(/\A\w:/, '') # for DOSISH
|
||||
traversal_path = Array.new(target.count('/')-2, '..').join('/') + traversal_path
|
||||
actual = yield traversal_path
|
||||
[File::SEPARATOR, File::ALT_SEPARATOR].compact.each do |separator|
|
||||
actual = yield traversal_path.tr('/', separator)
|
||||
assert_not_send([File.absolute_path(actual), :start_with?, target])
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue