I am dealing with a security report from an external contractor, in which there is a finding labeled as a medium risk.
It is titled IIS .cnf file leakage.
This is somewhat confusing to me, since the external partner found it on Port 500 UPD. He recommends deleting them if I do not need them, otherwise secure them from anonymous access through the web.
I searched the server for _vti_pvt folders and found one in every SPWebApplication on my IIS.
You can find them on your %SPPath%/VirtualDirectories/[Portnumber]/. For example
C:\inetpub\wwwroot\wss\80\_vti_pvt\*.cnf I then fired a simple http get request to the public facing domain www.somesharpointportaladdress.com/_vti_pvt/services.cnf and really got a 200 OK response. I can view the file contents in the browser.
My question here is: Is it safe to delete those files? (are they crucial?) If not, what is the best way to secure them from anonymous access?