
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.
ogone-directlink
Advanced tools
Thin wrapper around the directlink http api of the ogone payment service
A thin wrapper around the HTTPS DirectLink API of the ogone payment services with validation functionality.
This library is based on the request, json-schema and xml2js libraries.
npm install ogone-directlink
npm test
First of all read the Ogone DirectLink documentation and then continue reading.
var Ogone = require('ogone-directlink');
// Creates a ogone object in test mode. Change the last parameter to switch in prod mode.
var ogone = new Ogone('test' /* 'prod' */, {
pspid: 'mypspid',
userid: 'myuserid',
pswd: 'mypswd'
});
Create your first order request:
var order = ogone.createOrderRequest({
orderid: '123',
amount: 1.50, // Amount is automatically multiplied by 100
brand: 'VISA',
ed: '09/12',
cvc: '123',
cardno: '4111111111111111'
});
// Create a request with the operation 'SAL'
// Use order.res(...) for an request with operation 'RES'
// Use order.rfd(...) for an request with operation 'RFD'
order.sal(function(err, result) {
console.log(err || result);
});
Create an order with SHA-SIGN:
var order = ogone.createOrderRequest({
// My parameters
}, 'sha1', 'myshapassword');
Create your first maintenance request:
var maintenance = ogone.createMaintenanceOrder({
payid: 'abc',
amount: 1.50
});
// Create a request with the operation 'REN'
// Use maintenance.del(...) for an request with operation 'DEL'
// Use maintenance.des(...) for an request with operation 'DES'
// Use maintenance.sal(...) for an request with operation 'SAL'
// Use maintenance.sas(...) for an request with operation 'SAS'
// Use maintenance.rfd(...) for an request with operation 'RFD'
// Use maintenance.rfs(...) for an request with operation 'RFS'
maintenance.ren(function(err, result) {
console.log(err || result);
});
Create your first query request:
var query = ogone.createQueryRequest({
payid: 'abc'
});
query.status(function(err, result) {
console.log(err || result);
});
Note: All parameters in the ogone documentation are available in camelcase notation.
This API is used in production, but when you found bugs or want new features open and ticket or send me a pull request.
MIT
FAQs
Thin wrapper around the directlink http api of the ogone payment service
We found that ogone-directlink 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.