
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.
@wsdot/metadata-list
Advanced tools
Creates an HTML list of metadata links using WSDOT's metadata SOE
Creates an HTML list of links to metadata documents associated with the operational layers in a web map.
This module is for use with map services that have Layer Metadata SOE installed and enabled.
Package can be installed with an npm client (e.g., npm or yarn)
npm add --save @wsdot/metadata-list @esri/arcgis-rest-auth @esri/arcgis-rest-common-types @esri/arcgis-rest-items @esri/arcgis-rest-request
or
yarn add @wsdot/metadata-list @esri/arcgis-rest-auth @esri/arcgis-rest-common-types @esri/arcgis-rest-items @esri/arcgis-rest-request
import { createList, getWebMap } from "@wsdot/metadata-list";
/**
* Starts the code for the demo page.
*/
function start() {
// Parse ArcGIS Online webmap ID from "map" search parameter.
const url = new URL(location.href);
const { searchParams } = url;
const mapId = searchParams.get("map");
if (mapId) {
// Get operational layers' metadata links and display in a list.
getWebMap(mapId).then(webmap => {
if (webmap.operationalLayers && webmap.operationalLayers.length) {
const list = createList(webmap);
document.body.appendChild(list);
} else {
const p = document.createElement("p");
p.textContent = "This map does not have any operational layers.";
document.body.appendChild(p);
}
});
}
}
start();
FAQs
Creates an HTML list of metadata links using WSDOT's metadata SOE
The npm package @wsdot/metadata-list receives a total of 3 weekly downloads. As such, @wsdot/metadata-list popularity was classified as not popular.
We found that @wsdot/metadata-list 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
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.