नेटवर्क साझा से कनेक्ट होने पर उपयोगकर्ता नाम और पासवर्ड कैसे प्रदान करें


191

एक नेटवर्क शेयर से कनेक्ट करते समय जिसके लिए वर्तमान उपयोगकर्ता (मेरे मामले में, एक नेटवर्क सक्षम सेवा उपयोगकर्ता) के पास कोई अधिकार नहीं है, नाम और पासवर्ड प्रदान करना होगा।

मुझे पता है कि यह Win32 फ़ंक्शंस ( WNet*परिवार से mpr.dll) के साथ कैसे करना है , लेकिन इसे .Net (2.0) कार्यक्षमता के साथ करना चाहते हैं।

क्या विकल्प उपलब्ध हैं?

शायद कुछ और जानकारी से मदद मिलती है:

  • उपयोग का मामला एक विंडोज़ सेवा है, एक Asp.Net अनुप्रयोग नहीं।
  • यह सेवा एक ऐसे खाते के तहत चल रही है, जिसके शेयर पर कोई अधिकार नहीं है।
  • शेयर के लिए आवश्यक उपयोगकर्ता खाता क्लाइंट पक्ष पर ज्ञात नहीं है।
  • क्लाइंट और सर्वर एक ही डोमेन के सदस्य नहीं हैं।

7
जब मैं आपको एक उपयोगी उत्तर नहीं दे रहा हूं, तो मैं एक उत्तर-विरोधी की आपूर्ति कर सकता हूं .. जब मार्क और ग्राहक एक ही डोमेन में नहीं होते हैं, तब तक प्रतिरूपण और एक प्रक्रिया को चिह्नित करना काम नहीं करेगा, जब तक कि आपके बीच कोई विश्वास न हो दो डोमेन। अगर कोई भरोसा है तो मुझे लगता है कि यह काम करेगा। मैंने सिर्फ मार्क के लिए एक टिप्पणी के रूप में जवाब दिया होगा, लेकिन मेरे पास टिप्पणी करने के लिए पर्याप्त प्रतिनिधि नहीं है। : - /
Moose

जवाबों:


152

आप या तो थ्रेड पहचान बदल सकते हैं, या P / Invoke WNetAddConnection2। मैं बाद को पसंद करता हूं, क्योंकि मुझे कभी-कभी विभिन्न स्थानों के लिए कई क्रेडेंशियल्स बनाए रखने की आवश्यकता होती है। मैं इसे एक आईडीसोपायरी में लपेटता हूं और बाद में क्रेडिट को हटाने के लिए WNetCancelConnection2 को कॉल करता हूं (कई उपयोगकर्ता नाम त्रुटि से बचते हुए):

using (new NetworkConnection(@"\\server\read", readCredentials))
using (new NetworkConnection(@"\\server2\write", writeCredentials)) {
   File.Copy(@"\\server\read\file", @"\\server2\write\file");
}

4
सेवा लक्ष्य डोमेन का सदस्य नहीं है - प्रतिरूपण तब काम नहीं कर सकता है जब आप स्थानीय स्तर पर सुरक्षा टोकन बनाने और उसके साथ प्रतिरूपण करने में सक्षम नहीं होंगे। PInvoke ही एकमात्र तरीका है।
Stephbu

@MarkBrackett मुझे पता है कि यह एक पुराना उत्तर है, लेकिन शायद आप अभी भी जानते हैं ... क्या इस कार्यक्रम को एक्सेस केवल एक्सप्लोरर के माध्यम से उपयोगकर्ता को लॉग इन करने के लिए दिया जाएगा?
ब्रीज

@ हवा - मैंने इसका परीक्षण नहीं किया है, लेकिन मुझे उम्मीद है कि यह लॉगऑन सत्र के लिए प्रमाणित होगा; इसलिए यदि आपका प्रोग्राम उपयोगकर्ता पर लॉग के रूप में चल रहा है, तो उनके पास एक्सेस (ऑपरेशन की अवधि के लिए कम से कम) होगा।
मार्क ब्रैकेट

8
ReadCredentials और writeCredentials की परिभाषाएँ उत्तर में शामिल की जा सकती हैं।
एंडर्स लिंडन

