
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
sms-activate-org
Advanced tools
This package fully supports all the https://sms-activate.org/ API with Typescript types.
Install the package using npm
npm install sms-activate-org
import { SMSActivate, SMSNumber } from 'sms-activate-org';
const api = new SMSActivate('myapikey'); //OR SMS_ACTIVATE_API_KEY=myapikey in .env
(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 */
api.getNumber({ service: 'Gmail', country: 'France' }).then(async (number: SMSNumber) => {
// Do your stuff with number.phoneNumber here,
// like writing it in the number field
await number.ready();
// Press the "send sms" button, wait for 180s to catch the code
number.getCode(180).then(async code => {
// Do your stuff with the verification code there
await number.success();
}).catch(err => {
console.error(err);
number.failed();
})
}).catch(console.error);
FAQs
A full NodeJS API for sms-activate.org
The npm package sms-activate-org receives a total of 14 weekly downloads. As such, sms-activate-org popularity was classified as not popular.
We found that sms-activate-org 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.