Как получить имя группы Active Directory из SID, хранимого в SQL Server? - PullRequest
4 голосов
/ 26 июля 2011

Это продолжение вопроса, который я задал ранее сегодня утром ( опубликовано здесь .) Следуя предоставленным инструкциям, мне удалось запросить в моей базе данных SQL Server 2000 SID, связанный с AD Group. Однако SID выглядит так:

0x0123456789ABCDEF0123456789ABCDEF0123456789ABCDEF01234567

Что я могу сделать, чтобы получить имя группы AD, на которую ссылается SID? Я пробовал гуглить сценарии PowerShell, однако большинство их примеров SID выглядят так:

S-1-5-21-1454471165-1004335555-1606985555-5555

Очевидно, это не похоже на значение, которое я получаю от SQL Server. Как я могу это сделать?

Ответы [ 2 ]

4 голосов
/ 26 июля 2011

Если вы используете sqlps (хост SQL Powershell), который работает против SQL 2000 (я проверял это на моем экземпляре 2000), вы можете использовать это:

$query = @"
select sid from syslogins where isntgroup = 1
AND name = 'CONTOSO\mylogin'
"@

invoke-sqlcmd -ServerInstance "myserver" -Database master -Query $query | 
foreach {$SID = new-object security.principal.securityidentifier($_.SID,0); $SID.translate([system.security.principal.NTAccount]) }
0 голосов
/ 12 апреля 2017

Для тех, у кого нет sqlps: используйте эту онлайн-оболочку C # для форматирования одного sid в текст

http://rextester.com/AFAC13570

Резервное копирование кода:

//Rextester.Program.Main is the entry point for your code. Don't change it.
//Compiler version 4.0.30319.17929 for Microsoft (R) .NET Framework 4.5

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text.RegularExpressions;
using System.Text;
using System.Runtime.Remoting.Metadata.W3cXsd2001;

namespace Rextester
{
    public class Program
    {

        public static string ConvertByteToStringSid(Byte[] sidBytes)
        {

            StringBuilder strSid = new StringBuilder();
            strSid.Append("S-");

            // Add SID revision.
            strSid.Append(sidBytes[0].ToString());
            // Next six bytes are SID authority value.
            if (sidBytes[6] != 0 || sidBytes[5] != 0)
            {
                string strAuth = String.Format
                ("0x{0:2x}{1:2x}{2:2x}{3:2x}{4:2x}{5:2x}",
                (Int16)sidBytes[1],
                (Int16)sidBytes[2],
                (Int16)sidBytes[3],
                (Int16)sidBytes[4],
                (Int16)sidBytes[5],
                (Int16)sidBytes[6]);
                strSid.Append("-");
                strSid.Append(strAuth);
            }
            else
            {
                Int64 iVal = (Int32)(sidBytes[1]) +
                (Int32)(sidBytes[2] << 8) +
                (Int32)(sidBytes[3] << 16) +
                (Int32)(sidBytes[4] << 24);
                strSid.Append("-");
                strSid.Append(iVal.ToString());
            }

            // Get sub authority count...
            int iSubCount = Convert.ToInt32(sidBytes[7]);
            int idxAuth = 0;
            for (int i = 0; i < iSubCount; i++)
            {
                idxAuth = 8 + i * 4;

                if (idxAuth >= sidBytes.Length)
                {
                    Console.WriteLine("OK :old NT account");
                    return strSid.ToString();
                }

                UInt32 iSubAuth = BitConverter.ToUInt32(sidBytes, idxAuth);
                strSid.Append("-");
                strSid.Append(iSubAuth.ToString());
            }
            return strSid.ToString();
        } 

        public static void Main(string[] args)
        {
            //Your code goes here
            Console.WriteLine(
                ConvertByteToStringSid(
                    SoapHexBinary.Parse(
                        "0x01050000000000051500000079542007311FAE6D096510145E540300".Substring(2)
                    ).Value
                )
            );
        }
    }
}

кредиты:

https://www.sqlservercentral.com/Forums/FindPost1322822.aspx

Как преобразовать массив байтов в шестнадцатеричную строку и наоборот?

...