25 lines
921 B
Markdown
25 lines
921 B
Markdown
|
# Active Directory Tricks
|
||
|
|
||
|
## Kerberos Clock Synchronization
|
||
|
|
||
|
In Kerberos, time is used to ensure that tickets are valid. To achieve this, the clocks of all Kerberos clients and servers in a realm must be synchronized to within a certain tolerance. The default clock skew tolerance in Kerberos is `5 minutes`, which means that the difference in time between the clocks of any two Kerberos entities should be no more than 5 minutes.
|
||
|
|
||
|
|
||
|
* Detect clock skew automatically with `nmap`
|
||
|
```powershell
|
||
|
$ nmap -sV -sC 10.10.10.10
|
||
|
clock-skew: mean: -1998d09h03m04s, deviation: 4h00m00s, median: -1998d11h03m05s
|
||
|
```
|
||
|
* Compute yourself the difference between the clocks
|
||
|
```ps1
|
||
|
nmap -sT 10.10.10.10 -p445 --script smb2-time -vv
|
||
|
```
|
||
|
* Fix #1: Modify your clock
|
||
|
```ps1
|
||
|
sudo date -s "14 APR 2015 18:25:16" # Linux
|
||
|
net time /domain /set # Windows
|
||
|
```
|
||
|
* Fix #2: Fake your clock
|
||
|
```ps1
|
||
|
faketime -f '+8h' date
|
||
|
```
|