Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
ssl-wireless-sms-send
Advanced tools
SSL wireless is a third party service for sending SMS for Bangladeshi numbers. But their documentation isn’t adequate for nodeJS. Also it requires some extra work to send Bangla SMS. This npm package will remove those hassles.
You can use npm to install the package with the following code
npm install —save ssl-wireless-sms-send
There are 2 functionalities to use.
1. Sending SMS
It sends sms by using SSL wireless. You need to have the necessary credentials for SSL wireless . For sending SMS you have to call a function named send
. The send
method takes these following arguments. (Make sure order is maintained properly)
send(receiver, text, userName, password, bengaliSid, englishSid, cSMSId)
Argument | Description |
---|---|
receiver | The number you want to send SMS |
text | The body of the SMS |
userName | username provided by SSL wireless |
password | provided by SSL wireless |
bengaliSid | needed in case you want to send Bengali SMS |
englishSid | needed for sending only English SMS |
cSMSId | this is a unique id for each sms provided by you. It’s needed for uniquely identify the SMS |
Example SMS send :
const sms = require('ssl-wireless-sms-send');
sms.send('01671996355',
'This is test SMS',
'UserName',
'Password',
'BanglaSID',
'EnglishSID',
'12345678')
.then( response => {
console.log(response);
})
.catch( error => {
console.log(error);
});
2. Convert Bangla to Unicode It receives a Bengali string as a argument and converts it to unicode.
let unicode = bengaliToUnicode(banglaText)
This is created by saadnoor salehin, any feedback and PR is welcome.
FAQs
Send both Bengali and English SMS by SSL wireless
The npm package ssl-wireless-sms-send receives a total of 3 weekly downloads. As such, ssl-wireless-sms-send popularity was classified as not popular.
We found that ssl-wireless-sms-send 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
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.