
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
@ntlab/sms-gateway
Advanced tools
Node SMS Gateway is SMS Gateway application which connects to Node SMS Terminal and provide GSM communication queuing such as SMS and USSD. It is also acts as proxy to other party via its socket communication.
Node SMS Gateway can be extended with other functionality using its plugin interface.
For example, see included Prepaid plugin.
Stand alone installation is available using GIT.
$ cd ~
$ git clone https://github.com/tohenk/node-sms-gateway.git
$ cd node-sms-gateway
$ npm install
A web interface installation is needed as its now a separate package.
$ npm install @ntlab/sms-gateway-ui
Install plugins as you need.
$ npm install @ntlab/sms-gateway-prepaid
To run application (On some Linux distribution replace node with nodejs)
$ node app.js --plugins=@ntlab/sms-gateway-prepaid
Node SMS Gateway uses JSON configuration named config.json in the working
directory, but it can be told to use configuration elsewhere.
databaseSet Sequelize database connection parameter.
{
"database": {
"dialect": "mysql",
"host": "localhost",
"port": 3306,
"user": "username",
"password": "password",
"database": "smsgw",
"timezone": "Asia/Jakarta"
}
}
secretSet socket connection secret. Each socket client must send auth with secret
and will be checked against this value. If it matches, connection accepted,
otherwise connection will be closed.
{
"secret": "CHANGEME"
}
securitySet web interface username and password. Default username and password is both
admin. To secure your instance, it is advised to change default password.
{
"security": {
"username": "admin",
"password": "admin"
}
}
poolsNode SMS Gateway can connects to multiple terminals. Each terminal can be configured as shown below.
{
"pools": [
{
"name": "localhost",
"url": "http://localhost:8000",
"key": "CHANGEME"
}
]
}
$ node app.js --help
Usage:
node app.js [options]
Options:
--config=config-file Read app configuration from file
--url=url, -u=url Use terminal at URL if no configuration supplied
--key=key, -k=key Terminal secret key
--port=port, -p=port Set web server port to listen
--plugins=plugins Load plugins at start, separate each plugin with comma
Node SMS Gateway web interface can be accessed via port 8080 (default) or as
specified by the command line options above.
FAQs
SMS Gateway
We found that @ntlab/sms-gateway 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
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.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.