คุณทำการเลียนแบบใน NET ได้อย่างไร?


139

มีวิธีที่ง่ายในการปลอมตัวเป็นผู้ใช้ใน. NET หรือไม่?

จนถึงตอนนี้ฉันใช้คลาสนี้จากโครงการโค๊ดสำหรับความต้องการการแอบอ้างของฉันทั้งหมด

มีวิธีที่ดีกว่าที่จะทำโดยใช้. NET Framework?

ฉันมีชุดข้อมูลรับรองผู้ใช้ (ชื่อผู้ใช้รหัสผ่านชื่อโดเมน) ซึ่งแสดงถึงข้อมูลประจำตัวที่ฉันต้องใช้ในการแอบอ้างบุคคลอื่น


1
คุณเจาะจงมากกว่านี้ไหม? มีหลายวิธีในการเลียนแบบออกจากกล่อง
Esteban Araya

คำตอบ:


60

นี่คือภาพรวมที่ดีของแนวคิดการรับบทบาท. NET

โดยทั่วไปคุณจะใช้ประโยชน์จากคลาสเหล่านี้ที่อยู่นอกกรอบใน. NET Framework:

รหัสมักจะมีความยาวและนั่นคือสาเหตุที่คุณเห็นตัวอย่างมากมายเช่นตัวอย่างที่คุณอ้างอิงซึ่งพยายามทำให้กระบวนการง่ายขึ้น


4
เพียงทราบว่าการเลียนแบบไม่ใช่กระสุนเงินและ API บางตัวก็ไม่ได้ออกแบบมาเพื่อทำงานกับการแอบอ้างบุคคลอื่น
Lex Li

ลิงก์จากบล็อกของโปรแกรมเมอร์ชาวดัตช์นั้นยอดเยี่ยม วิธีการเลียนแบบที่ใช้งานง่ายกว่าวิธีอื่นที่นำเสนอ
code4life

296

"การเลียนแบบ" ในพื้นที่. NET โดยทั่วไปหมายถึงการเรียกใช้รหัสภายใต้บัญชีผู้ใช้ที่ระบุ มันเป็นแนวคิดที่ค่อนข้างแยกต่างหากจากการเข้าถึงบัญชีผู้ใช้นั้นผ่านชื่อผู้ใช้และรหัสผ่านแม้ว่าแนวคิดทั้งสองนี้จะจับคู่กันบ่อยครั้ง ฉันจะอธิบายพวกเขาทั้งสองและจากนั้นอธิบายวิธีใช้ไลบรารีSimpleImpersonationของฉันซึ่งใช้ภายใน

การแสดงบทบาท

API สำหรับการรับบทบาทมีไว้ใน. NET ผ่านSystem.Security.Principalเนมสเปซ:

  • รหัสใหม่กว่า (.NET 4.6+, .NET หลัก ฯลฯ ) โดยทั่วไปควรใช้WindowsIdentity.RunImpersonatedซึ่งยอมรับจับกับโทเค็นของบัญชีผู้ใช้และจากนั้นทั้งActionหรือFunc<T>รหัสในการดำเนินการ

    WindowsIdentity.RunImpersonated(tokenHandle, () =>
    {
        // do whatever you want as this user.
    });

    หรือ

    var result = WindowsIdentity.RunImpersonated(tokenHandle, () =>
    {
        // do whatever you want as this user.
        return result;
    });
  • โค้ดที่เก่ากว่าใช้WindowsIdentity.ImpersonateวิธีการดึงWindowsImpersonationContextวัตถุ วัตถุนี้ใช้IDisposableดังนั้นโดยทั่วไปควรจะเรียกจากusingบล็อก

    using (WindowsImpersonationContext context = WindowsIdentity.Impersonate(tokenHandle))
    {
        // do whatever you want as this user.
    }

    ในขณะที่ API นี้ยังคงมีอยู่ใน. NET Framework โดยทั่วไปควรหลีกเลี่ยงและไม่พร้อมใช้งานใน. NET Core หรือ. NET Standard

การเข้าถึงบัญชีผู้ใช้

API สำหรับการใช้ชื่อผู้ใช้และรหัสผ่านเพื่อเข้าถึงบัญชีผู้ใช้ใน Windows คือLogonUser- ซึ่งเป็น API ดั้งเดิมของ Win32 ขณะนี้ไม่มี. API API ในตัวสำหรับการเรียกใช้ดังนั้นหนึ่งต้องหันไปใช้ P / Invoke