2
यदि आपको त्रुटि 53 हो रही है , तो सुनिश्चित करें कि पथ "\" से समाप्त नहीं हो रहा है
मुस्तफा एस।

326

मुझे मार्क ब्रैकेट का जवाब इतना पसंद आया कि मैंने अपना त्वरित कार्यान्वयन किया। यहाँ यह है कि अगर किसी और को जल्दी में इसकी आवश्यकता है:

public class NetworkConnection : IDisposable
{
    string _networkName;

    public NetworkConnection(string networkName, 
        NetworkCredential credentials)
    {
        _networkName = networkName;

        var netResource = new NetResource()
        {
            Scope = ResourceScope.GlobalNetwork,
            ResourceType = ResourceType.Disk,
            DisplayType = ResourceDisplaytype.Share,
            RemoteName = networkName
        };

        var userName = string.IsNullOrEmpty(credentials.Domain)
            ? credentials.UserName
            : string.Format(@"{0}\{1}", credentials.Domain, credentials.UserName);

        var result = WNetAddConnection2(
            netResource, 
            credentials.Password,
            userName,
            0);

        if (result != 0)
        {
            throw new Win32Exception(result);
        }   
    }

    ~NetworkConnection()
    {
        Dispose(false);
    }

    public void Dispose()
    {
        Dispose(true);
        GC.SuppressFinalize(this);
    }

    protected virtual void Dispose(bool disposing)
    {
        WNetCancelConnection2(_networkName, 0, true);
    }

    [DllImport("mpr.dll")]
    private static extern int WNetAddConnection2(NetResource netResource, 
        string password, string username, int flags);

    [DllImport("mpr.dll")]
    private static extern int WNetCancelConnection2(string name, int flags,
        bool force);
}

[StructLayout(LayoutKind.Sequential)]
public class NetResource
{
    public ResourceScope Scope;
    public ResourceType ResourceType;
    public ResourceDisplaytype DisplayType;
    public int Usage;
    public string LocalName;
    public string RemoteName;
    public string Comment;
    public string Provider;
}

public enum ResourceScope : int
{
    Connected = 1,
    GlobalNetwork,
    Remembered,
    Recent,
    Context
};

public enum ResourceType : int
{
    Any = 0,
    Disk = 1,
    Print = 2,
    Reserved = 8,
}

public enum ResourceDisplaytype : int
{
    Generic = 0x0,
    Domain = 0x01,
    Server = 0x02,
    Share = 0x03,
    File = 0x04,
    Group = 0x05,
    Network = 0x06,
    Root = 0x07,
    Shareadmin = 0x08,
    Directory = 0x09,
    Tree = 0x0a,
    Ndscontainer = 0x0b
}

10
यह वास्तव में होना चाहिए throw new Win32Exception(result);, क्योंकि WNetAddConnection2 ने win32 त्रुटि कोड ( ERROR_XXX)
torvin

2
यह कोड का एक शानदार छोटा टुकड़ा है। एक MVC5 वेब अनुप्रयोग के लिए मुद्रण के लिए निर्देशिका सूची प्राप्त करने के लिए एक UNIX प्रणाली में लॉगऑन करने की आवश्यकता है और इसने यह चाल चली। +1 !!!
तै

3
संकलन करने के लिए ऊपर दिए गए कोड के लिए निम्नलिखित उपयोग के बयानों की आवश्यकता होती है: System.Net का उपयोग करना; System.Runtime.InteropServices का उपयोग कर; System.ComponentModel का उपयोग करना;
मैट नेल्सन

4
खेद है कि पुराने धागे को ताज़ा करने के लिए, लेकिन ऐसा लगता है कि यह ब्लॉक समाप्त होने के बाद कनेक्शन बंद नहीं करता है। मेरे पास कुछ चित्र अपलोड करने का कार्यक्रम है, पहला ठीक है, दूसरा असफल हो रहा है। प्रोग्राम बंद होने पर कनेक्शन जारी किया जाता है। कोई सलाह?
आरती

