QuestionQ309
Tools/Systems/ProgramsDuring an investigation at a hosting provider in Denver, Colorado, analysts need to bulk-scan web server logs for path/directory-traversal attempts that can occur in both encoded and literal forms. Which expression should they use to reliably match these dot-dot-slash patterns across encodings in a single pass?
- A %5C
- B %2e%2e%2f
- C ((.|%2E)( .|%2E)(/|%2F|\|%5C))
- D ((..\)(../))
Community Discussion