[DllImport("advapi32.dll", SetLastError = true, CharSet = CharSet.Unicode)]
internal static extern bool LogonUser(String lpszUsername, String lpszDomain, String lpszPassword, int dwLogonType, int dwLogonProvider, out IntPtr phToken);

นี่คือนิยามการโทรพื้นฐานอย่างไรก็ตามมีจำนวนมากที่ต้องพิจารณาเพื่อใช้งานจริงในการผลิต:

  • การรับหมายเลขอ้างอิงที่มีรูปแบบการเข้าถึง "ปลอดภัย"
  • ปิดการจัดการพื้นเมืองอย่างเหมาะสม
  • ระดับความปลอดภัยของรหัสการเข้าถึง (CAS) ความน่าเชื่อถือ (ใน. NET Framework เท่านั้น)
  • ผ่านSecureStringเมื่อคุณสามารถรวบรวมได้อย่างปลอดภัยผ่านการกดแป้นของผู้ใช้

จำนวนของรหัสที่จะเขียนเพื่อแสดงทั้งหมดนี้เกินกว่าสิ่งที่ควรจะอยู่ในคำตอบ StackOverflow, IMHO

วิธีการรวมและง่ายกว่า

แทนที่จะเขียนทั้งหมดนี้ด้วยตัวคุณเองลองใช้SimpleImpersonation library ซึ่งรวมการเลียนแบบและการเข้าถึงของผู้ใช้ไปยัง API เดียว มันทำงานได้ดีทั้งในรหัสฐานที่ทันสมัยและเก่ากว่าด้วย API แบบง่าย ๆ :

var credentials = new UserCredentials(domain, username, password);
Impersonation.RunAsUser(credentials, logonType, () =>
{
    // do whatever you want as this user.
}); 

หรือ

var credentials = new UserCredentials(domain, username, password);
var result = Impersonation.RunAsUser(credentials, logonType, () =>
{
    // do whatever you want as this user.
    return something;
});

โปรดทราบว่ามันคล้ายกับWindowsIdentity.RunImpersonatedAPI มาก แต่คุณไม่จำเป็นต้องรู้อะไรเกี่ยวกับการจัดการโทเค็น

นี่คือ API ตั้งแต่ 3.0.0 ดู readme ของโครงการสำหรับรายละเอียดเพิ่มเติม นอกจากนี้ทราบว่ารุ่นก่อนหน้าของห้องสมุดใช้ API ที่มีรูปแบบจะคล้ายกันIDisposable WindowsIdentity.Impersonateรุ่นที่ใหม่กว่าปลอดภัยกว่ามากและทั้งคู่ยังคงใช้ภายใน


14
ซึ่งคล้ายกับรหัสที่มีให้ที่msdn.microsoft.com/en-us/library/…แต่มันยอดเยี่ยมมากที่เห็นมันทั้งหมดอยู่ในรายการที่นี่ ตรงไปตรงมาและง่ายต่อการรวมเข้ากับโซลูชันของฉัน ขอบคุณมากสำหรับการทำงานหนักทั้งหมด!
McArthey

1
ขอขอบคุณที่โพสต์สิ่งนี้ อย่างไรก็ตามในการใช้คำสั่งที่ฉันพยายามบรรทัดของรหัส System.Security.Principal.WindowsIdentity.GetCurrent () นี้ชื่อและผลที่ได้เป็นเพียงชื่อผู้ใช้ที่ฉันเข้าสู่ระบบด้วยไม่ใช่ฉันผ่านเข้าไปในโครงสร้างการเลียนแบบ
Chris

3
@Chris - คุณจะต้องใช้ประเภทการเข้าสู่ระบบประเภทใดประเภทหนึ่ง Type 9 ให้การเลียนแบบข้อมูลรับรองเครือข่ายขาออกเท่านั้น ฉันทดสอบประเภท 2, 3 และ 8 จากแอพ WinForms และพวกเขาทำการอัพเดทหลักการปัจจุบันอย่างถูกต้อง หนึ่งอาจสันนิษฐานประเภท 4 และ 5 ทำเช่นกันสำหรับบริการหรือการใช้งานแบทช์ ดูลิงค์ที่ฉันอ้างอิงในโพสต์
Matt Johnson-Pint

2
@Sophit - แล้วมันไม่
Matt Johnson-Pint

