国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

ASP.NET模擬其他用戶進行關機

2019-11-18 16:50:44
字體:
來源:轉載
供稿:網友

using System;
using System.Collections.Generic;
using System.Text;
using System.Security.PRincipal;
using System.Runtime.InteropServices;

public class Impersonate
{
    #region 模擬
    private WindowsImpersonationContext impersonationContext;

    private const int LOGON32_LOGON_INTERACTIVE = 2;
    private const int LOGON32_PROVIDER_DEFAULT = 0;

    [DllImport("advapi32.dll", CharSet = CharSet.Auto)]
    private static extern int LogonUser(String lpszUserName, String lpszDomain, String lpszPassWord,
                  int dwLogonType, int dwLogonProvider, ref IntPtr phToken);

    [DllImport("advapi32.dll", CharSet = System.Runtime.InteropServices.CharSet.Auto, SetLastError = true)]
    private extern static int DuplicateToken(IntPtr hToken, int impersonationLevel, ref IntPtr hNewToken);

    [DllImport("advapi32.dll", CharSet = CharSet.Auto, SetLastError = true)]
    private static extern bool RevertToSelf();

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

    /// <summary>
    /// 模擬一個用戶
    /// </summary>
    /// <param name="userName">用戶名</param>
    /// <param name="password">密碼</param>
    /// <param name="domain">域名/計算機名</param>
    /// <returns>true 模擬成功,false 模擬失敗</returns>
    public bool ImpersonateUser(string userName, string password, string domain)
    {
        WindowsIdentity wi;
        IntPtr token = IntPtr.Zero;
        IntPtr tokenDuplicate = IntPtr.Zero;
        if (RevertToSelf())
        {
            if (LogonUser(userName, domain, password,
                        LOGON32_LOGON_INTERACTIVE, LOGON32_PROVIDER_DEFAULT, ref token) != 0)
            {
                if (DuplicateToken(token, 2, ref tokenDuplicate) != 0)
                {
                    wi = new WindowsIdentity(tokenDuplicate);
                    impersonationContext = wi.Impersonate();
                    if (impersonationContext != null)
                    {
                        CloseHandle(tokenDuplicate);
                        CloseHandle(token);
                        return true;
                    }
                    else
                    {
                        if (tokenDuplicate != IntPtr.Zero) CloseHandle(tokenDuplicate);
                        if (token != IntPtr.Zero) CloseHandle(token);
                        return false;
                    }
                }
                else
                {
                    if (token != IntPtr.Zero) CloseHandle(token);
                    return false;
                }
            }
            else
                return false;
        }
        else
            return false;
    }

    /// <summary>
    /// 取消模擬
    /// </summary>
    public void UndoImpersonation()
    {
        impersonationContext.Undo();
    }
    #endregion

    #region 關機
    [StructLayout(LayoutKind.Sequential, Pack = 1)]
    private struct TokPriv1Luid
    {
        public int Count;
        public long Luid;
        public int Attr;
    }

    [DllImport("kernel32.dll", ExactSpelling = true)]
    private static extern IntPtr GetCurrentThread();

    [DllImport("advapi32.dll", ExactSpelling = true, SetLastError = true)]
    private static extern bool OpenThreadToken(IntPtr h, int acc, bool openAsSelf, ref IntPtr phtok);

    [DllImport("advapi32.dll", SetLastError = true)]
    private static extern bool LookupPrivilegeValue(string host, string name, ref long pluid);

    [DllImport("advapi32.dll", ExactSpelling = true, SetLastError = true)]
    private static extern bool AdjustTokenPrivileges(IntPtr htok, bool disall, ref TokPriv1Luid newst,
                 int len, IntPtr prev, IntPtr relen);

    [DllImport("user32.dll", ExactSpelling = true, SetLastError = true)]
    private static extern bool ExitWindowsEx(int flg, int rea);

    [DllImport("advapi32.dll")]
    private static extern bool InitiateSystemShutdown(string Machinename, string Message,
                  long Timeout, bool ForceAppsClosed, bool RebootAfterShutdown);

    private const int SE_PRIVILEGE_ENABLED = 0x00000002;
    private const int TOKEN_QUERY = 0x00000008;
    private const int TOKEN_ADJUST_PRIVILEGES = 0x00000020;
    private const string SE_SHUTDOWN_NAME = "SeShutdownPrivilege";
    private const int EWX_LOGOFF = 0x00000000;
    private const int EWX_SHUTDOWN = 0x00000001;
    private const int EWX_REBOOT = 0x00000002;
    private const int EWX_FORCE = 0x00000004;
    private const int EWX_POWEROFF = 0x00000008;
    private const int EWX_FORCEIFHUNG = 0x00000010;

    /// <summary>
    /// 關機
    /// </summary>
    /// <returns></returns>
    public bool ShutDown()
    {
        bool result;
        TokPriv1Luid tp;
        //注意:這里用的是GetCurrentThread,而不是GetCurrentProcess
        IntPtr hproc = GetCurrentThread();
        IntPtr htok = IntPtr.Zero;
        //注意:這里用的是OpenThreadToken(打開線程令牌),而不是OpenProcessToken(打開進程令牌)
        result = OpenThreadToken(hproc, TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY,
                           true, ref htok);
        tp.Count = 1;
        tp.Luid = 0;
        tp.Attr = SE_PRIVILEGE_ENABLED;
        result = LookupPrivilegeValue(null, SE_SHUTDOWN_NAME, ref tp.Luid);
        result = AdjustTokenPrivileges(htok, false, ref tp, 0, IntPtr.Zero, IntPtr.Zero);
        result = InitiateSystemShutdown("", "", 60, true, false);
        return result;
    }
    #endregion
}
http://m.survivalescaperooms.com/anjou/archive/2006/11/30/577279.html


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 紫阳县| 荔浦县| 蚌埠市| 昆山市| 体育| 德惠市| 卢氏县| 碌曲县| 柏乡县| 乌恰县| 黄陵县| 尼玛县| 龙里县| 马山县| 五河县| 壤塘县| 抚州市| 正蓝旗| 新闻| 东平县| 崇礼县| 建阳市| 昭苏县| 进贤县| 奎屯市| 湖州市| 楚雄市| 台湾省| 江山市| 武宁县| 昌乐县| 五原县| 青冈县| 巴东县| 长岭县| 临泽县| 九台市| 大庆市| 龙口市| 资溪县| 柯坪县|