3
हमें आपकी @ आरती जैसी ही समस्या थी। NetworkCredentialऑब्जेक्ट पर उपयोगकर्ता नाम और पासवर्ड सेट करके , एप्लिकेशन एक बार नेटवर्क ड्राइव से कनेक्ट करने में सक्षम था। उसके बाद हमें प्रत्येक प्रयास पर एक ERROR_LOGON_FAILURE मिला, जब तक कि आवेदन पुनः आरंभ नहीं हो जाता। हमने तब NetworkCredentialऑब्जेक्ट पर डोमेन की आपूर्ति करने की कोशिश की , और अचानक यह काम किया! मुझे नहीं पता कि इस मुद्दे को क्यों तय किया गया, विशेष रूप से तथ्य यह है कि इसने डोमेन के बिना एक बार कनेक्ट करने के लिए काम किया।
lsmeby

50

आज 7 साल बाद मैं उसी मुद्दे का सामना कर रहा हूं और मैं समाधान के अपने संस्करण को साझा करना चाहता हूं।

यह कॉपी और पेस्ट तैयार है :-) यहाँ यह है:

चरण 1

आपके कोड में (जब भी आपको अनुमति के साथ कुछ करने की आवश्यकता हो)

ImpersonationHelper.Impersonate(domain, userName, userPassword, delegate
                            {
                                //Your code here 
                                //Let's say file copy:
                                if (!File.Exists(to))
                                {
                                    File.Copy(from, to);
                                }
                            });

चरण 2

हेल्पर फ़ाइल जो एक जादू करती है

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

    public class ImpersonationHelper
    {
        [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);

        [DllImport("kernel32.dll", CharSet = CharSet.Auto)]
        private extern static bool CloseHandle(IntPtr handle);

        [PermissionSet(SecurityAction.Demand, Name = "FullTrust")]
        public static void Impersonate(string domainName, string userName, string userPassword, Action actionToExecute)
        {
            SafeTokenHandle safeTokenHandle;
            try
            {

                const int LOGON32_PROVIDER_DEFAULT = 0;
                //This parameter causes LogonUser to create a primary token.
                const int LOGON32_LOGON_INTERACTIVE = 2;

                // Call LogonUser to obtain a handle to an access token.
                bool returnValue = LogonUser(userName, domainName, userPassword,
                    LOGON32_LOGON_INTERACTIVE, LOGON32_PROVIDER_DEFAULT,
                    out safeTokenHandle);
                //Facade.Instance.Trace("LogonUser called.");

                if (returnValue == false)
                {
                    int ret = Marshal.GetLastWin32Error();
                    //Facade.Instance.Trace($"LogonUser failed with error code : {ret}");

                    throw new System.ComponentModel.Win32Exception(ret);
                }

                using (safeTokenHandle)
                {
                    //Facade.Instance.Trace($"Value of Windows NT token: {safeTokenHandle}");
                    //Facade.Instance.Trace($"Before impersonation: {WindowsIdentity.GetCurrent().Name}");

                    // Use the token handle returned by LogonUser.
                    using (WindowsIdentity newId = new WindowsIdentity(safeTokenHandle.DangerousGetHandle()))
                    {
                        using (WindowsImpersonationContext impersonatedUser = newId.Impersonate())
                        {
                            //Facade.Instance.Trace($"After impersonation: {WindowsIdentity.GetCurrent().Name}");
                            //Facade.Instance.Trace("Start executing an action");

                            actionToExecute();

                            //Facade.Instance.Trace("Finished executing an action");
                        }
                    }
                    //Facade.Instance.Trace($"After closing the context: {WindowsIdentity.GetCurrent().Name}");
                }

            }
            catch (Exception ex)
            {
                //Facade.Instance.Trace("Oh no! Impersonate method failed.");
                //ex.HandleException();
                //On purpose: we want to notify a caller about the issue /Pavel Kovalev 9/16/2016 2:15:23 PM)/
                throw;
            }
        }
    }
}

2
@MohammadRashid पर प्रलेखन के अनुसार LogonUser , यह केवल उपयोगकर्ताओं के लिए स्थानीय कंप्यूटर पर काम करता है: "स्थानीय कंप्यूटर पर एक उपयोगकर्ता लॉग इन करने के LogonUser समारोह प्रयास स्थानीय कंप्यूटर कंप्यूटर जहाँ से LogonUser बुलाया गया था है आप LogonUser उपयोग नहीं कर सकते।। किसी दूरस्थ कंप्यूटर पर लॉग ऑन करने के लिए। "आपको एक त्रुटि मिलेगी" Win32Exception: उपयोगकर्ता नाम या पासवर्ड गलत है। " इसलिए मुझे लगता है कि मशीनों को कम से कम एक ही डोमेन पर होना चाहिए।
चार्ल्स चेन

