Asp.net access network path method (simulate user logon)

Source: Internet
Author: User
This article mainly introduces the asp.net access network path method, which is to simulate user logon. If you need it, refer

This article mainly introduces the asp.net access network path method, which is to simulate user logon. If you need it, refer

Core code:

Public class IdentityScope: IDisposable {// obtains user token [DllImport ("failed", SetLastError = true)] static extern bool LogonUser (string pszUsername, string pszDomain, string pszPassword, int dwLogonType, int dwLogonProvider, ref IntPtr phToken); // closes open handes returned by LogonUser [DllImport ("kernel32.dll", CharSet = CharSet. auto)] extern static bool CloseHandle (IntPtr handle); [DllImp Ort ("Advapi32.DLL")] static extern bool token (IntPtr hToken); [DllImport ("Advapi32.DLL")] static extern bool RevertToSelf (); const int token = 0; const int LOGON32_LOGON_NEWCREDENTIALS = 9; // What is the domain risk control? In D? Do you want a to use? : Interactive = 2 private bool disposed ;///

/// Login? ? ////// Use? User § name?/// Domain region name ?,? Such? Result? No? In the ú region, where is D used for 1? Host IP address? Address ·/// Password?Public IdentityScope (string sUsername, string sDomain, string sPassword) {// initialize tokensIntPtr pExistingTokenHandle = new IntPtr (0); IntPtr pDuplicateTokenHandle = new IntPtr (0 ); try {// get handle to tokenbool bImpersonated = LogonUser (sUsername, sDomain, sPassword, login, LOGON32_PROVIDER_DEFAULT, ref pExistingTokenHandle); if (true = bImpersonated) {if (! ImpersonateLoggedOnUser (pExistingTokenHandle) {int nErrorCode = Marshal. getLastWin32Error (); throw new Exception ("ImpersonateLoggedOnUser error; Code =" + nErrorCode) ;}} else {int nErrorCode = Marshal. getLastWin32Error (); throw new Exception ("LogonUser error; Code =" + nErrorCode) ;}} finally {// close handle (s) if (pExistingTokenHandle! = IntPtr. Zero) CloseHandle (pExistingTokenHandle); if (pDuplicateTokenHandle! = IntPtr. Zero) CloseHandle (pDuplicateTokenHandle);} protected virtual void Dispose (bool disposing) {if (! Disposed) {RevertToSelf (); disposed = true ;}} public void Dispose () {Dispose (true );}}

The second parameter is the domain name. If there is a domain name, write the domain name. If there is no domain name, write the IP address of the target machine.

Using (IdentityScope c = new IdentityScope ("administrator", "192.168.0.1", "11111") {string [] filelist = System. IO. directory. getDirectories (@ "\ 192.168.0.1 \ folderName ");}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.