Multiple choice technology security

The occurrence of which among the below in the http response will appscan report as possible server path disclosure vulnerability?

  1. ../../help/images/about.jpeg

  2. <!-- /help/images/about.jpeg -->

  3. d:/etc/host/pwd

  4. document.title(“/admin/administration”);

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Server path disclosure occurs when absolute file system paths are exposed. 'd:/etc/host/pwd' is a Windows absolute path revealing server directory structure, helping attackers understand layout and plan attacks. Relative paths (../) don't show server location. HTML comments and JavaScript strings are client-side and don't directly expose server paths.