1
@CharlesChen ने साबित किया कि यह डोमेन, FYI के दौरान ठीक काम करता है। जिस सर्वर पर मैं चल रहा हूं वह DMZ में है, और निश्चित रूप से एक फ़ायरवॉल के माध्यम से एक अलग डोमेन पर एक फ़ाइल सर्वर से कनेक्ट हो रहा है। हत्यारा स्निपेट पावेल, आप आदमी हैं, और यह शायद आज का स्वीकृत जवाब होना चाहिए।
ब्रायन मैकके

यह एक महान समाधान है! धन्यवाद, पावेल कोवालेव।
STLDev

क्या यह काम ldap पर होता है? यह कहता है कि मेरे पास एक लॉगऑन सर्वर उपलब्ध नहीं है। im का उपयोग कर ldap स्थिति
जूलियस लिमसन

28

मैंने बहुत सारे तरीके खोजे और मैंने इसे अपने तरीके से किया। आपको कमांड प्रॉम्प्ट NET USE कमांड के माध्यम से दो मशीन के बीच एक कनेक्शन खोलना होगा और अपना काम पूरा करने के बाद कमांड प्रॉम्प्ट NET USE "myconnection" / डिलीट के साथ कनेक्शन क्लियर करना होगा।

आपको इस तरह के पीछे कोड से कमांड प्रॉम्प्ट प्रक्रिया का उपयोग करना चाहिए:

var savePath = @"\\servername\foldername\myfilename.jpg";
var filePath = @"C:\\temp\myfileTosave.jpg";

उपयोग सरल है:

SaveACopyfileToServer(filePath, savePath);

यहाँ कार्य है:

using System.IO
using System.Diagnostics;


public static void SaveACopyfileToServer(string filePath, string savePath)
    {
        var directory = Path.GetDirectoryName(savePath).Trim();
        var username = "loginusername";
        var password = "loginpassword";
        var filenameToSave = Path.GetFileName(savePath);

        if (!directory.EndsWith("\\"))
            filenameToSave = "\\" + filenameToSave;

        var command = "NET USE " + directory + " /delete";
        ExecuteCommand(command, 5000);

        command = "NET USE " + directory + " /user:" + username + " " + password;
        ExecuteCommand(command, 5000);

        command = " copy \"" + filePath + "\"  \"" + directory + filenameToSave + "\"";

        ExecuteCommand(command, 5000);


        command = "NET USE " + directory + " /delete";
        ExecuteCommand(command, 5000);
    }

और ExecuteCommand फ़ंक्शन भी है:

public static int ExecuteCommand(string command, int timeout)
    {
        var processInfo = new ProcessStartInfo("cmd.exe", "/C " + command)
                              {
                                  CreateNoWindow = true, 
                                  UseShellExecute = false, 
                                  WorkingDirectory = "C:\\",
                              };

        var process = Process.Start(processInfo);
        process.WaitForExit(timeout);
        var exitCode = process.ExitCode;
        process.Close();
        return exitCode;
    } 

इस कार्य ने मेरे लिए बहुत तेज और स्थिर काम किया।


1
शेयर मैपिंग विफल होने की स्थिति में, रिटर्न कोड क्या होगा?
18:05

14

ल्यूक क्विनन समाधान अच्छा लग रहा है, लेकिन आंशिक रूप से मेरे ASP.NET MVC एप्लिकेशन में काम किया है। अलग-अलग क्रेडेंशियल वाले एक ही सर्वर पर दो शेयर होने से मैं केवल पहले के लिए प्रतिरूपण का उपयोग कर सकता था।

WNetAddConnection2 के साथ समस्या यह भी है कि यह विभिन्न विंडो संस्करणों पर अलग-अलग व्यवहार करता है। यही कारण है कि मैंने विकल्पों की तलाश की और LogonUser फ़ंक्शन पाया । यहाँ मेरा कोड है जो ASP.NET में भी काम करता है:

public sealed class WrappedImpersonationContext
{
    public enum LogonType : int
    {
        Interactive = 2,
        Network = 3,
        Batch = 4,
        Service = 5,
        Unlock = 7,
        NetworkClearText = 8,
        NewCredentials = 9
    }

    public enum LogonProvider : int
    {
        Default = 0,  // LOGON32_PROVIDER_DEFAULT
        WinNT35 = 1,
        WinNT40 = 2,  // Use the NTLM logon provider.
        WinNT50 = 3   // Use the negotiate logon provider.
    }

    [DllImport("advapi32.dll", EntryPoint = "LogonUserW", SetLastError = true, CharSet = CharSet.Unicode)]
    public static extern bool LogonUser(String lpszUsername, String lpszDomain,
        String lpszPassword, LogonType dwLogonType, LogonProvider dwLogonProvider, ref IntPtr phToken);

    [DllImport("kernel32.dll")]
    public extern static bool CloseHandle(IntPtr handle);

    private string _domain, _password, _username;
    private IntPtr _token;
    private WindowsImpersonationContext _context;

    private bool IsInContext
    {
        get { return _context != null; }
    }

    public WrappedImpersonationContext(string domain, string username, string password)
    {
        _domain = String.IsNullOrEmpty(domain) ? "." : domain;
        _username = username;
        _password = password;
    }

    // Changes the Windows identity of this thread. Make sure to always call Leave() at the end.
    [PermissionSetAttribute(SecurityAction.Demand, Name = "FullTrust")]
    public void Enter()
    {
        if (IsInContext)
            return;

        _token = IntPtr.Zero;
        bool logonSuccessfull = LogonUser(_username, _domain, _password, LogonType.NewCredentials, LogonProvider.WinNT50, ref _token);
        if (!logonSuccessfull)
        {
            throw new Win32Exception(Marshal.GetLastWin32Error());
        }
        WindowsIdentity identity = new WindowsIdentity(_token);
        _context = identity.Impersonate();

        Debug.WriteLine(WindowsIdentity.GetCurrent().Name);
    }

    [PermissionSetAttribute(SecurityAction.Demand, Name = "FullTrust")]
    public void Leave()
    {
        if (!IsInContext)
            return;

        _context.Undo();

        if (_token != IntPtr.Zero)
        {
            CloseHandle(_token);
        }
        _context = null;
    }
}

उपयोग:

var impersonationContext = new WrappedImpersonationContext(Domain, Username, Password);
impersonationContext.Enter();

//do your stuff here

impersonationContext.Leave();

2
इस दृष्टिकोण ने मेरे लिए अच्छा काम किया, लेकिन मेरे परीक्षण में देखा कि डोमेन उपयोगकर्ता खाते के साथ खराब पासवर्ड का उपयोग करते समय, उस उपयोगकर्ता को तुरंत बंद स्थिति में फेंक दिया जाता है। हमारी डोमेन नीति उस से पहले 3 विफल लॉगिन प्रयासों के लिए कॉल करती है, लेकिन इस दृष्टिकोण के माध्यम से एक बुरा प्रयास और आप बंद हैं। तो, सावधानी के साथ उपयोग करें ...
केलीब

5

VB.lovers के लिए ल्यूक क्विनाने के कोड के बराबर VB.NET (धन्यवाद ल्यूक!)

Imports System
Imports System.Net
Imports System.Runtime.InteropServices
Imports System.ComponentModel

Public Class NetworkConnection
    Implements IDisposable

    Private _networkName As String

    Public Sub New(networkName As String, credentials As NetworkCredential)
        _networkName = networkName

        Dim netResource = New NetResource() With {
             .Scope = ResourceScope.GlobalNetwork,
             .ResourceType = ResourceType.Disk,
             .DisplayType = ResourceDisplaytype.Share,
             .RemoteName = networkName
        }

        Dim userName = If(String.IsNullOrEmpty(credentials.Domain), credentials.UserName, String.Format("{0}\{1}", credentials.Domain, credentials.UserName))

        Dim result = WNetAddConnection2(NetResource, credentials.Password, userName, 0)

        If result <> 0 Then
            Throw New Win32Exception(result, "Error connecting to remote share")
        End If
    End Sub

    Protected Overrides Sub Finalize()
        Try
            Dispose (False)
        Finally
            MyBase.Finalize()
        End Try
    End Sub

    Public Sub Dispose() Implements IDisposable.Dispose
        Dispose (True)
        GC.SuppressFinalize (Me)
    End Sub

    Protected Overridable Sub Dispose(disposing As Boolean)
        WNetCancelConnection2(_networkName, 0, True)
    End Sub

    <DllImport("mpr.dll")> _
    Private Shared Function WNetAddConnection2(netResource As NetResource, password As String, username As String, flags As Integer) As Integer
    End Function

    <DllImport("mpr.dll")> _
    Private Shared Function WNetCancelConnection2(name As String, flags As Integer, force As Boolean) As Integer
    End Function

