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.
1) Detect clock skew automatically with nmap
$ nmap -sV -sC 10.10.10.102) Compute yourself the difference between the clocks
nmap -sT 10.10.10.10 -p445 --script smb2-time -vvFix #1: Modify your clock
sudo date -s "14 APR 2015 18:25:16" # Linux
net time /domain /set # WindowsFix #2: Fake your clock
faketime -f '+8h' dateLast updated