4
@Sophit - ซอร์สโค้ดอ้างอิงที่นี่ แสดงให้เห็นอย่างชัดเจนว่าUndoถูกเรียกในระหว่างการกำจัด
Matt Johnson-Pint

20

นี่อาจเป็นสิ่งที่คุณต้องการ:

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

แต่ฉันต้องการรายละเอียดเพิ่มเติมเพื่อช่วยคุณ คุณสามารถเลียนแบบด้วยไฟล์ปรับแต่ง (หากคุณพยายามทำสิ่งนี้บนเว็บไซต์) หรือผ่านวิธีตกแต่ง (คุณลักษณะ) ถ้าเป็นบริการ WCF หรือผ่าน ... คุณจะได้รับแนวคิด

นอกจากนี้หากเรากำลังพูดถึงการแอบอ้างลูกค้าที่เรียกว่าบริการเฉพาะ (หรือเว็บแอป) คุณจะต้องกำหนดค่าไคลเอ็นต์ให้ถูกต้องเพื่อให้ผ่านโทเค็นที่เหมาะสม

สุดท้ายหากสิ่งที่คุณต้องการทำจริงๆคือการมอบสิทธิ์คุณต้องตั้งค่าโฆษณาอย่างถูกต้องเพื่อให้ผู้ใช้และเครื่องเชื่อถือได้สำหรับการมอบหมายงาน

แก้ไข:
ดูที่นี่เพื่อดูวิธีปลอมตัวเป็นผู้ใช้รายอื่นและสำหรับเอกสารเพิ่มเติม


2
รหัสนี้ดูเหมือนว่ามันสามารถเลียนแบบได้เฉพาะ Windows ปัจจุบัน Identity มีวิธีรับวัตถุ WindowsIdentity ของผู้ใช้รายอื่นหรือไม่?
ashwnacharya

ลิงค์ในการแก้ไขของคุณ ( msdn.microsoft.com/en-us/library/chf6fbt4.aspx - ไปที่ตัวอย่างที่นั่น) เป็นสิ่งที่ฉันกำลังมองหา!
Matt

ว้าว! คุณแนะนำฉันในทิศทางที่ถูกต้องเพียงไม่กี่คำก็จำเป็นต้องทำการเลียนแบบเวทมนตร์ด้วยไฟล์ปรับแต่งขอบคุณ Esteban, saludos desde Peru
AjFmO

6

นี่คือพอร์ต vb.net ของฉันสำหรับคำตอบของ Matt Johnson ฉันเพิ่ม enum สำหรับประเภทการเข้าสู่ระบบ LOGON32_LOGON_INTERACTIVEเป็นค่า enum แรกที่ทำงานกับเซิร์ฟเวอร์ sql สตริงการเชื่อมต่อของฉันเพิ่งเชื่อถือได้ ไม่มีชื่อผู้ใช้ / รหัสผ่านในสตริงการเชื่อมต่อ

  <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

คุณจำเป็นต้องใช้กับUsingคำสั่งเพื่อให้มีรหัสบางอย่างเพื่อเรียกใช้การรับบทบาท


3

ดูรายละเอียดเพิ่มเติมจากคำตอบก่อนหน้าของฉันฉันได้สร้างแพคเกจ nuget Nuget

รหัสบนGithub

ตัวอย่าง: คุณสามารถใช้:

           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 รหัสเต็ม:

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
}

2

ฉันรู้ว่าฉันมาสายสำหรับงานปาร์ตี้ แต่ฉันคิดว่าห้องสมุดจากPhillip Allan-Hardingเป็นห้องสมุดที่ดีที่สุดสำหรับคดีนี้และที่คล้ายกัน

คุณต้องการโค้ดขนาดเล็กเช่นนี้:

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))
    {
    }
}

และเพิ่มชั้นเรียนของเขา:

การเลียนแบบ. NET (C #) พร้อมข้อมูลประจำตัวเครือข่าย

ตัวอย่างของฉันสามารถใช้งานได้หากคุณต้องการให้การเข้าสู่ระบบที่เลียนแบบต้องมีข้อมูลรับรองเครือข่าย แต่มีตัวเลือกเพิ่มเติม


1
วิธีการของคุณดูเหมือนทั่วไปมากขึ้นในขณะที่เจาะจงพารามิเตอร์มากขึ้น +1
Kerry Perret

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.