Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@paybyrd/threedsecure-service
Advanced tools
JS service implementation to control the 3DS flow over Paybyrd API
A library to simplify the implementation of 3DS flow using Paybyrd API.
npm i @paybyrd/threedsecure-service
const container = document.getElementById('container-3ds');
const threeDSecureUrl = 'https://threedsecure.paybyrd.com';
const maxAttempts = 50;
const attemptDelay = 2000;
const culture = 'en-US';
const onProgressFn = ({
type,
error
}) => console.log(`${type}:${error}`);
const threeDSService = new ThreeDSecureService({
container,
threeDSecureUrl,
maxAttempts,
attemptDelay,
culture,
onProgressFn
});
const request = {
cardNumber: '5500000000000001',
cardHolder: 'PAYBYRD CARD HOLDER',
cardExpiration: '07/30',
merchantId: 10,
purchaseAmount: 1,
purchaseCurrency: 'EUR'
}
const threeDSResponse = await threeDSecureService.createAndExecute(request);
try {
const threeDSResponse = await threeDSecureService.createAndExecute(request);
} catch (error) {
// Show the error.message in your website
}
First of all, we truly recommend that you use the 3DS flow using the Order feature, where you can take a look here. When you create the order, we will return a checkoutKey that must be used for authentication.
const createPaymentRequest = {
type: 'Card',
card: {
cardNumber: '5500000000000001',
cardHolder: 'PAYBYRD CARD HOLDER',
cardExpiration: '07/30',
cvv: '123',
threeDSVersion: threeDSResponse.version,
aav: threeDSResponse.authenticationValue,
caav_algorithm: threeDSResponse.authenticationValueAlgorithm,
dsTransactionId: threeDSResponse.dsTransactionId,
eci: threeDSResponse.eci,
xid: threeDSResponse.xid,
verificationMethod: threeDSResponse.verificationMethod
}
};
const createPaymentResponse = await axios.post(
`https://gateway.paybyrd.com/api/v2/payment?checkoutKey=${checkoutKey}`,
createPaymentRequest);
FAQs
JS service implementation to control the 3DS flow over Paybyrd API
The npm package @paybyrd/threedsecure-service receives a total of 101 weekly downloads. As such, @paybyrd/threedsecure-service popularity was classified as not popular.
We found that @paybyrd/threedsecure-service demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.