
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
@nabcellent/websms
Advanced tools
This is a Typescript package that interfaces with the WebSMS Api. The API enables you to initiate mobile SMS notifications.
Check out their api documentation.
You can install the package via npm or yarn:
yarn add @nabcellent/websms
Initialize the WebSMS class with your config.
import { WebSMS, WebSMSConfig } from '@nabcellent/websms';
let config: WebSMSConfig = {
accessKey: process.env.WEBSMS_ACCESS_KEY,
apiKey : process.env.WEBSMS_API_KEY,
clientId : process.env.WEBSMS_CLIENT_ID,
senderId : process.env.WEBSMS_SENDER_ID
};
const web = new WebSMS(config);
Enables you to send text messages
const response = await web.sms.text('#WebSMSTest').to(254123456789).send()
// OR
const response = await web.sms.text('#WebSMSTest').to([254123456789]).send()
// Expected responses
{
code: 0,
description: null,
data: [
{
message_id: "7444f504-6760-43fd-9b40-2708da61d114",
code: 0,
description: "Success",
phone: "254123456789",
custom: ""
},
{
message_id: "",
code: 801,
description: "Country not found in master data",
phone: "89254736388405", // Invalid phone number
custom: ""
}
]
}
Provide a Moment or Date instance to the send method.
const response = await web.sms.text('#WebSMSTest').to([254123456789]).send(moment().add(1, 'm'))
PS: The date must be after current time.🌚
Provide the text message.
const response = web.sms.cost('Hello World.')
// Expected response(number)
0.3
Enables you to check the balance of your account
const response = await web.balance.fetch()
// Expected response(number)
7.33
Please see CONTRIBUTING for details.
If you discover any security related issues, please email nabcellent.dev@gmail.com instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.
FAQs
WebSMS API Library
The npm package @nabcellent/websms receives a total of 0 weekly downloads. As such, @nabcellent/websms popularity was classified as not popular.
We found that @nabcellent/websms 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
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.