Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Sanitization of tainted inputs always carries the risk that the data is not fully sanitized. Both file and path name equivalence and directory traversal are common examples of vulnerabilities arising from the improper sanitization of path and file name inputs (see FIO04-J. Canonicalize path names before validating them). A design that requires an unprivileged user to access an arbitrary, protected file (or other resource) is always suspect. Consider alternatives such as using a hard code resource name or permitting the user to select only from a list of options that are indirectly mapped to the resource names.

...