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.
@zenvia/zenvia-sms-core
Advanced tools
Full and official implementation of Zenvia SMS API for NodeJS.
Full and official implementation of Zenvia SMS API, send, monitor status and receive SMS from clients with this module.
npm install @zenvia/zenvia-sms-core
let zcs = require('@zenvia/zenvia-sms-core').callbacksServer;
zcs.startServer(81);
zcs.events.on('event', (data)=>{
console.log(data);
});
/**
* Available methods:
* setCredentials(account, password) - Set API Credentials
* sendSMS(payload) - Send unique and multiple SMS
* getSMSStatus(sms_id) - Get SMS status by ID
* getSMSReceivedList() - Get received SMS list
* getSMSReceivedListSearch(start_date, end_date) - Get received SMS list filtered by start and end date
* cancelScheduledSMS(sms_id) - Cancel scheduled SMS by id
*
*/
const zapi = require('@zenvia/zenvia-sms-core').api;
zapi.setCredentials('account', 'password');
/* Send unique short and long SMS example
*/
zapi.sendSMS({
sendSmsRequest: {
from: "Zenvia",
to: "5551999999999",
schedule: null,
msg: "Hello Zenvia from NodeJS!!!",
callbackOption: "ALL",
id: '001',
aggregateId: "002"
}
})
.then((res) => {
console.log(res);
})
.catch((err) => {
console.error(err);
});
_code_examples/
and _payload_examples
in this project.run npm install
.
for success send SMS tests case in api, fill zenvia_phonenumber
, zenvia_account
, zenvia_password
on env variables.
run npm test
.
FAQs
Full and official implementation of Zenvia SMS API for NodeJS.
We found that @zenvia/zenvia-sms-core 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.