1. Which input most clearly indicates a path traversal attempt?
Dot dot slashes try to walk out of the intended folder. Servers should normalize paths, drop dot segments, and restrict to an allowlisted base directory. Never concatenate raw user paths to filesystem calls.
safePath = join(BASE, normalize(userPath)); assert(safePath.startsWith(BASE))