
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.
@basis-theory/shopify-js
Advanced tools
Basis Theory utility for decrypting Shopify Payment App Session payload
Utility library for decrypting Shopify Payment App credit card payload.
Follow the steps in Shopify Payments App documentation to create a Payments App and Credit Card Payments App Extension.
Install the package using NPM:
npm install @basis-theory/shopify-js --save
Or Yarn:
yarn add @basis-theory/shopify-js
The credit card payment app extension requires a Payment Session URL, where the Payment Session payload is posted to, containing encrypted credit card data.
The examples below show how to load the private key from the File System into a Buffer, using samples from this repository. But you can load them from you KMS, secret manager, configuration, etc.
⚠️ Decrypting the Shopify Payment Session payload must be done in a PCI DSS compliant environment.
If you need help understanding the risks associated with decrypting and manipulating the various forms of cardholder data in your own systems, reach out to us.
import { ShopifyPaymentSessionContext } from '@basis-theory/shopify-js';
import * as fs from 'fs';
import paymentSession from './test/fixtures/paymentSession.json';
// load private key into buffer
const privateKeyPem = fs.readFileSync(
'./test/fixtures/certificates/private_key.pem'
);
// create decryption context
const context = new ShopifyPaymentSessionContext({
privateKeyPem,
});
// decrypt the payment method
console.log(context.decrypt(paymentSession.payment_method));
Or using key rotation:
import { ShopifyPaymentSessionContext } from '@basis-theory/shopify-js';
import * as fs from 'fs';
import paymentSession from './test/fixtures/paymentSession.json';
// load private keys into buffer
const privateKeyPemA = fs.readFileSync(
'./test/fixtures/certificates/private_key_a.pem'
);
const privateKeyPemB = fs.readFileSync(
'./test/fixtures/certificates/private_key_b.pem'
);
// create decryption context
const context = new ShopifyPaymentSessionContext({
privateKeyPem: {
// get the certificate fingerprint in Shopify payment app certificates dashboard
'23f3812e093737252e98d47aa790ba5e607188837ec9aea797c0dde8ed7ef674':
privateKeyPemA,
'84d14a26c7d80e4975ed646f8ba8484a5ee8de970a04f1cf61b775aa7cbdc9cf':
privateKeyPemB,
},
});
// decrypt the payment method
console.log(context.decrypt(paymentSession.payment_method));
This package is available to use in Reactors context. This enables you to perform decryption and tokenization of the credit card data in an outsourced cardholder data environment hosted by Basis Theory.
Contact us to understand how to set up Proxy with mTLS support to listen to Shopify Payment Session request and decrypt it at an isolated environment.
Proxy Request Transform code example:
const { ShopifyPaymentSessionContext } = require('@basis-theory/shopify-js');
module.exports = async function (req) {
const {
bt,
args: {
headers,
body: { payment_method, ...body },
},
configuration: { PRIVATE_KEY_A, PRIVATE_KEY_B },
} = req;
const context = new ShopifyPaymentSessionContext({
privateKeyPem: {
// get the certificate fingerprint in Shopify payment app certificates dashboard
'23f3812e093737252e98d47aa790ba5e607188837ec9aea797c0dde8ed7ef674':
PRIVATE_KEY_A,
'84d14a26c7d80e4975ed646f8ba8484a5ee8de970a04f1cf61b775aa7cbdc9cf':
PRIVATE_KEY_B,
},
});
const {
data: { full_name, pan, month, year, verification_value },
} = context.decrypt(payment_method);
const token = await bt.tokens.create({
type: 'card',
data: {
number: pan,
expiration_month: month,
expiration_year: year,
cvc: verification_value,
},
});
return {
headers,
body: {
...body,
payment_method: token,
},
};
};
FAQs
Basis Theory utility for decrypting Shopify Payment App Session payload
We found that @basis-theory/shopify-js demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 10 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.