Nikhil Mittal
Nikhil Mittal

Reputation: 33

Get IIS Version & Dot Net Version from Web Requests

I have a MVC Web Application installed on My IIS in Windows 10. In Pen testing it was suggested that IIS Version & Dot Net Version are getting disclosed.

I have found a number of solutions to correct them however I want to myself check the IIS Version/ Dot Net Version revealed in Web Requests which i was unable to do in Google Chrome > Network Tab > XHR Requests

Is there any way I can check by sending a dummy request or any kind of command to my IIS Site to get the IIS Version and Dot Net Core Version like any PowerShell script or any DOS command or anything like that.

Upvotes: 1

Views: 4044

Answers (1)

JustAnotherDev
JustAnotherDev

Reputation: 672

  1. Visit your site in chrome
  2. Open Developer tools (F12 on windows)
  3. Switch to the network tab
  4. Click on any request on in the list.
  5. Check the headers to see something like this (note powered by and server):

Response headers

Upvotes: 2

Related Questions