3

Someone created a file (web.config) in a location that basically caused IIS to not work. Is there any way I can determine who created this file?

The creator/owner says "Domain Administrators".

This is a Windows 2008 R2 server.

makerofthings7
  • 50,090
  • 54
  • 250
  • 536

1 Answers1

3

There's not a direct way to find out who exactly created the file on NTFS by hindsight. However, you might have a chance checking the event logs to determine who was logged in as an admin by that time. If you're lucky there was only one administrator present.

If you want to monitor such activities for certain directories from now on, there're various tools available. It can be done with process monitor for example, and if it's not a local account that is creating those files you can perform a lookup with netstat on the PID to get the IP of the user.

Falcon
  • 691
  • 5
  • 7