
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
A partial implementation of the aspsms.com XML SMS API for node.js.
sudo npm install aspsms
setDefaultOptions(options) Sets the default optionssend(options, callback, message) Sends a text messageshowCredits(options, callback, message) Returns the amount of credits leftuserkey Your ASPSMS Uesrkeypassword Your ASPSMS passwordoriginator Name of the senderrecipient Mobile phone number of the recipientIf the operation was successfull the error object passed to the callback will
be null. If the operation fails the error object will contain an errorCode
and an errorDescription field with values according to the aspsms.com
documentation.
Send a text message
var aspsms = require('aspsms');
aspsms.setDefaultOptions({
'userkey' : 'YOUR_ASPSMS_USERKEY',
'password' : 'YOUR_ASPSMS_PASSWORD',
'originator' : 'TestApp'
});
aspsms.send({
'recipient' : '+41555123456'
}, function (error) {
if (!error) {
console.log('Success!');
}
}, 'Hello, this is a test.');
Show how many credits you have left
var aspsms = require('aspsms');
aspsms.setDefaultOptions({
'userkey' : 'YOUR_ASPSMS_USERKEY',
'password' : 'YOUR_ASPSMS_PASSWORD',
});
aspsms.showCredits({ }, function (error, credits) {
if (!error) {
console.log('You have ' + credits + ' left');
}
});
If you don't want to use setDefaultOptions you can pass all options in each
command.
var aspsms = require('aspsms');
aspsms.send({
'userkey' : 'YOUR_ASPSMS_USERKEY',
'password' : 'YOUR_ASPSMS_PASSWORD',
'originator' : 'TestApp',
'recipient' : '+41555123456'
}, function (error) {
if (!error) {
console.log('Success!');
}
}, 'Hello, this is a test.');
FAQs
Send SMS text messages through aspsms.com
The npm package aspsms receives a total of 0 weekly downloads. As such, aspsms popularity was classified as not popular.
We found that aspsms demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers 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
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.