End Class

<StructLayout(LayoutKind.Sequential)> _
Public Class NetResource
    Public Scope As ResourceScope
    Public ResourceType As ResourceType
    Public DisplayType As ResourceDisplaytype
    Public Usage As Integer
    Public LocalName As String
    Public RemoteName As String
    Public Comment As String
    Public Provider As String
End Class

Public Enum ResourceScope As Integer
    Connected = 1
    GlobalNetwork
    Remembered
    Recent
    Context
End Enum

Public Enum ResourceType As Integer
    Any = 0
    Disk = 1
    Print = 2
    Reserved = 8
End Enum

Public Enum ResourceDisplaytype As Integer
    Generic = &H0
    Domain = &H1
    Server = &H2
    Share = &H3
    File = &H4
    Group = &H5
    Network = &H6
    Root = &H7
    Shareadmin = &H8
    Directory = &H9
    Tree = &HA
    Ndscontainer = &HB
End Enum

3

एक विकल्प जो काम कर सकता है, वह है WindowsIdentity.Impersonate(और थ्रेड प्रिंसिपल को बदलना) वांछित उपयोगकर्ता बनने के लिए, जैसे । वापस पी / आह्वान करने के लिए, हालांकि, मुझे डर है ...

एक और चुटीला (और समान रूप से आदर्श से बहुत दूर) विकल्प काम करने के लिए एक प्रक्रिया को स्पॉन करने के लिए हो सकता है ... ProcessStartInfoएक स्वीकार करता है .UserName, .Passwordऔर .Domain

अंत में - शायद उस समर्पित खाते में सेवा चलाएं जिसकी पहुंच है? (हटा दिया गया है क्योंकि आपने स्पष्ट कर दिया है कि यह कोई विकल्प नहीं है)।


मुझे नहीं लगता कि प्रक्रिया की बात इतनी बुरी है। google ने क्रोम में मल्टीप्रोसेसिंग के फायदों के बारे में कुछ श्वेतपत्र निकाले।
डस्टिन गेट्ज़

क्या स्थानीय मशीन पर बिना खाते वाले उपयोगकर्ता के लिए थ्रेड प्रिंसिपल को बदलना संभव है?
ज्योर्लफ

सच कहूं तो, मुझे नहीं पता है ... आपको पता करने के लिए एक अलग डोमेन के साथ लॉगऑनसर की कोशिश करनी होगी।
मार्क ग्रेवेल

3

ठीक है ... मैं फिर से शुरू कर सकता हूँ ..

डिस्क्लेमर: मेरे पास बस 18+ घंटे का दिन (फिर से) था .. मैं बूढ़ा और भुलक्कड़ हूँ .. मैं जादू नहीं कर सकता .. मेरा ध्यान कम है इसलिए मैं तेजी से प्रतिक्रिया करता हूँ .. :-)

सवाल:

क्या स्थानीय मशीन पर बिना खाते वाले उपयोगकर्ता के लिए थ्रेड प्रिंसिपल को बदलना संभव है?

उत्तर:

हां, आप एक थ्रेड प्रिंसिपल को बदल सकते हैं, भले ही आप जिन क्रेडेंशियल्स का उपयोग कर रहे हैं, वे स्थानीय रूप से परिभाषित नहीं हैं या "जंगल" के बाहर हैं।

जब मैं किसी सेवा से NTLM प्रमाणीकरण के साथ SQL सर्वर से कनेक्ट करने का प्रयास कर रहा था तो मैं इस समस्या में भाग गया। यह कॉल प्रक्रिया से जुड़े क्रेडेंशियल्स का उपयोग करता है जिसका अर्थ है कि आपको प्रतिरूपित करने से पहले प्रमाणित करने के लिए स्थानीय खाते या डोमेन खाते की आवश्यकता होगी। ब्लाह, ब्लाह ...

