
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
Nest sms is library for sending sms and interacting with nest bulk messaging api. It's a nodejs wrapper that makes it easier for developers to integrate sms messaging into their nodejs apps. You will need an developer account to use the module. you can signup for an account at https://sms.nestitservices.com/account/register
const nestsms = require('nestsms')
nestsms.init(
{host: 'https://api.sms.nestitservices.com',
version: 'v4',
resources: '/messages/send',
authModel: {type: 'key', key: '...APIKEY...'}
})
const nestsms = require('nestsms')
nestsms.init(
{host: 'https://api.sms.nestitservices.com',
version: 'v4',
resources: '/messages/send',
authModel: {type: 'factor', username: '...', password: '...'}
})
nestsms.quickSend(
{
From:'Test MIS',
To: 233xxxxxxxxxx,
Content: 'Testing unisms',
Type: 0})
.then(response => {
// HANDLE RESPONE
console.log(response)
}).catch(err => {
// HANDLE ERROR
console.error(err)
})
nestsms.quickSend(
{
From:'SenderID',
Content: 'Hello {$name}, your account balance is {$balance}',
To: {to: 233xxxxxxxxx, values: ['Alpha', 25000]}, // [{to: 233xxxxxxxxx, values: ['Alpha', 25000]}, {to: 223xxxxxxxxx, values: ['James', 1200]}]
Type: 0})
.then(response => {
// HANDLE RESPONE
console.log(response)
}).catch(err => {
// HANDLE ERROR
console.error(err)
})
Note: An error is thrown if the number of personalization slots in the message ({$}) in not equal to the number of values provided for the destinations or To values.
nestsms --> sms.nestitservices.com smsonlinegh --> smsonlinegh.com
Additional browser support
Add more functions such as sending personalised sms, checking account balance, etc
FAQs
Nodejs wrapper library for Nest sms or smsonlinegh sms gateway
The npm package nestsms receives a total of 1 weekly downloads. As such, nestsms popularity was classified as not popular.
We found that nestsms 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.