Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
akamai-time-reference
Advanced tools
akamai-time-reference
is a Node.js package to get the exact current time using
Akamai's Time Reference service.
It has only two depedencies :
const timeRef = require('akamai-time-reference');
timeRef.now().then(function(now) {
console.log(now);
});
// >> Tue Sep 15 2015 21:36:53 GMT+0200 (CEST)
timeRef.now().then(function(refNow) {
console.log('Local clock desync ins ms : %d', Date.now() - refNow);
});
// >> Local clock desync ins ms : 12765
The now()
function can be passed an argument, which, if true, will skip the cache (to force a HTTP request).
const timeRef = require('akamai-time-reference');
timeRef.now();
// >> HTTP request
timeRef.now();
// >> NO HTTP request, used cache
timeRef.now(true);
// >> HTTP request
You can change some options like using setOptions
by passing it an object with
one/some of theses properties :
timeRef.setOptions({
cacheTTL: 5000, // How often do we make a request to akamai, in ms (<=0 to disable)
useHTTP: false, // Use the HTTP protocol instead of HTTP**S**
timeout: 2000, // Request timeout value, in ms
});
// or just one :
timeRef.setOptions({ cacheTTL: 1000 });
(Above example gives you the default values).
Changing an/some options is done for every future calls (in the process), globally.
setOptions
will return the current options (You can pass an empty object to just get them).
FAQs
Get a time reference using Akamai's platform
We found that akamai-time-reference demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.