windowsimpersonationcontext true simple password net logonuser impersonator impersonate example domain c# .net impersonation

c# - true - ¿Cómo se hace suplantación en.NET?



simple impersonation c# example (7)

¿Existe una manera simple de representar a un usuario en .NET?

Hasta ahora he estado usando esta clase desde el proyecto de código para todos mis requisitos de suplantación.

¿Hay una mejor manera de hacerlo utilizando .NET Framework?

Tengo un conjunto de credenciales de usuario (nombre de usuario, contraseña, nombre de dominio) que representa la identidad que necesito suplantar.


Aquí está mi puerto vb.net de la respuesta de Matt Johnson. Agregué una enumeración para los tipos de inicio de sesión. LOGON32_LOGON_INTERACTIVE fue el primer valor enum que funcionó para el servidor sql. Mi cadena de conexión solo fue confiable. No hay nombre de usuario / contraseña en la cadena de conexión.

<PermissionSet(SecurityAction.Demand, Name:="FullTrust")> _ Public Class Impersonation Implements IDisposable Public Enum LogonTypes '''''' <summary> '''''' This logon type is intended for users who will be interactively using the computer, such as a user being logged on '''''' by a terminal server, remote shell, or similar process. '''''' This logon type has the additional expense of caching logon information for disconnected operations; '''''' therefore, it is inappropriate for some client/server applications, '''''' such as a mail server. '''''' </summary> LOGON32_LOGON_INTERACTIVE = 2 '''''' <summary> '''''' This logon type is intended for high performance servers to authenticate plaintext passwords. '''''' The LogonUser function does not cache credentials for this logon type. '''''' </summary> LOGON32_LOGON_NETWORK = 3 '''''' <summary> '''''' This logon type is intended for batch servers, where processes may be executing on behalf of a user without '''''' their direct intervention. This type is also for higher performance servers that process many plaintext '''''' authentication attempts at a time, such as mail or Web servers. '''''' The LogonUser function does not cache credentials for this logon type. '''''' </summary> LOGON32_LOGON_BATCH = 4 '''''' <summary> '''''' Indicates a service-type logon. The account provided must have the service privilege enabled. '''''' </summary> LOGON32_LOGON_SERVICE = 5 '''''' <summary> '''''' This logon type is for GINA DLLs that log on users who will be interactively using the computer. '''''' This logon type can generate a unique audit record that shows when the workstation was unlocked. '''''' </summary> LOGON32_LOGON_UNLOCK = 7 '''''' <summary> '''''' This logon type preserves the name and password in the authentication package, which allows the server to make '''''' connections to other network servers while impersonating the client. A server can accept plaintext credentials '''''' from a client, call LogonUser, verify that the user can access the system across the network, and still '''''' communicate with other servers. '''''' NOTE: Windows NT: This value is not supported. '''''' </summary> LOGON32_LOGON_NETWORK_CLEARTEXT = 8 '''''' <summary> '''''' This logon type allows the caller to clone its current token and specify new credentials for outbound connections. '''''' The new logon session has the same local identifier but uses different credentials for other network connections. '''''' NOTE: This logon type is supported only by the LOGON32_PROVIDER_WINNT50 logon provider. '''''' NOTE: Windows NT: This value is not supported. '''''' </summary> LOGON32_LOGON_NEW_CREDENTIALS = 9 End Enum <DllImport("advapi32.dll", SetLastError:=True, CharSet:=CharSet.Unicode)> _ Private Shared Function LogonUser(lpszUsername As [String], lpszDomain As [String], lpszPassword As [String], dwLogonType As Integer, dwLogonProvider As Integer, ByRef phToken As SafeTokenHandle) As Boolean End Function Public Sub New(Domain As String, UserName As String, Password As String, Optional LogonType As LogonTypes = LogonTypes.LOGON32_LOGON_INTERACTIVE) Dim ok = LogonUser(UserName, Domain, Password, LogonType, 0, _SafeTokenHandle) If Not ok Then Dim errorCode = Marshal.GetLastWin32Error() Throw New ApplicationException(String.Format("Could not impersonate the elevated user. LogonUser returned error code {0}.", errorCode)) End If WindowsImpersonationContext = WindowsIdentity.Impersonate(_SafeTokenHandle.DangerousGetHandle()) End Sub Private ReadOnly _SafeTokenHandle As New SafeTokenHandle Private ReadOnly WindowsImpersonationContext As WindowsImpersonationContext Public Sub Dispose() Implements System.IDisposable.Dispose Me.WindowsImpersonationContext.Dispose() Me._SafeTokenHandle.Dispose() End Sub Public NotInheritable Class SafeTokenHandle Inherits SafeHandleZeroOrMinusOneIsInvalid <DllImport("kernel32.dll")> _ <ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)> _ <SuppressUnmanagedCodeSecurity()> _ Private Shared Function CloseHandle(handle As IntPtr) As <MarshalAs(UnmanagedType.Bool)> Boolean End Function Public Sub New() MyBase.New(True) End Sub Protected Overrides Function ReleaseHandle() As Boolean Return CloseHandle(handle) End Function End Class End Class