परंतु...

LogonUser (..) की विशेषता के साथ ???? _ ____EDEDIALIALS कॉल करने से क्रेडेंशियल्स को प्रमाणित करने की कोशिश किए बिना एक सुरक्षा टोकन वापस आ जाएगा। Kewl .. "वन" के भीतर खाते को परिभाषित करने की जरूरत नहीं है। एक बार जब आपके पास टोकन होता है, तो आपको एक नए टोकन के परिणामस्वरूप प्रतिरूपण को सक्षम करने के विकल्प के साथ DuplicateToken () कॉल करना पड़ सकता है। अब SetThreadToken (NULL, token) को कॉल करें; (यह हो सकता है & टोकन;) .. ImpersonateLoggedonUser (टोकन) के लिए एक कॉल; आवश्यकता हो सकती है, लेकिन मुझे ऐसा नहीं लगता। इसे देखो..

आपको जो करना है वो करें ।।

यदि आप ImpersonateLoggedonUser () को कॉल करते हैं, तो SetThreadToken (NULL, NULL) को कॉल करें; (मुझे लगता है ... इसे देखो), और फिर बंद हैंडल पर CloseHandle () ।।

कोई वादा नहीं लेकिन यह मेरे लिए काम किया ... यह मेरे सिर के ऊपर (मेरे बालों की तरह) है और मैं जादू नहीं कर सकता हूँ !!!


1

यदि आप स्थानीय रूप से वैध सुरक्षा टोकन नहीं बना सकते हैं, तो ऐसा लगता है कि आपने हर विकल्प बार Win32 API और WNetAddConnection * पर शासन किया है।

WNet के बारे में MSDN पर जानकारी का टन - PInvoke जानकारी और नमूना कोड जो यहां UNC के रास्ते से जुड़ता है:

http://www.pinvoke.net/default.aspx/mpr/WNetAddConnection2.html#

MSDN संदर्भ यहाँ:

http://msdn.microsoft.com/en-us/library/aa385391(VS.85).aspx


1

FAKE के साथ उपयोग करने के लिए F # पर पोर्ट किया गया

module NetworkShare

open System
open System.ComponentModel
open System.IO
open System.Net
open System.Runtime.InteropServices

type ResourceScope =
| Connected = 1
| GlobalNetwork = 2
| Remembered = 3
| Recent = 4
type ResourceType =
| Any = 0
| Disk = 1
| Print = 2
| Reserved = 8
type ResourceDisplayType =
| Generic = 0x0
| Domain = 0x01
| Server = 0x02
| Share = 0x03
| File = 0x04
| Group = 0x05
| Network = 0x06
| Root = 0x07
| Shareadmin = 0x08
| Directory = 0x09
| Tree = 0x0a
| Ndscontainer = 0x0b

//Uses of this construct may result in the generation of unverifiable .NET IL code.
#nowarn "9"
[<StructLayout(LayoutKind.Sequential)>]
type NetResource =
  struct
    val mutable Scope : ResourceScope
    val mutable ResourceType : ResourceType
    val mutable DisplayType : ResourceDisplayType
    val mutable Usage : int
    val mutable LocalName : string
    val mutable RemoteName : string
    val mutable Comment : string
    val mutable Provider : string
    new(name) = {
      // lets preset needed fields
      NetResource.Scope = ResourceScope.GlobalNetwork
      ResourceType = ResourceType.Disk
      DisplayType = ResourceDisplayType.Share
      Usage = 0
      LocalName = null
      RemoteName = name
      Comment = null
      Provider = null
    }
  end

