
Research
/Security News
9 Malicious NuGet Packages Deliver Time-Delayed Destructive Payloads
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.
@vue-storefront/commercetools
Advanced tools
nuxt.config.jsbuildModules, line before @vue-storefront/nuxt add:['@vue-storefront/commercetools/nuxt', {
api: {
uri: 'https://api.commercetools.com/<your-api>/graphql',
authHost: 'https://auth.sphere.io',
projectKey: 'vsf-ct-dev',
clientId: '<id>',
clientSecret: '<secret>',
scopes: [
'create_anonymous_token:vsf-ct-dev',
'manage_my_orders:vsf-ct-dev',
'manage_my_profile:vsf-ct-dev',
'manage_my_shopping_lists:vsf-ct-dev',
'manage_my_payments:vsf-ct-dev',
'view_products:vsf-ct-dev',
'view_published_products:vsf-ct-dev'
]
},
locale: 'en',
currency: 'USD',
country: 'US',
acceptLanguage: ['en', 'de'],
countries: [
{ name: 'US',
label: 'United States' },
{ name: 'AT',
label: 'Austria' },
{ name: 'DE',
label: 'Germany' },
{ name: 'NL',
label: 'Netherlands' }
],
currencies: [
{ name: 'EUR',
label: 'Euro' },
{ name: 'USD',
label: 'Dollar' }
],
locales: [
{ name: 'en',
label: 'English' },
{ name: 'de',
label: 'German' }
]
}]
}]
Commercetools nuxt module injects middleware that is responsible for createing/refreshing token if needed - when user refreshes page. In some rare case, you might want to disable this middleware. If so, add disableGenerateTokenMiddleware to the @vue-storefront/commercetools/nuxt's options module in buildModules:
['@vue-storefront/commercetools/nuxt', {
// ...
disableGenerateTokenMiddleware: true
// ...
}]
export const config = {
api: {
uri: 'https://mysite.com/vsf-ct-dev/graphql',
authHost: 'https://auth.com',
projectKey: 'vsf-ct-dev',
clientId: 'yourClientId',
clientSecret: 'yourClientSecret',
scopes: [
'create_anonymous_token:vsf-ct-dev',
'manage_my_orders:vsf-ct-dev',
'manage_my_profile:vsf-ct-dev',
'manage_my_shopping_lists:vsf-ct-dev',
'manage_my_payments:vsf-ct-dev',
'view_products:vsf-ct-dev',
'view_published_products:vsf-ct-dev'
]
},
locale: 'en',
acceptLanguage: ['en', 'de'],
currency: 'USD',
country: 'US',
store: 'luxury-brand',
countries: [
{ name: 'US',
label: 'United States' },
{ name: 'AT',
label: 'Austria' },
{ name: 'DE',
label: 'Germany' },
{ name: 'NL',
label: 'Netherlands' }
],
currencies: [
{ name: 'EUR',
label: 'Euro' },
{ name: 'USD',
label: 'Dollar' }
],
locales: [
{ name: 'en',
label: 'English' },
{ name: 'de',
label: 'German' }
],
cookies: {
currencyCookieName: 'vsf-currency',
countryCookieName: 'vsf-country',
localeCookieName: 'vsf-locale',
storeCookieName: 'vsf-store'
}
};
FAQs
Unknown package
The npm package @vue-storefront/commercetools receives a total of 18 weekly downloads. As such, @vue-storefront/commercetools popularity was classified as not popular.
We found that @vue-storefront/commercetools demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 8 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
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.