Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
@open-source-initiative/notify-sms
Advanced tools
This library enables users to send SMSs to zambian numbers accross all networks via notify
https://www.olympusmedia.co.zm
Notify is a bulk SMS Module for sending SMS's accross local zambian phone numbers. It is embedded in GameBox - Download the app here.
NOTIFY_SMS_USERNAME="2609xxxxxxx"
NOTIFY_SMS_PASSWORD="***********"
import { SMS } from '@open-source-initiative/notify-sms';
//or
//const SMS = require('mosi/sms');
/**
* configure access token
*/
const setupNotify = async () => {
await SMS.configureAccessToken();
}
/**
* configure credentials if not already set in your .env
* @note { only do this if you havent set credentials in your .env }
*/
const setCredentials = async () => {
await SMS.setCredentials({ username: '2609xxxxxxxxx', password: '********' });
}
/**
* fetch your sender Ids
* @returns [ { name: 'MicroTech', identifier: '644316912beefb5376aa11f2' }, ... ]
*/
const getMySenderIds = async () => {
return await SMS.GET_SENDER_IDS();
}
const getMySMSBalance = async () => {
return await SMS.GET_SMS_BALANCE();
}
const sendSMSToMyContacts = async () => {
const smsResponse = await SMS.SEND_SMS_TO_CUSTOM_CONTACTS({ contacts: [ '2609xxxxxxxx' ], senderId: "644316912beefb5376aa11f2", message: 'Notify SMS::Test Message::Hello Zambia!!!' });
}
Answer the prompts:
node node_modules/@open-source-initiative/notify-sms/build/testMe.js --terminal
Email us [info@microtech.co.zm]
FAQs
This library enables users to send SMSs to zambian numbers accross all networks via notify
The npm package @open-source-initiative/notify-sms receives a total of 8 weekly downloads. As such, @open-source-initiative/notify-sms popularity was classified as not popular.
We found that @open-source-initiative/notify-sms demonstrated a healthy version release cadence and project activity because the last version was released less than 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
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.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.