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.
The Maidenhead Locator System is a geographic co-ordinate system used by amateur radio operators. Based on Michael Graff's maidenhead gem
The Maidenhead Locator System is a geographic co-ordinate system used by amateur radio operators.
Based on Michael Graff's maidenhead gem
var Maidenhead = require('maidenhead');
var latitude = 50.879087; //mandatory
var longitude = 4.701169; //mandatory
var precision = 6; //optional defaults to 5
var townHall = new Maidenhead(latitude, longitude, precision);
var trainStation = new Maidenhead(50.881264, 4.715634, 6);
var library = new Maidenhead();
library.locator = 'JO20iu16ti';
var maidenheadLocator = townHall.locator;
console.log('has valid locator: ' + Maidenhead.valid(maidenheadLocator));
console.log("latitude: %s, longitude: %s, Maidenhead: %s", townHall.lat, townHall.lon, maidenheadLocator);
console.log("[lat, lon] = ", Maidenhead.toLatLon(maidenheadLocator));
console.log("distance to train station in M from town hall: %s", townHall.distanceTo(trainStation, 'm'));
console.log("bearing to library station from town hall: %s degrees", townHall.bearingTo(library));
console.log("compass bearing to library station from town hall: %s ", townHall.bearingTo(library, true));
FAQs
The Maidenhead Locator System is a geographic co-ordinate system used by amateur radio operators. Based on Michael Graff's maidenhead gem
We found that maidenhead 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.