The occurrence of which among the below in the http response will appscan report as possible server path disclosure vulnerability?
Reveal answer
Fill a bubble to check yourself
The occurrence of which among the below in the http response will appscan report as possible server path disclosure vulnerability?
../../help/images/about.jpeg
<!-- /help/images/about.jpeg -->
d:/etc/host/pwd
document.title(“/admin/administration”);
Server path disclosure occurs when server-side file paths are exposed in responses. Option C (d:/etc/host/pwd) reveals an actual Windows server file path structure. Options A and B show relative paths or HTML comments, while D shows JavaScript code - none expose actual server filesystem paths.
A string like d:/etc/host/pwd reveals an actual server-side filesystem path (drive letter and directory structure), which is a hallmark of a server path disclosure vulnerability — it tells an attacker about the underlying OS and directory layout. The other options are just relative URLs, an HTML comment, or client-side JS, none of which expose the server's real filesystem structure.