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.
adonisjs-flutterwave-rave
Advanced tools
An addon/plugin package to provide Flutterwave (Rave) payment services in AdonisJS 4.0+
An addon/plugin package to provide Flutterwave (Rave) payment services in AdonisJS 4.0+
Install from the NPM Registry
$ adonis install adonisjs-flutterwave-rave
Import and use
'use strict'
const Rave = use('FlutterwaveRave')
class PaymentsController {
constructor(BillsHistory){
this.bills_history = BillsHistory
}
static get inject(){
return [
'App/Models/BillsHistory'
]
}
async chargeCard({ request, session, response }){
let response = await Rave.Card.charge({
cardno: "5273938738903039399"
})
console.log("RESULT: ", response.body.data)
return response.status(200).json({
data:response.body.data
})
}
}
module.exports = PaymentsController
MIT
npm i
npm run lint
npm run test
See the CONTRIBUTING.md file for info
FAQs
An addon/plugin package to provide Flutterwave (Rave) payment services in AdonisJS 4.0+
We found that adonisjs-flutterwave-rave 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
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.