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.
node-sms-send
Advanced tools
Node JS client module to send SMS messages using Comilio SMS Gateway.
To use this library, you must have a valid account on https://www.comilio.it.
Please note SMS messages sent with this library will be deducted by your Comilio account credits.
For any questions, please contact us at tech@comilio.it
$ npm install node-sms-send --save
const SMS = require('node-sms-send')
const sms = new SMS('username', 'password')
sms.send('+393401234567', 'Hello!')
.then(body => console.log(body)) // returns { message_id: 'string' }
.catch(err => console.log(err.message))
const SMS = require('node-sms-send')
const sms = new SMS('username', 'password')
sms.status('A95455F7031140769030CCA81E764C5F')
.then(body => console.log(body)) // returns [ { phone_number: '+393401234567', status: 'Sent' } ]
.catch(err => console.log(err.message))
You can check out our website https://www.comilio.it
FAQs
Sms send package for Comilio
The npm package node-sms-send receives a total of 25 weekly downloads. As such, node-sms-send popularity was classified as not popular.
We found that node-sms-send 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.