Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
sms-activate-sdk
Advanced tools
This package fully supports all the https://sms-activate.org/ API with Typescript types. Fork on sms-activate-org
Install the package using npm
npm install sms-activate-sdk
import { SMSActivate, SMSNumber } from 'sms-activate-sdk';
const api = new SMSActivate('myapikey');
(async () => {
const balance = await api.getBalance();
console.log(`My balance is ${balance}`);
})();
/* Getting a number to activate Gmail services,
* the wrapper automatically resolves country and services names */
// You need got to https://sms-activate.org/en/api2 to get the service and country code
api.getNumber({ service: 'tw', country: 0 }).then(async number: SMSNumber => {
// Do your stuff with number.phoneNumber here,
// like writing in the number field
/** Setting code status to Ready **/
await number.ready(); // or api.setStatus({ id: number.activationId, status: EActivationSetStatus.Ready });
// Press the send sms button
try {
/** Waiting a maximum of 180s for the code to arrive **/
const code = await number.getCode();
// Do your stuff with the code there
/** Setting code status to Success if everything worked as expected **/
await number.success(); // or api.setStatus({ id: number.activationId, status: EActivationSetStatus.Success });
} catch(err) {
console.error(err);
/** Setting code status to Failed if the code was used **/
await number.failed();
}
}).catch(console.error);
FAQs
A full NodeJS API for sms-activate.org
We found that sms-activate-sdk 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
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.