Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

capture windows username in asp.net mvc request

Tags:

asp.net-mvc

i have an intranet app asp.net mvc site. is there anyway to capture the windows nt login from the user wihtout having a full login system in the site. i dont want permissioning but i would like to do some logging on the server to track requests, etc . .

like image 273
leora Avatar asked Jan 25 '10 14:01

leora


3 Answers

You can use HttpContext.Current.User.Identity.Name if you set up the site to use Windows Authentication. Many browsers will pass the username on transparently.

like image 63
Dan Diplo Avatar answered Oct 23 '22 15:10

Dan Diplo


Go to the Web.Config file for your application (be sure it's the main one, not the Web.Config under Views), remark out <authentication mode="Forms"> if you see it, then add lines like this:

<authentication mode="Windows"/>
<identity impersonate="true"/>
<authorization>
  <allow roles="DOMAIN\PersonnelGroup" />
  <allow users="DOMAIN\jdoe"/>
  <deny users="*"/>
</authorization>

You don't have to include the <authorization> section but it's useful if you want to allow access for certain groups and users, and deny everyone else. When you use IE, the credentials get passed along automatically. You can test this by printing the username in your view:

@HttpContext.Current.User.Identity.Name

If you open your site using Firefox or any other browser besides IE, it will prompt you for the username and password because it's not automatically passing along the credentials (although apparently you can get Firefox to pass along the credentials, as Dan Diplo mentions above).

If you want to pass these credentials along to another server, such as a SQLServer, it becomes more of a headache from my experience, because you run into a double hop issue. The only workaround I know of is to host IIS and SqlServer on the same server, or have a login for your intranet so you have the username and password to pass along to SQLServer.

like image 2
James Toomey Avatar answered Oct 23 '22 15:10

James Toomey


try this.

 var user = System.Security.Principal.WindowsIdentity.GetCurrent().Name;

it returns Domail/User

Do not forget to put this in web.Config

<identity impersonate="true"/> 
like image 2
Diego Avatar answered Oct 23 '22 14:10

Diego