Time namespaces
Time namespaces
Posted Sep 21, 2018 21:31 UTC (Fri) by amarao (guest, #87073)Parent article: Time namespaces
Posted Sep 21, 2018 21:47 UTC (Fri)
by dtlin (subscriber, #36537)
[Link]
If you just need to adjust the time for a single browser, libfaketime would likely be easier. Chrome explicitly tries to guard against wrong client time and might not cooperate with your time tweaking either way, though.
Posted Sep 23, 2018 13:43 UTC (Sun)
by rweikusat2 (subscriber, #117920)
[Link] (3 responses)
Posted Sep 23, 2018 14:51 UTC (Sun)
by Sesse (subscriber, #53779)
[Link] (2 responses)
Expired certificates are also generally not part of OSCP, so it's hard to revoke them in practice.
Posted Sep 23, 2018 16:57 UTC (Sun)
by rweikusat2 (subscriber, #117920)
[Link] (1 responses)
'Bad certificates' would also usually be dealt with by revocation. Standard lifetime of commercial certificates is a year and "Oh well, the guy who pretends to be your bank in order to rob your account will be forced to stop next year!" wouldn't exactly be fit-for-purpose as security policy here.
Posted Sep 24, 2018 12:30 UTC (Mon)
by KaiRo (subscriber, #1987)
[Link]
Posted Sep 24, 2018 14:49 UTC (Mon)
by rriggs (guest, #11598)
[Link]
Time namespaces
//chromium/src/components/network_time/network_time_tracker.cc
// Network time queries are enabled on all desktop platforms except ChromeOS,
// which uses tlsdated to set the system time.
//chromium/src/components/ssl_errors/error_classification.cc
if (now_system < build_time - base::TimeDelta::FromDays(2)) {
build_time_state = CLOCK_STATE_PAST;
} else if (now_system > build_time + base::TimeDelta::FromDays(365)) {
build_time_state = CLOCK_STATE_FUTURE;
}
Expired Certificates
Expired Certificates
Expired Certificates
Expired Certificates
Time namespaces