
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.
@sk-global/open-reverse-geocoder
Advanced tools
Reverse Geocoder, a library for reverse geocoding based on the Geospatial Information Authority of Japan (GSI) data
@sk-global/open-reverse-geocoder is a client library for APIs presented by the Geospatial Information Authority of Japan. This library provides functionalities to interact with various geospatial data services.
GET https://msearch.gsi.go.jp/address-search/AddressSearch?q=XXXXGET https://mreversegeocoder.gsi.go.jp/reverse-geocoder/LonLatToAddress?lat=XXXX&lon=XXXXTo install the library, use npm:
npm install @sk-global/open-reverse-geocoder
Ensure you have Node.js version 18.0.0 or higher.
Import the library in your project and use the provided functions. Here is an example of how to use the openReverseGeocoder function:
import { openReverseGeocoder } from '@sk-global/open-reverse-geocoder';
const lnglat = [139.6917, 35.6895];
const address = await openReverseGeocoder(lnglat);
console.log(address);
// Output:
// { code: '13101', city: 'Chiyoda-ku' }
import { openReverseGeocoder } from '@sk-global/open-reverse-geocoder';
async function getAddress() {
const lnglat = [139.6917, 35.6895];
const address = await openReverseGeocoder(lnglat);
console.log(address);
// Output:
// { code: '13101', city: 'Chiyoda-ku' }
}
getAddress();
import { searchAddress } from '@sk-global/open-reverse-geocoder';
async function searchLocation() {
const q = '北海道';
const searchResults = await searchAddress(q);
console.log(searchResults);
// Output:
// [
// {
// geometry: { coordinates: [Array], type: 'Point' },
// type: 'Feature',
// properties: { addressCode: '', title: '北海道' }
// },
// ...
// ]
}
searchLocation();
This project is licensed under the MIT License - see the LICENSE file for details.
FAQs
Reverse Geocoder, a library for reverse geocoding based on the Geospatial Information Authority of Japan (GSI) data
We found that @sk-global/open-reverse-geocoder demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers 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
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.