73 lines
2.1 KiB
Go
73 lines
2.1 KiB
Go
// Licensed to Elasticsearch B.V. under one or more contributor
|
|
// license agreements. See the NOTICE file distributed with
|
|
// this work for additional information regarding copyright
|
|
// ownership. Elasticsearch B.V. licenses this file to you under
|
|
// the Apache License, Version 2.0 (the "License"); you may
|
|
// not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing,
|
|
// software distributed under the License is distributed on an
|
|
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
// KIND, either express or implied. See the License for the
|
|
// specific language governing permissions and limitations
|
|
// under the License.
|
|
|
|
package sys
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
// SID represents the Windows Security Identifier for an account.
|
|
type SID struct {
|
|
Identifier string `xml:"UserID,attr"`
|
|
Name string
|
|
Domain string
|
|
Type SIDType
|
|
}
|
|
|
|
// String returns string representation of SID.
|
|
func (a SID) String() string {
|
|
return fmt.Sprintf("SID Identifier[%s] Name[%s] Domain[%s] Type[%s]",
|
|
a.Identifier, a.Name, a.Domain, a.Type)
|
|
}
|
|
|
|
// SIDType identifies the type of a security identifier (SID).
|
|
type SIDType uint32
|
|
|
|
// SIDType values.
|
|
const (
|
|
// Do not reorder.
|
|
SidTypeUser SIDType = 1 + iota
|
|
SidTypeGroup
|
|
SidTypeDomain
|
|
SidTypeAlias
|
|
SidTypeWellKnownGroup
|
|
SidTypeDeletedAccount
|
|
SidTypeInvalid
|
|
SidTypeUnknown
|
|
SidTypeComputer
|
|
SidTypeLabel
|
|
)
|
|
|
|
// sidTypeToString is a mapping of SID types to their string representations.
|
|
var sidTypeToString = map[SIDType]string{
|
|
SidTypeUser: "User",
|
|
SidTypeGroup: "Group",
|
|
SidTypeDomain: "Domain",
|
|
SidTypeAlias: "Alias",
|
|
SidTypeWellKnownGroup: "Well Known Group",
|
|
SidTypeDeletedAccount: "Deleted Account",
|
|
SidTypeInvalid: "Invalid",
|
|
SidTypeUnknown: "Unknown",
|
|
SidTypeComputer: "Computer",
|
|
SidTypeLabel: "Label",
|
|
}
|
|
|
|
// String returns string representation of SIDType.
|
|
func (st SIDType) String() string {
|
|
return sidTypeToString[st]
|
|
}
|