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.
yoomoney-sdk
Advanced tools
node-fetch
и redirect-form-builder
(для генерации html форм)npm i -S yoomoney-sdk
yarn add yoomoney-sdk
import { YMApi } from "yoomoney-sdk";
const token = "..."; // Где-то здесь берём oauth токен кошелька
const api = new YMApi(token);
api.accountInfo().then(console.log);
Который в консоль выведет
{
account: '41xxxxxxxxxx848',
balance: 34.18,
currency: '643',
account_type: 'personal',
identified: true,
account_status: 'identified',
balance_details: { total: 34.18, available: 34.18 }
}
// Платежи куда угодно 101
import { YMApi, ymTypes } from "yoomoney-sdk";
const api = new YMApi(process.env.YM_TOKEN);
type PayoutMethod = "qiwi" | "yoomoney" | "card" | "mobile";
function getRequest(
method: PayoutMethod,
account: string,
amount: number
): ymTypes.RequestPaymentParams {
switch (method) {
case "yoomoney":
return {
amount,
pattern_id: "p2p",
to: account
};
case "qiwi":
// Взято из доков и с https://yoomoney.ru/api/showcase/97186
return {
rapida_param1: account.slice(1),
netSum: amount.toString(),
pattern_id: "97186",
ShopID: "135960",
ShowCaseID: "44",
ShopArticleID: "434586"
};
case "mobile":
return {
pattern_id: "phone-topup",
"phone-number": account,
amount
};
case "card":
// Искал часа 2 как сделать перевод через API - ничего
throw new Error("Метод недоступен");
}
}
async function sendPayment(method: PayoutMethod, account: string, amount: number) {
// Запрашиваем платёж
const request = await api.requestPayment(getRequest(method, account, amount));
// Где-то тут можно сохранить ID платежа в ДБ и оставить на потом
// Подтверждаем платёж
const response = await api.processPayment({
money_source: "wallet",
request_id: request.request_id
});
console.log(response);
}
// Донатим на разработку этой библиотеки :)
sendPayment("yoomoney", "410016348581848", 100);
// ♂️Gachi♂️ магазинчик на Express
const express = require("express");
const app = express();
const { YMPaymentFromBuilder, YMFormPaymentType } = require("yoomoney-sdk");
const port = parseInt(process.env.PORT);
app.get("/pay", (_req, res) => {
const builder = new YMPaymentFromBuilder()
.setQuickPayForm("shop")
.setAmount((300 * 74.3).toFixed(2)) // 300 баксов
.requirePhone() // Требуем с плательщика ввести телефон
.setSuccessURL(`http://localhost:${port}/success`)
.setPaymentType(YMFormPaymentType.FromCard) // Просим деньги с карты
.setReceiver("410016348581848") // Номер кошелька получателя (ваш)
.setLabel("payment-001") // Чтобы потом вычленить в уведомлении
.setComment("За ♂️Fisting♂️");
res.whiteHead(200, "OK", {
"Content-Type": "text/html; charset=utf-8"
});
res.end(builder.buildHtml(true)); // true = делаем полную страничку, а не только форму
});
app.get("/success", (_req, res) => {
res.end("Спасибо за покупку!");
});
app.listen(port);
Если API возвращает ошибку (то-есть поле error
в ответе), то библиотека кидает ошибку YMApiError
, которая содержит поля:
code
- Значение поля error
в ответеresponse
- Ответ полностью🇬🇧: Additional info
🇬🇧: License
🇬🇧: Contributing
Что делаем?:
CONTRIBUTING.md
🇬🇧: Support
Библиотека - маленькая, я отвечаю быстро. Не стесняйтесь писать Issue, даже если кажется что они глупые. Если что, можете писать в
Telegram: @AlexXanderGrib
У нас есть точно такое-же типизированное SDK для QIWI 👉 github.com/AlexXanderGrib/node-qiwi-sdk
FAQs
⭐ Typed YooMoney Wallet SDK for NodeJS. Supported API's: Auth, Wallet & Notifications
The npm package yoomoney-sdk receives a total of 30 weekly downloads. As such, yoomoney-sdk popularity was classified as not popular.
We found that yoomoney-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.
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.