
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.
strapi-plugin-shopify-fields
Advanced tools
Use your Shopify products in Strapi!
The Shopify Fields plugin currently implements the following custom fields:
The Shopify Fields plugin is only compatible with Strapi v4.
# if you use NPM
npm install strapi-plugin-shopify-fields
# if you use Yarn
yarn add strapi-plugin-shopify-fields
To use the Shopify Fields plugin, you must create a private app on Shopify and obtain an access token. To do so, you should:
read_products under the Products category.env fileOpen or create the file config/plugins.js and enable the plugin by adding the following snippet:
module.exports = {
// ...
'shopify-fields': {
enabled: true,
config: {
apiVersion: '2022-07', // Or one of Shopify's supported API versions
accessToken: process.env.SHOPIFY_ACCESS_TOKEN, // The environment variable containing your private app's access token
shopName: process.env.SHOP_NAME, // The environment variable containing your myshopify.com domain
},
},
};
Open the file config/middlewares.js and check the configuration of the strapi::security middleware.
If your file looks like this:
module.exports = [
'strapi::errors',
'strapi::security',
'strapi::cors',
'strapi::poweredBy',
Replace 'strapi::security' with:
{
name: 'strapi::security',
config: {
contentSecurityPolicy: {
directives: {
'img-src': ["'self'", 'data:', 'blob:', 'https://dl.airtable.com', 'https://cdn.shopify.com'],
},
},
},
}
If, instead, your file already presents strapi::security as an object, simply add https://cdn.shopify.com to the img-src array.
FAQs
Use your Shopify data within Strapi
We found that strapi-plugin-shopify-fields 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.