Debe utilizar con una instrucción Using para contener algún código para ejecutar suplantado.



Después de saltar a través de múltiples publicaciones sobre este tema, finalmente se me ocurrió una clase simple para encapsular toda la lógica de suplantación. Te permite hacer una simple llamada como esta:

using (new Impersonation(domain, username, password)) { // do whatever you want }

Agregue esta clase a su proyecto, y listo:

using System; using System.Runtime.ConstrainedExecution; using System.Runtime.InteropServices; using System.Security; using System.Security.Permissions; using System.Security.Principal; using Microsoft.Win32.SafeHandles; namespace MyApplication { [PermissionSet(SecurityAction.Demand, Name = "FullTrust")] public class Impersonation : IDisposable { private readonly SafeTokenHandle _handle; private readonly WindowsImpersonationContext _context; const int LOGON32_LOGON_NEW_CREDENTIALS = 9; public Impersonation(string domain, string username, string password) { var ok = LogonUser(username, domain, password, LOGON32_LOGON_NEW_CREDENTIALS, 0, out this._handle); if (!ok) { var errorCode = Marshal.GetLastWin32Error(); throw new ApplicationException(string.Format("Could not impersonate the elevated user. LogonUser returned error code {0}.", errorCode)); } this._context = WindowsIdentity.Impersonate(this._handle.DangerousGetHandle()); } public void Dispose() { this._context.Dispose(); this._handle.Dispose(); } [DllImport("advapi32.dll", SetLastError = true, CharSet = CharSet.Unicode)] private static extern bool LogonUser(String lpszUsername, String lpszDomain, String lpszPassword, int dwLogonType, int dwLogonProvider, out SafeTokenHandle phToken); public sealed class SafeTokenHandle : SafeHandleZeroOrMinusOneIsInvalid { private SafeTokenHandle() : base(true) { } [DllImport("kernel32.dll")] [ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)] [SuppressUnmanagedCodeSecurity] [return: MarshalAs(UnmanagedType.Bool)] private static extern bool CloseHandle(IntPtr handle); protected override bool ReleaseHandle() { return CloseHandle(handle); } } } }

Tenga en cuenta que estoy utilizando el tipo de inicio de sesión 9 (nuevas credenciales). En mi caso, necesito conectarme a través de seguridad confiable a un servidor SQL con un inicio de sesión diferente, por lo que esto funciona mejor. Es posible que necesite un tipo de inicio de sesión diferente dependiendo de sus propósitos. Echa un vistazo a este sitio para ver otros tipos de inicio de sesión.

ACTUALIZAR

En base a los comentarios positivos continuos, he decidido limpiar esto ligeramente y alojarlo en una biblioteca para un consumo más fácil. Fuente y documentos en GitHub , listos para usar en NuGet . ¡Disfrutar!


Esto es probablemente lo que quieres:

using System.Security.Principal; using(WindowsIdentity.GetCurrent().Impersonate()) { //your code goes here }

Pero realmente necesito más detalles para ayudarte. Podría hacer una suplantación con un archivo de configuración (si está tratando de hacer esto en un sitio web), o mediante decoradores de métodos (atributos) si se trata de un servicio WCF, o mediante ... se entiende la idea.

Además, si estamos hablando de suplantar a un cliente que llamó a un servicio en particular (o aplicación web), debe configurar el cliente correctamente para que pase los tokens apropiados.

Finalmente, si lo que realmente desea hacer es Delegación, también debe configurar AD correctamente para que los usuarios y las máquinas sean confiables para la delegación.

Editar:
Eche un vistazo aquí para ver cómo hacerse pasar por un usuario diferente y para obtener más documentación.



Soy consciente de que llegué bastante tarde a la fiesta, pero considero que la biblioteca de Phillip Allan-Harding es la mejor para este caso y otros similares.

Solo necesitas un pequeño código como este:

private const string LOGIN = "mamy"; private const string DOMAIN = "mongo"; private const string PASSWORD = "HelloMongo2017"; private void DBConnection() { using (Impersonator user = new Impersonator(LOGIN, DOMAIN, PASSWORD, LogonType.LOGON32_LOGON_NEW_CREDENTIALS, LogonProvider.LOGON32_PROVIDER_WINNT50)) { } }

Y agrega su clase:

Suplantación de identidad de .NET (C #) con credenciales de red

Mi ejemplo se puede usar si necesita que el inicio de sesión suplantado tenga credenciales de red, pero tiene más opciones.


Ver más detalles de mi respuesta anterior He creado un paquete Nuget

Código en Github

muestra: puede usar:

string login = ""; string domain = ""; string password = ""; using (UserImpersonation user = new UserImpersonation(login, domain, password)) { if (user.ImpersonateValidUser()) { File.WriteAllText("test.txt", "your text"); Console.WriteLine("File writed"); } else { Console.WriteLine("User not connected"); } }

Vieuw el código completo:

using System; using System.Runtime.InteropServices; using System.Security.Principal; /// <summary> /// Object to change the user authticated /// </summary> public class UserImpersonation : IDisposable { /// <summary> /// Logon method (check athetification) from advapi32.dll /// </summary> /// <param name="lpszUserName"></param> /// <param name="lpszDomain"></param> /// <param name="lpszPassword"></param> /// <param name="dwLogonType"></param> /// <param name="dwLogonProvider"></param> /// <param name="phToken"></param> /// <returns></returns> [DllImport("advapi32.dll")] private static extern bool LogonUser(String lpszUserName, String lpszDomain, String lpszPassword, int dwLogonType, int dwLogonProvider, ref IntPtr phToken); /// <summary> /// Close /// </summary> /// <param name="handle"></param> /// <returns></returns> [DllImport("kernel32.dll", CharSet = CharSet.Auto)] public static extern bool CloseHandle(IntPtr handle); private WindowsImpersonationContext _windowsImpersonationContext; private IntPtr _tokenHandle; private string _userName; private string _domain; private string _passWord; const int LOGON32_PROVIDER_DEFAULT = 0; const int LOGON32_LOGON_INTERACTIVE = 2; /// <summary> /// Initialize a UserImpersonation /// </summary> /// <param name="userName"></param> /// <param name="domain"></param> /// <param name="passWord"></param> public UserImpersonation(string userName, string domain, string passWord) { _userName = userName; _domain = domain; _passWord = passWord; } /// <summary> /// Valiate the user inforamtion /// </summary> /// <returns></returns> public bool ImpersonateValidUser() { bool returnValue = LogonUser(_userName, _domain, _passWord, LOGON32_LOGON_INTERACTIVE, LOGON32_PROVIDER_DEFAULT, ref _tokenHandle); if (false == returnValue) { return false; } WindowsIdentity newId = new WindowsIdentity(_tokenHandle); _windowsImpersonationContext = newId.Impersonate(); return true; } #region IDisposable Members /// <summary> /// Dispose the UserImpersonation connection /// </summary> public void Dispose() { if (_windowsImpersonationContext != null) _windowsImpersonationContext.Undo(); if (_tokenHandle != IntPtr.Zero) CloseHandle(_tokenHandle); } #endregion }