Project

General

Profile

Actions

Bug #15803

closed

File.realpath should always return a tainted string

Added by jeremyevans0 (Jeremy Evans) about 5 years ago. Updated over 4 years ago.

Status:
Closed
Assignee:
-
Target version:
-
ruby -v:
ruby 2.7.0dev (2019-04-28 realpath-taint a1b4816759) [x86_64-openbsd]
[ruby-core:92443]

Description

This string can include elements that were not in either string
passed to File.realpath, even if one of the strings is an
absolute path, due to symlinks:

Dir.mkdir('b') unless File.directory?('b')
File.write('b/a', '') unless File.file?('b/a')
File.symlink('b', 'c') unless File.symlink?('c')
path = File.realpath('c/a'.untaint, Dir.pwd.untaint)
path # "/home/testr/ruby/b/a"
path.tainted? # should be true, as 'b' comes from file system

Files

realpath-taint.patch (1.65 KB) realpath-taint.patch jeremyevans0 (Jeremy Evans), 04/27/2019 05:11 PM
Actions

Also available in: Atom PDF

Like0
Like0Like0Like0Like0