-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathADPosture.psd1
More file actions
52 lines (52 loc) · 1.74 KB
/
Copy pathADPosture.psd1
File metadata and controls
52 lines (52 loc) · 1.74 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
@{
RootModule = 'ADPosture.psm1'
ModuleVersion = '1.3.0'
GUID = 'a7f3c2e1-9b4d-4a6f-8e2c-1d5b7a9e0f3c'
Author = 'AD Posture'
CompanyName = 'Local'
Copyright = '(c) 2026 AD Posture. PolyForm Noncommercial License 1.0.0.'
Description = 'Local Active Directory posture and privilege audit module with Tier 0/1/2 classification (2012 R2-2025).'
PowerShellVersion = '5.1'
FunctionsToExport = @(
'Invoke-ADPostureAudit'
'Export-ADPostureReport'
'Compare-ADPostureSnapshots'
'New-ADPostureRemediationScript'
'New-ADPostureRemediationPlaybook'
'Invoke-ADPostureArtifactRetention'
'Open-ADPostureDashboard'
'Get-ADSensitiveGroupCatalog'
'New-ADPostureTimelineHistory'
'Sync-ADPostureDashboardData'
)
RequiredModules = @()
PrivateData = @{
PSData = @{
Tags = @(
'ActiveDirectory',
'ADSecurity',
'IdentitySecurity',
'Cybersecurity',
'BlueTeam',
'PowerShell',
'Audit',
'SecurityAssessment',
'PostureManagement',
'PrivilegeAudit',
'Tier0',
'Tiering',
'Kerberos',
'ADCS',
'GPO',
'ACL',
'DNS',
'Trusts',
'MITREATTACK',
'Pester'
)
LicenseUri = 'https://polyformproject.org/licenses/noncommercial/1.0.0/'
ProjectUri = 'https://github.com/wgerade/AD-Posture'
ReleaseNotes = 'See CHANGELOG.md'
}
}
}