-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathProgram.cs
35 lines (30 loc) · 996 Bytes
/
Program.cs
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
using DomainInfo.Module.DomainInfo;
using System;
using System.Collections.Generic;
namespace DomainInfo
{
internal class Program
{
static void Main(string[] args)
{
List<object> UserLists = ObjectInfo.GetUsers();
Console.WriteLine(UserLists[0]);
ObjectInfo.GetDomainCs();
ObjectInfo.GetComputers();
ObjectInfo.GetGroups();
ObjectInfo.GetSPNs();
ObjectInfo.GetOUs();
ObjectInfo.GetGPOs();
ObjectInfo.GetAllowDelegations();
ObjectInfo.GetNoPreAuths();
ObjectInfo.GetConstrainDelegations();
ObjectInfo.GetRPConstrainDelegations();
ObjectInfo.GetDomainTrusts();
// ObjectInfo.GetObjectACL(ldapPath);
ObjectInfo.GetNoAuthPasswordAccounts();
ObjectInfo.GetDomainAdminGroups();
ObjectInfo.IsInDomain();
ObjectInfo.GetGroupUser();
}
}
}