
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
Iranian payment gateway
Unofficially implementing Iranian payment gateways in Node.JS
Install the package from npm.
npm install ipg-node
const ipg = require('ipg-node');
ipg.config = {
mellat: {
credentail: {
terminalId: process.env.MELLAT_TERMINALID,
userName: process.env.MELLAT_USERNAME,
userPassword: process.env.MELLAT_USERPASSWORD,
},
callbackUrl: `http://your.domain.com/checkout?gate=${ipg.Types.Mellat}`,
currencyIsToman: false,
},
melli: {
credentail: {
TerminalId: process.env.MELLI_TERMINALID,
MerchantId: process.env.MELLI_MERCHANTID,
TerminalKey: process.env.MELLI_TERMINALKEY,
},
callbackUrl: `http://your.domain.com/checkout?gate=${ipg.Types.Melli}`,
currencyIsToman: false,
},
saderat: {
credentail: {
terminalID: process.env.MELLI_TERMINALID,
},
callbackUrl: `http://your.domain.com/checkout?gate=${ipg.Types.Saderat}`,
currencyIsToman: false,
},
};
ipg
.request(ipg.Types.Mellat, amount)
.then((result) => {
if (result.success) {
//result.RefId,
} else {
//result.ResCode,
//result.message
}
})
.catch((error) => console.log(error));
ipg
.request(ipg.Types.Melli, amount)
.then((result) => {
if (result.success) {
// result.ResCode,
// result.message,
// result.Token,
// ....
// save invoice
} else {
// result.ResCode,
// result.message
}
})
.catch((error) => console.log(error));
ipg
.request(ipg.Types.Saderat, amount)
.then((result) => {
if (result.success) {
// result.AccessToken,
// ....
// save invoice
} else {
// result.Status,
// result.message
}
})
.catch((error) => console.log(error));
ipg
.verify(ipg.Types.Mellat, {
orderId: req.body.SaleOrderId,
saleOrderId: req.body.SaleOrderId,
saleReferenceId: req.body.SaleReferenceId,
})
.then((result) => {
if (result.success) {
// ....
// save invoice
} else {
// result.ResCode,
// result.message
}
})
.catch((error) => console.log(error));
ipg
.verify(ipg.Types.Melli, { token })
.then((result) => {
if (result.success) {
// result.ResCode,
// result.message,
// result.OrderId,
// result.RetrivalRefNo,
// result.SystemTraceNo,
// ....
//save invoice
} else {
//result.ResCode,
//result.message
}
})
.catch((error) => console.log(error));
ipg
.refund(ipg.Types.Mellat, {
orderId,
saleOrderId,
saleReferenceId,
refundAmount,
})
.then((result) => {
if (result.success) {
// result.TransactionCode,
// ....
// save invoice
} else {
// result.message,
// result.ResCode,
}
})
.catch((error) => console.log(error));
ipg
.refund(ipg.Types.Melli, {
retrivalRef,
systemTraceNo,
refundAmount,
amount,
token,
})
.then((result) => {
if (result.success) {
//save invoice
} else {
//result.ResCode,
//result.message
}
})
.catch((error) => console.log(error));
Contributions are welcome. Please submit PRs or just file an Issue if you see something broken or in need of improving.
FAQs
Iranian payment gateway
We found that ipg-node 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.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

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.