Skip to content

Commit

Permalink
WindowsSecureTimeSeeding added
Browse files Browse the repository at this point in the history
  • Loading branch information
PrzemyslawKlys committed Jan 23, 2024
1 parent 5356fd1 commit 4288975
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions Private/SourcesDomainControllers/TimeSettings.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -87,5 +87,27 @@

}
}
WindowsSecureTimeSeeding = [ordered] @{
Enable = $true
Name = 'Windows Secure Time Seeding should be disabled.'
Parameters = @{
WhereObject = { $_.ComputerName -eq $DomainController }
Property = 'WindowsSecureTimeSeeding'
ExpectedValue = $false
OperationType = 'eq'
}
Details = @{
Importance = 10
ActionType = 2
StatusTrue = 1
StatusFalse = 5
Resources = @(
'[Windows Secure Time Seeding, should you disable it?](https://www.askwoody.com/forums/topic/windows-secure-time-seeding-should-you-disable-it/)'
'[Wrong system time and insecure Secure Time Seeding](https://www.kaspersky.com/blog/windows-system-time-sudden-changes/48956/)'
'[How to enable or disable Secure Time Seeding in Windows computers](https://www.thewindowsclub.com/secure-time-seeding-windows-10)'
'[Windows feature that resets system clocks based on random data is wreaking havoc](https://arstechnica.com/security/2023/08/windows-feature-that-resets-system-clocks-based-on-random-data-is-wreaking-havoc/3/)'
)
}
}
}
}

0 comments on commit 4288975

Please sign in to comment.