Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
GeoJSON boundaries for Earth, masterfully formatted and normalized for your consumption.
Total # as of writing this: 40,106
Using one of these methods, the boundaries are accessible on any language or platform. Enjoy!
Mostly US boundaries right now (data availability), but would love to add more around the world. Know of more good sources for boundary data? Send a PR!
id
(String)
type
(String)
name
(String)
area
(Object)
npm install boundaries
listSync()
readSync(path)
list([cb])
listSync
read(path[, cb])
readSync
Simple example of listing boundaries and reading them synchronously.
var boundaries = require('boundaries');
var fs = require('fs');
var files = boundaries.listSync();
files.forEach(function(filePath) {
var boundary = boundaries.readSync(filePath);
// Do something with it!
});
import { listSync, readSync } from 'boundaries'
const files = listSync()
files.forEach((filePath) => {
const boundary = readSync(filePath)
// Do something with it!
})
FAQs
Source for all GeoJSON boundaries on Earth
The npm package boundaries receives a total of 31 weekly downloads. As such, boundaries popularity was classified as not popular.
We found that boundaries 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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.