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.
reversegeocode-to-zip
Advanced tools
Uses Google's geocoding API to convert longitude and latitude to a zipcode.
Uses Google's geocoding API to convert longitude and latitude to a zipcode. Requires supplying a google maps API key.
yarn add reversegeocode-to-zip
or
npm i reversegeocode-to-zip
import reverseGeocode from "reversegeocode-to-zip"
const region = {
latitude: 36.98823868538418,
longitude: -122.00553903356194,
};
const GOOGLE_API_KEY = "123123";
reverseGeocode(region, GOOGLE_API_KEY)
.then(zipcode => console.log(zipcode))
.catch(err => console.log(err));
Note: don't actually put your API key in your code. Import it as an environment variable.
Clone repo:
git clone https://github.com/osamaq/reversegeocode-to-zip.git && cd reversegeocode-to-zip
Install dependencies (jest):
yarn
or
npm i
Run tests:
yarn test
or
npm test
FAQs
Uses Google's geocoding API to convert longitude and latitude to a zipcode.
The npm package reversegeocode-to-zip receives a total of 3 weekly downloads. As such, reversegeocode-to-zip popularity was classified as not popular.
We found that reversegeocode-to-zip 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.