type WNetConnection(networkName : string, credential : NetworkCredential) =
  [<Literal>]
  static let Mpr = "mpr.dll"
  [<DllImport(Mpr, EntryPoint = "WNetAddConnection2")>]
  static extern int connect(NetResource netResource, string password, string username, int flags)
  [<DllImport(Mpr, EntryPoint = "WNetCancelConnection2")>]
  static extern int disconnect(string name, int flags, bool force)

  let mutable disposed = false;

  do
    let userName = if String.IsNullOrWhiteSpace credential.Domain
                   then credential.UserName
                   else credential.Domain + "\\" + credential.UserName
    let resource = new NetResource(networkName)

    let result = connect(resource, credential.Password, userName, 0)

    if result <> 0 then
      let msg = "Error connecting to remote share " + networkName
      new Win32Exception(result, msg)
      |> raise

  let cleanup(disposing:bool) =
    if not disposed then
      disposed <- true
      if disposing then () // TODO dispose managed resources here
      disconnect(networkName, 0, true) |> ignore

  interface IDisposable with
    member __.Dispose() =
      disconnect(networkName, 0, true) |> ignore
      GC.SuppressFinalize(__)

  override __.Finalize() = cleanup(false)

type CopyPath =
  | RemotePath of string * NetworkCredential
  | LocalPath of string

let createDisposable() =
  {
    new IDisposable with
      member __.Dispose() = ()
  }

let copyFile overwrite destPath srcPath : unit =
  use _srcConn =
    match srcPath with
    | RemotePath(path, credential) -> new WNetConnection(path, credential) :> IDisposable
    | LocalPath(_) -> createDisposable()
  use _destConn =
    match destPath with
    | RemotePath(path, credential) -> new WNetConnection(path, credential) :> IDisposable
    | LocalPath(_) -> createDisposable()
  match srcPath, destPath with
  | RemotePath(src, _), RemotePath(dest, _)
  | LocalPath(src), RemotePath(dest, _)
  | RemotePath(src, _), LocalPath(dest)
  | LocalPath(src), LocalPath(dest) ->
    if FileInfo(src).Exists |> not then
      failwith ("Source file not found: " + src)
    let destFilePath =
      if DirectoryInfo(dest).Exists then Path.Combine(dest, Path.GetFileName src)
      else dest
    File.Copy(src, destFilePath, overwrite)

let rec copyDir copySubDirs filePattern destPath srcPath =
  use _srcConn =
    match srcPath with
    | RemotePath(path, credential) -> new WNetConnection(path, credential) :> IDisposable
    | LocalPath(_) -> createDisposable()
  use _destConn =
    match destPath with
    | RemotePath(path, credential) -> new WNetConnection(path, credential) :> IDisposable
    | LocalPath(_) -> createDisposable()
  match srcPath, destPath with
  | RemotePath(src, _), RemotePath(dest, _)
  | LocalPath(src), RemotePath(dest, _)
  | RemotePath(src, _), LocalPath(dest)
  | LocalPath(src), LocalPath(dest) ->
    let dir = DirectoryInfo(src)
    if dir.Exists |> not then
      failwith ("Source directory not found: " + src)

    let dirs = dir.GetDirectories()
    if Directory.Exists(dest) |> not then
      Directory.CreateDirectory(dest) |> ignore

    let files = dir.GetFiles(filePattern)
    for file in files do
      let tempPath = Path.Combine(dest, file.Name)
      file.CopyTo(tempPath, false) |> ignore

    if copySubDirs then
      for subdir in dirs do
        let subdirSrc =
          match srcPath with
          | RemotePath(_, credential) -> RemotePath(Path.Combine(dest, subdir.Name), credential)
          | LocalPath(_) -> LocalPath(Path.Combine(dest, subdir.Name))
        let subdirDest =
          match destPath with
          | RemotePath(_, credential) -> RemotePath(subdir.FullName, credential)
          | LocalPath(_) -> LocalPath(subdir.FullName)
        copyDir copySubDirs filePattern subdirDest subdirSrc

0

आपको इस तरह से जोड़कर देखना चाहिए:

<identity impersonate="true" userName="domain\user" password="****" />

अपने web.config में।

अधिक जानकारी।


कुछ कॉर्पोरेट सुरक्षा प्रतिरूपण के उपयोग को रोकती है क्योंकि वे इसका उपयोग करके एप्लिकेशन को ट्रैक करने में असमर्थ हैं और उसी या विश्वसनीय डोमेन में होना चाहिए। मुझे लगता है कि प्रतिरूपण समर्थन को देखा जाता है। पिनवोक के साथ एक डोमेन सेवा खाता जाने का रास्ता प्रतीत होता है।
जिम
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.