diff options
| -rw-r--r-- | Directory traversal/Resources/notes.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Directory traversal/Resources/notes.md b/Directory traversal/Resources/notes.md index d4068b8..fcecf3a 100644 --- a/Directory traversal/Resources/notes.md +++ b/Directory traversal/Resources/notes.md @@ -5,4 +5,6 @@ ## Fix -The problem is letting users directly input files to be included/read. Such input must be sanitized, with for example a strict list of allowed values, or rejecting input containing `../`. +[https://owasp.org/www-project-web-security-testing-guide/v42/4-Web_Application_Security_Testing/05-Authorization_Testing/01-Testing_Directory_Traversal_File_Include]() + +The problem is letting users directly input file names to be included/read. Such input must be sanitized, with for example a strict list of allowed values, or rejecting input containing `../`. |
