-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathEdgeNames.cs
More file actions
35 lines (34 loc) · 1.78 KB
/
EdgeNames.cs
File metadata and controls
35 lines (34 loc) · 1.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
namespace SharpHoundCommonLib.Enums
{
public static class EdgeNames
{
public const string GenericWrite = "GenericWrite";
public const string Owns = "Owns";
public const string GenericAll = "GenericAll";
public const string WriteDacl = "WriteDacl";
public const string WriteOwner = "WriteOwner";
public const string AddSelf = "AddSelf";
public const string GetChanges = "GetChanges";
public const string GetChangesAll = "GetChangesAll";
public const string GetChangesInFilteredSet = "GetChangesInFilteredSet";
public const string AllExtendedRights = "AllExtendedRights";
public const string ForceChangePassword = "ForceChangePassword";
public const string AddAllowedToAct = "AddAllowedToAct";
public const string ReadLAPSPassword = "ReadLAPSPassword";
public const string ReadGMSAPassword = "ReadGMSAPassword";
public const string AddMember = "AddMember";
public const string WriteSPN = "WriteSPN";
public const string AddKeyCredentialLink = "AddKeyCredentialLink";
public const string SQLAdmin = "SQLAdmin";
public const string WriteAccountRestrictions = "WriteAccountRestrictions";
public const string WriteGPLink = "WriteGPLink";
public const string WriteAltSecurityIdentities = "WriteAltSecurityIdentities";
public const string WritePublicInformation = "WritePublicInformation";
//CertAbuse edges
public const string WritePKIEnrollmentFlag = "WritePKIEnrollmentFlag";
public const string WritePKINameFlag = "WritePKINameFlag";
public const string ManageCA = "ManageCA";
public const string ManageCertificates = "ManageCertificates";
public const string Enroll = "Enroll";
}
}